Skip to content

Commit

Permalink
feat: add test
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu-dixit committed Aug 17, 2024
1 parent da3f052 commit 9d22783
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/src/sdk/models/integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export type CreateIntegrationData = {
* The unique identifier of the app associated with the connector.
*/
appId?: string;
forceNewIntegration?: boolean;
/**
* An object containing the authentication configuration for the connector.
*/
Expand Down Expand Up @@ -133,7 +134,8 @@ export class Integrations {
appId: data?.appId!,
authConfig: data?.authConfig! as any,
authScheme: data?.authScheme,
useComposioAuth: data?.useComposioAuth!
useComposioAuth: data?.useComposioAuth!,
forceNewIntegration: true
}
}).then(res=>{
return res.data
Expand Down

0 comments on commit 9d22783

Please sign in to comment.