@apteva/integrations 0.3.21 → 0.3.23

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 (79) hide show
  1. package/dist/http-executor.js +12 -5
  2. package/dist/http-executor.js.map +1 -1
  3. package/package.json +1 -1
  4. package/src/apps/airtable.json +12 -0
  5. package/src/apps/alpaca-trading.json +5 -0
  6. package/src/apps/aws-cloudfront.json +10 -0
  7. package/src/apps/aws-dynamodb.json +10 -0
  8. package/src/apps/aws-ec2.json +10 -0
  9. package/src/apps/aws-lambda.json +10 -0
  10. package/src/apps/aws-route53.json +10 -0
  11. package/src/apps/aws-s3.json +10 -0
  12. package/src/apps/aws-ses.json +10 -0
  13. package/src/apps/aws-sns.json +10 -0
  14. package/src/apps/aws-sqs.json +10 -0
  15. package/src/apps/axiom.json +5 -0
  16. package/src/apps/binance-trading.json +5 -0
  17. package/src/apps/bluesky.json +5 -0
  18. package/src/apps/blynk.json +5 -0
  19. package/src/apps/bunny-stream.json +4 -0
  20. package/src/apps/callrail.json +5 -0
  21. package/src/apps/castbase.json +5 -0
  22. package/src/apps/clipkit.json +5 -0
  23. package/src/apps/cloudflare.json +5 -0
  24. package/src/apps/convertkit.json +5 -0
  25. package/src/apps/discord.json +16 -0
  26. package/src/apps/dnsimple.json +5 -0
  27. package/src/apps/docusign.json +12 -0
  28. package/src/apps/dropbox.json +12 -0
  29. package/src/apps/dynadot.json +5 -0
  30. package/src/apps/eventbrite-events.json +8 -0
  31. package/src/apps/facebook-ads.json +8 -0
  32. package/src/apps/facebook-api.json +8 -0
  33. package/src/apps/gemini.json +5 -0
  34. package/src/apps/gigs-marketplace.json +86 -3
  35. package/src/apps/github.json +8 -0
  36. package/src/apps/gitlab.json +5 -0
  37. package/src/apps/gmail.json +12 -0
  38. package/src/apps/gohighlevel.json +5 -0
  39. package/src/apps/google-ads.json +16 -0
  40. package/src/apps/google-calendar.json +12 -0
  41. package/src/apps/google-docs.json +12 -0
  42. package/src/apps/google-drive.json +12 -0
  43. package/src/apps/google-sheets.json +12 -0
  44. package/src/apps/gravity-forms.json +4 -0
  45. package/src/apps/hubspot.json +12 -0
  46. package/src/apps/instagram-api.json +12 -0
  47. package/src/apps/jira.json +16 -0
  48. package/src/apps/linear.json +12 -0
  49. package/src/apps/linkedin.json +4 -0
  50. package/src/apps/lnk-bio.json +12 -0
  51. package/src/apps/mailchimp.json +12 -0
  52. package/src/apps/meetup-events.json +12 -0
  53. package/src/apps/microsoft-teams.json +20 -0
  54. package/src/apps/monday.json +8 -0
  55. package/src/apps/namecheap.json +10 -0
  56. package/src/apps/notion.json +12 -0
  57. package/src/apps/openai-api.json +5 -0
  58. package/src/apps/paidkit.json +5 -0
  59. package/src/apps/plaid.json +4 -0
  60. package/src/apps/polymarket.json +10 -0
  61. package/src/apps/portfolio.json +10 -0
  62. package/src/apps/printful.json +5 -0
  63. package/src/apps/producthunt.json +12 -0
  64. package/src/apps/quickbooks.json +12 -0
  65. package/src/apps/salesforce-crm.json +20 -0
  66. package/src/apps/shopify.json +8 -0
  67. package/src/apps/skai.json +8 -0
  68. package/src/apps/slack.json +12 -0
  69. package/src/apps/socialcast.json +5 -1
  70. package/src/apps/stripe-payments.json +10 -0
  71. package/src/apps/stripe.json +10 -0
  72. package/src/apps/taskflow.json +5 -0
  73. package/src/apps/thinger.json +5 -0
  74. package/src/apps/tiktok-api.json +12 -0
  75. package/src/apps/twilio.json +5 -0
  76. package/src/apps/twitter-ads.json +12 -0
  77. package/src/apps/twitter-api.json +12 -0
  78. package/src/apps/youtube-api.json +16 -0
  79. package/src/apps/zoom.json +12 -0
@@ -23,6 +23,11 @@
23
23
  "name": "api_key",
24
24
  "label": "Api Key",
25
25
  "description": "Your Gigs API key"
26
+ },
27
+ {
28
+ "name": "userId",
29
+ "label": "User Id",
30
+ "description": "Default user ID for operations (can be overridden per request)"
26
31
  }
27
32
  ]
28
33
  },
@@ -1333,7 +1338,7 @@
1333
1338
  },
1334
1339
  {
1335
1340
  "name": "create_user",
1336
- "description": "Register a new user (model) in the gigs platform. Creates a user account scoped to the modeling project.",
1341
+ "description": "Register a new user (model) in the gigs platform. Creates a user account and automatically creates a matching contact record for storing phone, notes, and other contact details.",
1337
1342
  "method": "POST",
1338
1343
  "path": "/users",
1339
1344
  "input_schema": {
@@ -1356,6 +1361,64 @@
1356
1361
  "display_name": {
1357
1362
  "type": "string",
1358
1363
  "description": "Display name shown in the platform"
1364
+ },
1365
+ "phone": {
1366
+ "type": "string",
1367
+ "description": "Phone number (stored in contact record)"
1368
+ },
1369
+ "notes": {
1370
+ "type": "string",
1371
+ "description": "Notes about this user/model (stored in contact record)"
1372
+ },
1373
+ "tags": {
1374
+ "type": "array",
1375
+ "items": {
1376
+ "type": "string"
1377
+ },
1378
+ "description": "Tags for categorization (e.g. ['model', 'hypno-reactions']). Defaults to ['gigs-user', role]"
1379
+ },
1380
+ "attributes": {
1381
+ "type": "object",
1382
+ "description": "Custom contact attributes (e.g. social media links, address, emergency contact, bio)",
1383
+ "properties": {
1384
+ "first_name": {
1385
+ "type": "string"
1386
+ },
1387
+ "last_name": {
1388
+ "type": "string"
1389
+ },
1390
+ "company": {
1391
+ "type": "string"
1392
+ },
1393
+ "address": {
1394
+ "type": "string"
1395
+ },
1396
+ "city": {
1397
+ "type": "string"
1398
+ },
1399
+ "state": {
1400
+ "type": "string"
1401
+ },
1402
+ "country": {
1403
+ "type": "string"
1404
+ },
1405
+ "bio": {
1406
+ "type": "string"
1407
+ },
1408
+ "instagram": {
1409
+ "type": "string"
1410
+ },
1411
+ "twitter": {
1412
+ "type": "string"
1413
+ },
1414
+ "tiktok": {
1415
+ "type": "string"
1416
+ },
1417
+ "website": {
1418
+ "type": "string"
1419
+ }
1420
+ },
1421
+ "additionalProperties": true
1359
1422
  }
1360
1423
  },
1361
1424
  "required": [
@@ -1366,7 +1429,7 @@
1366
1429
  },
1367
1430
  {
1368
1431
  "name": "delete_user",
1369
- "description": "Delete a user (model) from the gigs platform. Only users belonging to the modeling project can be deleted.",
1432
+ "description": "Delete a user (model) from the gigs platform and their linked contact record. Only users belonging to the modeling project can be deleted.",
1370
1433
  "method": "DELETE",
1371
1434
  "path": "/users/{user_id}",
1372
1435
  "input_schema": {
@@ -1384,7 +1447,7 @@
1384
1447
  },
1385
1448
  {
1386
1449
  "name": "update_user",
1387
- "description": "Update a user (model) profile in the gigs platform. Can change display name, username, email, role, or account status.",
1450
+ "description": "Update a user (model) profile and contact details. Changes are automatically synced to the linked contact record. Supports phone, notes, tags, and custom attributes.",
1388
1451
  "method": "PUT",
1389
1452
  "path": "/users/{user_id}",
1390
1453
  "input_schema": {
@@ -1419,6 +1482,26 @@
1419
1482
  "disabled",
1420
1483
  "pending"
1421
1484
  ]
1485
+ },
1486
+ "phone": {
1487
+ "type": "string",
1488
+ "description": "Phone number (synced to contact record)"
1489
+ },
1490
+ "notes": {
1491
+ "type": "string",
1492
+ "description": "Notes about this user/model (synced to contact record)"
1493
+ },
1494
+ "tags": {
1495
+ "type": "array",
1496
+ "items": {
1497
+ "type": "string"
1498
+ },
1499
+ "description": "Tags for categorization (synced to contact record)"
1500
+ },
1501
+ "attributes": {
1502
+ "type": "object",
1503
+ "description": "Custom contact attributes (merged with existing). Supports: first_name, last_name, company, address, city, state, country, bio, instagram, twitter, tiktok, website, and any custom fields.",
1504
+ "additionalProperties": true
1422
1505
  }
1423
1506
  },
1424
1507
  "required": [
@@ -24,6 +24,14 @@
24
24
  {
25
25
  "name": "token",
26
26
  "label": "access_token"
27
+ },
28
+ {
29
+ "name": "token_type",
30
+ "label": "token_type"
31
+ },
32
+ {
33
+ "name": "scope",
34
+ "label": "scope"
27
35
  }
28
36
  ],
29
37
  "oauth2": {
@@ -23,6 +23,11 @@
23
23
  "name": "accessToken",
24
24
  "label": "Access Token",
25
25
  "description": "Your GitLab Personal Access Token"
26
+ },
27
+ {
28
+ "name": "instanceUrl",
29
+ "label": "Instance Url",
30
+ "description": "GitLab instance URL (default: https://gitlab.com)"
26
31
  }
27
32
  ]
28
33
  },
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "refresh_token",
29
+ "label": "refresh_token"
30
+ },
31
+ {
32
+ "name": "expires_in",
33
+ "label": "expires_in"
34
+ },
35
+ {
36
+ "name": "scope",
37
+ "label": "scope"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -24,6 +24,11 @@
24
24
  "name": "accessToken",
25
25
  "label": "Access Token",
26
26
  "description": "GoHighLevel API access token (v2 API, generate from Settings > Business Profile > API Keys)"
27
+ },
28
+ {
29
+ "name": "locationId",
30
+ "label": "Location Id",
31
+ "description": "Default location/sub-account ID"
27
32
  }
28
33
  ]
29
34
  },
@@ -29,6 +29,22 @@
29
29
  {
30
30
  "name": "developer_token",
31
31
  "label": "developer_token"
32
+ },
33
+ {
34
+ "name": "manager_customer_id",
35
+ "label": "manager_customer_id"
36
+ },
37
+ {
38
+ "name": "refresh_token",
39
+ "label": "refresh_token"
40
+ },
41
+ {
42
+ "name": "expires_in",
43
+ "label": "expires_in"
44
+ },
45
+ {
46
+ "name": "token_type",
47
+ "label": "token_type"
32
48
  }
33
49
  ],
34
50
  "oauth2": {
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "refresh_token",
29
+ "label": "refresh_token"
30
+ },
31
+ {
32
+ "name": "expires_in",
33
+ "label": "expires_in"
34
+ },
35
+ {
36
+ "name": "token_type",
37
+ "label": "token_type"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -22,6 +22,18 @@
22
22
  {
23
23
  "name": "accessToken",
24
24
  "label": "accessToken"
25
+ },
26
+ {
27
+ "name": "refreshToken",
28
+ "label": "refreshToken"
29
+ },
30
+ {
31
+ "name": "expiresIn",
32
+ "label": "expiresIn"
33
+ },
34
+ {
35
+ "name": "tokenType",
36
+ "label": "tokenType"
25
37
  }
26
38
  ],
27
39
  "oauth2": {
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "accessToken",
25
25
  "label": "accessToken"
26
+ },
27
+ {
28
+ "name": "refreshToken",
29
+ "label": "refreshToken"
30
+ },
31
+ {
32
+ "name": "expiresIn",
33
+ "label": "expiresIn"
34
+ },
35
+ {
36
+ "name": "tokenType",
37
+ "label": "tokenType"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "accessToken",
25
25
  "label": "accessToken"
26
+ },
27
+ {
28
+ "name": "refreshToken",
29
+ "label": "refreshToken"
30
+ },
31
+ {
32
+ "name": "expiresIn",
33
+ "label": "expiresIn"
34
+ },
35
+ {
36
+ "name": "tokenType",
37
+ "label": "tokenType"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -22,6 +22,10 @@
22
22
  {
23
23
  "name": "token",
24
24
  "label": "API Key"
25
+ },
26
+ {
27
+ "name": "site_url",
28
+ "label": "Site_url"
25
29
  }
26
30
  ]
27
31
  },
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "refresh_token",
29
+ "label": "refresh_token"
30
+ },
31
+ {
32
+ "name": "expires_in",
33
+ "label": "expires_in"
34
+ },
35
+ {
36
+ "name": "token_type",
37
+ "label": "token_type"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "instagramAccountId",
29
+ "label": "instagramAccountId"
30
+ },
31
+ {
32
+ "name": "userId",
33
+ "label": "userId"
34
+ },
35
+ {
36
+ "name": "expiresIn",
37
+ "label": "expiresIn"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -22,6 +22,22 @@
22
22
  {
23
23
  "name": "token",
24
24
  "label": "access_token"
25
+ },
26
+ {
27
+ "name": "refresh_token",
28
+ "label": "refresh_token"
29
+ },
30
+ {
31
+ "name": "expires_in",
32
+ "label": "expires_in"
33
+ },
34
+ {
35
+ "name": "token_type",
36
+ "label": "token_type"
37
+ },
38
+ {
39
+ "name": "scope",
40
+ "label": "scope"
25
41
  }
26
42
  ],
27
43
  "oauth2": {
@@ -22,6 +22,18 @@
22
22
  {
23
23
  "name": "token",
24
24
  "label": "access_token"
25
+ },
26
+ {
27
+ "name": "token_type",
28
+ "label": "token_type"
29
+ },
30
+ {
31
+ "name": "expires_in",
32
+ "label": "expires_in"
33
+ },
34
+ {
35
+ "name": "scope",
36
+ "label": "scope"
25
37
  }
26
38
  ],
27
39
  "oauth2": {
@@ -23,6 +23,10 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "expires_in",
29
+ "label": "expires_in"
26
30
  }
27
31
  ],
28
32
  "oauth2": {
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "refresh_token",
29
+ "label": "refresh_token"
30
+ },
31
+ {
32
+ "name": "expires_in",
33
+ "label": "expires_in"
34
+ },
35
+ {
36
+ "name": "token_type",
37
+ "label": "token_type"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "expires_in",
29
+ "label": "expires_in"
30
+ },
31
+ {
32
+ "name": "scope",
33
+ "label": "scope"
34
+ },
35
+ {
36
+ "name": "metadata",
37
+ "label": "metadata"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -24,6 +24,18 @@
24
24
  {
25
25
  "name": "token",
26
26
  "label": "apiKey"
27
+ },
28
+ {
29
+ "name": "tokenType",
30
+ "label": "tokenType"
31
+ },
32
+ {
33
+ "name": "scope",
34
+ "label": "scope"
35
+ },
36
+ {
37
+ "name": "refreshToken",
38
+ "label": "refreshToken"
27
39
  }
28
40
  ],
29
41
  "oauth2": {
@@ -23,6 +23,26 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "refresh_token",
29
+ "label": "refresh_token"
30
+ },
31
+ {
32
+ "name": "expires_in",
33
+ "label": "expires_in"
34
+ },
35
+ {
36
+ "name": "token_type",
37
+ "label": "token_type"
38
+ },
39
+ {
40
+ "name": "scope",
41
+ "label": "scope"
42
+ },
43
+ {
44
+ "name": "id_token",
45
+ "label": "id_token"
26
46
  }
27
47
  ],
28
48
  "oauth2": {
@@ -21,6 +21,14 @@
21
21
  {
22
22
  "name": "token",
23
23
  "label": "access_token"
24
+ },
25
+ {
26
+ "name": "token_type",
27
+ "label": "token_type"
28
+ },
29
+ {
30
+ "name": "scope",
31
+ "label": "scope"
24
32
  }
25
33
  ],
26
34
  "oauth2": {
@@ -37,6 +37,16 @@
37
37
  "name": "clientIp",
38
38
  "label": "Client Ip",
39
39
  "description": "Your whitelisted IP address (must be whitelisted in Namecheap account)"
40
+ },
41
+ {
42
+ "name": "mode",
43
+ "label": "Mode",
44
+ "description": "API mode: live or sandbox (default: live)"
45
+ },
46
+ {
47
+ "name": "apiKey",
48
+ "label": "Api Key",
49
+ "description": "Namecheap API key (generate from Account > Profile > Tools > API Access)"
40
50
  }
41
51
  ]
42
52
  },
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "bot_id",
29
+ "label": "bot_id"
30
+ },
31
+ {
32
+ "name": "workspace_id",
33
+ "label": "workspace_id"
34
+ },
35
+ {
36
+ "name": "workspace_name",
37
+ "label": "workspace_name"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -27,6 +27,11 @@
27
27
  "name": "token",
28
28
  "label": "Api Key",
29
29
  "description": "Your OpenAI API Key (sk-...)"
30
+ },
31
+ {
32
+ "name": "organizationId",
33
+ "label": "Organization Id",
34
+ "description": "Your OpenAI Organization ID (optional)"
30
35
  }
31
36
  ]
32
37
  },
@@ -28,6 +28,11 @@
28
28
  "name": "api_key",
29
29
  "label": "Api_key",
30
30
  "description": "PaidKit API Key (from your PaidKit dashboard under API Keys)"
31
+ },
32
+ {
33
+ "name": "project_id",
34
+ "label": "Project_id",
35
+ "description": "Project ID for scoped access (auto-resolved from API key if not provided)"
31
36
  }
32
37
  ]
33
38
  },
@@ -23,6 +23,10 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "API Key"
26
+ },
27
+ {
28
+ "name": "environment",
29
+ "label": "Environment"
26
30
  }
27
31
  ]
28
32
  },
@@ -43,6 +43,16 @@
43
43
  "name": "address",
44
44
  "label": "Address",
45
45
  "description": "Polygon wallet address (0x...)"
46
+ },
47
+ {
48
+ "name": "signature_type",
49
+ "label": "Signature_type",
50
+ "description": "0 = EOA wallet (default), 1 = Polymarket proxy, 2 = Gnosis Safe"
51
+ },
52
+ {
53
+ "name": "funder_address",
54
+ "label": "Funder_address",
55
+ "description": "Address that funds trades (defaults to wallet address)"
46
56
  }
47
57
  ]
48
58
  },
@@ -30,6 +30,16 @@
30
30
  "name": "userId",
31
31
  "label": "User Id",
32
32
  "description": "Your user ID for portfolio operations"
33
+ },
34
+ {
35
+ "name": "portfolioId",
36
+ "label": "Portfolio Id",
37
+ "description": "Default portfolio ID (can be overridden per request)"
38
+ },
39
+ {
40
+ "name": "environment",
41
+ "label": "Environment",
42
+ "description": "Trading environment: 'paper' or 'live' (defaults to 'paper')"
33
43
  }
34
44
  ]
35
45
  },
@@ -22,6 +22,11 @@
22
22
  "name": "api_key",
23
23
  "label": "Api_key",
24
24
  "description": "Your Printful API access token (from Dashboard > Settings > API)"
25
+ },
26
+ {
27
+ "name": "store_id",
28
+ "label": "Store_id",
29
+ "description": "Optional store ID if you have multiple Printful stores"
25
30
  }
26
31
  ]
27
32
  },
@@ -23,6 +23,18 @@
23
23
  {
24
24
  "name": "token",
25
25
  "label": "access_token"
26
+ },
27
+ {
28
+ "name": "refresh_token",
29
+ "label": "refresh_token"
30
+ },
31
+ {
32
+ "name": "expires_in",
33
+ "label": "expires_in"
34
+ },
35
+ {
36
+ "name": "token_type",
37
+ "label": "token_type"
26
38
  }
27
39
  ],
28
40
  "oauth2": {
@@ -26,6 +26,18 @@
26
26
  {
27
27
  "name": "realmId",
28
28
  "label": "realmId"
29
+ },
30
+ {
31
+ "name": "refresh_token",
32
+ "label": "refresh_token"
33
+ },
34
+ {
35
+ "name": "expires_in",
36
+ "label": "expires_in"
37
+ },
38
+ {
39
+ "name": "token_type",
40
+ "label": "token_type"
29
41
  }
30
42
  ],
31
43
  "oauth2": {