@composio/client 0.1.0-alpha.44 → 0.1.0-alpha.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/client.d.mts +1 -1
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +1 -1
  5. package/client.d.ts.map +1 -1
  6. package/package.json +1 -1
  7. package/resources/auth-configs.d.mts +30 -0
  8. package/resources/auth-configs.d.mts.map +1 -1
  9. package/resources/auth-configs.d.ts +30 -0
  10. package/resources/auth-configs.d.ts.map +1 -1
  11. package/resources/connected-accounts.d.mts +173 -80
  12. package/resources/connected-accounts.d.mts.map +1 -1
  13. package/resources/connected-accounts.d.ts +173 -80
  14. package/resources/connected-accounts.d.ts.map +1 -1
  15. package/resources/link.d.mts +11 -20
  16. package/resources/link.d.mts.map +1 -1
  17. package/resources/link.d.ts +11 -20
  18. package/resources/link.d.ts.map +1 -1
  19. package/resources/toolkits.d.mts +13 -0
  20. package/resources/toolkits.d.mts.map +1 -1
  21. package/resources/toolkits.d.ts +13 -0
  22. package/resources/toolkits.d.ts.map +1 -1
  23. package/resources/tools.d.mts +402 -4
  24. package/resources/tools.d.mts.map +1 -1
  25. package/resources/tools.d.ts +402 -4
  26. package/resources/tools.d.ts.map +1 -1
  27. package/resources/trigger-instances/trigger-instances.d.mts +52 -5
  28. package/resources/trigger-instances/trigger-instances.d.mts.map +1 -1
  29. package/resources/trigger-instances/trigger-instances.d.ts +52 -5
  30. package/resources/trigger-instances/trigger-instances.d.ts.map +1 -1
  31. package/resources/trigger-instances/trigger-instances.js.map +1 -1
  32. package/resources/trigger-instances/trigger-instances.mjs.map +1 -1
  33. package/src/client.ts +1 -1
  34. package/src/resources/auth-configs.ts +36 -0
  35. package/src/resources/connected-accounts.ts +246 -100
  36. package/src/resources/link.ts +19 -25
  37. package/src/resources/toolkits.ts +16 -0
  38. package/src/resources/tools.ts +719 -5
  39. package/src/resources/trigger-instances/trigger-instances.ts +55 -5
  40. package/src/version.ts +1 -1
  41. package/version.d.mts +1 -1
  42. package/version.d.ts +1 -1
  43. package/version.js +1 -1
  44. package/version.mjs +1 -1
@@ -3447,11 +3447,6 @@ export namespace LinkCreateParams {
3447
3447
  */
3448
3448
  client_id: string;
3449
3449
 
3450
- /**
3451
- * Dynamically registered client secret
3452
- */
3453
- client_secret: string;
3454
-
3455
3450
  redirectUrl: string;
3456
3451
 
3457
3452
  account_id?: string;
@@ -3466,6 +3461,17 @@ export namespace LinkCreateParams {
3466
3461
 
3467
3462
  callback_url?: string;
3468
3463
 
3464
+ client_id_issued_at?: number;
3465
+
3466
+ /**
3467
+ * Dynamically registered client secret
3468
+ */
3469
+ client_secret?: string;
3470
+
3471
+ client_secret_expires_at?: number;
3472
+
3473
+ code_verifier?: string;
3474
+
3469
3475
  COMPANYDOMAIN?: string;
3470
3476
 
3471
3477
  dc?: string;
@@ -3493,16 +3499,6 @@ export namespace LinkCreateParams {
3493
3499
 
3494
3500
  region?: string;
3495
3501
 
3496
- /**
3497
- * Token for managing the registered client
3498
- */
3499
- registration_access_token?: string;
3500
-
3501
- /**
3502
- * URI for managing the registered client
3503
- */
3504
- registration_client_uri?: string;
3505
-
3506
3502
  server_location?: string;
3507
3503
 
3508
3504
  shop?: string;
@@ -3543,11 +3539,15 @@ export namespace LinkCreateParams {
3543
3539
 
3544
3540
  borneo_dashboard_url?: string;
3545
3541
 
3542
+ client_id_issued_at?: number;
3543
+
3546
3544
  /**
3547
3545
  * Dynamically registered client secret
3548
3546
  */
3549
3547
  client_secret?: string;
3550
3548
 
3549
+ client_secret_expires_at?: number;
3550
+
3551
3551
  COMPANYDOMAIN?: string;
3552
3552
 
3553
3553
  dc?: string;
@@ -3579,11 +3579,6 @@ export namespace LinkCreateParams {
3579
3579
 
3580
3580
  region?: string;
3581
3581
 
3582
- /**
3583
- * Token for managing the registered client
3584
- */
3585
- registration_access_token?: string;
3586
-
3587
3582
  scope?: string | Array<string> | null;
3588
3583
 
3589
3584
  server_location?: string;
@@ -3628,11 +3623,15 @@ export namespace LinkCreateParams {
3628
3623
 
3629
3624
  borneo_dashboard_url?: string;
3630
3625
 
3626
+ client_id_issued_at?: number;
3627
+
3631
3628
  /**
3632
3629
  * Dynamically registered client secret
3633
3630
  */
3634
3631
  client_secret?: string;
3635
3632
 
3633
+ client_secret_expires_at?: number;
3634
+
3636
3635
  COMPANYDOMAIN?: string;
3637
3636
 
3638
3637
  dc?: string;
@@ -3664,11 +3663,6 @@ export namespace LinkCreateParams {
3664
3663
 
3665
3664
  region?: string;
3666
3665
 
3667
- /**
3668
- * Token for managing the registered client
3669
- */
3670
- registration_access_token?: string;
3671
-
3672
3666
  scope?: string | Array<string> | null;
3673
3667
 
3674
3668
  server_location?: string;
@@ -200,6 +200,12 @@ export namespace ToolkitRetrieveResponse {
200
200
  */
201
201
  name: string;
202
202
 
203
+ /**
204
+ * @deprecated Authentication URL fields for OAuth 2.0 and OAuth 1.0. We don't
205
+ * recommend using this field for authentication and might break post Aug 31 2025.
206
+ */
207
+ deprecated_auth_provider_details?: AuthConfigDetail.DeprecatedAuthProviderDetails;
208
+
203
209
  /**
204
210
  * Configuration for proxying authentication requests to external services
205
211
  */
@@ -312,6 +318,16 @@ export namespace ToolkitRetrieveResponse {
312
318
  }
313
319
  }
314
320
 
321
+ /**
322
+ * @deprecated Authentication URL fields for OAuth 2.0 and OAuth 1.0. We don't
323
+ * recommend using this field for authentication and might break post Aug 31 2025.
324
+ */
325
+ export interface DeprecatedAuthProviderDetails {
326
+ authorization_url?: string;
327
+
328
+ token_url?: string;
329
+ }
330
+
315
331
  /**
316
332
  * Configuration for proxying authentication requests to external services
317
333
  */