All files / src/sdk/models integrations.ts

71.15% Statements 37/52
53.33% Branches 8/15
77.77% Functions 7/9
72% Lines 36/50

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244              12x 12x           12x 12x 12x 12x                                   12x   30x       30x 30x                       1x         1x 1x         1x                               2x         2x 2x       2x                                   1x         1x 1x     1x           1x                               1x         1x 1x   1x 186x   1x                             1x 1x                                                                                                             1x         1x 1x     1x           1x            
import { z } from "zod";
import {
  DeleteRowAPIDTO,
  ExpectedInputFieldsDTO,
  GetConnectorInfoResDTO,
  GetConnectorListResDTO,
} from "../client";
import apiClient from "../client/client";
import {
  ZAuthMode,
  ZCreateIntegrationParams,
  ZListIntegrationsParams,
  ZSingleIntegrationParams,
} from "../types/integration";
import { CEG } from "../utils/error";
import { TELEMETRY_LOGGER } from "../utils/telemetry";
import { TELEMETRY_EVENTS } from "../utils/telemetry/events";
import { Apps } from "./apps";
import { BackendClient } from "./backendClient";
 
// Types generated from zod schemas
export type IntegrationListParam = z.infer<typeof ZListIntegrationsParams>;
export type IntegrationGetParam = z.infer<typeof ZSingleIntegrationParams>;
export type IntegrationListData = string;
type IntegrationCreateParams = z.infer<typeof ZCreateIntegrationParams>;
 
// API response types
export type IntegrationCreateData = {
  requestBody?: IntegrationCreateParams;
};
 
export type IntegrationListRes = GetConnectorListResDTO;
export type IntegrationGetRes = GetConnectorInfoResDTO;
export type IntegrationRequiredParamsRes = ExpectedInputFieldsDTO[];
export type IntegrationDeleteRes = DeleteRowAPIDTO;
export class Integrations {
  private backendClient: BackendClient;
  private fileName: string = "js/src/sdk/models/integrations.ts";
  private apps: Apps;
 
  constructor(backendClient: BackendClient) {
    this.backendClient = backendClient;
    this.apps = new Apps(backendClient);
  }
 
  /**
   * Retrieves a list of all available integrations in the Composio platform.
   *
   * This method allows clients to explore and discover the supported integrations. It returns an array of integration objects, each containing essential details such as the integration's key, name, description, logo, categories, and unique identifier.
   *
   * @returns {Promise<IntegrationListRes>} A promise that resolves to the list of all integrations.
   * @throws {ComposioError} If the request fails.
   */
  async list(data: IntegrationListParam = {}): Promise<IntegrationListRes> {
    TELEMETRY_LOGGER.manualTelemetry(TELEMETRY_EVENTS.SDK_METHOD_INVOKED, {
      method: "list",
      file: this.fileName,
      params: { data },
    });
    try {
      const response = await apiClient.appConnector.listAllConnectors({
        query: data,
        throwOnError: true,
      });
 
      return response.data;
    } catch (error) {
      throw CEG.handleAllError(error);
    }
  }
 
  /**
   * Retrieves details of a specific integration in the Composio platform by providing its integration name.
   *
   * The response includes the integration's name, display name, description, input parameters, expected response, associated app information, and enabled status.
   *
   * @param {IntegrationGetParam} data The data for the request.
   * @returns {Promise<IntegrationGetResponse>} A promise that resolves to the details of the integration.
   * @throws {ComposioError} If the request fails.
   */
  async get(data: IntegrationGetParam): Promise<IntegrationGetRes> {
    TELEMETRY_LOGGER.manualTelemetry(TELEMETRY_EVENTS.SDK_METHOD_INVOKED, {
      method: "get",
      file: this.fileName,
      params: { data },
    });
    try {
      const response = await apiClient.appConnector.getConnectorInfo({
        path: data,
        throwOnError: true,
      });
      return response.data;
    } catch (error) {
      throw CEG.handleAllError(error);
    }
  }
 
  /**
   * Retrieves the required parameters for a specific integration's authentication scheme.
   *
   * This method is used to get the necessary input fields for a specific integration's authentication scheme.
   *
   * @param {IntegrationListData} data The data for the request.
   * @returns {Promise<IntegrationRequiredParamsRes>} A promise that resolves to the required parameters for the integration's authentication scheme.
   * @throws {ComposioError} If the request fails.
   */
  async getRequiredParams(
    integrationId: IntegrationListData
  ): Promise<IntegrationRequiredParamsRes> {
    TELEMETRY_LOGGER.manualTelemetry(TELEMETRY_EVENTS.SDK_METHOD_INVOKED, {
      method: "getRequiredParams",
      file: this.fileName,
      params: { integrationId },
    });
    try {
      ZSingleIntegrationParams.parse({
        integrationId,
      });
      const response = await apiClient.appConnector.getConnectorInfo({
        path: {
          integrationId,
        },
        throwOnError: true,
      });
      return response.data?.expectedInputFields;
    } catch (error) {
      throw CEG.handleAllError(error);
    }
  }
 
  /**
   * Creates a new integration in the Composio platform.
   *
   * This method allows clients to create a new integration by providing the necessary details such as app ID, name, authentication mode, and configuration.
   *
   * @param {IntegrationCreateParams} data The data for the request.
   * @returns {Promise<IntegrationGetResponse>} A promise that resolves to the created integration model.
   * @throws {ComposioError} If the request fails.
   */
  async create(data: IntegrationCreateParams): Promise<IntegrationGetRes> {
    TELEMETRY_LOGGER.manualTelemetry(TELEMETRY_EVENTS.SDK_METHOD_INVOKED, {
      method: "create",
      file: this.fileName,
      params: { data },
    });
    try {
      ZCreateIntegrationParams.parse(data);
 
      const apps = await apiClient.apps.getApps();
      const app = apps.data?.items.find((app) => app.appId === data.appId);
 
      const response = await apiClient.appConnectorV2.createConnectorV2({
        body: {
          app: {
            uniqueKey: app!.key || "",
          },
          config: {
            useComposioAuth: data.useComposioAuth,
            name: data.name,
            authScheme: data.authScheme as z.infer<typeof ZAuthMode>,
            integrationSecrets: data.authConfig,
          },
        },
        throwOnError: true,
      });
 
      const integrationId = response.data.integrationId;
      return this.get({ integrationId });
    } catch (error) {
      throw CEG.handleAllError(error);
    }
  }
 
  async getOrCreateIntegration(
    data: IntegrationCreateParams
  ): Promise<IntegrationGetRes> {
    TELEMETRY_LOGGER.manualTelemetry(TELEMETRY_EVENTS.SDK_METHOD_INVOKED, {
      method: "getOrCreateIntegration",
      file: this.fileName,
      params: { data },
    });
 
    try {
      ZCreateIntegrationParams.parse(data);
 
      const apps = await apiClient.apps.getApps();
      const app = apps.data?.items.find((app) => app.appId === data.appId);
 
      const response = await apiClient.appConnectorV2.getOrCreateConnector({
        body: {
          app: {
            uniqueKey: app!.key,
          },
          config: {
            useComposioAuth: data.useComposioAuth,
            name: data.name,
            authScheme: data.authScheme as z.infer<typeof ZAuthMode>,
            integrationSecrets: data.authConfig,
          },
        },
        throwOnError: true,
      });
 
      const integrationId = response.data.integrationId;
      return this.get({ integrationId });
    } catch (error) {
      throw CEG.handleAllError(error);
    }
  }
 
  /**
   * Deletes an existing integration in the Composio platform.
   *
   * This method allows clients to delete an existing integration by providing its integration ID.
   *
   * @param {IntegrationListData} data The data for the request.
   * @returns {Promise<IntegrationDeleteResponse>} A promise that resolves to the deleted integration model.
   * @throws {ComposioError} If the request fails.
   */
  async delete(
    integrationId: IntegrationListData
  ): Promise<IntegrationDeleteRes> {
    TELEMETRY_LOGGER.manualTelemetry(TELEMETRY_EVENTS.SDK_METHOD_INVOKED, {
      method: "delete",
      file: this.fileName,
      params: { integrationId },
    });
    try {
      ZSingleIntegrationParams.parse({
        integrationId,
      });
      const response = await apiClient.appConnector.deleteConnector({
        path: {
          integrationId,
        },
        throwOnError: true,
      });
      return response.data;
    } catch (error) {
      throw CEG.handleAllError(error);
    }
  }
}