@vm0/cli 9.177.19 → 9.178.0

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.
@@ -74083,7 +74083,7 @@ if (DSN) {
74083
74083
  init2({
74084
74084
  dsn: DSN,
74085
74085
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
74086
- release: "9.177.19",
74086
+ release: "9.178.0",
74087
74087
  sendDefaultPii: false,
74088
74088
  tracesSampleRate: 0,
74089
74089
  shutdownTimeout: 500,
@@ -74102,7 +74102,7 @@ if (DSN) {
74102
74102
  }
74103
74103
  });
74104
74104
  setContext("cli", {
74105
- version: "9.177.19",
74105
+ version: "9.178.0",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -93483,6 +93483,7 @@ var HOST_DOT_EQUIVALENTS = /* @__PURE__ */ new Set([".", "\u3002", "\uFF0E", "\u
93483
93483
  var HOST_DOT_EQUIVALENT_PATTERN = /[\u3002\uff0e\uff61]/g;
93484
93484
  var FORBIDDEN_NORMALIZED_LABEL_CHARS = new Set("#%,/:<>?@[\\]^|[]".split(""));
93485
93485
  var ALLOWED_BASE_URL_SCHEMES = /* @__PURE__ */ new Set(["http", "https"]);
93486
+ var REQUIRED_AUTH_BASE_URL_SCHEME = "https";
93486
93487
  var WHITESPACE_PATTERN = /\s/u;
93487
93488
  var UNICODE_CONTROL_PATTERN = /\p{C}/u;
93488
93489
  var UNICODE_MARK_PATTERN = /\p{M}/u;
@@ -93541,9 +93542,11 @@ function validateUrlSchemeDelimiter(value, serviceName2, label, displayValue = v
93541
93542
  const colonIndex = value.indexOf(":");
93542
93543
  if (colonIndex !== -1) {
93543
93544
  const scheme = value.slice(0, colonIndex);
93544
- if (!ALLOWED_BASE_URL_SCHEMES.has(scheme.toLowerCase())) {
93545
+ const schemeDetail = label === "auth.base URL" ? "scheme must be https" : "scheme must be http or https";
93546
+ const allowedScheme = label === "auth.base URL" ? scheme.toLowerCase() === REQUIRED_AUTH_BASE_URL_SCHEME : ALLOWED_BASE_URL_SCHEMES.has(scheme.toLowerCase());
93547
+ if (!allowedScheme) {
93545
93548
  throw new Error(
93546
- `Invalid ${label} "${displayValue}" in firewall "${serviceName2}": scheme must be http or https`
93549
+ `Invalid ${label} "${displayValue}" in firewall "${serviceName2}": ${schemeDetail}`
93547
93550
  );
93548
93551
  }
93549
93552
  throw new Error(
@@ -94197,9 +94200,9 @@ function validateAuthBaseUrl(authBase, serviceName2) {
94197
94200
  `Invalid auth.base URL "${authBase}" in firewall "${serviceName2}": not a valid URL`
94198
94201
  );
94199
94202
  }
94200
- if (!ALLOWED_BASE_URL_SCHEMES.has(url2.protocol.slice(0, -1).toLowerCase())) {
94203
+ if (url2.protocol.slice(0, -1).toLowerCase() !== REQUIRED_AUTH_BASE_URL_SCHEME) {
94201
94204
  throw new Error(
94202
- `Invalid auth.base URL "${authBase}" in firewall "${serviceName2}": scheme must be http or https`
94205
+ `Invalid auth.base URL "${authBase}" in firewall "${serviceName2}": scheme must be https`
94203
94206
  );
94204
94207
  }
94205
94208
  if (url2.hash) {
@@ -95794,6 +95797,7 @@ var orgMessageResponseSchema = external_exports.object({
95794
95797
  // ../../packages/api-contracts/src/contracts/orgs.ts
95795
95798
  var c4 = initContract();
95796
95799
  var orgTierSchema = external_exports.enum(["free", "pro-suspend", "pro", "team"]);
95800
+ var permissionGrantModeSchema = external_exports.enum(["legacy", "user-grants"]);
95797
95801
  var orgSlugSchema = external_exports.string().min(3, "Org slug must be at least 3 characters").max(64, "Org slug must be at most 64 characters").regex(
95798
95802
  /^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]{1,2}$/,
95799
95803
  "Org slug must contain only lowercase letters, numbers, and hyphens, and must start and end with an alphanumeric character"
@@ -95806,6 +95810,7 @@ var orgResponseSchema = external_exports.object({
95806
95810
  name: external_exports.string(),
95807
95811
  tier: external_exports.string().optional(),
95808
95812
  role: orgRoleSchema.optional(),
95813
+ permissionGrantMode: permissionGrantModeSchema.optional(),
95809
95814
  createdBy: external_exports.string().optional()
95810
95815
  });
95811
95816
  var updateOrgRequestSchema = external_exports.object({
@@ -97435,6 +97440,13 @@ var github = {
97435
97440
  clientIdEnv: "GH_OAUTH_CLIENT_ID",
97436
97441
  clientSecretEnv: "GH_OAUTH_CLIENT_SECRET"
97437
97442
  },
97443
+ storage: {
97444
+ secrets: ["GITHUB_ACCESS_TOKEN"],
97445
+ variables: [],
97446
+ secretRoles: {
97447
+ accessToken: "GITHUB_ACCESS_TOKEN"
97448
+ }
97449
+ },
97438
97450
  grant: {
97439
97451
  kind: "auth-code",
97440
97452
  tokenUrl: "https://github.com/login/oauth/access_token",
@@ -97473,6 +97485,14 @@ var gmail = {
97473
97485
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97474
97486
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97475
97487
  },
97488
+ storage: {
97489
+ secrets: ["GMAIL_ACCESS_TOKEN", "GMAIL_REFRESH_TOKEN"],
97490
+ variables: [],
97491
+ secretRoles: {
97492
+ accessToken: "GMAIL_ACCESS_TOKEN",
97493
+ refreshToken: "GMAIL_REFRESH_TOKEN"
97494
+ }
97495
+ },
97476
97496
  grant: {
97477
97497
  kind: "auth-code",
97478
97498
  tokenUrl: OAUTH_TOKEN_URL,
@@ -97481,8 +97501,6 @@ var gmail = {
97481
97501
  access: {
97482
97502
  kind: "refresh-token",
97483
97503
  tokenUrl: OAUTH_TOKEN_URL,
97484
- accessToken: "GMAIL_ACCESS_TOKEN",
97485
- refreshToken: "GMAIL_REFRESH_TOKEN",
97486
97504
  envBindings: {
97487
97505
  GMAIL_TOKEN: "$secrets.GMAIL_ACCESS_TOKEN"
97488
97506
  }
@@ -97513,6 +97531,14 @@ var notion = {
97513
97531
  clientIdEnv: "NOTION_OAUTH_CLIENT_ID",
97514
97532
  clientSecretEnv: "NOTION_OAUTH_CLIENT_SECRET"
97515
97533
  },
97534
+ storage: {
97535
+ secrets: ["NOTION_ACCESS_TOKEN", "NOTION_REFRESH_TOKEN"],
97536
+ variables: [],
97537
+ secretRoles: {
97538
+ accessToken: "NOTION_ACCESS_TOKEN",
97539
+ refreshToken: "NOTION_REFRESH_TOKEN"
97540
+ }
97541
+ },
97516
97542
  grant: {
97517
97543
  kind: "auth-code",
97518
97544
  tokenUrl: OAUTH_TOKEN_URL2,
@@ -97521,8 +97547,6 @@ var notion = {
97521
97547
  access: {
97522
97548
  kind: "refresh-token",
97523
97549
  tokenUrl: OAUTH_TOKEN_URL2,
97524
- accessToken: "NOTION_ACCESS_TOKEN",
97525
- refreshToken: "NOTION_REFRESH_TOKEN",
97526
97550
  envBindings: {
97527
97551
  NOTION_TOKEN: "$secrets.NOTION_ACCESS_TOKEN"
97528
97552
  }
@@ -97552,6 +97576,14 @@ var x = {
97552
97576
  clientIdEnv: "X_OAUTH_CLIENT_ID",
97553
97577
  clientSecretEnv: "X_OAUTH_CLIENT_SECRET"
97554
97578
  },
97579
+ storage: {
97580
+ secrets: ["X_ACCESS_TOKEN", "X_REFRESH_TOKEN"],
97581
+ variables: [],
97582
+ secretRoles: {
97583
+ accessToken: "X_ACCESS_TOKEN",
97584
+ refreshToken: "X_REFRESH_TOKEN"
97585
+ }
97586
+ },
97555
97587
  grant: {
97556
97588
  kind: "auth-code",
97557
97589
  tokenUrl: OAUTH_TOKEN_URL3,
@@ -97605,8 +97637,6 @@ var x = {
97605
97637
  access: {
97606
97638
  kind: "refresh-token",
97607
97639
  tokenUrl: OAUTH_TOKEN_URL3,
97608
- accessToken: "X_ACCESS_TOKEN",
97609
- refreshToken: "X_REFRESH_TOKEN",
97610
97640
  envBindings: {
97611
97641
  X_TOKEN: "$secrets.X_ACCESS_TOKEN"
97612
97642
  }
@@ -97636,6 +97666,14 @@ var googleDrive = {
97636
97666
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97637
97667
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97638
97668
  },
97669
+ storage: {
97670
+ secrets: ["GOOGLE_DRIVE_ACCESS_TOKEN", "GOOGLE_DRIVE_REFRESH_TOKEN"],
97671
+ variables: [],
97672
+ secretRoles: {
97673
+ accessToken: "GOOGLE_DRIVE_ACCESS_TOKEN",
97674
+ refreshToken: "GOOGLE_DRIVE_REFRESH_TOKEN"
97675
+ }
97676
+ },
97639
97677
  grant: {
97640
97678
  kind: "auth-code",
97641
97679
  tokenUrl: OAUTH_TOKEN_URL4,
@@ -97647,8 +97685,6 @@ var googleDrive = {
97647
97685
  access: {
97648
97686
  kind: "refresh-token",
97649
97687
  tokenUrl: OAUTH_TOKEN_URL4,
97650
- accessToken: "GOOGLE_DRIVE_ACCESS_TOKEN",
97651
- refreshToken: "GOOGLE_DRIVE_REFRESH_TOKEN",
97652
97688
  envBindings: {
97653
97689
  GOOGLE_DRIVE_TOKEN: "$secrets.GOOGLE_DRIVE_ACCESS_TOKEN"
97654
97690
  }
@@ -97678,6 +97714,13 @@ var slack = {
97678
97714
  clientIdEnv: "SLACK_OAUTH_CLIENT_ID",
97679
97715
  clientSecretEnv: "SLACK_OAUTH_CLIENT_SECRET"
97680
97716
  },
97717
+ storage: {
97718
+ secrets: ["SLACK_ACCESS_TOKEN"],
97719
+ variables: [],
97720
+ secretRoles: {
97721
+ accessToken: "SLACK_ACCESS_TOKEN"
97722
+ }
97723
+ },
97681
97724
  grant: {
97682
97725
  kind: "auth-code",
97683
97726
  tokenUrl: "https://slack.com/api/oauth.v2.access",
@@ -97748,6 +97791,18 @@ var slock = {
97748
97791
  clientRegistration: "dynamic",
97749
97792
  clientType: "public"
97750
97793
  },
97794
+ storage: {
97795
+ secrets: [
97796
+ "SLOCK_ACCESS_TOKEN",
97797
+ "SLOCK_SERVER_ID",
97798
+ "SLOCK_REFRESH_TOKEN"
97799
+ ],
97800
+ variables: [],
97801
+ secretRoles: {
97802
+ accessToken: "SLOCK_ACCESS_TOKEN",
97803
+ refreshToken: "SLOCK_REFRESH_TOKEN"
97804
+ }
97805
+ },
97751
97806
  grant: {
97752
97807
  kind: "device-auth",
97753
97808
  deviceAuthUrl: `${SLOCK_API_BASE_URL}/api/auth/device/authorize`,
@@ -97757,8 +97812,6 @@ var slock = {
97757
97812
  access: {
97758
97813
  kind: "refresh-token",
97759
97814
  tokenUrl: SLOCK_REFRESH_TOKEN_URL,
97760
- accessToken: "SLOCK_ACCESS_TOKEN",
97761
- refreshToken: "SLOCK_REFRESH_TOKEN",
97762
97815
  envBindings: {
97763
97816
  SLOCK_TOKEN: "$secrets.SLOCK_ACCESS_TOKEN",
97764
97817
  SLOCK_SERVER_ID: "$secrets.SLOCK_SERVER_ID"
@@ -97789,6 +97842,17 @@ var googleSheets = {
97789
97842
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97790
97843
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97791
97844
  },
97845
+ storage: {
97846
+ secrets: [
97847
+ "GOOGLE_SHEETS_ACCESS_TOKEN",
97848
+ "GOOGLE_SHEETS_REFRESH_TOKEN"
97849
+ ],
97850
+ variables: [],
97851
+ secretRoles: {
97852
+ accessToken: "GOOGLE_SHEETS_ACCESS_TOKEN",
97853
+ refreshToken: "GOOGLE_SHEETS_REFRESH_TOKEN"
97854
+ }
97855
+ },
97792
97856
  grant: {
97793
97857
  kind: "auth-code",
97794
97858
  tokenUrl: OAUTH_TOKEN_URL5,
@@ -97800,8 +97864,6 @@ var googleSheets = {
97800
97864
  access: {
97801
97865
  kind: "refresh-token",
97802
97866
  tokenUrl: OAUTH_TOKEN_URL5,
97803
- accessToken: "GOOGLE_SHEETS_ACCESS_TOKEN",
97804
- refreshToken: "GOOGLE_SHEETS_REFRESH_TOKEN",
97805
97867
  envBindings: {
97806
97868
  GOOGLE_SHEETS_TOKEN: "$secrets.GOOGLE_SHEETS_ACCESS_TOKEN"
97807
97869
  }
@@ -97832,6 +97894,17 @@ var googleCalendar = {
97832
97894
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97833
97895
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97834
97896
  },
97897
+ storage: {
97898
+ secrets: [
97899
+ "GOOGLE_CALENDAR_ACCESS_TOKEN",
97900
+ "GOOGLE_CALENDAR_REFRESH_TOKEN"
97901
+ ],
97902
+ variables: [],
97903
+ secretRoles: {
97904
+ accessToken: "GOOGLE_CALENDAR_ACCESS_TOKEN",
97905
+ refreshToken: "GOOGLE_CALENDAR_REFRESH_TOKEN"
97906
+ }
97907
+ },
97835
97908
  grant: {
97836
97909
  kind: "auth-code",
97837
97910
  tokenUrl: OAUTH_TOKEN_URL6,
@@ -97843,8 +97916,6 @@ var googleCalendar = {
97843
97916
  access: {
97844
97917
  kind: "refresh-token",
97845
97918
  tokenUrl: OAUTH_TOKEN_URL6,
97846
- accessToken: "GOOGLE_CALENDAR_ACCESS_TOKEN",
97847
- refreshToken: "GOOGLE_CALENDAR_REFRESH_TOKEN",
97848
97919
  envBindings: {
97849
97920
  GOOGLE_CALENDAR_TOKEN: "$secrets.GOOGLE_CALENDAR_ACCESS_TOKEN"
97850
97921
  }
@@ -97874,6 +97945,14 @@ var googleDocs = {
97874
97945
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97875
97946
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97876
97947
  },
97948
+ storage: {
97949
+ secrets: ["GOOGLE_DOCS_ACCESS_TOKEN", "GOOGLE_DOCS_REFRESH_TOKEN"],
97950
+ variables: [],
97951
+ secretRoles: {
97952
+ accessToken: "GOOGLE_DOCS_ACCESS_TOKEN",
97953
+ refreshToken: "GOOGLE_DOCS_REFRESH_TOKEN"
97954
+ }
97955
+ },
97877
97956
  grant: {
97878
97957
  kind: "auth-code",
97879
97958
  tokenUrl: OAUTH_TOKEN_URL7,
@@ -97885,8 +97964,6 @@ var googleDocs = {
97885
97964
  access: {
97886
97965
  kind: "refresh-token",
97887
97966
  tokenUrl: OAUTH_TOKEN_URL7,
97888
- accessToken: "GOOGLE_DOCS_ACCESS_TOKEN",
97889
- refreshToken: "GOOGLE_DOCS_REFRESH_TOKEN",
97890
97967
  envBindings: {
97891
97968
  GOOGLE_DOCS_TOKEN: "$secrets.GOOGLE_DOCS_ACCESS_TOKEN"
97892
97969
  }
@@ -97917,6 +97994,14 @@ var linear = {
97917
97994
  clientIdEnv: "LINEAR_OAUTH_CLIENT_ID",
97918
97995
  clientSecretEnv: "LINEAR_OAUTH_CLIENT_SECRET"
97919
97996
  },
97997
+ storage: {
97998
+ secrets: ["LINEAR_ACCESS_TOKEN", "LINEAR_REFRESH_TOKEN"],
97999
+ variables: [],
98000
+ secretRoles: {
98001
+ accessToken: "LINEAR_ACCESS_TOKEN",
98002
+ refreshToken: "LINEAR_REFRESH_TOKEN"
98003
+ }
98004
+ },
97920
98005
  grant: {
97921
98006
  kind: "auth-code",
97922
98007
  tokenUrl: OAUTH_TOKEN_URL8,
@@ -97931,8 +98016,6 @@ var linear = {
97931
98016
  access: {
97932
98017
  kind: "refresh-token",
97933
98018
  tokenUrl: OAUTH_TOKEN_URL8,
97934
- accessToken: "LINEAR_ACCESS_TOKEN",
97935
- refreshToken: "LINEAR_REFRESH_TOKEN",
97936
98019
  envBindings: {
97937
98020
  LINEAR_TOKEN: "$secrets.LINEAR_ACCESS_TOKEN"
97938
98021
  }
@@ -97961,6 +98044,13 @@ var intervalsIcu = {
97961
98044
  clientIdEnv: "INTERVALS_ICU_OAUTH_CLIENT_ID",
97962
98045
  clientSecretEnv: "INTERVALS_ICU_OAUTH_CLIENT_SECRET"
97963
98046
  },
98047
+ storage: {
98048
+ secrets: ["INTERVALS_ICU_ACCESS_TOKEN"],
98049
+ variables: [],
98050
+ secretRoles: {
98051
+ accessToken: "INTERVALS_ICU_ACCESS_TOKEN"
98052
+ }
98053
+ },
97964
98054
  grant: {
97965
98055
  kind: "auth-code",
97966
98056
  tokenUrl: "https://intervals.icu/api/oauth/token",
@@ -97996,6 +98086,13 @@ var vercel = {
97996
98086
  clientIdEnv: "VERCEL_OAUTH_CLIENT_ID",
97997
98087
  clientSecretEnv: "VERCEL_OAUTH_CLIENT_SECRET"
97998
98088
  },
98089
+ storage: {
98090
+ secrets: ["VERCEL_ACCESS_TOKEN"],
98091
+ variables: [],
98092
+ secretRoles: {
98093
+ accessToken: "VERCEL_ACCESS_TOKEN"
98094
+ }
98095
+ },
97999
98096
  grant: {
98000
98097
  kind: "auth-code",
98001
98098
  tokenUrl: "https://api.vercel.com/v2/oauth/access_token",
@@ -98032,6 +98129,14 @@ var strava = {
98032
98129
  clientIdEnv: "STRAVA_OAUTH_CLIENT_ID",
98033
98130
  clientSecretEnv: "STRAVA_OAUTH_CLIENT_SECRET"
98034
98131
  },
98132
+ storage: {
98133
+ secrets: ["STRAVA_ACCESS_TOKEN", "STRAVA_REFRESH_TOKEN"],
98134
+ variables: [],
98135
+ secretRoles: {
98136
+ accessToken: "STRAVA_ACCESS_TOKEN",
98137
+ refreshToken: "STRAVA_REFRESH_TOKEN"
98138
+ }
98139
+ },
98035
98140
  grant: {
98036
98141
  kind: "auth-code",
98037
98142
  tokenUrl: OAUTH_TOKEN_URL9,
@@ -98045,8 +98150,6 @@ var strava = {
98045
98150
  access: {
98046
98151
  kind: "refresh-token",
98047
98152
  tokenUrl: OAUTH_TOKEN_URL9,
98048
- accessToken: "STRAVA_ACCESS_TOKEN",
98049
- refreshToken: "STRAVA_REFRESH_TOKEN",
98050
98153
  envBindings: {
98051
98154
  STRAVA_TOKEN: "$secrets.STRAVA_ACCESS_TOKEN"
98052
98155
  }
@@ -98076,6 +98179,14 @@ var googleMeet = {
98076
98179
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
98077
98180
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
98078
98181
  },
98182
+ storage: {
98183
+ secrets: ["GOOGLE_MEET_ACCESS_TOKEN", "GOOGLE_MEET_REFRESH_TOKEN"],
98184
+ variables: [],
98185
+ secretRoles: {
98186
+ accessToken: "GOOGLE_MEET_ACCESS_TOKEN",
98187
+ refreshToken: "GOOGLE_MEET_REFRESH_TOKEN"
98188
+ }
98189
+ },
98079
98190
  grant: {
98080
98191
  kind: "auth-code",
98081
98192
  tokenUrl: OAUTH_TOKEN_URL10,
@@ -98092,8 +98203,6 @@ var googleMeet = {
98092
98203
  access: {
98093
98204
  kind: "refresh-token",
98094
98205
  tokenUrl: OAUTH_TOKEN_URL10,
98095
- accessToken: "GOOGLE_MEET_ACCESS_TOKEN",
98096
- refreshToken: "GOOGLE_MEET_REFRESH_TOKEN",
98097
98206
  envBindings: {
98098
98207
  GOOGLE_MEET_TOKEN: "$secrets.GOOGLE_MEET_ACCESS_TOKEN"
98099
98208
  }
@@ -98123,6 +98232,14 @@ var hubspot = {
98123
98232
  clientIdEnv: "HUBSPOT_OAUTH_CLIENT_ID",
98124
98233
  clientSecretEnv: "HUBSPOT_OAUTH_CLIENT_SECRET"
98125
98234
  },
98235
+ storage: {
98236
+ secrets: ["HUBSPOT_ACCESS_TOKEN", "HUBSPOT_REFRESH_TOKEN"],
98237
+ variables: [],
98238
+ secretRoles: {
98239
+ accessToken: "HUBSPOT_ACCESS_TOKEN",
98240
+ refreshToken: "HUBSPOT_REFRESH_TOKEN"
98241
+ }
98242
+ },
98126
98243
  grant: {
98127
98244
  kind: "auth-code",
98128
98245
  tokenUrl: OAUTH_TOKEN_URL11,
@@ -98144,8 +98261,6 @@ var hubspot = {
98144
98261
  access: {
98145
98262
  kind: "refresh-token",
98146
98263
  tokenUrl: OAUTH_TOKEN_URL11,
98147
- accessToken: "HUBSPOT_ACCESS_TOKEN",
98148
- refreshToken: "HUBSPOT_REFRESH_TOKEN",
98149
98264
  envBindings: {
98150
98265
  HUBSPOT_TOKEN: "$secrets.HUBSPOT_ACCESS_TOKEN"
98151
98266
  }
@@ -98175,6 +98290,14 @@ var sentry = {
98175
98290
  clientIdEnv: "SENTRY_OAUTH_CLIENT_ID",
98176
98291
  clientSecretEnv: "SENTRY_OAUTH_CLIENT_SECRET"
98177
98292
  },
98293
+ storage: {
98294
+ secrets: ["SENTRY_ACCESS_TOKEN", "SENTRY_REFRESH_TOKEN"],
98295
+ variables: [],
98296
+ secretRoles: {
98297
+ accessToken: "SENTRY_ACCESS_TOKEN",
98298
+ refreshToken: "SENTRY_REFRESH_TOKEN"
98299
+ }
98300
+ },
98178
98301
  grant: {
98179
98302
  kind: "auth-code",
98180
98303
  tokenUrl: OAUTH_TOKEN_URL12,
@@ -98190,8 +98313,6 @@ var sentry = {
98190
98313
  access: {
98191
98314
  kind: "refresh-token",
98192
98315
  tokenUrl: OAUTH_TOKEN_URL12,
98193
- accessToken: "SENTRY_ACCESS_TOKEN",
98194
- refreshToken: "SENTRY_REFRESH_TOKEN",
98195
98316
  envBindings: {
98196
98317
  SENTRY_TOKEN: "$secrets.SENTRY_ACCESS_TOKEN"
98197
98318
  }
@@ -98220,6 +98341,13 @@ var todoist = {
98220
98341
  clientIdEnv: "TODOIST_OAUTH_CLIENT_ID",
98221
98342
  clientSecretEnv: "TODOIST_OAUTH_CLIENT_SECRET"
98222
98343
  },
98344
+ storage: {
98345
+ secrets: ["TODOIST_ACCESS_TOKEN"],
98346
+ variables: [],
98347
+ secretRoles: {
98348
+ accessToken: "TODOIST_ACCESS_TOKEN"
98349
+ }
98350
+ },
98223
98351
  grant: {
98224
98352
  kind: "auth-code",
98225
98353
  tokenUrl: "https://todoist.com/oauth/access_token",
@@ -98256,6 +98384,14 @@ var xero = {
98256
98384
  clientIdEnv: "XERO_OAUTH_CLIENT_ID",
98257
98385
  clientSecretEnv: "XERO_OAUTH_CLIENT_SECRET"
98258
98386
  },
98387
+ storage: {
98388
+ secrets: ["XERO_ACCESS_TOKEN", "XERO_REFRESH_TOKEN"],
98389
+ variables: [],
98390
+ secretRoles: {
98391
+ accessToken: "XERO_ACCESS_TOKEN",
98392
+ refreshToken: "XERO_REFRESH_TOKEN"
98393
+ }
98394
+ },
98259
98395
  grant: {
98260
98396
  kind: "auth-code",
98261
98397
  tokenUrl: OAUTH_TOKEN_URL13,
@@ -98287,8 +98423,6 @@ var xero = {
98287
98423
  access: {
98288
98424
  kind: "refresh-token",
98289
98425
  tokenUrl: OAUTH_TOKEN_URL13,
98290
- accessToken: "XERO_ACCESS_TOKEN",
98291
- refreshToken: "XERO_REFRESH_TOKEN",
98292
98426
  envBindings: {
98293
98427
  XERO_TOKEN: "$secrets.XERO_ACCESS_TOKEN"
98294
98428
  }
@@ -98318,6 +98452,14 @@ var airtable = {
98318
98452
  clientIdEnv: "AIRTABLE_OAUTH_CLIENT_ID",
98319
98453
  clientSecretEnv: "AIRTABLE_OAUTH_CLIENT_SECRET"
98320
98454
  },
98455
+ storage: {
98456
+ secrets: ["AIRTABLE_ACCESS_TOKEN", "AIRTABLE_REFRESH_TOKEN"],
98457
+ variables: [],
98458
+ secretRoles: {
98459
+ accessToken: "AIRTABLE_ACCESS_TOKEN",
98460
+ refreshToken: "AIRTABLE_REFRESH_TOKEN"
98461
+ }
98462
+ },
98321
98463
  grant: {
98322
98464
  kind: "auth-code",
98323
98465
  tokenUrl: OAUTH_TOKEN_URL14,
@@ -98334,8 +98476,6 @@ var airtable = {
98334
98476
  access: {
98335
98477
  kind: "refresh-token",
98336
98478
  tokenUrl: OAUTH_TOKEN_URL14,
98337
- accessToken: "AIRTABLE_ACCESS_TOKEN",
98338
- refreshToken: "AIRTABLE_REFRESH_TOKEN",
98339
98479
  envBindings: {
98340
98480
  AIRTABLE_TOKEN: "$secrets.AIRTABLE_ACCESS_TOKEN"
98341
98481
  }
@@ -98371,6 +98511,14 @@ var docusign = {
98371
98511
  clientIdEnv: "DOCUSIGN_OAUTH_CLIENT_ID",
98372
98512
  clientSecretEnv: "DOCUSIGN_OAUTH_CLIENT_SECRET"
98373
98513
  },
98514
+ storage: {
98515
+ secrets: ["DOCUSIGN_ACCESS_TOKEN", "DOCUSIGN_REFRESH_TOKEN"],
98516
+ variables: [],
98517
+ secretRoles: {
98518
+ accessToken: "DOCUSIGN_ACCESS_TOKEN",
98519
+ refreshToken: "DOCUSIGN_REFRESH_TOKEN"
98520
+ }
98521
+ },
98374
98522
  grant: {
98375
98523
  kind: "auth-code",
98376
98524
  tokenUrl: OAUTH_TOKEN_URL15,
@@ -98379,8 +98527,6 @@ var docusign = {
98379
98527
  access: {
98380
98528
  kind: "refresh-token",
98381
98529
  tokenUrl: OAUTH_TOKEN_URL15,
98382
- accessToken: "DOCUSIGN_ACCESS_TOKEN",
98383
- refreshToken: "DOCUSIGN_REFRESH_TOKEN",
98384
98530
  envBindings: {
98385
98531
  DOCUSIGN_TOKEN: "$secrets.DOCUSIGN_ACCESS_TOKEN"
98386
98532
  }
@@ -98412,6 +98558,14 @@ var googleAds = {
98412
98558
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
98413
98559
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
98414
98560
  },
98561
+ storage: {
98562
+ secrets: ["GOOGLE_ADS_ACCESS_TOKEN", "GOOGLE_ADS_REFRESH_TOKEN"],
98563
+ variables: [],
98564
+ secretRoles: {
98565
+ accessToken: "GOOGLE_ADS_ACCESS_TOKEN",
98566
+ refreshToken: "GOOGLE_ADS_REFRESH_TOKEN"
98567
+ }
98568
+ },
98415
98569
  grant: {
98416
98570
  kind: "auth-code",
98417
98571
  tokenUrl: OAUTH_TOKEN_URL16,
@@ -98423,8 +98577,6 @@ var googleAds = {
98423
98577
  access: {
98424
98578
  kind: "refresh-token",
98425
98579
  tokenUrl: OAUTH_TOKEN_URL16,
98426
- accessToken: "GOOGLE_ADS_ACCESS_TOKEN",
98427
- refreshToken: "GOOGLE_ADS_REFRESH_TOKEN",
98428
98580
  platformSecrets: ["GOOGLE_ADS_DEVELOPER_TOKEN"],
98429
98581
  envBindings: {
98430
98582
  GOOGLE_ADS_TOKEN: "$secrets.GOOGLE_ADS_ACCESS_TOKEN",
@@ -98449,6 +98601,10 @@ var googleMaps = {
98449
98601
  "api-token": {
98450
98602
  label: "API Key",
98451
98603
  helpText: "1. Open [Google Cloud Console](https://console.cloud.google.com/google/maps-apis/credentials)\n2. Select or create a project and enable the Maps APIs you need (Geocoding, Places, Directions, etc.)\n3. Go to **APIs & Services \u2192 Credentials** and click **Create credentials \u2192 API key**\n4. Copy the API key (format: `AIza\u2026`) and restrict it to the APIs and referrers/IPs you trust",
98604
+ storage: {
98605
+ secrets: ["GOOGLE_MAPS_TOKEN"],
98606
+ variables: []
98607
+ },
98452
98608
  grant: {
98453
98609
  kind: "manual",
98454
98610
  fields: {
@@ -98491,6 +98647,14 @@ var gumroad = {
98491
98647
  clientIdEnv: "GUMROAD_OAUTH_CLIENT_ID",
98492
98648
  clientSecretEnv: "GUMROAD_OAUTH_CLIENT_SECRET"
98493
98649
  },
98650
+ storage: {
98651
+ secrets: ["GUMROAD_ACCESS_TOKEN", "GUMROAD_REFRESH_TOKEN"],
98652
+ variables: [],
98653
+ secretRoles: {
98654
+ accessToken: "GUMROAD_ACCESS_TOKEN",
98655
+ refreshToken: "GUMROAD_REFRESH_TOKEN"
98656
+ }
98657
+ },
98494
98658
  grant: {
98495
98659
  kind: "auth-code",
98496
98660
  tokenUrl: OAUTH_TOKEN_URL17,
@@ -98505,8 +98669,6 @@ var gumroad = {
98505
98669
  access: {
98506
98670
  kind: "refresh-token",
98507
98671
  tokenUrl: OAUTH_TOKEN_URL17,
98508
- accessToken: "GUMROAD_ACCESS_TOKEN",
98509
- refreshToken: "GUMROAD_REFRESH_TOKEN",
98510
98672
  envBindings: {
98511
98673
  GUMROAD_TOKEN: "$secrets.GUMROAD_ACCESS_TOKEN"
98512
98674
  }
@@ -98516,6 +98678,10 @@ var gumroad = {
98516
98678
  "api-token": {
98517
98679
  label: "Access Token",
98518
98680
  helpText: "1. Log in to [Gumroad](https://app.gumroad.com/settings/advanced)\n2. Scroll to the **Applications** section\n3. Click **Generate access token**\n4. Copy the token and paste it here",
98681
+ storage: {
98682
+ secrets: ["GUMROAD_TOKEN"],
98683
+ variables: []
98684
+ },
98519
98685
  grant: {
98520
98686
  kind: "manual",
98521
98687
  fields: {
@@ -98558,6 +98724,14 @@ var spotify = {
98558
98724
  clientIdEnv: "SPOTIFY_OAUTH_CLIENT_ID",
98559
98725
  clientSecretEnv: "SPOTIFY_OAUTH_CLIENT_SECRET"
98560
98726
  },
98727
+ storage: {
98728
+ secrets: ["SPOTIFY_ACCESS_TOKEN", "SPOTIFY_REFRESH_TOKEN"],
98729
+ variables: [],
98730
+ secretRoles: {
98731
+ accessToken: "SPOTIFY_ACCESS_TOKEN",
98732
+ refreshToken: "SPOTIFY_REFRESH_TOKEN"
98733
+ }
98734
+ },
98561
98735
  grant: {
98562
98736
  kind: "auth-code",
98563
98737
  tokenUrl: OAUTH_TOKEN_URL18,
@@ -98586,8 +98760,6 @@ var spotify = {
98586
98760
  access: {
98587
98761
  kind: "refresh-token",
98588
98762
  tokenUrl: OAUTH_TOKEN_URL18,
98589
- accessToken: "SPOTIFY_ACCESS_TOKEN",
98590
- refreshToken: "SPOTIFY_REFRESH_TOKEN",
98591
98763
  envBindings: {
98592
98764
  SPOTIFY_TOKEN: "$secrets.SPOTIFY_ACCESS_TOKEN"
98593
98765
  }
@@ -98610,6 +98782,10 @@ var agentmail = {
98610
98782
  "api-token": {
98611
98783
  label: "API Key",
98612
98784
  helpText: "1. Log in to [AgentMail Console](https://console.agentmail.to)\n2. Go to **API Keys**\n3. Create a new API key\n4. Copy the key",
98785
+ storage: {
98786
+ secrets: ["AGENTMAIL_TOKEN"],
98787
+ variables: []
98788
+ },
98613
98789
  grant: {
98614
98790
  kind: "manual",
98615
98791
  fields: {
@@ -98645,6 +98821,14 @@ var agora = {
98645
98821
  "api-token": {
98646
98822
  label: "REST credentials",
98647
98823
  helpText: "1. In [Agora Console](https://console.agora.io), open **Developer Toolkit > RESTful API**\n2. Click **Add a secret** to create a Customer ID and Customer Secret, then download and store the secret securely\n3. Copy your project **App ID** from Agora Console\n4. Optionally copy your **App Certificate** if you need to generate RTC or RTM tokens",
98824
+ storage: {
98825
+ secrets: [
98826
+ "AGORA_CUSTOMER_ID",
98827
+ "AGORA_CUSTOMER_SECRET",
98828
+ "AGORA_APP_CERTIFICATE"
98829
+ ],
98830
+ variables: ["AGORA_APP_ID"]
98831
+ },
98648
98832
  grant: {
98649
98833
  kind: "manual",
98650
98834
  fields: {
@@ -98706,6 +98890,14 @@ var ahrefs = {
98706
98890
  clientIdEnv: "AHREFS_OAUTH_CLIENT_ID",
98707
98891
  clientSecretEnv: "AHREFS_OAUTH_CLIENT_SECRET"
98708
98892
  },
98893
+ storage: {
98894
+ secrets: ["AHREFS_ACCESS_TOKEN", "AHREFS_REFRESH_TOKEN"],
98895
+ variables: [],
98896
+ secretRoles: {
98897
+ accessToken: "AHREFS_ACCESS_TOKEN",
98898
+ refreshToken: "AHREFS_REFRESH_TOKEN"
98899
+ }
98900
+ },
98709
98901
  grant: {
98710
98902
  kind: "auth-code",
98711
98903
  tokenUrl: OAUTH_TOKEN_URL19,
@@ -98714,8 +98906,6 @@ var ahrefs = {
98714
98906
  access: {
98715
98907
  kind: "refresh-token",
98716
98908
  tokenUrl: OAUTH_TOKEN_URL19,
98717
- accessToken: "AHREFS_ACCESS_TOKEN",
98718
- refreshToken: "AHREFS_REFRESH_TOKEN",
98719
98909
  envBindings: {
98720
98910
  AHREFS_TOKEN: "$secrets.AHREFS_ACCESS_TOKEN"
98721
98911
  }
@@ -98725,6 +98915,10 @@ var ahrefs = {
98725
98915
  "api-token": {
98726
98916
  label: "API Token",
98727
98917
  helpText: "1. Log in to [Ahrefs](https://ahrefs.com) as a workspace owner or admin\n2. Go to **Account settings > API keys**\n3. Create a new API key\n4. Copy the API key and use it in the `Authorization: Bearer <YOUR_API_KEY>` header",
98918
+ storage: {
98919
+ secrets: ["AHREFS_TOKEN"],
98920
+ variables: []
98921
+ },
98728
98922
  grant: {
98729
98923
  kind: "manual",
98730
98924
  fields: {
@@ -98760,6 +98954,10 @@ var adzuna = {
98760
98954
  "api-token": {
98761
98955
  label: "App ID and App Key",
98762
98956
  helpText: "1. Register at the [Adzuna Developer Portal](https://developer.adzuna.com)\n2. Copy your **app_id** and **app_key**\n3. Pass them as the `app_id` and `app_key` query parameters on Adzuna API requests",
98957
+ storage: {
98958
+ secrets: ["ADZUNA_APP_KEY"],
98959
+ variables: ["ADZUNA_APP_ID"]
98960
+ },
98763
98961
  grant: {
98764
98962
  kind: "manual",
98765
98963
  fields: {
@@ -98802,6 +99000,10 @@ var altium365 = {
98802
99000
  "api-token": {
98803
99001
  label: "API Key",
98804
99002
  helpText: "1. Sign in to your Altium 365 workspace (e.g. `https://<workspace>.365.altium.com`)\n2. Open **Settings \u2192 User Tokens** and click **Generate**\n3. Copy the generated token \u2014 it is shown only once and expires three months from creation\n4. Paste the token and your full workspace URL (including `https://`) below",
99003
+ storage: {
99004
+ secrets: ["ALTIUM365_TOKEN"],
99005
+ variables: ["ALTIUM365_WORKSPACE_URL"]
99006
+ },
98805
99007
  grant: {
98806
99008
  kind: "manual",
98807
99009
  fields: {
@@ -98843,6 +99045,10 @@ var alchemy = {
98843
99045
  "api-token": {
98844
99046
  label: "API Key or Access Key",
98845
99047
  helpText: "1. Log in to the [Alchemy Dashboard](https://dashboard.alchemy.com)\n2. Open **Team Overview** and go to the **Apps** tab\n3. Create or open an app and copy its **API Key**\n4. Use this key in the `Authorization: Bearer` header for supported Alchemy API requests",
99048
+ storage: {
99049
+ secrets: ["ALCHEMY_API_KEY"],
99050
+ variables: []
99051
+ },
98846
99052
  grant: {
98847
99053
  kind: "manual",
98848
99054
  fields: {
@@ -98877,6 +99083,10 @@ var amplitude = {
98877
99083
  "api-token": {
98878
99084
  label: "API Key",
98879
99085
  helpText: "1. In Amplitude, open **Organization Settings** (top right nav) \u2192 **Projects** and click the project you want to connect\n2. Copy the **API Key** from the project table (Manager role required)\n3. Click **Generate Secret Key**, name it, and copy it immediately (the secret is only shown once)\n4. Paste both values into the fields below",
99086
+ storage: {
99087
+ secrets: ["AMPLITUDE_API_KEY", "AMPLITUDE_SECRET_KEY"],
99088
+ variables: []
99089
+ },
98880
99090
  grant: {
98881
99091
  kind: "manual",
98882
99092
  fields: {
@@ -98917,6 +99127,10 @@ var amadeus = {
98917
99127
  "api-token": {
98918
99128
  label: "API Key and Secret",
98919
99129
  helpText: "1. Sign in to the [Amadeus for Developers portal](https://developers.amadeus.com/)\n2. Create or open an app in **My Self-Service Workspace**\n3. Copy the app's **API Key** and **API Secret**\n4. Use them with the client credentials grant to request an access token",
99130
+ storage: {
99131
+ secrets: ["AMADEUS_API_KEY", "AMADEUS_API_SECRET"],
99132
+ variables: []
99133
+ },
98920
99134
  grant: {
98921
99135
  kind: "manual",
98922
99136
  fields: {
@@ -98955,6 +99169,10 @@ var anthropicManagedAgents = {
98955
99169
  "api-token": {
98956
99170
  label: "API Key",
98957
99171
  helpText: "1. Sign up at [Anthropic Console](https://console.anthropic.com)\n2. Go to **API Keys** and create a new key\n3. Ensure your account has Managed Agents (beta) access\n4. Copy the API key (starts with `sk-ant-`)",
99172
+ storage: {
99173
+ secrets: ["ANTHROPIC_MANAGED_AGENTS_TOKEN"],
99174
+ variables: []
99175
+ },
98958
99176
  grant: {
98959
99177
  kind: "manual",
98960
99178
  fields: {
@@ -98989,6 +99207,10 @@ var apify = {
98989
99207
  "api-token": {
98990
99208
  label: "API Token",
98991
99209
  helpText: "1. Log in to [Apify Console](https://console.apify.com)\n2. Go to **Settings > Integrations**\n3. Copy your **Personal API token**",
99210
+ storage: {
99211
+ secrets: ["APIFY_TOKEN"],
99212
+ variables: []
99213
+ },
98992
99214
  grant: {
98993
99215
  kind: "manual",
98994
99216
  fields: {
@@ -99023,6 +99245,10 @@ var apollo = {
99023
99245
  "api-token": {
99024
99246
  label: "API Key",
99025
99247
  helpText: "1. Log in to [Apollo](https://app.apollo.io)\n2. Go to **Settings > Integrations**\n3. Click **Connect** beside Apollo API\n4. Select **API Keys > Create new key**\n5. Enter a name, select endpoint access (or toggle **Set as master key**)\n6. Copy the API key",
99248
+ storage: {
99249
+ secrets: ["APOLLO_TOKEN"],
99250
+ variables: []
99251
+ },
99026
99252
  grant: {
99027
99253
  kind: "manual",
99028
99254
  fields: {
@@ -99064,6 +99290,14 @@ var asana = {
99064
99290
  clientIdEnv: "ASANA_OAUTH_CLIENT_ID",
99065
99291
  clientSecretEnv: "ASANA_OAUTH_CLIENT_SECRET"
99066
99292
  },
99293
+ storage: {
99294
+ secrets: ["ASANA_ACCESS_TOKEN", "ASANA_REFRESH_TOKEN"],
99295
+ variables: [],
99296
+ secretRoles: {
99297
+ accessToken: "ASANA_ACCESS_TOKEN",
99298
+ refreshToken: "ASANA_REFRESH_TOKEN"
99299
+ }
99300
+ },
99067
99301
  grant: {
99068
99302
  kind: "auth-code",
99069
99303
  tokenUrl: OAUTH_TOKEN_URL20,
@@ -99072,8 +99306,6 @@ var asana = {
99072
99306
  access: {
99073
99307
  kind: "refresh-token",
99074
99308
  tokenUrl: OAUTH_TOKEN_URL20,
99075
- accessToken: "ASANA_ACCESS_TOKEN",
99076
- refreshToken: "ASANA_REFRESH_TOKEN",
99077
99309
  envBindings: {
99078
99310
  ASANA_TOKEN: "$secrets.ASANA_ACCESS_TOKEN"
99079
99311
  }
@@ -99096,6 +99328,10 @@ var atlassian = {
99096
99328
  "api-token": {
99097
99329
  label: "API Token",
99098
99330
  helpText: "1. Log in to [Atlassian](https://id.atlassian.com/manage-profile/security/api-tokens)\n2. Click **Create API token**\n3. Give it a label and click **Create**\n4. Copy the generated token",
99331
+ storage: {
99332
+ secrets: ["ATLASSIAN_TOKEN"],
99333
+ variables: ["ATLASSIAN_EMAIL", "ATLASSIAN_DOMAIN"]
99334
+ },
99099
99335
  grant: {
99100
99336
  kind: "manual",
99101
99337
  fields: {
@@ -99144,6 +99380,10 @@ var attio = {
99144
99380
  "api-token": {
99145
99381
  label: "API Key",
99146
99382
  helpText: "1. Open [Attio](https://app.attio.com) and sign in\n2. Open **Workspace settings** from the dropdown beside your workspace name\n3. Click the **Developers** tab\n4. Click **+ New access token**, give it a name, and select the scopes you need\n5. Click **Create**, then copy the token (shown once)",
99383
+ storage: {
99384
+ secrets: ["ATTIO_TOKEN"],
99385
+ variables: []
99386
+ },
99147
99387
  grant: {
99148
99388
  kind: "manual",
99149
99389
  fields: {
@@ -99180,6 +99420,10 @@ var atlascloud = {
99180
99420
  "api-token": {
99181
99421
  label: "API Key",
99182
99422
  helpText: "1. Sign in to [Atlas Cloud](https://console.atlascloud.ai)\n2. Go to **API Keys**\n3. Click **Create API Key**\n4. Copy the key and use it with `https://api.atlascloud.ai/v1` for OpenAI-compatible chat or `https://api.atlascloud.ai/api/v1` for image, video, and media APIs",
99423
+ storage: {
99424
+ secrets: ["ATLASCLOUD_API_KEY"],
99425
+ variables: []
99426
+ },
99183
99427
  grant: {
99184
99428
  kind: "manual",
99185
99429
  fields: {
@@ -99214,6 +99458,10 @@ var aviationstack = {
99214
99458
  "api-token": {
99215
99459
  label: "Access Key",
99216
99460
  helpText: "1. Sign in to the [AviationStack dashboard](https://aviationstack.com/dashboard)\n2. Copy the **API Access Key** shown on the main dashboard\n3. Pass it as the `access_key` query parameter on every request",
99461
+ storage: {
99462
+ secrets: ["AVIATIONSTACK_TOKEN"],
99463
+ variables: []
99464
+ },
99217
99465
  grant: {
99218
99466
  kind: "manual",
99219
99467
  fields: {
@@ -99247,6 +99495,10 @@ var axiom = {
99247
99495
  "api-token": {
99248
99496
  label: "API Token",
99249
99497
  helpText: "1. Log in to [Axiom](https://app.axiom.co)\n2. Go to **Settings > API Tokens**\n3. Create a new API token with the required permissions\n4. Copy the token",
99498
+ storage: {
99499
+ secrets: ["AXIOM_TOKEN"],
99500
+ variables: []
99501
+ },
99250
99502
  grant: {
99251
99503
  kind: "manual",
99252
99504
  fields: {
@@ -99287,6 +99539,14 @@ var base44 = {
99287
99539
  clientType: "public",
99288
99540
  clientId: "base44_cli"
99289
99541
  },
99542
+ storage: {
99543
+ secrets: ["BASE44_ACCESS_TOKEN", "BASE44_REFRESH_TOKEN"],
99544
+ variables: [],
99545
+ secretRoles: {
99546
+ accessToken: "BASE44_ACCESS_TOKEN",
99547
+ refreshToken: "BASE44_REFRESH_TOKEN"
99548
+ }
99549
+ },
99290
99550
  grant: {
99291
99551
  kind: "device-auth",
99292
99552
  deviceAuthUrl: "https://app.base44.com/oauth/device/code",
@@ -99296,8 +99556,6 @@ var base44 = {
99296
99556
  access: {
99297
99557
  kind: "refresh-token",
99298
99558
  tokenUrl: OAUTH_TOKEN_URL21,
99299
- accessToken: "BASE44_ACCESS_TOKEN",
99300
- refreshToken: "BASE44_REFRESH_TOKEN",
99301
99559
  envBindings: {
99302
99560
  BASE44_TOKEN: "$secrets.BASE44_ACCESS_TOKEN"
99303
99561
  }
@@ -99323,6 +99581,10 @@ var bentoml = {
99323
99581
  featureFlag: "bentomlConnector" /* BentomlConnector */,
99324
99582
  label: "BentoCloud API Token",
99325
99583
  helpText: "1. Log in to [BentoCloud](https://cloud.bentoml.com)\n2. Open your profile menu, then go to **API Tokens**\n3. Create a Personal or Organization API token with the access your workflow needs\n4. Copy the token and enter your organization endpoint, for example `https://your-org.cloud.bentoml.com`",
99584
+ storage: {
99585
+ secrets: ["BENTO_CLOUD_API_KEY"],
99586
+ variables: ["BENTO_CLOUD_API_ENDPOINT"]
99587
+ },
99326
99588
  grant: {
99327
99589
  kind: "manual",
99328
99590
  fields: {
@@ -99366,6 +99628,10 @@ var bfl = {
99366
99628
  "api-token": {
99367
99629
  label: "API Key",
99368
99630
  helpText: "1. Go to the [Black Forest Labs dashboard](https://dashboard.bfl.ai)\n2. Navigate to **API \u2192 Keys** in your project sidebar\n3. Click **Add Key** and give the key a descriptive name\n4. Copy the API key immediately \u2014 you will not be able to see the full key again",
99631
+ storage: {
99632
+ secrets: ["BFL_API_KEY"],
99633
+ variables: []
99634
+ },
99369
99635
  grant: {
99370
99636
  kind: "manual",
99371
99637
  fields: {
@@ -99400,6 +99666,10 @@ var bitrefill = {
99400
99666
  "api-token": {
99401
99667
  label: "Personal API Token",
99402
99668
  helpText: "1. Sign in to [Bitrefill](https://www.bitrefill.com)\n2. Go to **Account > Developers**\n3. Generate an API key\n4. Copy the Personal API token\n\nThis connector currently supports Bitrefill Personal API Bearer tokens. Business and Affiliate Basic auth credentials are not supported yet.",
99669
+ storage: {
99670
+ secrets: ["BITREFILL_TOKEN"],
99671
+ variables: []
99672
+ },
99403
99673
  grant: {
99404
99674
  kind: "manual",
99405
99675
  fields: {
@@ -99433,6 +99703,10 @@ var bitrix = {
99433
99703
  "api-token": {
99434
99704
  label: "Webhook URL",
99435
99705
  helpText: "1. Log in to your [Bitrix24](https://www.bitrix24.com) account\n2. Go to **Applications > Developer resources**\n3. Select the **Ready-made scenarios** tab\n4. Choose **Other > Incoming webhook**\n5. Configure the webhook name and set access permissions\n6. Click **Execute** to test the webhook\n7. Copy the generated webhook URL, which contains your secret code in the format `https://<domain>/rest/1/<secret-code>/<method>.json`",
99706
+ storage: {
99707
+ secrets: ["BITRIX_WEBHOOK_URL"],
99708
+ variables: []
99709
+ },
99436
99710
  grant: {
99437
99711
  kind: "manual",
99438
99712
  fields: {
@@ -99469,6 +99743,10 @@ var bland = {
99469
99743
  "api-token": {
99470
99744
  label: "API Key",
99471
99745
  helpText: "1. Go to the [Bland dashboard](https://app.bland.ai)\n2. Copy your API key from your account or API settings\n3. Paste the key here. You can also use the key with the Bland CLI as `BLAND_API_KEY`",
99746
+ storage: {
99747
+ secrets: ["BLAND_API_KEY"],
99748
+ variables: []
99749
+ },
99472
99750
  grant: {
99473
99751
  kind: "manual",
99474
99752
  fields: {
@@ -99503,6 +99781,10 @@ var braveSearch = {
99503
99781
  "api-token": {
99504
99782
  label: "API Key",
99505
99783
  helpText: "1. Go to the [Brave Search API dashboard](https://api-dashboard.search.brave.com/register) and sign up for an account\n2. Provide a credit card for identity verification (free plans will not be charged)\n3. After registration, your API key will be available in the dashboard\n4. Copy the API key and use it in the `X-Subscription-Token` request header",
99784
+ storage: {
99785
+ secrets: ["BRAVE_API_KEY"],
99786
+ variables: []
99787
+ },
99506
99788
  grant: {
99507
99789
  kind: "manual",
99508
99790
  fields: {
@@ -99538,6 +99820,10 @@ var brex = {
99538
99820
  "api-token": {
99539
99821
  label: "API Token",
99540
99822
  helpText: "1. In Brex, create or obtain an API user token with the permissions required for your workflow\n2. Confirm the token is intended for the production API at `https://api.brex.com`\n3. Copy the token",
99823
+ storage: {
99824
+ secrets: ["BREX_TOKEN"],
99825
+ variables: []
99826
+ },
99541
99827
  grant: {
99542
99828
  kind: "manual",
99543
99829
  fields: {
@@ -99572,6 +99858,10 @@ var brevo = {
99572
99858
  "api-token": {
99573
99859
  label: "API Key",
99574
99860
  helpText: "1. Log in to [Brevo](https://app.brevo.com)\n2. Go to **Settings** \u2192 **SMTP & API** \u2192 **API Keys**\n3. Copy your API key",
99861
+ storage: {
99862
+ secrets: ["BREVO_TOKEN"],
99863
+ variables: []
99864
+ },
99575
99865
  grant: {
99576
99866
  kind: "manual",
99577
99867
  fields: {
@@ -99606,6 +99896,10 @@ var brightData = {
99606
99896
  "api-token": {
99607
99897
  label: "API Token",
99608
99898
  helpText: "1. Log in to [Bright Data](https://brightdata.com/cp)\n2. Go to **Account settings**\n3. Click **Add API key** and configure permissions\n4. Copy the token (shown only once)",
99899
+ storage: {
99900
+ secrets: ["BRIGHTDATA_TOKEN"],
99901
+ variables: []
99902
+ },
99609
99903
  grant: {
99610
99904
  kind: "manual",
99611
99905
  fields: {
@@ -99639,6 +99933,10 @@ var browserbase = {
99639
99933
  "api-token": {
99640
99934
  label: "API Token",
99641
99935
  helpText: "1. Sign up for a [Browserbase](https://www.browserbase.com/sign-up) account\n2. Log in and navigate to the **Overview** dashboard\n3. Your **Project ID** and **API key** are displayed on the right side of the Overview page\n4. Copy the API key",
99936
+ storage: {
99937
+ secrets: ["BROWSERBASE_TOKEN"],
99938
+ variables: ["BROWSERBASE_PROJECT_ID"]
99939
+ },
99642
99940
  grant: {
99643
99941
  kind: "manual",
99644
99942
  fields: {
@@ -99679,6 +99977,10 @@ var browserless = {
99679
99977
  "api-token": {
99680
99978
  label: "API Token",
99681
99979
  helpText: "1. Sign up or log in at [Browserless](https://browserless.io/account/)\n2. Navigate to the account dashboard\n3. Copy your API token from the dashboard",
99980
+ storage: {
99981
+ secrets: ["BROWSERLESS_TOKEN"],
99982
+ variables: []
99983
+ },
99682
99984
  grant: {
99683
99985
  kind: "manual",
99684
99986
  fields: {
@@ -99713,6 +100015,10 @@ var browserstack = {
99713
100015
  "api-token": {
99714
100016
  label: "API Key",
99715
100017
  helpText: "1. Sign in to [BrowserStack](https://www.browserstack.com) and open **Account Settings**\n2. Copy your **Username** and **Access Key** from the **Authentication & Security** section\n3. Paste both values below \u2014 these credentials work across Live, Automate, App Live, and App Automate",
100018
+ storage: {
100019
+ secrets: ["BROWSERSTACK_USERNAME", "BROWSERSTACK_ACCESS_KEY"],
100020
+ variables: []
100021
+ },
99716
100022
  grant: {
99717
100023
  kind: "manual",
99718
100024
  fields: {
@@ -99753,6 +100059,10 @@ var browserUse = {
99753
100059
  "api-token": {
99754
100060
  label: "API Key",
99755
100061
  helpText: "1. Sign in at [cloud.browser-use.com](https://cloud.browser-use.com)\n2. Go to **Settings \u2192 API Keys**\n3. Click **Create new key**\n4. Copy the generated API key",
100062
+ storage: {
100063
+ secrets: ["BROWSER_USE_TOKEN"],
100064
+ variables: []
100065
+ },
99756
100066
  grant: {
99757
100067
  kind: "manual",
99758
100068
  fields: {
@@ -99787,6 +100097,10 @@ var bubblemaps = {
99787
100097
  "api-token": {
99788
100098
  label: "API Key",
99789
100099
  helpText: "1. Log in to the [Bubblemaps Pro platform](https://pro.bubblemaps.io)\n2. Get your Data API key\n3. Use this key in the `X-ApiKey` request header",
100100
+ storage: {
100101
+ secrets: ["BUBBLEMAPS_API_KEY"],
100102
+ variables: []
100103
+ },
99790
100104
  grant: {
99791
100105
  kind: "manual",
99792
100106
  fields: {
@@ -99821,6 +100135,10 @@ var buffer = {
99821
100135
  "api-token": {
99822
100136
  label: "API Key",
99823
100137
  helpText: "1. Log in to [Buffer](https://publish.buffer.com) and go to **Settings > Developer Dashboard** (you must be an **Org Owner** \u2014 paid accounts can create up to 5 keys; free accounts get 1).\n2. Click **Create API Key**, give it a name, and set an expiration if desired.\n3. Copy the key immediately \u2014 it's only shown once.\n4. Paste it here.\n\n**Note:** Buffer's API is currently in beta.",
100138
+ storage: {
100139
+ secrets: ["BUFFER_TOKEN"],
100140
+ variables: []
100141
+ },
99824
100142
  grant: {
99825
100143
  kind: "manual",
99826
100144
  fields: {
@@ -99855,6 +100173,10 @@ var builtwith = {
99855
100173
  "api-token": {
99856
100174
  label: "API Key",
99857
100175
  helpText: "1. Log in to [BuiltWith](https://api.builtwith.com)\n2. Open the **API access** page in your account\n3. Copy your **API key**\n4. Pass it as the `KEY` query parameter on every request",
100176
+ storage: {
100177
+ secrets: ["BUILTWITH_TOKEN"],
100178
+ variables: []
100179
+ },
99858
100180
  grant: {
99859
100181
  kind: "manual",
99860
100182
  fields: {
@@ -99888,6 +100210,10 @@ var calCom = {
99888
100210
  "api-token": {
99889
100211
  label: "API Token",
99890
100212
  helpText: "1. Log in to [Cal.com](https://app.cal.com)\n2. Go to **Settings** \u2192 **Developer** \u2192 **API Keys**\n3. Click **Create API Key**\n4. Copy the generated key",
100213
+ storage: {
100214
+ secrets: ["CALCOM_TOKEN"],
100215
+ variables: []
100216
+ },
99891
100217
  grant: {
99892
100218
  kind: "manual",
99893
100219
  fields: {
@@ -99922,6 +100248,10 @@ var calendly = {
99922
100248
  "api-token": {
99923
100249
  label: "Personal Access Token",
99924
100250
  helpText: "1. Log in to [Calendly](https://calendly.com)\n2. Go to **Integrations > API & Webhooks**\n3. Generate a Personal Access Token\n4. Copy the token",
100251
+ storage: {
100252
+ secrets: ["CALENDLY_TOKEN"],
100253
+ variables: []
100254
+ },
99925
100255
  grant: {
99926
100256
  kind: "manual",
99927
100257
  fields: {
@@ -99964,6 +100294,14 @@ var canva = {
99964
100294
  clientIdEnv: "CANVA_OAUTH_CLIENT_ID",
99965
100295
  clientSecretEnv: "CANVA_OAUTH_CLIENT_SECRET"
99966
100296
  },
100297
+ storage: {
100298
+ secrets: ["CANVA_ACCESS_TOKEN", "CANVA_REFRESH_TOKEN"],
100299
+ variables: [],
100300
+ secretRoles: {
100301
+ accessToken: "CANVA_ACCESS_TOKEN",
100302
+ refreshToken: "CANVA_REFRESH_TOKEN"
100303
+ }
100304
+ },
99967
100305
  grant: {
99968
100306
  kind: "auth-code",
99969
100307
  tokenUrl: OAUTH_TOKEN_URL22,
@@ -99985,8 +100323,6 @@ var canva = {
99985
100323
  access: {
99986
100324
  kind: "refresh-token",
99987
100325
  tokenUrl: OAUTH_TOKEN_URL22,
99988
- accessToken: "CANVA_ACCESS_TOKEN",
99989
- refreshToken: "CANVA_REFRESH_TOKEN",
99990
100326
  envBindings: {
99991
100327
  CANVA_TOKEN: "$secrets.CANVA_ACCESS_TOKEN"
99992
100328
  }
@@ -100009,6 +100345,10 @@ var chatwoot = {
100009
100345
  "api-token": {
100010
100346
  label: "API Access Token",
100011
100347
  helpText: "1. Log in to [Chatwoot](https://app.chatwoot.com) with an administrator account\n2. Click on your **avatar image** in the bottom left corner of the screen\n3. Select **Profile Settings** from the menu\n4. Scroll to the bottom of the Profile Settings page\n5. Copy the **Personal Access Token** displayed there",
100348
+ storage: {
100349
+ secrets: ["CHATWOOT_TOKEN"],
100350
+ variables: []
100351
+ },
100012
100352
  grant: {
100013
100353
  kind: "manual",
100014
100354
  fields: {
@@ -100050,6 +100390,10 @@ var checkr = {
100050
100390
  "api-token": {
100051
100391
  label: "API Key",
100052
100392
  helpText: "1. Log in to the [Checkr Dashboard](https://dashboard.checkr.com)\n2. Go to **Account Settings > Developer Settings**\n3. Copy a live or test API key for the account you want to connect\n4. Use only keys and actions that comply with your background check authorization and compliance process",
100393
+ storage: {
100394
+ secrets: ["CHECKR_TOKEN"],
100395
+ variables: []
100396
+ },
100053
100397
  grant: {
100054
100398
  kind: "manual",
100055
100399
  fields: {
@@ -100084,6 +100428,10 @@ var clado = {
100084
100428
  "api-token": {
100085
100429
  label: "API Key",
100086
100430
  helpText: "1. Sign in to [Clado](https://clado.ai)\n2. Open the **API keys** page in your account\n3. Click **Create Key**, name it, and copy the value\n4. Use it as a Bearer token on requests to `https://search.clado.ai`",
100431
+ storage: {
100432
+ secrets: ["CLADO_TOKEN"],
100433
+ variables: []
100434
+ },
100087
100435
  grant: {
100088
100436
  kind: "manual",
100089
100437
  fields: {
@@ -100117,6 +100465,10 @@ var clerk = {
100117
100465
  "api-token": {
100118
100466
  label: "Secret Key",
100119
100467
  helpText: "Go to Clerk Dashboard \u2192 API Keys \u2192 copy the **Secret key** (starts with `sk_test_` for development or `sk_live_` for production). The key grants full administrative access to the matching instance \u2014 vm0's firewall ships with write operations denied by default; enable `*:write` permissions per agent only when needed.",
100468
+ storage: {
100469
+ secrets: ["CLERK_TOKEN"],
100470
+ variables: []
100471
+ },
100120
100472
  grant: {
100121
100473
  kind: "manual",
100122
100474
  fields: {
@@ -100151,6 +100503,10 @@ var clearbit = {
100151
100503
  "api-token": {
100152
100504
  label: "API Key",
100153
100505
  helpText: "1. Log in to [Clearbit](https://dashboard.clearbit.com)\n2. Go to **Settings > Keys & Settings**\n3. Reveal and copy your **Secret API Key**\n\nClearbit API keys are available only for accounts created in 2023 or earlier; new 2024+ accounts may require HubSpot/Breeze Intelligence access instead.",
100506
+ storage: {
100507
+ secrets: ["CLEARBIT_TOKEN"],
100508
+ variables: []
100509
+ },
100154
100510
  grant: {
100155
100511
  kind: "manual",
100156
100512
  fields: {
@@ -100185,6 +100541,10 @@ var clickup = {
100185
100541
  "api-token": {
100186
100542
  label: "API Token",
100187
100543
  helpText: "1. Log in to [ClickUp](https://app.clickup.com)\n2. Click your avatar in the upper-right corner and select **Settings**\n3. In the sidebar, click **Apps** (or visit [app.clickup.com/settings/apps](https://app.clickup.com/settings/apps))\n4. Under the **API Token** section, click **Generate** (or **Regenerate** if you already have one)\n5. Click **Copy** to copy the personal token (tokens start with `pk_` and never expire)",
100544
+ storage: {
100545
+ secrets: ["CLICKUP_TOKEN"],
100546
+ variables: []
100547
+ },
100188
100548
  grant: {
100189
100549
  kind: "manual",
100190
100550
  fields: {
@@ -100227,6 +100587,14 @@ var close2 = {
100227
100587
  clientIdEnv: "CLOSE_OAUTH_CLIENT_ID",
100228
100588
  clientSecretEnv: "CLOSE_OAUTH_CLIENT_SECRET"
100229
100589
  },
100590
+ storage: {
100591
+ secrets: ["CLOSE_ACCESS_TOKEN", "CLOSE_REFRESH_TOKEN"],
100592
+ variables: [],
100593
+ secretRoles: {
100594
+ accessToken: "CLOSE_ACCESS_TOKEN",
100595
+ refreshToken: "CLOSE_REFRESH_TOKEN"
100596
+ }
100597
+ },
100230
100598
  grant: {
100231
100599
  kind: "auth-code",
100232
100600
  tokenUrl: OAUTH_TOKEN_URL23,
@@ -100235,8 +100603,6 @@ var close2 = {
100235
100603
  access: {
100236
100604
  kind: "refresh-token",
100237
100605
  tokenUrl: OAUTH_TOKEN_URL23,
100238
- accessToken: "CLOSE_ACCESS_TOKEN",
100239
- refreshToken: "CLOSE_REFRESH_TOKEN",
100240
100606
  envBindings: {
100241
100607
  CLOSE_TOKEN: "$secrets.CLOSE_ACCESS_TOKEN"
100242
100608
  }
@@ -100259,6 +100625,10 @@ var cloudflare = {
100259
100625
  "api-token": {
100260
100626
  label: "API Token",
100261
100627
  helpText: "1. Log in to the [Cloudflare Dashboard](https://dash.cloudflare.com)\n2. Go to **My Profile** \u2192 **API Tokens**\n3. Click **Create Token** and configure the required permissions\n4. Copy the generated token",
100628
+ storage: {
100629
+ secrets: ["CLOUDFLARE_TOKEN"],
100630
+ variables: []
100631
+ },
100262
100632
  grant: {
100263
100633
  kind: "manual",
100264
100634
  fields: {
@@ -100292,6 +100662,10 @@ var cloudinary = {
100292
100662
  "api-token": {
100293
100663
  label: "API Credentials",
100294
100664
  helpText: "1. Log in to the [Cloudinary Console](https://console.cloudinary.com/settings/api-keys)\n2. Go to **Settings** \u2192 **API Keys**\n3. Copy your **Cloud Name**, **API Key**, and **API Secret**",
100665
+ storage: {
100666
+ secrets: ["CLOUDINARY_TOKEN", "CLOUDINARY_API_SECRET"],
100667
+ variables: ["CLOUDINARY_CLOUD_NAME"]
100668
+ },
100295
100669
  grant: {
100296
100670
  kind: "manual",
100297
100671
  fields: {
@@ -100337,6 +100711,10 @@ var coda = {
100337
100711
  "api-token": {
100338
100712
  label: "API Token",
100339
100713
  helpText: "1. Open Coda and click your avatar (bottom left) then **Account Settings**\n2. Scroll to **API Settings**\n3. Click **Generate API Token**, give it a name, optionally restrict scope\n4. Copy the token and paste it here",
100714
+ storage: {
100715
+ secrets: ["CODA_TOKEN"],
100716
+ variables: []
100717
+ },
100340
100718
  grant: {
100341
100719
  kind: "manual",
100342
100720
  fields: {
@@ -100371,6 +100749,10 @@ var coingecko = {
100371
100749
  "api-token": {
100372
100750
  label: "API Key",
100373
100751
  helpText: "1. Sign up or log in to [CoinGecko](https://www.coingecko.com/en/api)\n2. Open the **Developer Dashboard**\n3. Click **Add New Key** to create a Demo or Pro API key\n4. Copy the API key",
100752
+ storage: {
100753
+ secrets: ["COINGECKO_TOKEN"],
100754
+ variables: []
100755
+ },
100374
100756
  grant: {
100375
100757
  kind: "manual",
100376
100758
  fields: {
@@ -100405,6 +100787,10 @@ var coresignal = {
100405
100787
  "api-token": {
100406
100788
  label: "API Key",
100407
100789
  helpText: "1. Log in to the [Coresignal self-service dashboard](https://dashboard.coresignal.com)\n2. Open **API Keys** from your account settings or homepage\n3. Copy an API key\n4. Use it in requests with the `apikey` header",
100790
+ storage: {
100791
+ secrets: ["CORESIGNAL_TOKEN"],
100792
+ variables: []
100793
+ },
100408
100794
  grant: {
100409
100795
  kind: "manual",
100410
100796
  fields: {
@@ -100439,6 +100825,10 @@ var cronlytic = {
100439
100825
  "api-token": {
100440
100826
  label: "API Key",
100441
100827
  helpText: "1. Log in to the [Cronlytic dashboard](https://www.cronlytic.com/dashboard)\n2. Go to the **API Keys** section\n3. Click **Generate New API Key**\n4. Copy your **API Key** and **User ID** (both are required for authentication via `X-API-Key` and `X-User-ID` headers)",
100828
+ storage: {
100829
+ secrets: ["CRONLYTIC_API_KEY"],
100830
+ variables: ["CRONLYTIC_USER_ID"]
100831
+ },
100442
100832
  grant: {
100443
100833
  kind: "manual",
100444
100834
  fields: {
@@ -100478,6 +100868,10 @@ var crustdata = {
100478
100868
  "api-token": {
100479
100869
  label: "API Key",
100480
100870
  helpText: "1. Request or open your Crustdata API key from the [Crustdata dashboard](https://crustdata.com)\n2. Copy your API key\n3. Crustdata authenticates requests with `Authorization: Bearer <key>` and requires the `x-api-version` header",
100871
+ storage: {
100872
+ secrets: ["CRUSTDATA_TOKEN"],
100873
+ variables: []
100874
+ },
100481
100875
  grant: {
100482
100876
  kind: "manual",
100483
100877
  fields: {
@@ -100511,6 +100905,10 @@ var customerIo = {
100511
100905
  "api-token": {
100512
100906
  label: "API Token",
100513
100907
  helpText: "1. Log in to your [Customer.io](https://fly.customer.io) account\n2. Go to **Account Settings > [API Credentials](https://fly.customer.io/settings/api_credentials)**\n3. Locate your **Site ID** and **API Key** on the Track API Keys page\n4. Copy both values (they are used together as basic authentication credentials in the format `site_id:api_key`, Base64-encoded)",
100908
+ storage: {
100909
+ secrets: ["CUSTOMERIO_APP_TOKEN"],
100910
+ variables: []
100911
+ },
100514
100912
  grant: {
100515
100913
  kind: "manual",
100516
100914
  fields: {
@@ -100544,6 +100942,10 @@ var db9 = {
100544
100942
  "api-token": {
100545
100943
  label: "API Key",
100546
100944
  helpText: "1. Log in to [db9](https://db9.ai)\n2. Go to **Settings > API Keys**\n3. Create a new API key\n4. Copy the 128-character hex token",
100945
+ storage: {
100946
+ secrets: ["DB9_API_KEY"],
100947
+ variables: []
100948
+ },
100547
100949
  grant: {
100548
100950
  kind: "manual",
100549
100951
  fields: {
@@ -100586,6 +100988,14 @@ var deel = {
100586
100988
  clientIdEnv: "DEEL_OAUTH_CLIENT_ID",
100587
100989
  clientSecretEnv: "DEEL_OAUTH_CLIENT_SECRET"
100588
100990
  },
100991
+ storage: {
100992
+ secrets: ["DEEL_ACCESS_TOKEN", "DEEL_REFRESH_TOKEN"],
100993
+ variables: [],
100994
+ secretRoles: {
100995
+ accessToken: "DEEL_ACCESS_TOKEN",
100996
+ refreshToken: "DEEL_REFRESH_TOKEN"
100997
+ }
100998
+ },
100589
100999
  grant: {
100590
101000
  kind: "auth-code",
100591
101001
  tokenUrl: OAUTH_TOKEN_URL24,
@@ -100603,8 +101013,6 @@ var deel = {
100603
101013
  access: {
100604
101014
  kind: "refresh-token",
100605
101015
  tokenUrl: OAUTH_TOKEN_URL24,
100606
- accessToken: "DEEL_ACCESS_TOKEN",
100607
- refreshToken: "DEEL_REFRESH_TOKEN",
100608
101016
  envBindings: {
100609
101017
  DEEL_TOKEN: "$secrets.DEEL_ACCESS_TOKEN"
100610
101018
  }
@@ -100614,6 +101022,10 @@ var deel = {
100614
101022
  "api-token": {
100615
101023
  label: "API Token",
100616
101024
  helpText: "1. Create a [Deel](https://app.deel.com) account and verify your email\n2. Navigate to the **Developer Center**\n3. Select the **API Sandbox** tab (or **Production** for live credentials)\n4. Click **Create Sandbox** and enter a unique email and password\n5. Click **Confirm** to finalize sandbox creation\n6. Locate your **API Key / Access Token** in the Developer Center\n7. Copy and store the token securely",
101025
+ storage: {
101026
+ secrets: ["DEEL_TOKEN"],
101027
+ variables: []
101028
+ },
100617
101029
  grant: {
100618
101030
  kind: "manual",
100619
101031
  fields: {
@@ -100647,6 +101059,10 @@ var defillama = {
100647
101059
  "api-token": {
100648
101060
  label: "Pro API Key",
100649
101061
  helpText: "1. Subscribe to [DefiLlama Pro API](https://defillama.com/subscription)\n2. Open the [Pro API docs](https://defillama.com/pro-api/docs)\n3. Copy your Pro API key\n\nThis connector is for the DefiLlama Pro API key. Most free DefiLlama API endpoints do not require authentication.",
101062
+ storage: {
101063
+ secrets: ["DEFILLAMA_TOKEN"],
101064
+ variables: []
101065
+ },
100650
101066
  grant: {
100651
101067
  kind: "manual",
100652
101068
  fields: {
@@ -100682,6 +101098,10 @@ var deepseek = {
100682
101098
  "api-token": {
100683
101099
  label: "API Key",
100684
101100
  helpText: "1. Go to the [DeepSeek Platform](https://platform.deepseek.com/api_keys)\n2. Sign up for an account or log in\n3. Navigate to the **API Keys** page\n4. Create a new API key and copy it",
101101
+ storage: {
101102
+ secrets: ["DEEPSEEK_TOKEN"],
101103
+ variables: []
101104
+ },
100685
101105
  grant: {
100686
101106
  kind: "manual",
100687
101107
  fields: {
@@ -100716,6 +101136,10 @@ var devto = {
100716
101136
  "api-token": {
100717
101137
  label: "API Key",
100718
101138
  helpText: "1. Log in to [DEV.to](https://dev.to)\n2. Go to **Settings > Extensions** (or visit [dev.to/settings/extensions](https://dev.to/settings/extensions))\n3. Generate a new API key from the settings page\n4. Copy the API key and use it in the `api-key` request header",
101139
+ storage: {
101140
+ secrets: ["DEVTO_TOKEN"],
101141
+ variables: []
101142
+ },
100719
101143
  grant: {
100720
101144
  kind: "manual",
100721
101145
  fields: {
@@ -100750,6 +101174,10 @@ var diffbot = {
100750
101174
  "api-token": {
100751
101175
  label: "API Token",
100752
101176
  helpText: "1. Log in to [Diffbot](https://app.diffbot.com/get-started/)\n2. Open your account dashboard\n3. Copy the **API token** shown on the dashboard\n4. Pass it as the `token` query parameter on every request",
101177
+ storage: {
101178
+ secrets: ["DIFFBOT_TOKEN"],
101179
+ variables: []
101180
+ },
100753
101181
  grant: {
100754
101182
  kind: "manual",
100755
101183
  fields: {
@@ -100784,6 +101212,10 @@ var dify = {
100784
101212
  "api-token": {
100785
101213
  label: "API Key",
100786
101214
  helpText: "1. Log in to [Dify](https://cloud.dify.ai)\n2. Open your app and navigate to **API Access** in the left sidebar\n3. Click to generate new API credentials\n4. Copy the API key",
101215
+ storage: {
101216
+ secrets: ["DIFY_TOKEN"],
101217
+ variables: []
101218
+ },
100787
101219
  grant: {
100788
101220
  kind: "manual",
100789
101221
  fields: {
@@ -100818,6 +101250,10 @@ var discord = {
100818
101250
  "api-token": {
100819
101251
  label: "Bot Token",
100820
101252
  helpText: "1. Go to the [Discord Developer Portal](https://discord.com/developers/applications)\n2. Select your application (or create a new one)\n3. Navigate to the **Bot** page in your app's settings\n4. In the **Token** section, click **Reset Token** to generate a new bot token\n5. Copy and securely store the token \u2014 you won't be able to view it again unless you regenerate it",
101253
+ storage: {
101254
+ secrets: ["DISCORD_BOT_TOKEN"],
101255
+ variables: []
101256
+ },
100821
101257
  grant: {
100822
101258
  kind: "manual",
100823
101259
  fields: {
@@ -100852,6 +101288,10 @@ var discordWebhook = {
100852
101288
  "api-token": {
100853
101289
  label: "Webhook URL",
100854
101290
  helpText: "1. Open your Discord server and navigate to **Server Settings**\n2. Select the **Integrations** tab\n3. Click the **Create Webhook** button\n4. Configure the webhook name and select the target text channel from the dropdown menu\n5. Click the **Copy Webhook URL** button to copy the webhook URL",
101291
+ storage: {
101292
+ secrets: ["DISCORD_WEBHOOK_URL"],
101293
+ variables: []
101294
+ },
100855
101295
  grant: {
100856
101296
  kind: "manual",
100857
101297
  fields: {
@@ -100886,6 +101326,10 @@ var doppler = {
100886
101326
  "api-token": {
100887
101327
  label: "Service Token",
100888
101328
  helpText: "1. Log in to [Doppler](https://dashboard.doppler.com)\n2. Go to your project, then select a config (environment)\n3. Click the **Access** tab\n4. Click **+ Generate Service Token**\n5. Set permissions to **Read** and copy the token",
101329
+ storage: {
101330
+ secrets: ["DOPPLER_TOKEN"],
101331
+ variables: []
101332
+ },
100889
101333
  grant: {
100890
101334
  kind: "manual",
100891
101335
  fields: {
@@ -100922,6 +101366,10 @@ var doubao = {
100922
101366
  "api-token": {
100923
101367
  label: "Doubao API Key",
100924
101368
  helpText: "1. Sign in to the [Volcengine new speech console](https://console.volcengine.com/speech/new)\n2. Open **\u8BBE\u7F6E \u2192 API Key \u7BA1\u7406** ([direct link](https://console.volcengine.com/speech/new/setting/apikeys))\n3. Click **\u521B\u5EFA API Key**, name it, and copy the UUID value\n4. The key authorises every endpoint under `openspeech.bytedance.com` \u2014 TTS, ASR file recognition, voice cloning",
101369
+ storage: {
101370
+ secrets: ["DOUBAO_API_KEY"],
101371
+ variables: []
101372
+ },
100925
101373
  grant: {
100926
101374
  kind: "manual",
100927
101375
  fields: {
@@ -100956,6 +101404,10 @@ var drive9 = {
100956
101404
  "api-token": {
100957
101405
  label: "API Key",
100958
101406
  helpText: "1. Log in to [drive9](https://drive9.ai)\n2. Go to **Settings > API Keys**\n3. Create a new API key\n4. Copy the key (format: `drive9_sk_...`)",
101407
+ storage: {
101408
+ secrets: ["DRIVE9_TOKEN"],
101409
+ variables: []
101410
+ },
100959
101411
  grant: {
100960
101412
  kind: "manual",
100961
101413
  fields: {
@@ -100998,6 +101450,14 @@ var dropbox = {
100998
101450
  clientIdEnv: "DROPBOX_OAUTH_CLIENT_ID",
100999
101451
  clientSecretEnv: "DROPBOX_OAUTH_CLIENT_SECRET"
101000
101452
  },
101453
+ storage: {
101454
+ secrets: ["DROPBOX_ACCESS_TOKEN", "DROPBOX_REFRESH_TOKEN"],
101455
+ variables: [],
101456
+ secretRoles: {
101457
+ accessToken: "DROPBOX_ACCESS_TOKEN",
101458
+ refreshToken: "DROPBOX_REFRESH_TOKEN"
101459
+ }
101460
+ },
101001
101461
  grant: {
101002
101462
  kind: "auth-code",
101003
101463
  tokenUrl: OAUTH_TOKEN_URL25,
@@ -101010,8 +101470,6 @@ var dropbox = {
101010
101470
  access: {
101011
101471
  kind: "refresh-token",
101012
101472
  tokenUrl: OAUTH_TOKEN_URL25,
101013
- accessToken: "DROPBOX_ACCESS_TOKEN",
101014
- refreshToken: "DROPBOX_REFRESH_TOKEN",
101015
101473
  envBindings: {
101016
101474
  DROPBOX_TOKEN: "$secrets.DROPBOX_ACCESS_TOKEN"
101017
101475
  }
@@ -101021,6 +101479,10 @@ var dropbox = {
101021
101479
  "api-token": {
101022
101480
  label: "Access Token",
101023
101481
  helpText: "1. Go to the [Dropbox App Console](https://www.dropbox.com/developers/apps)\n2. Select your app (or create a new one)\n3. Click the button to generate an access token for your own account\n4. Copy the generated OAuth 2 access token",
101482
+ storage: {
101483
+ secrets: ["DROPBOX_TOKEN"],
101484
+ variables: []
101485
+ },
101024
101486
  grant: {
101025
101487
  kind: "manual",
101026
101488
  fields: {
@@ -101056,6 +101518,10 @@ var dropboxSign = {
101056
101518
  "api-token": {
101057
101519
  label: "API Key",
101058
101520
  helpText: "1. Log in to [Dropbox Sign](https://sign.dropbox.com)\n2. Click **API** in the left sidebar and open the **API Dashboard**\n3. Click **Reveal key** for an existing key, or **Generate key** to create a new one\n4. Copy the 40-character hex key and paste it here\n\nTip: While developing, add `test_mode=1` to signature-request calls to avoid billing and real emails.",
101521
+ storage: {
101522
+ secrets: ["DROPBOX_SIGN_TOKEN"],
101523
+ variables: []
101524
+ },
101059
101525
  grant: {
101060
101526
  kind: "manual",
101061
101527
  fields: {
@@ -101090,6 +101556,10 @@ var duffel = {
101090
101556
  "api-token": {
101091
101557
  label: "Access Token",
101092
101558
  helpText: "1. Log in to the [Duffel dashboard](https://app.duffel.com)\n2. Click your organisation name, then **Developers > Access tokens**\n3. Click **New token**, give it a name, leave scope as **Read write**\n4. Click **Create token** and copy the value (format: `duffel_test_...` for test mode, `duffel_live_...` for live mode)",
101559
+ storage: {
101560
+ secrets: ["DUFFEL_TOKEN"],
101561
+ variables: []
101562
+ },
101093
101563
  grant: {
101094
101564
  kind: "manual",
101095
101565
  fields: {
@@ -101124,6 +101594,10 @@ var e2b = {
101124
101594
  "api-token": {
101125
101595
  label: "API Key",
101126
101596
  helpText: "1. Sign up at [e2b.dev](https://e2b.dev)\n2. Go to Dashboard \u2192 **API Keys**\n3. Click **Create API Key**\n4. Copy the key (starts with `e2b_`). Paste it here.",
101597
+ storage: {
101598
+ secrets: ["E2B_TOKEN"],
101599
+ variables: []
101600
+ },
101127
101601
  grant: {
101128
101602
  kind: "manual",
101129
101603
  fields: {
@@ -101159,6 +101633,10 @@ var elevenlabs = {
101159
101633
  "api-token": {
101160
101634
  label: "API Key",
101161
101635
  helpText: "1. Log in to [ElevenLabs](https://elevenlabs.io)\n2. Go to [Settings > API Keys](https://elevenlabs.io/app/settings/api-keys)\n3. Click to create a new API key\n4. Copy the key and store it securely",
101636
+ storage: {
101637
+ secrets: ["ELEVENLABS_TOKEN"],
101638
+ variables: []
101639
+ },
101162
101640
  grant: {
101163
101641
  kind: "manual",
101164
101642
  fields: {
@@ -101193,6 +101671,10 @@ var etsy = {
101193
101671
  "api-token": {
101194
101672
  label: "API Key",
101195
101673
  helpText: "1. Log in to [Etsy](https://www.etsy.com/developers/your-apps)\n2. Click **Create a New App** (or select an existing app)\n3. Copy the **Keystring** and **Shared Secret**\n4. Paste both values joined with a colon: `keystring:shared_secret`",
101674
+ storage: {
101675
+ secrets: ["ETSY_TOKEN"],
101676
+ variables: []
101677
+ },
101196
101678
  grant: {
101197
101679
  kind: "manual",
101198
101680
  fields: {
@@ -101227,6 +101709,10 @@ var etherscan = {
101227
101709
  "api-token": {
101228
101710
  label: "API Key",
101229
101711
  helpText: "1. Sign in to [Etherscan](https://etherscan.io)\n2. Open your [API Dashboard](https://etherscan.io/myapikey)\n3. Click **Add +** to create a new API key\n4. Use the key with Etherscan API V2 requests; one key works across supported chains via the `chainid` parameter",
101712
+ storage: {
101713
+ secrets: ["ETHERSCAN_API_KEY"],
101714
+ variables: []
101715
+ },
101230
101716
  grant: {
101231
101717
  kind: "manual",
101232
101718
  fields: {
@@ -101260,6 +101746,10 @@ var exa = {
101260
101746
  "api-token": {
101261
101747
  label: "API Key",
101262
101748
  helpText: "1. Sign up at [dashboard.exa.ai](https://dashboard.exa.ai)\n2. Click your account \u2192 **API Keys** \u2192 **Create API Key**\n3. Copy the key (starts with `exa_`). Free tier: 1,000 requests/month.",
101749
+ storage: {
101750
+ secrets: ["EXA_TOKEN"],
101751
+ variables: []
101752
+ },
101263
101753
  grant: {
101264
101754
  kind: "manual",
101265
101755
  fields: {
@@ -101294,6 +101784,10 @@ var explorium = {
101294
101784
  "api-token": {
101295
101785
  label: "API Key",
101296
101786
  helpText: "1. Log in to the [Explorium Admin Portal](https://admin.explorium.ai)\n2. Navigate to **Access & Authentication > Getting Your API Key**\n3. Click the **Show Key** button to reveal the masked API key\n4. Click the **Copy Key** button to copy it",
101787
+ storage: {
101788
+ secrets: ["EXPLORIUM_TOKEN"],
101789
+ variables: []
101790
+ },
101297
101791
  grant: {
101298
101792
  kind: "manual",
101299
101793
  fields: {
@@ -101336,6 +101830,10 @@ var faire = {
101336
101830
  "api-token": {
101337
101831
  label: "Access Token",
101338
101832
  helpText: "1. In the Faire portal, go to **Settings > Integrations**\n2. Generate an API key for a direct integration, or request one from Faire for a custom integration\n3. Copy the access token for the brand account you want to connect",
101833
+ storage: {
101834
+ secrets: ["FAIRE_TOKEN"],
101835
+ variables: []
101836
+ },
101339
101837
  grant: {
101340
101838
  kind: "manual",
101341
101839
  fields: {
@@ -101371,6 +101869,10 @@ var fal = {
101371
101869
  "api-token": {
101372
101870
  label: "API Key",
101373
101871
  helpText: "1. Go to the [fal Dashboard Keys page](https://fal.ai/dashboard/keys)\n2. Click the **Create Key** button\n3. Provide a name for your key and select the appropriate scope (**API** for calling models, or **ADMIN** for full access)\n4. Copy the key immediately \u2014 you will not be able to see it again",
101872
+ storage: {
101873
+ secrets: ["FAL_TOKEN"],
101874
+ variables: []
101875
+ },
101374
101876
  grant: {
101375
101877
  kind: "manual",
101376
101878
  fields: {
@@ -101413,6 +101915,14 @@ var figma = {
101413
101915
  clientIdEnv: "FIGMA_OAUTH_CLIENT_ID",
101414
101916
  clientSecretEnv: "FIGMA_OAUTH_CLIENT_SECRET"
101415
101917
  },
101918
+ storage: {
101919
+ secrets: ["FIGMA_ACCESS_TOKEN", "FIGMA_REFRESH_TOKEN"],
101920
+ variables: [],
101921
+ secretRoles: {
101922
+ accessToken: "FIGMA_ACCESS_TOKEN",
101923
+ refreshToken: "FIGMA_REFRESH_TOKEN"
101924
+ }
101925
+ },
101416
101926
  grant: {
101417
101927
  kind: "auth-code",
101418
101928
  tokenUrl: OAUTH_TOKEN_URL26,
@@ -101431,8 +101941,6 @@ var figma = {
101431
101941
  access: {
101432
101942
  kind: "refresh-token",
101433
101943
  tokenUrl: OAUTH_TOKEN_URL26,
101434
- accessToken: "FIGMA_ACCESS_TOKEN",
101435
- refreshToken: "FIGMA_REFRESH_TOKEN",
101436
101944
  envBindings: {
101437
101945
  FIGMA_TOKEN: "$secrets.FIGMA_ACCESS_TOKEN"
101438
101946
  }
@@ -101442,6 +101950,10 @@ var figma = {
101442
101950
  "api-token": {
101443
101951
  label: "Personal Access Token",
101444
101952
  helpText: "1. Log in to [Figma](https://www.figma.com) and open the file browser\n2. Click the account menu in the top-left corner and select **Settings**\n3. Select the **Security** tab\n4. Scroll to the **Personal access tokens** section and click **Generate new token**\n5. Enter a name for the token, assign the desired scopes, and press Return/Enter\n6. Copy the generated token immediately \u2014 it will not be shown again",
101953
+ storage: {
101954
+ secrets: ["FIGMA_TOKEN"],
101955
+ variables: []
101956
+ },
101445
101957
  grant: {
101446
101958
  kind: "manual",
101447
101959
  fields: {
@@ -101476,6 +101988,10 @@ var firecrawl = {
101476
101988
  "api-token": {
101477
101989
  label: "API Token",
101478
101990
  helpText: "1. Log in to [Firecrawl](https://www.firecrawl.dev)\n2. Go to your **Dashboard**\n3. Copy your **API Key**",
101991
+ storage: {
101992
+ secrets: ["FIRECRAWL_TOKEN"],
101993
+ variables: []
101994
+ },
101479
101995
  grant: {
101480
101996
  kind: "manual",
101481
101997
  fields: {
@@ -101510,6 +102026,10 @@ var fireflies = {
101510
102026
  "api-token": {
101511
102027
  label: "API Token",
101512
102028
  helpText: "1. Log in to [Fireflies](https://fireflies.ai)\n2. Navigate to the **Integrations** section\n3. Click on **Fireflies API**\n4. Copy your API key and store it securely",
102029
+ storage: {
102030
+ secrets: ["FIREFLIES_TOKEN"],
102031
+ variables: []
102032
+ },
101513
102033
  grant: {
101514
102034
  kind: "manual",
101515
102035
  fields: {
@@ -101543,6 +102063,10 @@ var flightaware = {
101543
102063
  "api-token": {
101544
102064
  label: "AeroAPI Key",
101545
102065
  helpText: "1. Sign in to the [FlightAware AeroAPI portal](https://flightaware.com/aeroapi/portal/)\n2. Open your API key settings\n3. Copy your AeroAPI key\n4. Send it in the `x-apikey` header for AeroAPI requests",
102066
+ storage: {
102067
+ secrets: ["FLIGHTAWARE_TOKEN"],
102068
+ variables: []
102069
+ },
101546
102070
  grant: {
101547
102071
  kind: "manual",
101548
102072
  fields: {
@@ -101577,6 +102101,10 @@ var freshdesk = {
101577
102101
  "api-token": {
101578
102102
  label: "API Key",
101579
102103
  helpText: "1. Log in to Freshdesk and click your profile picture (top right), then **Profile Settings**\n2. On the right pane, click **View API Key** and complete the captcha\n3. Copy the API key\n4. Enter your Freshdesk subdomain \u2014 the prefix of `https://<subdomain>.freshdesk.com`",
102104
+ storage: {
102105
+ secrets: ["FRESHDESK_TOKEN"],
102106
+ variables: ["FRESHDESK_DOMAIN"]
102107
+ },
101580
102108
  grant: {
101581
102109
  kind: "manual",
101582
102110
  fields: {
@@ -101618,6 +102146,10 @@ var gamma = {
101618
102146
  "api-token": {
101619
102147
  label: "API Key",
101620
102148
  helpText: "1. Log in to [Gamma](https://gamma.app)\n2. Go to [API Keys](https://gamma.app/settings/api-keys) (Settings > API Keys)\n3. Click **Create API key**\n4. Copy the key (it is only shown once)",
102149
+ storage: {
102150
+ secrets: ["GAMMA_TOKEN"],
102151
+ variables: []
102152
+ },
101621
102153
  grant: {
101622
102154
  kind: "manual",
101623
102155
  fields: {
@@ -101660,6 +102192,17 @@ var garminConnect = {
101660
102192
  clientIdEnv: "GARMIN_CONNECT_OAUTH_CLIENT_ID",
101661
102193
  clientSecretEnv: "GARMIN_CONNECT_OAUTH_CLIENT_SECRET"
101662
102194
  },
102195
+ storage: {
102196
+ secrets: [
102197
+ "GARMIN_CONNECT_ACCESS_TOKEN",
102198
+ "GARMIN_CONNECT_REFRESH_TOKEN"
102199
+ ],
102200
+ variables: [],
102201
+ secretRoles: {
102202
+ accessToken: "GARMIN_CONNECT_ACCESS_TOKEN",
102203
+ refreshToken: "GARMIN_CONNECT_REFRESH_TOKEN"
102204
+ }
102205
+ },
101663
102206
  grant: {
101664
102207
  kind: "auth-code",
101665
102208
  tokenUrl: OAUTH_TOKEN_URL27,
@@ -101668,8 +102211,6 @@ var garminConnect = {
101668
102211
  access: {
101669
102212
  kind: "refresh-token",
101670
102213
  tokenUrl: OAUTH_TOKEN_URL27,
101671
- accessToken: "GARMIN_CONNECT_ACCESS_TOKEN",
101672
- refreshToken: "GARMIN_CONNECT_REFRESH_TOKEN",
101673
102214
  envBindings: {
101674
102215
  GARMIN_CONNECT_TOKEN: "$secrets.GARMIN_CONNECT_ACCESS_TOKEN"
101675
102216
  }
@@ -101694,6 +102235,10 @@ var gemini = {
101694
102235
  "api-token": {
101695
102236
  label: "API Key",
101696
102237
  helpText: "1. Go to [Google AI Studio](https://aistudio.google.com/apikey)\n2. Sign in with your Google account\n3. Click **Create API key**\n4. Copy the key (starts with `AIza`) and store it in a safe location",
102238
+ storage: {
102239
+ secrets: ["GEMINI_TOKEN"],
102240
+ variables: []
102241
+ },
101697
102242
  grant: {
101698
102243
  kind: "manual",
101699
102244
  fields: {
@@ -101729,6 +102274,10 @@ var gitlab = {
101729
102274
  "api-token": {
101730
102275
  label: "Personal Access Token",
101731
102276
  helpText: "1. Log in to [GitLab](https://gitlab.com)\n2. Click your avatar in the upper-right corner and select **Edit profile**\n3. In the left sidebar, navigate to **Access > Personal access tokens**\n4. From the **Generate token** dropdown, select **Legacy token**\n5. Enter a name in the **Token name** field\n6. Optionally set an expiration date (defaults to 365 days)\n7. Select the required scopes for your token\n8. Click **Generate token**\n9. Copy and save the token \u2014 you cannot view it again after leaving the page",
102277
+ storage: {
102278
+ secrets: ["GITLAB_TOKEN"],
102279
+ variables: ["GITLAB_HOST"]
102280
+ },
101732
102281
  grant: {
101733
102282
  kind: "manual",
101734
102283
  fields: {
@@ -101770,6 +102319,10 @@ var gong = {
101770
102319
  "api-token": {
101771
102320
  label: "Access Key",
101772
102321
  helpText: "1. In Gong, go to **Company Settings \u2192 Ecosystem \u2192 API** (requires the Technical Administrator permission profile)\n2. Click **Create** to generate an Access Key and Access Key Secret\n3. Copy both values \u2014 the secret is shown only once\n4. Copy the **API Base URL** shown on the same screen (e.g. `api.gong.io`, or your region-specific host)",
102322
+ storage: {
102323
+ secrets: ["GONG_ACCESS_KEY", "GONG_ACCESS_KEY_SECRET"],
102324
+ variables: ["GONG_API_BASE"]
102325
+ },
101773
102326
  grant: {
101774
102327
  kind: "manual",
101775
102328
  fields: {
@@ -101815,6 +102368,10 @@ var granola = {
101815
102368
  "api-token": {
101816
102369
  label: "API Key",
101817
102370
  helpText: "1. Open the [Granola](https://granola.ai) desktop app\n2. Go to **Settings > API**\n3. Click the **Create new key** button\n4. Choose a key type (if prompted) and click **Generate API Key**\n5. Copy and save the API key securely",
102371
+ storage: {
102372
+ secrets: ["GRANOLA_TOKEN"],
102373
+ variables: []
102374
+ },
101818
102375
  grant: {
101819
102376
  kind: "manual",
101820
102377
  fields: {
@@ -101849,6 +102406,10 @@ var greenhouse = {
101849
102406
  "api-token": {
101850
102407
  label: "API Key",
101851
102408
  helpText: "1. In Greenhouse, click **Configure** (gear icon) \u2192 **Dev Center** (left sidebar)\n2. Click **API Credential Management** \u2192 **Create new API credentials**\n3. For **API type**, select **Harvest API** (v1/v2). For **Partner**, choose **Custom** (or **Unlisted vendor**). Description: **vm0**\n4. Select the endpoints you want this key to access (permission scoping)\n5. Click **View and store credentials** and copy the API key \u2014 it is only shown once\n6. Paste it here\n\n**Note:** Harvest v1/v2 will be deprecated on August 31, 2026; migrate to OAuth v3 before that date.",
102409
+ storage: {
102410
+ secrets: ["GREENHOUSE_TOKEN"],
102411
+ variables: []
102412
+ },
101852
102413
  grant: {
101853
102414
  kind: "manual",
101854
102415
  fields: {
@@ -101885,6 +102446,10 @@ var groq = {
101885
102446
  "api-token": {
101886
102447
  label: "API Key",
101887
102448
  helpText: "1. Sign up at [console.groq.com](https://console.groq.com)\n2. Click **API Keys** in the left sidebar\n3. Click **Create API Key**, name it, and copy it immediately \u2014 it is shown only once\n4. Paste it here. Free tier available; the key is org-bound.",
102449
+ storage: {
102450
+ secrets: ["GROQ_TOKEN"],
102451
+ variables: []
102452
+ },
101888
102453
  grant: {
101889
102454
  kind: "manual",
101890
102455
  fields: {
@@ -101919,6 +102484,10 @@ var helicone = {
101919
102484
  "api-token": {
101920
102485
  label: "API Key",
101921
102486
  helpText: "Go to helicone.ai \u2192 Settings \u2192 API Keys \u2192 create a new key.",
102487
+ storage: {
102488
+ secrets: ["HELICONE_TOKEN"],
102489
+ variables: []
102490
+ },
101922
102491
  grant: {
101923
102492
  kind: "manual",
101924
102493
  fields: {
@@ -101954,6 +102523,10 @@ var heygen = {
101954
102523
  "api-token": {
101955
102524
  label: "API Key",
101956
102525
  helpText: "1. Log in to [HeyGen](https://app.heygen.com)\n2. Navigate to **Settings > API > API token**\n3. Click to generate your API key\n4. Copy and save the key immediately \u2014 you cannot retrieve it after leaving the page, and regenerating a new key will invalidate the previous one",
102526
+ storage: {
102527
+ secrets: ["HEYGEN_TOKEN"],
102528
+ variables: []
102529
+ },
101957
102530
  grant: {
101958
102531
  kind: "manual",
101959
102532
  fields: {
@@ -101990,6 +102563,10 @@ var hitem3d = {
101990
102563
  "api-token": {
101991
102564
  label: "API Credentials",
101992
102565
  helpText: "1. Sign in to the [Hitem3D Developer Platform](https://platform.hitem3d.ai)\n2. Purchase or enable a resource package\n3. Open the API Key page and create an enabled API key\n4. Copy the client ID and client secret. Paste them here.",
102566
+ storage: {
102567
+ secrets: ["HITEM3D_CLIENT_ID", "HITEM3D_CLIENT_SECRET"],
102568
+ variables: []
102569
+ },
101993
102570
  grant: {
101994
102571
  kind: "manual",
101995
102572
  fields: {
@@ -102031,6 +102608,10 @@ var htmlcsstoimage = {
102031
102608
  "api-token": {
102032
102609
  label: "API Key",
102033
102610
  helpText: "1. Log in to [HTML/CSS to Image](https://htmlcsstoimage.com/dashboard)\n2. Go to your **Dashboard**\n3. Locate your **User ID** and **API Key** displayed on the dashboard\n4. Copy the **API Key** (used as the password in HTTP Basic authentication)",
102611
+ storage: {
102612
+ secrets: ["HCTI_API_KEY"],
102613
+ variables: ["HCTI_USER_ID"]
102614
+ },
102034
102615
  grant: {
102035
102616
  kind: "manual",
102036
102617
  fields: {
@@ -102070,6 +102651,10 @@ var honcho = {
102070
102651
  "api-token": {
102071
102652
  label: "API Key",
102072
102653
  helpText: "1. Log in to [Honcho](https://app.honcho.dev)\n2. Open **API KEYS**\n3. Create or copy an API key\n4. Honcho sends this key as `Authorization: Bearer <token>`",
102654
+ storage: {
102655
+ secrets: ["HONCHO_API_KEY"],
102656
+ variables: []
102657
+ },
102073
102658
  grant: {
102074
102659
  kind: "manual",
102075
102660
  fields: {
@@ -102105,6 +102690,10 @@ var huggingFace = {
102105
102690
  "api-token": {
102106
102691
  label: "API Token",
102107
102692
  helpText: "1. Log in to [Hugging Face](https://huggingface.co)\n2. Go to **Settings \u2192 Access Tokens**\n3. Create a new token with the required permissions\n4. Copy the token",
102693
+ storage: {
102694
+ secrets: ["HUGGING_FACE_TOKEN"],
102695
+ variables: []
102696
+ },
102108
102697
  grant: {
102109
102698
  kind: "manual",
102110
102699
  fields: {
@@ -102140,6 +102729,10 @@ var hume = {
102140
102729
  "api-token": {
102141
102730
  label: "API Key",
102142
102731
  helpText: "1. Log in to the [Hume Portal](https://app.hume.ai)\n2. Navigate to the **API Keys** page\n3. Copy your API key",
102732
+ storage: {
102733
+ secrets: ["HUME_TOKEN"],
102734
+ variables: []
102735
+ },
102143
102736
  grant: {
102144
102737
  kind: "manual",
102145
102738
  fields: {
@@ -102173,6 +102766,10 @@ var hunter = {
102173
102766
  "api-token": {
102174
102767
  label: "API Key",
102175
102768
  helpText: "1. Log in to [Hunter](https://hunter.io/api-keys)\n2. Open the **API keys** page under your account\n3. Copy your existing key or click **Generate a new key**\n4. Pass it as the `api_key` query parameter on every request",
102769
+ storage: {
102770
+ secrets: ["HUNTER_TOKEN"],
102771
+ variables: []
102772
+ },
102176
102773
  grant: {
102177
102774
  kind: "manual",
102178
102775
  fields: {
@@ -102206,6 +102803,10 @@ var imgur = {
102206
102803
  "api-token": {
102207
102804
  label: "API Token",
102208
102805
  helpText: "1. Log in to [Imgur](https://imgur.com)\n2. Go to [Register an Application](https://api.imgur.com/oauth2/addclient)\n3. Fill in the application registration form\n4. After registration, you will receive a **Client ID** and **Client Secret**\n5. Copy and save both credentials",
102806
+ storage: {
102807
+ secrets: ["IMGUR_CLIENT_ID"],
102808
+ variables: []
102809
+ },
102209
102810
  grant: {
102210
102811
  kind: "manual",
102211
102812
  fields: {
@@ -102240,6 +102841,10 @@ var infisical = {
102240
102841
  "api-token": {
102241
102842
  label: "Token Auth",
102242
102843
  helpText: "1. Log in to [Infisical](https://app.infisical.com)\n2. Go to **Access Control > Machine Identities**\n3. Create a new Machine Identity with **Token Auth**\n4. Copy the **Token**\n5. Assign the identity to your project with the desired role",
102844
+ storage: {
102845
+ secrets: ["INFISICAL_TOKEN"],
102846
+ variables: []
102847
+ },
102243
102848
  grant: {
102244
102849
  kind: "manual",
102245
102850
  fields: {
@@ -102274,6 +102879,10 @@ var instagram = {
102274
102879
  "api-token": {
102275
102880
  label: "API Token",
102276
102881
  helpText: "1. Create a Meta app of type **Business** at [Meta for Developers](https://developers.facebook.com/apps)\n2. In your app dashboard, click **Instagram > API setup with Instagram business login** in the left side menu\n3. Click **Generate token** next to the Instagram account you want to access\n4. Log into Instagram when prompted\n5. Copy the access token",
102882
+ storage: {
102883
+ secrets: ["INSTAGRAM_TOKEN"],
102884
+ variables: ["INSTAGRAM_BUSINESS_ACCOUNT_ID"]
102885
+ },
102277
102886
  grant: {
102278
102887
  kind: "manual",
102279
102888
  fields: {
@@ -102313,6 +102922,10 @@ var instantly = {
102313
102922
  "api-token": {
102314
102923
  label: "API Key",
102315
102924
  helpText: "1. Log in to [Instantly](https://app.instantly.ai)\n2. Navigate to **Settings > Integrations** at https://app.instantly.ai/app/settings/integrations\n3. Click the **API Keys** section in the left sidebar\n4. Click the **Create API Key** button\n5. Enter a name for the API key\n6. Select the scopes (permissions) you want the API key to have\n7. Click **Create**\n8. Copy the key and store it in a secure place (it will only be displayed once)",
102925
+ storage: {
102926
+ secrets: ["INSTANTLY_API_KEY"],
102927
+ variables: []
102928
+ },
102316
102929
  grant: {
102317
102930
  kind: "manual",
102318
102931
  fields: {
@@ -102347,6 +102960,10 @@ var intercom = {
102347
102960
  "api-token": {
102348
102961
  label: "Access Token",
102349
102962
  helpText: "1. Sign up at the [Intercom Developer Hub](https://app.intercom.com/admins/sign_up/developer) on your Intercom workspace\n2. Create a new app in the Developer Hub\n3. Navigate to **Configure > Authentication** within your app in the [Developer Hub](https://app.intercom.io/a/apps/_/developer-hub/app-packages)\n4. Copy your access token",
102963
+ storage: {
102964
+ secrets: ["INTERCOM_TOKEN"],
102965
+ variables: []
102966
+ },
102350
102967
  grant: {
102351
102968
  kind: "manual",
102352
102969
  fields: {
@@ -102381,6 +102998,10 @@ var ironclad = {
102381
102998
  "api-token": {
102382
102999
  label: "API Key",
102383
103000
  helpText: "1. In Ironclad, go to **Company Settings \u2192 API**\n2. Generate an API key and copy it\n3. Set the API host to match your instance's data region: `ironcladapp.com` (North America), `eu1.ironcladapp.com` (Europe), or `demo.ironcladapp.com` (demo)",
103001
+ storage: {
103002
+ secrets: ["IRONCLAD_API_KEY"],
103003
+ variables: ["IRONCLAD_HOST"]
103004
+ },
102384
103005
  grant: {
102385
103006
  kind: "manual",
102386
103007
  fields: {
@@ -102421,6 +103042,10 @@ var jam = {
102421
103042
  "api-token": {
102422
103043
  label: "Personal Access Token",
102423
103044
  helpText: '1. Log in to [Jam](https://jam.dev)\n2. Go to **Settings > Integrations > AI Agents**\n3. Scroll down to the **Personal Access Tokens** section\n4. Click **Create token**\n5. Enter a name for the token (e.g., "Cursor" or "Claude Code")\n6. Choose an expiration period (7 days, 30 days, 90 days, or 1 year)\n7. Select at least one scope (`mcp:read` for viewing or `mcp:write` for editing)\n8. Click **Create**\n9. Copy the token immediately (it will not be displayed again)',
103045
+ storage: {
103046
+ secrets: ["JAM_TOKEN"],
103047
+ variables: []
103048
+ },
102424
103049
  grant: {
102425
103050
  kind: "manual",
102426
103051
  fields: {
@@ -102456,6 +103081,10 @@ var jira = {
102456
103081
  "api-token": {
102457
103082
  label: "API Token",
102458
103083
  helpText: "1. Go to [Atlassian API token management](https://id.atlassian.com/manage-profile/security/api-tokens)\n2. Log in to your Atlassian account\n3. Click **Create API token**\n4. Enter a name that describes what the token is for\n5. Choose an expiration date (between 1 and 365 days)\n6. Click **Create**\n7. Click **Copy to clipboard** and save the token in a secure place (you cannot recover it later)",
103084
+ storage: {
103085
+ secrets: ["JIRA_API_TOKEN"],
103086
+ variables: ["JIRA_DOMAIN", "JIRA_EMAIL"]
103087
+ },
102459
103088
  grant: {
102460
103089
  kind: "manual",
102461
103090
  fields: {
@@ -102503,6 +103132,10 @@ var jotform = {
102503
103132
  "api-token": {
102504
103133
  label: "API Key",
102505
103134
  helpText: "1. Log in to your [Jotform account](https://www.jotform.com/myaccount/api)\n2. Navigate to **Settings** \u2192 **API**\n3. Click **Create New Key**\n4. Copy your **API Key**",
103135
+ storage: {
103136
+ secrets: ["JOTFORM_TOKEN"],
103137
+ variables: []
103138
+ },
102506
103139
  grant: {
102507
103140
  kind: "manual",
102508
103141
  fields: {
@@ -102536,6 +103169,10 @@ var klaviyo = {
102536
103169
  "api-token": {
102537
103170
  label: "API Key",
102538
103171
  helpText: "1. Log in to [Klaviyo](https://www.klaviyo.com/)\n2. Go to **Account > Settings > API keys**\n3. Click **Create Private API Key**\n4. Grant the scopes your workflow needs (e.g. `profiles:write`, `lists:write`, `events:write`, `subscriptions:write`)\n5. Copy the key (format: `pk_...`)",
103172
+ storage: {
103173
+ secrets: ["KLAVIYO_TOKEN"],
103174
+ variables: []
103175
+ },
102539
103176
  grant: {
102540
103177
  kind: "manual",
102541
103178
  fields: {
@@ -102570,6 +103207,10 @@ var kommo = {
102570
103207
  "api-token": {
102571
103208
  label: "API Key",
102572
103209
  helpText: "1. Log in to [Kommo](https://www.kommo.com) and create a **private integration**\n2. Go to the **Keys and Scopes** tab in your private integration settings\n3. Click **Generate long-lived token**\n4. Set the token expiration date (from 1 day to 5 years)\n5. Copy and save the token immediately (it will only be displayed once)",
103210
+ storage: {
103211
+ secrets: ["KOMMO_API_KEY"],
103212
+ variables: ["KOMMO_SUBDOMAIN"]
103213
+ },
102573
103214
  grant: {
102574
103215
  kind: "manual",
102575
103216
  fields: {
@@ -102611,6 +103252,10 @@ var langfuse = {
102611
103252
  "api-token": {
102612
103253
  label: "API Keys",
102613
103254
  helpText: "1. Sign up at [cloud.langfuse.com](https://cloud.langfuse.com)\n2. Create an organization and a project\n3. In project **Settings \u2192 API Keys**, click **Create new API keys**\n4. Copy both the **Public Key** (`pk-lf-...`) and the **Secret Key** (`sk-lf-...`) \u2014 the secret is shown only once\n5. Paste both values into the fields below",
103255
+ storage: {
103256
+ secrets: ["LANGFUSE_PUBLIC_KEY", "LANGFUSE_SECRET_KEY"],
103257
+ variables: []
103258
+ },
102614
103259
  grant: {
102615
103260
  kind: "manual",
102616
103261
  fields: {
@@ -102651,6 +103296,10 @@ var langsmith = {
102651
103296
  "api-token": {
102652
103297
  label: "API Key",
102653
103298
  helpText: "Go to [smith.langchain.com](https://smith.langchain.com) \u2192 Settings \u2192 API Keys \u2192 Create API Key.",
103299
+ storage: {
103300
+ secrets: ["LANGSMITH_TOKEN"],
103301
+ variables: []
103302
+ },
102654
103303
  grant: {
102655
103304
  kind: "manual",
102656
103305
  fields: {
@@ -102686,6 +103335,10 @@ var lark = {
102686
103335
  featureFlag: "larkConnector" /* LarkConnector */,
102687
103336
  label: "App Credentials",
102688
103337
  helpText: "1. Log in to the [Lark Developer Console](https://open.larksuite.com/app/)\n2. Select your app from the list (or create a new one)\n3. Go to the **Credentials & Basic Info** page\n4. Copy your **App ID** and **App Secret**\n5. Use these credentials to call the tenant_access_token API to obtain an access token",
103338
+ storage: {
103339
+ secrets: ["LARK_TOKEN"],
103340
+ variables: ["LARK_APP_ID"]
103341
+ },
102689
103342
  grant: {
102690
103343
  kind: "manual",
102691
103344
  fields: {
@@ -102726,6 +103379,10 @@ var line = {
102726
103379
  "api-token": {
102727
103380
  label: "Channel Access Token",
102728
103381
  helpText: "1. Log in to the [LINE Developers Console](https://developers.line.biz/console)\n2. Select your provider and channel\n3. Go to the **Messaging API** tab\n4. Issue or copy the **Channel access token (long-lived)**",
103382
+ storage: {
103383
+ secrets: ["LINE_TOKEN"],
103384
+ variables: []
103385
+ },
102729
103386
  grant: {
102730
103387
  kind: "manual",
102731
103388
  fields: {
@@ -102759,6 +103416,10 @@ var loops = {
102759
103416
  "api-token": {
102760
103417
  label: "API Key",
102761
103418
  helpText: "1. Log in to [Loops](https://app.loops.so)\n2. Go to **Settings** \u2192 **API**\n3. Click **Generate key**\n4. Copy the generated API key",
103419
+ storage: {
103420
+ secrets: ["LOOPS_TOKEN"],
103421
+ variables: []
103422
+ },
102762
103423
  grant: {
102763
103424
  kind: "manual",
102764
103425
  fields: {
@@ -102794,6 +103455,10 @@ var luma = {
102794
103455
  "api-token": {
102795
103456
  label: "API Key",
102796
103457
  helpText: "1. Log in at [lu.ma](https://lu.ma)\n2. Go to Calendars Home \u2192 select your calendar \u2192 Settings \u2192 Developer\n3. Generate or copy your API key\n4. Paste the key here",
103458
+ storage: {
103459
+ secrets: ["LUMA_API_KEY"],
103460
+ variables: []
103461
+ },
102797
103462
  grant: {
102798
103463
  kind: "manual",
102799
103464
  fields: {
@@ -102829,6 +103494,10 @@ var lumaAi = {
102829
103494
  "api-token": {
102830
103495
  label: "API Key",
102831
103496
  helpText: "1. Sign up at [lumalabs.ai](https://lumalabs.ai)\n2. Go to [lumalabs.ai/dream-machine/api](https://lumalabs.ai/dream-machine/api) or account settings \u2192 API Keys\n3. Create a new API key and copy it\n4. Paste the key here",
103497
+ storage: {
103498
+ secrets: ["LUMA_TOKEN"],
103499
+ variables: []
103500
+ },
102832
103501
  grant: {
102833
103502
  kind: "manual",
102834
103503
  fields: {
@@ -102870,6 +103539,13 @@ var mailchimp = {
102870
103539
  clientIdEnv: "MAILCHIMP_OAUTH_CLIENT_ID",
102871
103540
  clientSecretEnv: "MAILCHIMP_OAUTH_CLIENT_SECRET"
102872
103541
  },
103542
+ storage: {
103543
+ secrets: ["MAILCHIMP_ACCESS_TOKEN"],
103544
+ variables: [],
103545
+ secretRoles: {
103546
+ accessToken: "MAILCHIMP_ACCESS_TOKEN"
103547
+ }
103548
+ },
102873
103549
  grant: {
102874
103550
  kind: "auth-code",
102875
103551
  tokenUrl: "https://login.mailchimp.com/oauth2/token",
@@ -102886,6 +103562,10 @@ var mailchimp = {
102886
103562
  "api-token": {
102887
103563
  label: "API Key",
102888
103564
  helpText: "1. Log in to [Mailchimp](https://mailchimp.com)\n2. Click your **profile icon** and select **Profile**\n3. Click the **Extras** dropdown menu, then choose **API keys**\n4. In the **Your API Keys** section, click **Create A Key**\n5. Enter a descriptive name for the key\n6. Click **Generate Key**\n7. Click **Copy Key to Clipboard** and store it in a secure place (you will not be able to see or copy it again)\n8. Click **Done**",
103565
+ storage: {
103566
+ secrets: ["MAILCHIMP_TOKEN"],
103567
+ variables: []
103568
+ },
102889
103569
  grant: {
102890
103570
  kind: "manual",
102891
103571
  fields: {
@@ -102920,6 +103600,10 @@ var mailsac = {
102920
103600
  "api-token": {
102921
103601
  label: "API Key",
102922
103602
  helpText: "1. Go to [Mailsac](https://mailsac.com) and sign up for an account\n2. Log in to your Mailsac dashboard\n3. Navigate to [API Keys](https://mailsac.com/api-keys)\n4. Copy your API key from the dashboard",
103603
+ storage: {
103604
+ secrets: ["MAILSAC_TOKEN"],
103605
+ variables: []
103606
+ },
102923
103607
  grant: {
102924
103608
  kind: "manual",
102925
103609
  fields: {
@@ -102954,6 +103638,10 @@ var make = {
102954
103638
  "api-token": {
102955
103639
  label: "API Token",
102956
103640
  helpText: "1. Log in to [Make](https://www.make.com)\n2. Click your **avatar** at the bottom-left corner\n3. Select **Profile**, then open the **API** tab\n4. Click **Add token**\n5. Enter a **Label** (custom name to identify the token)\n6. Select the required **Scopes** (permissions)\n7. Click **Save**\n8. Copy the token and store it in a safe place (it will be hidden once you leave the page)",
103641
+ storage: {
103642
+ secrets: ["MAKE_TOKEN"],
103643
+ variables: []
103644
+ },
102957
103645
  grant: {
102958
103646
  kind: "manual",
102959
103647
  fields: {
@@ -102987,6 +103675,10 @@ var manus = {
102987
103675
  "api-token": {
102988
103676
  label: "API Key",
102989
103677
  helpText: "1. Sign in to [Manus](https://manus.im)\n2. Navigate to **Settings \u2192 Integration \u2192 Build with Manus API**\n3. Click **Create New**, give it a name, and confirm\n4. Copy the generated API key",
103678
+ storage: {
103679
+ secrets: ["MANUS_TOKEN"],
103680
+ variables: []
103681
+ },
102990
103682
  grant: {
102991
103683
  kind: "manual",
102992
103684
  fields: {
@@ -103021,6 +103713,10 @@ var mapbox = {
103021
103713
  "api-token": {
103022
103714
  label: "Access Token",
103023
103715
  helpText: "1. Log in to [Mapbox](https://account.mapbox.com)\n2. Open the **Access tokens** page\n3. Click **Create a token**, give it a name, and pick the scopes you need\n4. Copy the token (format: `pk.\u2026`) \u2014 pass it as the `access_token` query parameter",
103716
+ storage: {
103717
+ secrets: ["MAPBOX_TOKEN"],
103718
+ variables: []
103719
+ },
103024
103720
  grant: {
103025
103721
  kind: "manual",
103026
103722
  fields: {
@@ -103055,6 +103751,10 @@ var mathpix = {
103055
103751
  "api-token": {
103056
103752
  label: "App ID + App Key",
103057
103753
  helpText: "1. Sign in to the [Mathpix Console](https://console.mathpix.com)\n2. Open **API Keys** under your account\n3. Copy your **app_id** and create / copy an **app_key**\n4. Mathpix authenticates with both values sent as the `app_id` and `app_key` request headers",
103754
+ storage: {
103755
+ secrets: ["MATHPIX_APP_KEY"],
103756
+ variables: ["MATHPIX_APP_ID"]
103757
+ },
103058
103758
  grant: {
103059
103759
  kind: "manual",
103060
103760
  fields: {
@@ -103094,6 +103794,10 @@ var mem0 = {
103094
103794
  "api-token": {
103095
103795
  label: "API Key",
103096
103796
  helpText: "Go to [app.mem0.ai](https://app.mem0.ai) \u2192 **API Keys** \u2192 create or copy your key.",
103797
+ storage: {
103798
+ secrets: ["MEM0_TOKEN"],
103799
+ variables: []
103800
+ },
103097
103801
  grant: {
103098
103802
  kind: "manual",
103099
103803
  fields: {
@@ -103136,6 +103840,14 @@ var mercury = {
103136
103840
  clientIdEnv: "MERCURY_OAUTH_CLIENT_ID",
103137
103841
  clientSecretEnv: "MERCURY_OAUTH_CLIENT_SECRET"
103138
103842
  },
103843
+ storage: {
103844
+ secrets: ["MERCURY_ACCESS_TOKEN", "MERCURY_REFRESH_TOKEN"],
103845
+ variables: [],
103846
+ secretRoles: {
103847
+ accessToken: "MERCURY_ACCESS_TOKEN",
103848
+ refreshToken: "MERCURY_REFRESH_TOKEN"
103849
+ }
103850
+ },
103139
103851
  grant: {
103140
103852
  kind: "auth-code",
103141
103853
  tokenUrl: OAUTH_TOKEN_URL28,
@@ -103144,8 +103856,6 @@ var mercury = {
103144
103856
  access: {
103145
103857
  kind: "refresh-token",
103146
103858
  tokenUrl: OAUTH_TOKEN_URL28,
103147
- accessToken: "MERCURY_ACCESS_TOKEN",
103148
- refreshToken: "MERCURY_REFRESH_TOKEN",
103149
103859
  envBindings: {
103150
103860
  MERCURY_TOKEN: "$secrets.MERCURY_ACCESS_TOKEN"
103151
103861
  }
@@ -103155,6 +103865,10 @@ var mercury = {
103155
103865
  "api-token": {
103156
103866
  label: "API Token",
103157
103867
  helpText: "1. Log in to your [Mercury Dashboard](https://mercury.com)\n2. Go to **Settings \u2192 Tokens**\n3. Generate a new API token\n4. Copy the token",
103868
+ storage: {
103869
+ secrets: ["MERCURY_TOKEN"],
103870
+ variables: []
103871
+ },
103158
103872
  grant: {
103159
103873
  kind: "manual",
103160
103874
  fields: {
@@ -103190,6 +103904,10 @@ var meshy = {
103190
103904
  "api-token": {
103191
103905
  label: "API Key",
103192
103906
  helpText: "1. Sign in to [Meshy](https://www.meshy.ai)\n2. Open the [API settings page](https://www.meshy.ai/settings/api)\n3. Click **Create API Key**\n4. Copy the API key. You will not be able to see it again.",
103907
+ storage: {
103908
+ secrets: ["MESHY_API_KEY"],
103909
+ variables: []
103910
+ },
103193
103911
  grant: {
103194
103912
  kind: "manual",
103195
103913
  fields: {
@@ -103231,6 +103949,13 @@ var metaAds = {
103231
103949
  clientIdEnv: "META_ADS_OAUTH_CLIENT_ID",
103232
103950
  clientSecretEnv: "META_ADS_OAUTH_CLIENT_SECRET"
103233
103951
  },
103952
+ storage: {
103953
+ secrets: ["META_ADS_ACCESS_TOKEN"],
103954
+ variables: [],
103955
+ secretRoles: {
103956
+ accessToken: "META_ADS_ACCESS_TOKEN"
103957
+ }
103958
+ },
103234
103959
  grant: {
103235
103960
  kind: "auth-code",
103236
103961
  tokenUrl: "https://graph.facebook.com/v22.0/oauth/access_token",
@@ -103260,6 +103985,10 @@ var metabase = {
103260
103985
  "api-token": {
103261
103986
  label: "API Key",
103262
103987
  helpText: "1. Log in to your Metabase instance as an admin\n2. Go to **Admin** \u2192 **Settings** \u2192 **Authentication** \u2192 **API Keys**\n3. Click **Create API Key**\n4. Enter a name and select a group for the key\n5. Copy the generated API key",
103988
+ storage: {
103989
+ secrets: ["METABASE_TOKEN"],
103990
+ variables: ["METABASE_BASE_URL"]
103991
+ },
103263
103992
  grant: {
103264
103993
  kind: "manual",
103265
103994
  fields: {
@@ -103301,6 +104030,10 @@ var minimax = {
103301
104030
  "api-token": {
103302
104031
  label: "API Key",
103303
104032
  helpText: "1. Log in to [MiniMax Platform](https://platform.minimax.io)\n2. Go to **User Center > Basic Information > Interface Key**\n3. Create a new API key\n4. Copy the key",
104033
+ storage: {
104034
+ secrets: ["MINIMAX_TOKEN"],
104035
+ variables: []
104036
+ },
103304
104037
  grant: {
103305
104038
  kind: "manual",
103306
104039
  fields: {
@@ -103335,6 +104068,10 @@ var minio = {
103335
104068
  "api-token": {
103336
104069
  label: "Access Credentials",
103337
104070
  helpText: "1. Log in to the MinIO Console\n2. Navigate to the **Access Keys** section under Security and Access\n3. Click **Create Access Key**\n4. The system automatically generates an access key and secret key\n5. Optionally override the auto-generated values or toggle **Restrict beyond user policy** to limit permissions\n6. Save the secret key in a secure location (you cannot retrieve or reset it after creation)\n7. Click **Create** to finalize",
104071
+ storage: {
104072
+ secrets: ["MINIO_TOKEN", "MINIO_SECRET_TOKEN"],
104073
+ variables: ["MINIO_ENDPOINT"]
104074
+ },
103338
104075
  grant: {
103339
104076
  kind: "manual",
103340
104077
  fields: {
@@ -103382,6 +104119,10 @@ var miro = {
103382
104119
  "api-token": {
103383
104120
  label: "Access Token",
103384
104121
  helpText: "1. Go to [Miro App Settings](https://miro.com/app/settings/user-profile/apps) and click **Create new app**\n2. Fill in the app name and description\n3. **Important:** when asked about token expiration, select **Non-expiring access token** \u2014 this choice is permanent for the app\n4. On the app's page, open **Permissions** and check the scopes you need (e.g. `boards:read`, `boards:write`)\n5. Click **Install app and get OAuth token**, select your team, and copy the token\n6. Paste the token here",
104122
+ storage: {
104123
+ secrets: ["MIRO_TOKEN"],
104124
+ variables: []
104125
+ },
103385
104126
  grant: {
103386
104127
  kind: "manual",
103387
104128
  fields: {
@@ -103417,6 +104158,13 @@ var mixpanel = {
103417
104158
  "api-token": {
103418
104159
  label: "Service Account",
103419
104160
  helpText: "1. In Mixpanel, open **Organization Settings \u2192 Service Accounts** (or **Project Settings \u2192 Service Accounts**)\n2. Click **Add Service Account**, give it a name, and choose a role (minimum **Member**); optionally set an expiration\n3. Copy the **Username** and **Secret** immediately \u2014 the secret is only shown once\n4. Open **Project Settings \u2192 Overview \u2192 Access Keys** and copy your **Project ID**\n5. Paste all three values below",
104161
+ storage: {
104162
+ secrets: [
104163
+ "MIXPANEL_SERVICE_ACCOUNT_USERNAME",
104164
+ "MIXPANEL_SERVICE_ACCOUNT_SECRET"
104165
+ ],
104166
+ variables: ["MIXPANEL_PROJECT_ID"]
104167
+ },
103420
104168
  grant: {
103421
104169
  kind: "manual",
103422
104170
  fields: {
@@ -103470,6 +104218,14 @@ var monday = {
103470
104218
  clientIdEnv: "MONDAY_OAUTH_CLIENT_ID",
103471
104219
  clientSecretEnv: "MONDAY_OAUTH_CLIENT_SECRET"
103472
104220
  },
104221
+ storage: {
104222
+ secrets: ["MONDAY_ACCESS_TOKEN", "MONDAY_REFRESH_TOKEN"],
104223
+ variables: [],
104224
+ secretRoles: {
104225
+ accessToken: "MONDAY_ACCESS_TOKEN",
104226
+ refreshToken: "MONDAY_REFRESH_TOKEN"
104227
+ }
104228
+ },
103473
104229
  grant: {
103474
104230
  kind: "auth-code",
103475
104231
  tokenUrl: OAUTH_TOKEN_URL29,
@@ -103493,8 +104249,6 @@ var monday = {
103493
104249
  access: {
103494
104250
  kind: "refresh-token",
103495
104251
  tokenUrl: OAUTH_TOKEN_URL29,
103496
- accessToken: "MONDAY_ACCESS_TOKEN",
103497
- refreshToken: "MONDAY_REFRESH_TOKEN",
103498
104252
  envBindings: {
103499
104253
  MONDAY_TOKEN: "$secrets.MONDAY_ACCESS_TOKEN"
103500
104254
  }
@@ -103518,6 +104272,10 @@ var moss = {
103518
104272
  "api-token": {
103519
104273
  label: "Project Credentials",
103520
104274
  helpText: "1. Sign in to [Moss](https://www.moss.dev) and open the project portal\n2. Open **Project Settings \u2192 API Keys**\n3. Copy the **Project ID** and **Project Key** for your project (both are required and paired)",
104275
+ storage: {
104276
+ secrets: ["MOSS_PROJECT_ID", "MOSS_PROJECT_KEY"],
104277
+ variables: []
104278
+ },
103521
104279
  grant: {
103522
104280
  kind: "manual",
103523
104281
  fields: {
@@ -103558,6 +104316,10 @@ var msg9 = {
103558
104316
  "api-token": {
103559
104317
  label: "API Key",
103560
104318
  helpText: "1. Log in to [msg9](https://www.msg9.io)\n2. Go to **Settings > API Keys**\n3. Create a new API key\n4. Copy the key (format: `msg9_sk_...`)",
104319
+ storage: {
104320
+ secrets: ["MSG9_TOKEN"],
104321
+ variables: []
104322
+ },
103561
104323
  grant: {
103562
104324
  kind: "manual",
103563
104325
  fields: {
@@ -103592,6 +104354,10 @@ var n8n = {
103592
104354
  "api-token": {
103593
104355
  label: "API Key",
103594
104356
  helpText: "1. Open your n8n instance\n2. Go to **Settings** \u2192 **n8n API**\n3. Click **Create an API key**\n4. Copy the key and paste it below\n5. Set your instance URL (e.g. `https://your-instance.app.n8n.cloud`)",
104357
+ storage: {
104358
+ secrets: ["N8N_TOKEN"],
104359
+ variables: ["N8N_BASE_URL"]
104360
+ },
103595
104361
  grant: {
103596
104362
  kind: "manual",
103597
104363
  fields: {
@@ -103641,6 +104407,14 @@ var neon = {
103641
104407
  clientIdEnv: "NEON_OAUTH_CLIENT_ID",
103642
104408
  clientSecretEnv: "NEON_OAUTH_CLIENT_SECRET"
103643
104409
  },
104410
+ storage: {
104411
+ secrets: ["NEON_ACCESS_TOKEN", "NEON_REFRESH_TOKEN"],
104412
+ variables: [],
104413
+ secretRoles: {
104414
+ accessToken: "NEON_ACCESS_TOKEN",
104415
+ refreshToken: "NEON_REFRESH_TOKEN"
104416
+ }
104417
+ },
103644
104418
  grant: {
103645
104419
  kind: "auth-code",
103646
104420
  tokenUrl: OAUTH_TOKEN_URL30,
@@ -103656,8 +104430,6 @@ var neon = {
103656
104430
  access: {
103657
104431
  kind: "refresh-token",
103658
104432
  tokenUrl: OAUTH_TOKEN_URL30,
103659
- accessToken: "NEON_ACCESS_TOKEN",
103660
- refreshToken: "NEON_REFRESH_TOKEN",
103661
104433
  envBindings: {
103662
104434
  NEON_TOKEN: "$secrets.NEON_ACCESS_TOKEN"
103663
104435
  }
@@ -103667,6 +104439,10 @@ var neon = {
103667
104439
  "api-token": {
103668
104440
  label: "API Key",
103669
104441
  helpText: "1. Log in to [Neon Console](https://console.neon.tech)\n2. Navigate to **Account settings > API keys**\n3. Click the button to create a new API key\n4. Copy and store the secret token immediately (it is only displayed once)",
104442
+ storage: {
104443
+ secrets: ["NEON_TOKEN"],
104444
+ variables: []
104445
+ },
103670
104446
  grant: {
103671
104447
  kind: "manual",
103672
104448
  fields: {
@@ -103702,6 +104478,10 @@ var novita = {
103702
104478
  "api-token": {
103703
104479
  label: "API Key",
103704
104480
  helpText: "1. Sign in at [novita.ai](https://novita.ai)\n2. Open **Settings \u2192 Key Management**\n3. Click **+ Add New Key**\n4. Copy the key (it begins with `sk_`). Paste it here.",
104481
+ storage: {
104482
+ secrets: ["NOVITA_TOKEN"],
104483
+ variables: []
104484
+ },
103705
104485
  grant: {
103706
104486
  kind: "manual",
103707
104487
  fields: {
@@ -103736,6 +104516,10 @@ var nyne = {
103736
104516
  "api-token": {
103737
104517
  label: "API Credentials",
103738
104518
  helpText: "1. Sign in at [nyne.ai](https://nyne.ai)\n2. Open your dashboard \u2192 **API Keys**\n3. Copy your **API Key** and **API Secret**\n4. Nyne authenticates each request with both `X-API-Key` and `X-API-Secret` headers on `https://api.nyne.ai`",
104519
+ storage: {
104520
+ secrets: ["NYNE_API_KEY", "NYNE_API_SECRET"],
104521
+ variables: []
104522
+ },
103739
104523
  grant: {
103740
104524
  kind: "manual",
103741
104525
  fields: {
@@ -103774,6 +104558,10 @@ var onyx = {
103774
104558
  "api-token": {
103775
104559
  label: "API Key / PAT",
103776
104560
  helpText: "1. Log in to [Onyx Cloud](https://cloud.onyx.app)\n2. Go to **Settings \u2192 Accounts & Access**\n3. Click **Create New Token**\n4. Give it a name and choose an expiration\n5. Copy the token immediately \u2014 it is shown only once",
104561
+ storage: {
104562
+ secrets: ["ONYX_TOKEN"],
104563
+ variables: []
104564
+ },
103777
104565
  grant: {
103778
104566
  kind: "manual",
103779
104567
  fields: {
@@ -103810,6 +104598,10 @@ var openai = {
103810
104598
  "api-token": {
103811
104599
  label: "API Key",
103812
104600
  helpText: "1. Log in to [OpenAI Platform](https://platform.openai.com)\n2. Navigate to the [API Keys](https://platform.openai.com/api-keys) page in the dashboard\n3. Create a new API key\n4. Copy and store the key in a safe location",
104601
+ storage: {
104602
+ secrets: ["OPENAI_TOKEN"],
104603
+ variables: []
104604
+ },
103813
104605
  grant: {
103814
104606
  kind: "manual",
103815
104607
  fields: {
@@ -103845,6 +104637,10 @@ var openrouter = {
103845
104637
  "api-token": {
103846
104638
  label: "API Key",
103847
104639
  helpText: "1. Sign in to [OpenRouter](https://openrouter.ai/keys)\n2. Click **Create Key**, name it, and set the credit limit you want\n3. Copy the key (format: `sk-or-v1-\u2026`)\n4. Use it as a Bearer token on requests to `https://openrouter.ai/api/v1/...`",
104640
+ storage: {
104641
+ secrets: ["OPENROUTER_TOKEN"],
104642
+ variables: []
104643
+ },
103848
104644
  grant: {
103849
104645
  kind: "manual",
103850
104646
  fields: {
@@ -103879,6 +104675,10 @@ var openweather = {
103879
104675
  "api-token": {
103880
104676
  label: "API Key",
103881
104677
  helpText: "1. Sign in to [OpenWeather](https://home.openweathermap.org)\n2. Go to **My API keys**\n3. Copy your default key or click **Generate** to create a new one\n4. Pass it as the `appid` query parameter on every request",
104678
+ storage: {
104679
+ secrets: ["OPENWEATHER_TOKEN"],
104680
+ variables: []
104681
+ },
103882
104682
  grant: {
103883
104683
  kind: "manual",
103884
104684
  fields: {
@@ -103920,6 +104720,17 @@ var outlookCalendar = {
103920
104720
  clientIdEnv: "MICROSOFT_OAUTH_CLIENT_ID",
103921
104721
  clientSecretEnv: "MICROSOFT_OAUTH_CLIENT_SECRET"
103922
104722
  },
104723
+ storage: {
104724
+ secrets: [
104725
+ "OUTLOOK_CALENDAR_ACCESS_TOKEN",
104726
+ "OUTLOOK_CALENDAR_REFRESH_TOKEN"
104727
+ ],
104728
+ variables: [],
104729
+ secretRoles: {
104730
+ accessToken: "OUTLOOK_CALENDAR_ACCESS_TOKEN",
104731
+ refreshToken: "OUTLOOK_CALENDAR_REFRESH_TOKEN"
104732
+ }
104733
+ },
103923
104734
  grant: {
103924
104735
  kind: "auth-code",
103925
104736
  tokenUrl: OAUTH_TOKEN_URL31,
@@ -103928,8 +104739,6 @@ var outlookCalendar = {
103928
104739
  access: {
103929
104740
  kind: "refresh-token",
103930
104741
  tokenUrl: OAUTH_TOKEN_URL31,
103931
- accessToken: "OUTLOOK_CALENDAR_ACCESS_TOKEN",
103932
- refreshToken: "OUTLOOK_CALENDAR_REFRESH_TOKEN",
103933
104742
  envBindings: {
103934
104743
  OUTLOOK_CALENDAR_TOKEN: "$secrets.OUTLOOK_CALENDAR_ACCESS_TOKEN"
103935
104744
  }
@@ -103960,6 +104769,14 @@ var outlookMail = {
103960
104769
  clientIdEnv: "MICROSOFT_OAUTH_CLIENT_ID",
103961
104770
  clientSecretEnv: "MICROSOFT_OAUTH_CLIENT_SECRET"
103962
104771
  },
104772
+ storage: {
104773
+ secrets: ["OUTLOOK_MAIL_ACCESS_TOKEN", "OUTLOOK_MAIL_REFRESH_TOKEN"],
104774
+ variables: [],
104775
+ secretRoles: {
104776
+ accessToken: "OUTLOOK_MAIL_ACCESS_TOKEN",
104777
+ refreshToken: "OUTLOOK_MAIL_REFRESH_TOKEN"
104778
+ }
104779
+ },
103963
104780
  grant: {
103964
104781
  kind: "auth-code",
103965
104782
  tokenUrl: OAUTH_TOKEN_URL32,
@@ -103973,8 +104790,6 @@ var outlookMail = {
103973
104790
  access: {
103974
104791
  kind: "refresh-token",
103975
104792
  tokenUrl: OAUTH_TOKEN_URL32,
103976
- accessToken: "OUTLOOK_MAIL_ACCESS_TOKEN",
103977
- refreshToken: "OUTLOOK_MAIL_REFRESH_TOKEN",
103978
104793
  envBindings: {
103979
104794
  OUTLOOK_MAIL_TOKEN: "$secrets.OUTLOOK_MAIL_ACCESS_TOKEN"
103980
104795
  }
@@ -103997,6 +104812,10 @@ var pandadoc = {
103997
104812
  "api-token": {
103998
104813
  label: "API Key",
103999
104814
  helpText: "1. In PandaDoc, go to **Settings > Integrations > API**\n2. Click **Generate Production Key** (requires an API-enabled plan) or **Generate Sandbox Key** for testing\n3. Copy the key and paste it here\n\nNote: Only Org Admins can generate keys. Sandbox keys work for free but signed documents have no legal validity.",
104815
+ storage: {
104816
+ secrets: ["PANDADOC_TOKEN"],
104817
+ variables: []
104818
+ },
104000
104819
  grant: {
104001
104820
  kind: "manual",
104002
104821
  fields: {
@@ -104031,6 +104850,10 @@ var parallel = {
104031
104850
  "api-token": {
104032
104851
  label: "API Key",
104033
104852
  helpText: "1. Go to [Parallel Platform](https://platform.parallel.ai)\n2. Create or copy your API key\n3. Use it as `PARALLEL_API_KEY`",
104853
+ storage: {
104854
+ secrets: ["PARALLEL_API_KEY"],
104855
+ variables: []
104856
+ },
104034
104857
  grant: {
104035
104858
  kind: "manual",
104036
104859
  fields: {
@@ -104066,6 +104889,10 @@ var pdf4me = {
104066
104889
  "api-token": {
104067
104890
  label: "API Key",
104068
104891
  helpText: "1. Register for an account at [PDF4me](https://portal.pdf4me.com) using email/password or via Google, Microsoft, Apple, or Facebook\n2. Go to the **Billing Info** section and select **Start Free Trial**\n3. After activation, you will be redirected to the **Dashboard**\n4. Find and copy your API Key from the Dashboard",
104892
+ storage: {
104893
+ secrets: ["PDF4ME_TOKEN"],
104894
+ variables: []
104895
+ },
104069
104896
  grant: {
104070
104897
  kind: "manual",
104071
104898
  fields: {
@@ -104100,6 +104927,10 @@ var pdfco = {
104100
104927
  authMethods: {
104101
104928
  "api-token": {
104102
104929
  label: "API Key",
104930
+ storage: {
104931
+ secrets: ["PDFCO_TOKEN"],
104932
+ variables: []
104933
+ },
104103
104934
  grant: {
104104
104935
  kind: "manual",
104105
104936
  fields: {
@@ -104135,6 +104966,10 @@ var pdforge = {
104135
104966
  "api-token": {
104136
104967
  label: "API Key",
104137
104968
  helpText: "1. Create an account on [pdforge](https://pdforge.com)\n2. Two API keys are automatically generated when you create your account\n3. Go to the **API Keys** menu in the sidebar to view your keys\n4. Copy your API key and use it in the `Authorization: Bearer pdfnoodle_api_[your_key]` header",
104969
+ storage: {
104970
+ secrets: ["PDFORGE_API_KEY"],
104971
+ variables: []
104972
+ },
104138
104973
  grant: {
104139
104974
  kind: "manual",
104140
104975
  fields: {
@@ -104169,6 +105004,10 @@ var peopleDataLabs = {
104169
105004
  "api-token": {
104170
105005
  label: "API Key",
104171
105006
  helpText: "1. Log in to your [People Data Labs dashboard](https://dashboard.peopledatalabs.com)\n2. Open your API dashboard\n3. Copy your API key\n4. People Data Labs accepts it in the `X-Api-Key` header",
105007
+ storage: {
105008
+ secrets: ["PEOPLE_DATA_LABS_API_KEY"],
105009
+ variables: []
105010
+ },
104172
105011
  grant: {
104173
105012
  kind: "manual",
104174
105013
  fields: {
@@ -104204,6 +105043,10 @@ var perplexity = {
104204
105043
  "api-token": {
104205
105044
  label: "API Key",
104206
105045
  helpText: '1. Log in to the [Perplexity Console](https://console.perplexity.ai)\n2. Navigate to the **API Groups** page and create an API group (e.g., "Production" or "Development")\n3. Go to the **API Keys** page\n4. Generate a new API key\n5. Store the key immediately and securely (you will only see the full token value once)',
105046
+ storage: {
105047
+ secrets: ["PERPLEXITY_TOKEN"],
105048
+ variables: []
105049
+ },
104207
105050
  grant: {
104208
105051
  kind: "manual",
104209
105052
  fields: {
@@ -104238,6 +105081,10 @@ var pika = {
104238
105081
  "api-token": {
104239
105082
  label: "Developer Key",
104240
105083
  helpText: "1. Go to [pika.me/dev](https://www.pika.me/dev/)\n2. Sign in or create an account\n3. Create a new Developer Key\n4. Copy the key (format: `dk_...`)",
105084
+ storage: {
105085
+ secrets: ["PIKA_TOKEN"],
105086
+ variables: []
105087
+ },
104241
105088
  grant: {
104242
105089
  kind: "manual",
104243
105090
  fields: {
@@ -104272,6 +105119,10 @@ var pinecone = {
104272
105119
  "api-token": {
104273
105120
  label: "API Key",
104274
105121
  helpText: "1. Log in to [Pinecone](https://app.pinecone.io)\n2. Go to **API Keys** in the left sidebar\n3. Copy your default API key or create a new one",
105122
+ storage: {
105123
+ secrets: ["PINECONE_TOKEN"],
105124
+ variables: []
105125
+ },
104275
105126
  grant: {
104276
105127
  kind: "manual",
104277
105128
  fields: {
@@ -104306,6 +105157,10 @@ var pipedream = {
104306
105157
  "api-token": {
104307
105158
  label: "User API Key",
104308
105159
  helpText: "1. Log in to [Pipedream](https://pipedream.com)\n2. Open **My Account \u2192 API Key** in your user settings\n3. Copy your user API key\n4. Pipedream sends this key as `Authorization: Bearer <api key>`",
105160
+ storage: {
105161
+ secrets: ["PIPEDREAM_TOKEN"],
105162
+ variables: []
105163
+ },
104309
105164
  grant: {
104310
105165
  kind: "manual",
104311
105166
  fields: {
@@ -104340,6 +105195,10 @@ var pipedrive = {
104340
105195
  "api-token": {
104341
105196
  label: "API Key",
104342
105197
  helpText: "1. In Pipedrive, click your avatar (top right) \u2192 **Personal Preferences** \u2192 **API**\n2. Copy your personal API token\n3. Paste it here",
105198
+ storage: {
105199
+ secrets: ["PIPEDRIVE_TOKEN"],
105200
+ variables: []
105201
+ },
104343
105202
  grant: {
104344
105203
  kind: "manual",
104345
105204
  fields: {
@@ -104374,6 +105233,10 @@ var plain = {
104374
105233
  "api-token": {
104375
105234
  label: "API Key",
104376
105235
  helpText: "1. Log in to [Plain](https://app.plain.com)\n2. Go to **Settings \u2192 Machine Users**\n3. Click **New machine user** and generate an API key\n4. Copy the API key",
105236
+ storage: {
105237
+ secrets: ["PLAIN_TOKEN"],
105238
+ variables: []
105239
+ },
104377
105240
  grant: {
104378
105241
  kind: "manual",
104379
105242
  fields: {
@@ -104408,6 +105271,10 @@ var plausible = {
104408
105271
  "api-token": {
104409
105272
  label: "API Key",
104410
105273
  helpText: "1. Log in to [Plausible Analytics](https://plausible.io)\n2. Go to **Account Settings** \u2192 **API Keys**\n3. Click **New API Key** and choose **Stats API**\n4. Copy the key (it is only shown once)",
105274
+ storage: {
105275
+ secrets: ["PLAUSIBLE_TOKEN"],
105276
+ variables: []
105277
+ },
104411
105278
  grant: {
104412
105279
  kind: "manual",
104413
105280
  fields: {
@@ -104442,6 +105309,10 @@ var podchaser = {
104442
105309
  "api-token": {
104443
105310
  label: "API Token",
104444
105311
  helpText: "1. Log in to [Podchaser](https://www.podchaser.com)\n2. Go to [Profile > Settings > API](https://www.podchaser.com/profile/settings/api) to retrieve your **API Key** and **API Secret**\n3. Request an access token by sending a POST request to `https://api.podchaser.com/graphql` using the `requestAccessToken` mutation with `grant_type` set to `CLIENT_CREDENTIALS`, your API Key as `client_id`, and your API Secret as `client_secret`\n4. Store the returned access token (it lasts 1 year)",
105312
+ storage: {
105313
+ secrets: ["PODCHASER_TOKEN"],
105314
+ variables: []
105315
+ },
104445
105316
  grant: {
104446
105317
  kind: "manual",
104447
105318
  fields: {
@@ -104484,6 +105355,14 @@ var posthog = {
104484
105355
  clientIdEnv: "POSTHOG_OAUTH_CLIENT_ID",
104485
105356
  clientSecretEnv: "POSTHOG_OAUTH_CLIENT_SECRET"
104486
105357
  },
105358
+ storage: {
105359
+ secrets: ["POSTHOG_ACCESS_TOKEN", "POSTHOG_REFRESH_TOKEN"],
105360
+ variables: [],
105361
+ secretRoles: {
105362
+ accessToken: "POSTHOG_ACCESS_TOKEN",
105363
+ refreshToken: "POSTHOG_REFRESH_TOKEN"
105364
+ }
105365
+ },
104487
105366
  grant: {
104488
105367
  kind: "auth-code",
104489
105368
  tokenUrl: OAUTH_TOKEN_URL33,
@@ -104517,8 +105396,6 @@ var posthog = {
104517
105396
  access: {
104518
105397
  kind: "refresh-token",
104519
105398
  tokenUrl: OAUTH_TOKEN_URL33,
104520
- accessToken: "POSTHOG_ACCESS_TOKEN",
104521
- refreshToken: "POSTHOG_REFRESH_TOKEN",
104522
105399
  envBindings: {
104523
105400
  POSTHOG_TOKEN: "$secrets.POSTHOG_ACCESS_TOKEN"
104524
105401
  }
@@ -104528,6 +105405,10 @@ var posthog = {
104528
105405
  "api-token": {
104529
105406
  label: "Personal API Key",
104530
105407
  helpText: "1. Log in to [PostHog](https://app.posthog.com)\n2. Navigate to **Personal API keys** in your account settings\n3. Click **+ Create a personal API Key**\n4. Enter a descriptive label for the key\n5. Choose the scopes (permissions) required for your use case\n6. Copy the key immediately (it will not be shown again after refreshing the page)",
105408
+ storage: {
105409
+ secrets: ["POSTHOG_TOKEN"],
105410
+ variables: []
105411
+ },
104531
105412
  grant: {
104532
105413
  kind: "manual",
104533
105414
  fields: {
@@ -104562,6 +105443,10 @@ var porkbun = {
104562
105443
  "api-token": {
104563
105444
  label: "API Key",
104564
105445
  helpText: "1. Log in to [Porkbun](https://porkbun.com)\n2. Open **Account > API Access**\n3. Create an API key and save both the **API Key** and **Secret Key**\n4. Enable API access for each domain you want to manage",
105446
+ storage: {
105447
+ secrets: ["PORKBUN_API_KEY", "PORKBUN_SECRET_API_KEY"],
105448
+ variables: []
105449
+ },
104565
105450
  grant: {
104566
105451
  kind: "manual",
104567
105452
  fields: {
@@ -104603,6 +105488,10 @@ var printful = {
104603
105488
  "api-token": {
104604
105489
  label: "Private Token",
104605
105490
  helpText: "1. Log in to the [Printful Developer Portal](https://developers.printful.com/)\n2. Generate a **Private Token** with the scopes your workflow needs\n3. Copy the token and use it as a Bearer token\n\nFor account-level Private Tokens, Printful requires an `X-PF-Store-Id` header on store-scoped requests.",
105491
+ storage: {
105492
+ secrets: ["PRINTFUL_TOKEN"],
105493
+ variables: []
105494
+ },
104606
105495
  grant: {
104607
105496
  kind: "manual",
104608
105497
  fields: {
@@ -104636,6 +105525,10 @@ var prismaPostgres = {
104636
105525
  "api-token": {
104637
105526
  label: "API Key",
104638
105527
  helpText: "1. Log in to the [Prisma Console](https://console.prisma.io)\n2. Go to your workspace **Settings** page\n3. Select **Service Tokens**\n4. Click **New Service Token**\n5. Copy and save the generated service token securely",
105528
+ storage: {
105529
+ secrets: ["PRISMA_POSTGRES_TOKEN"],
105530
+ variables: []
105531
+ },
104639
105532
  grant: {
104640
105533
  kind: "manual",
104641
105534
  fields: {
@@ -104669,6 +105562,10 @@ var productlane = {
104669
105562
  authMethods: {
104670
105563
  "api-token": {
104671
105564
  label: "API Key",
105565
+ storage: {
105566
+ secrets: ["PRODUCTLANE_TOKEN"],
105567
+ variables: []
105568
+ },
104672
105569
  grant: {
104673
105570
  kind: "manual",
104674
105571
  fields: {
@@ -104702,6 +105599,10 @@ var pushinator = {
104702
105599
  authMethods: {
104703
105600
  "api-token": {
104704
105601
  label: "API Token",
105602
+ storage: {
105603
+ secrets: ["PUSHINATOR_TOKEN"],
105604
+ variables: []
105605
+ },
104705
105606
  grant: {
104706
105607
  kind: "manual",
104707
105608
  fields: {
@@ -104736,6 +105637,10 @@ var qdrant = {
104736
105637
  "api-token": {
104737
105638
  label: "API Key",
104738
105639
  helpText: "1. Log in to [Qdrant Cloud](https://cloud.qdrant.io)\n2. Open your cluster's detail page and go to **API Keys**\n3. Click **Create** and configure your key\n4. Copy the key (shown only once)",
105640
+ storage: {
105641
+ secrets: ["QDRANT_TOKEN"],
105642
+ variables: ["QDRANT_BASE_URL"]
105643
+ },
104739
105644
  grant: {
104740
105645
  kind: "manual",
104741
105646
  fields: {
@@ -104777,6 +105682,10 @@ var qiita = {
104777
105682
  "api-token": {
104778
105683
  label: "Access Token",
104779
105684
  helpText: "1. Log in to [Qiita](https://qiita.com)\n2. Go to **Settings > Applications**\n3. Create a new access token with the desired scopes (e.g., `read_qiita`, `write_qiita`)\n4. Copy the generated token\n5. Use it in API requests with the header `Authorization: Bearer [your_token]`",
105685
+ storage: {
105686
+ secrets: ["QIITA_TOKEN"],
105687
+ variables: []
105688
+ },
104780
105689
  grant: {
104781
105690
  kind: "manual",
104782
105691
  fields: {
@@ -104811,6 +105720,10 @@ var railway = {
104811
105720
  "api-token": {
104812
105721
  label: "Account or Workspace Token",
104813
105722
  helpText: "1. Log in to [Railway](https://railway.com)\n2. Open your account or workspace **Settings \u2192 Tokens**\n3. Click **Create New Token**, name it, and (for workspace tokens) pick the workspace\n4. Copy the token (UUID v4 format)\n\nUse this connector for cross-project automation. For a single project, use the **Railway Project** connector instead.",
105723
+ storage: {
105724
+ secrets: ["RAILWAY_TOKEN"],
105725
+ variables: []
105726
+ },
104814
105727
  grant: {
104815
105728
  kind: "manual",
104816
105729
  fields: {
@@ -104845,6 +105758,10 @@ var railwayProject = {
104845
105758
  "api-token": {
104846
105759
  label: "Project Token",
104847
105760
  helpText: "1. Log in to [Railway](https://railway.com) and open the target project\n2. Go to **Project Settings \u2192 Tokens**\n3. Click **Create Token**, pick the environment, and name it\n4. Copy the token (UUID v4 format)\n\nThis token is sent via the `Project-Access-Token` header and is bound to one environment in one project. For cross-project automation use the **Railway** connector instead.",
105761
+ storage: {
105762
+ secrets: ["RAILWAY_PROJECT_TOKEN"],
105763
+ variables: []
105764
+ },
104848
105765
  grant: {
104849
105766
  kind: "manual",
104850
105767
  fields: {
@@ -104887,6 +105804,10 @@ var reap = {
104887
105804
  "api-token": {
104888
105805
  label: "API Key",
104889
105806
  helpText: "1. Contact the Reap team to obtain an API key for your project\n2. Choose the matching API base URL for the key environment: `https://sandbox.api.reap.global/v1` or `https://prod.api.reap.global/v1`\n3. Copy the API key",
105807
+ storage: {
105808
+ secrets: ["REAP_API_KEY"],
105809
+ variables: ["REAP_API_BASE_URL"]
105810
+ },
104890
105811
  grant: {
104891
105812
  kind: "manual",
104892
105813
  fields: {
@@ -104936,6 +105857,14 @@ var reddit = {
104936
105857
  clientIdEnv: "REDDIT_OAUTH_CLIENT_ID",
104937
105858
  clientSecretEnv: "REDDIT_OAUTH_CLIENT_SECRET"
104938
105859
  },
105860
+ storage: {
105861
+ secrets: ["REDDIT_ACCESS_TOKEN", "REDDIT_REFRESH_TOKEN"],
105862
+ variables: [],
105863
+ secretRoles: {
105864
+ accessToken: "REDDIT_ACCESS_TOKEN",
105865
+ refreshToken: "REDDIT_REFRESH_TOKEN"
105866
+ }
105867
+ },
104939
105868
  grant: {
104940
105869
  kind: "auth-code",
104941
105870
  tokenUrl: OAUTH_TOKEN_URL34,
@@ -104944,8 +105873,6 @@ var reddit = {
104944
105873
  access: {
104945
105874
  kind: "refresh-token",
104946
105875
  tokenUrl: OAUTH_TOKEN_URL34,
104947
- accessToken: "REDDIT_ACCESS_TOKEN",
104948
- refreshToken: "REDDIT_REFRESH_TOKEN",
104949
105876
  envBindings: {
104950
105877
  REDDIT_TOKEN: "$secrets.REDDIT_ACCESS_TOKEN"
104951
105878
  }
@@ -104968,6 +105895,10 @@ var reducto = {
104968
105895
  "api-token": {
104969
105896
  label: "API Key",
104970
105897
  helpText: "1. Sign in to the [Reducto Platform](https://platform.reducto.ai)\n2. Open **Settings \u2192 API Keys**\n3. Click **Create Key**, name it, and copy the value\n4. Use it as a Bearer token on requests to `https://platform.reducto.ai`",
105898
+ storage: {
105899
+ secrets: ["REDUCTO_TOKEN"],
105900
+ variables: []
105901
+ },
104971
105902
  grant: {
104972
105903
  kind: "manual",
104973
105904
  fields: {
@@ -105002,6 +105933,10 @@ var recraft = {
105002
105933
  "api-token": {
105003
105934
  label: "API Token",
105004
105935
  helpText: "1. Sign in to [Recraft](https://app.recraft.ai)\n2. Open your profile\n3. Copy your API token\n4. Paste it here.",
105936
+ storage: {
105937
+ secrets: ["RECRAFT_API_TOKEN"],
105938
+ variables: []
105939
+ },
105005
105940
  grant: {
105006
105941
  kind: "manual",
105007
105942
  fields: {
@@ -105036,6 +105971,10 @@ var replicate = {
105036
105971
  "api-token": {
105037
105972
  label: "API Token",
105038
105973
  helpText: "1. Sign up at [replicate.com](https://replicate.com)\n2. Click your avatar \u2192 **API Tokens**\n3. Click **Create token**, give it a name\n4. Copy the token (starts with `r8_`)\n5. Paste it here",
105974
+ storage: {
105975
+ secrets: ["REPLICATE_TOKEN"],
105976
+ variables: []
105977
+ },
105039
105978
  grant: {
105040
105979
  kind: "manual",
105041
105980
  fields: {
@@ -105070,6 +106009,10 @@ var reportei = {
105070
106009
  "api-token": {
105071
106010
  label: "API Token",
105072
106011
  helpText: "1. Log in to [Reportei](https://app.reportei.com)\n2. Go to **Company Settings** (Configura\xE7\xF5es da Empresa)\n3. Navigate to the **API Reportei** section\n4. Click **Generate new token** or copy your existing token",
106012
+ storage: {
106013
+ secrets: ["REPORTEI_TOKEN"],
106014
+ variables: []
106015
+ },
105073
106016
  grant: {
105074
106017
  kind: "manual",
105075
106018
  fields: {
@@ -105104,6 +106047,10 @@ var resend = {
105104
106047
  "api-token": {
105105
106048
  label: "API Key",
105106
106049
  helpText: "1. Log in to [Resend](https://resend.com)\n2. Navigate to the [API Keys](https://resend.com/api-keys) page\n3. Click **Create API Key**\n4. Enter a name for your key (up to 50 characters)\n5. Select the permission level: **Full access** or **Sending access**\n6. If choosing sending access, select which domain the key can access\n7. Copy the generated API key",
106050
+ storage: {
106051
+ secrets: ["RESEND_TOKEN"],
106052
+ variables: []
106053
+ },
105107
106054
  grant: {
105108
106055
  kind: "manual",
105109
106056
  fields: {
@@ -105138,6 +106085,10 @@ var rentcast = {
105138
106085
  "api-token": {
105139
106086
  label: "API Key",
105140
106087
  helpText: "1. Log in to the [RentCast API dashboard](https://app.rentcast.io/app/api)\n2. Click **Create API Key**\n3. Copy the generated API key",
106088
+ storage: {
106089
+ secrets: ["RENTCAST_API_KEY"],
106090
+ variables: []
106091
+ },
105141
106092
  grant: {
105142
106093
  kind: "manual",
105143
106094
  fields: {
@@ -105172,6 +106123,10 @@ var revenuecat = {
105172
106123
  "api-token": {
105173
106124
  label: "Secret API Key",
105174
106125
  helpText: "1. Log in to [RevenueCat](https://app.revenuecat.com)\n2. Navigate to the **API keys** section in your project dashboard\n3. Public API keys are automatically created when you add an app to your project\n4. To create a secret API key, click **+ New secret API key** in the API keys section\n5. Copy and store the key securely (never embed secret keys in client-side code)",
106126
+ storage: {
106127
+ secrets: ["REVENUECAT_TOKEN"],
106128
+ variables: []
106129
+ },
105175
106130
  grant: {
105176
106131
  kind: "manual",
105177
106132
  fields: {
@@ -105207,6 +106162,10 @@ var runway = {
105207
106162
  "api-token": {
105208
106163
  label: "API Key",
105209
106164
  helpText: "1. Sign up for an account in the [Runway Developer Portal](https://dev.runwayml.com/)\n2. After signing up, create a new organization\n3. Click to the **API Keys** tab\n4. Create a new key, giving it a descriptive name\n5. Copy the key immediately and store it in a safe place \u2014 it will only be shown once",
106165
+ storage: {
106166
+ secrets: ["RUNWAY_TOKEN"],
106167
+ variables: []
106168
+ },
105210
106169
  grant: {
105211
106170
  kind: "manual",
105212
106171
  fields: {
@@ -105240,6 +106199,10 @@ var salesforce = {
105240
106199
  authMethods: {
105241
106200
  "api-token": {
105242
106201
  label: "API Token",
106202
+ storage: {
106203
+ secrets: ["SALESFORCE_TOKEN"],
106204
+ variables: ["SALESFORCE_INSTANCE"]
106205
+ },
105243
106206
  grant: {
105244
106207
  kind: "manual",
105245
106208
  fields: {
@@ -105280,6 +106243,10 @@ var scrapeninja = {
105280
106243
  authMethods: {
105281
106244
  "api-token": {
105282
106245
  label: "API Token",
106246
+ storage: {
106247
+ secrets: ["SCRAPENINJA_TOKEN"],
106248
+ variables: []
106249
+ },
105283
106250
  grant: {
105284
106251
  kind: "manual",
105285
106252
  fields: {
@@ -105314,6 +106281,10 @@ var segment = {
105314
106281
  "api-token": {
105315
106282
  label: "Public API Token",
105316
106283
  helpText: "1. Log in to [Segment](https://app.segment.com)\n2. Open the workspace you want to manage\n3. Create a Public API token with the permissions required for your workflow\n4. Copy the token",
106284
+ storage: {
106285
+ secrets: ["SEGMENT_TOKEN"],
106286
+ variables: []
106287
+ },
105317
106288
  grant: {
105318
106289
  kind: "manual",
105319
106290
  fields: {
@@ -105349,6 +106320,10 @@ var sendgrid = {
105349
106320
  "api-token": {
105350
106321
  label: "API Key",
105351
106322
  helpText: "1. Log in to [SendGrid](https://app.sendgrid.com) and open **Settings > API Keys**\n2. Click **Create API Key**, name it (e.g. `vm0`), and pick **Full Access** or a scoped permission set covering Mail Send, Templates, and Suppressions\n3. Click **Create & View** and copy the API key \u2014 it is shown only once\n4. Paste the key below (starts with `SG.`)",
106323
+ storage: {
106324
+ secrets: ["SENDGRID_TOKEN"],
106325
+ variables: []
106326
+ },
105352
106327
  grant: {
105353
106328
  kind: "manual",
105354
106329
  fields: {
@@ -105383,6 +106358,10 @@ var serpapi = {
105383
106358
  "api-token": {
105384
106359
  label: "API Key",
105385
106360
  helpText: "1. Go to [SerpApi](https://serpapi.com) and sign up for an account (free plan available with 250 searches/month)\n2. Log in and go to your [Dashboard](https://serpapi.com/dashboard)\n3. Your API key is displayed on the dashboard\n4. Copy the API key",
106361
+ storage: {
106362
+ secrets: ["SERPAPI_TOKEN"],
106363
+ variables: []
106364
+ },
105386
106365
  grant: {
105387
106366
  kind: "manual",
105388
106367
  fields: {
@@ -105418,6 +106397,10 @@ var servicenow = {
105418
106397
  "api-token": {
105419
106398
  label: "API Key",
105420
106399
  helpText: "1. In ServiceNow, create (or pick) a dedicated service user with the roles the integration needs \u2014 `itil` for incident/change, `cmdb_read` for CMDB, etc.\n2. Set a password on that user under **User Administration \u2192 Users**\n3. Enter the username, password, and your ServiceNow instance subdomain \u2014 the prefix of `https://<subdomain>.service-now.com`",
106400
+ storage: {
106401
+ secrets: ["SERVICENOW_USERNAME", "SERVICENOW_PASSWORD"],
106402
+ variables: ["SERVICENOW_INSTANCE"]
106403
+ },
105421
106404
  grant: {
105422
106405
  kind: "manual",
105423
106406
  fields: {
@@ -105466,6 +106449,10 @@ var shopify = {
105466
106449
  "api-token": {
105467
106450
  label: "API Key",
105468
106451
  helpText: "1. In your Shopify admin, go to **Settings \u2192 Apps and sales channels \u2192 Develop apps**\n2. Click **Create an app**, name it (e.g. `vm0`), and open it\n3. Under **Configuration \u2192 Admin API integration**, grant the scopes you need (e.g. `read_products`, `read_orders`)\n4. Click **Install app** and then **Reveal token once** \u2014 copy the Admin API access token (starts with `shpat_`)\n5. For the **Store subdomain** below, enter only the subdomain of your `.myshopify.com` URL (for `acme.myshopify.com` enter `acme`)",
106452
+ storage: {
106453
+ secrets: ["SHOPIFY_TOKEN"],
106454
+ variables: ["SHOPIFY_SHOP"]
106455
+ },
105469
106456
  grant: {
105470
106457
  kind: "manual",
105471
106458
  fields: {
@@ -105507,6 +106494,10 @@ var shortio = {
105507
106494
  "api-token": {
105508
106495
  label: "API Key",
105509
106496
  helpText: "1. Log in to the [Short.io](https://short.io) Dashboard\n2. Navigate to **Integrations and API**\n3. Click on **Create API key**\n4. Leave the **Public key** option disabled to create a private (secret) key\n5. Restrict the scope of the key to a specific team or domain\n6. Click **Create**\n7. Copy the key and store it in a safe place \u2014 secret keys cannot be recovered",
106497
+ storage: {
106498
+ secrets: ["SHORTIO_TOKEN"],
106499
+ variables: []
106500
+ },
105510
106501
  grant: {
105511
106502
  kind: "manual",
105512
106503
  fields: {
@@ -105541,6 +106532,10 @@ var similarweb = {
105541
106532
  "api-token": {
105542
106533
  label: "API Key",
105543
106534
  helpText: "1. Log in to the [Similarweb platform](https://pro.similarweb.com/) (admin access required)\n2. From the main menu on the left, select **Settings & Help**, then select **Account**\n3. Under **Data Tools**, select either **REST API** or **Batch API**\n4. Click **Generate a New API Key** on the right\n5. Type the name of the API key, then select whether this is for yourself or another user\n6. Click **Create** \u2014 your key will be displayed in the Generated Keys table\n7. In the Generated Keys table, ensure the **Activation** toggle is on for the relevant API key",
106535
+ storage: {
106536
+ secrets: ["SIMILARWEB_TOKEN"],
106537
+ variables: []
106538
+ },
105544
106539
  grant: {
105545
106540
  kind: "manual",
105546
106541
  fields: {
@@ -105575,6 +106570,10 @@ var slackWebhook = {
105575
106570
  "api-token": {
105576
106571
  label: "Webhook URL",
105577
106572
  helpText: "1. Create a [Slack app](https://api.slack.com/apps) (or use an existing one), choosing a workspace to associate it with\n2. From the app settings page, select **Incoming Webhooks**\n3. Toggle **Activate Incoming Webhooks** to on\n4. Click **Add New Webhook to Workspace**\n5. Pick a channel for the app to post to, then click **Authorize**\n6. Copy the webhook URL from the **Webhook URLs for Your Workspace** section (it will look like `https://hooks.slack.com/services/T.../B.../XXXX...`)",
106573
+ storage: {
106574
+ secrets: ["SLACK_WEBHOOK_URL"],
106575
+ variables: []
106576
+ },
105578
106577
  grant: {
105579
106578
  kind: "manual",
105580
106579
  fields: {
@@ -105610,6 +106609,10 @@ var snowflake = {
105610
106609
  "api-token": {
105611
106610
  label: "Programmatic Access Token",
105612
106611
  helpText: "1. In Snowflake, generate a programmatic access token for the user or service user that should own the connection\n2. Copy the generated token secret when Snowflake displays it\n3. Enter your Snowflake account identifier, for example `myorganization-myaccount` from `https://myorganization-myaccount.snowflakecomputing.com`",
106612
+ storage: {
106613
+ secrets: ["SNOWFLAKE_PAT"],
106614
+ variables: ["SNOWFLAKE_ACCOUNT"]
106615
+ },
105613
106616
  grant: {
105614
106617
  kind: "manual",
105615
106618
  fields: {
@@ -105651,6 +106654,10 @@ var sociavault = {
105651
106654
  "api-token": {
105652
106655
  label: "API Key",
105653
106656
  helpText: "1. Sign up or log in to the [SociaVault Dashboard](https://sociavault.com)\n2. Copy your API key\n3. SociaVault authenticates requests with the `X-API-Key` header",
106657
+ storage: {
106658
+ secrets: ["SOCIAVAULT_TOKEN"],
106659
+ variables: []
106660
+ },
105654
106661
  grant: {
105655
106662
  kind: "manual",
105656
106663
  fields: {
@@ -105685,6 +106692,10 @@ var sponge = {
105685
106692
  "api-token": {
105686
106693
  label: "Master API Key",
105687
106694
  helpText: "1. Sign in to the [Sponge Wallet dashboard](https://wallet.paysponge.com)\n2. Open **Settings \u2192 Master API Keys**\n3. Click **Create master key**, name it, and copy the value (prefix `sponge_master_...`)\n\nThe master key is the platform credential. Sponge agent runtime keys are minted on demand through it \u2014 store the master key once and never embed it in agent traffic.",
106695
+ storage: {
106696
+ secrets: ["SPONGE_MASTER_KEY"],
106697
+ variables: []
106698
+ },
105688
106699
  grant: {
105689
106700
  kind: "manual",
105690
106701
  fields: {
@@ -105727,6 +106738,10 @@ var sproutgigs = {
105727
106738
  "api-token": {
105728
106739
  label: "API Secret",
105729
106740
  helpText: "1. Log in to [SproutGigs](https://sproutgigs.com)\n2. Open **Account Settings** and go to the **Settings** tab\n3. Create or reset your API secret\n4. Enter your SproutGigs user ID and API secret. SproutGigs signs requests with HTTP Basic Auth using `USER_ID:API_SECRET`.",
106741
+ storage: {
106742
+ secrets: ["SPROUTGIGS_API_SECRET"],
106743
+ variables: ["SPROUTGIGS_USER_ID"]
106744
+ },
105730
106745
  grant: {
105731
106746
  kind: "manual",
105732
106747
  fields: {
@@ -105768,6 +106783,10 @@ var square = {
105768
106783
  "api-token": {
105769
106784
  label: "Access Token",
105770
106785
  helpText: "1. Sign in to the [Square Developer Console](https://developer.squareup.com/apps)\n2. Open (or create) an application\n3. In the left pane, choose **Credentials**\n4. At the top of the page, select **Production**\n5. Copy the **Production Access token** (format: `EAAA...`)",
106786
+ storage: {
106787
+ secrets: ["SQUARE_TOKEN"],
106788
+ variables: []
106789
+ },
105771
106790
  grant: {
105772
106791
  kind: "manual",
105773
106792
  fields: {
@@ -105803,6 +106822,10 @@ var stabilityAi = {
105803
106822
  "api-token": {
105804
106823
  label: "API Key",
105805
106824
  helpText: "1. Sign up at [platform.stability.ai](https://platform.stability.ai)\n2. Go to **Account \u2192 API Keys \u2192 Create API Key**\n3. Copy the key (starts with `sk-`). Paste here. Free credits on signup.",
106825
+ storage: {
106826
+ secrets: ["STABILITY_TOKEN"],
106827
+ variables: []
106828
+ },
105806
106829
  grant: {
105807
106830
  kind: "manual",
105808
106831
  fields: {
@@ -105837,6 +106860,10 @@ var strapi = {
105837
106860
  "api-token": {
105838
106861
  label: "API Token",
105839
106862
  helpText: "1. Log in to your Strapi admin panel\n2. Go to **Settings \u2192 API Tokens**\n3. Click **Create new API Token**\n4. Enter a name, select a token duration, and choose a token type (Full Access or Custom)\n5. Click **Save** and copy the generated token",
106863
+ storage: {
106864
+ secrets: ["STRAPI_TOKEN"],
106865
+ variables: ["STRAPI_BASE_URL"]
106866
+ },
105840
106867
  grant: {
105841
106868
  kind: "manual",
105842
106869
  fields: {
@@ -105877,6 +106904,10 @@ var streak = {
105877
106904
  "api-token": {
105878
106905
  label: "API Key",
105879
106906
  helpText: "1. Install the Streak extension and navigate to [Gmail](https://mail.google.com)\n2. Click on the Streak icon in the right sidebar\n3. Select the **Integrations** button\n4. Under the **Streak API** section, click **Create New Key**\n5. Copy and store the API key securely",
106907
+ storage: {
106908
+ secrets: ["STREAK_TOKEN"],
106909
+ variables: []
106910
+ },
105880
106911
  grant: {
105881
106912
  kind: "manual",
105882
106913
  fields: {
@@ -105920,6 +106951,14 @@ var stripe = {
105920
106951
  clientIdEnv: "STRIPE_OAUTH_CLIENT_ID",
105921
106952
  clientSecretEnv: "STRIPE_OAUTH_CLIENT_SECRET"
105922
106953
  },
106954
+ storage: {
106955
+ secrets: ["STRIPE_ACCESS_TOKEN", "STRIPE_REFRESH_TOKEN"],
106956
+ variables: [],
106957
+ secretRoles: {
106958
+ accessToken: "STRIPE_ACCESS_TOKEN",
106959
+ refreshToken: "STRIPE_REFRESH_TOKEN"
106960
+ }
106961
+ },
105923
106962
  grant: {
105924
106963
  kind: "auth-code",
105925
106964
  tokenUrl: OAUTH_TOKEN_URL35,
@@ -105928,8 +106967,6 @@ var stripe = {
105928
106967
  access: {
105929
106968
  kind: "refresh-token",
105930
106969
  tokenUrl: OAUTH_TOKEN_URL35,
105931
- accessToken: "STRIPE_ACCESS_TOKEN",
105932
- refreshToken: "STRIPE_REFRESH_TOKEN",
105933
106970
  envBindings: {
105934
106971
  STRIPE_TOKEN: "$secrets.STRIPE_ACCESS_TOKEN"
105935
106972
  }
@@ -105939,6 +106976,10 @@ var stripe = {
105939
106976
  "api-token": {
105940
106977
  label: "API Key",
105941
106978
  helpText: "1. Log in to your [Stripe Dashboard](https://dashboard.stripe.com/apikeys)\n2. Go to **Developers > API keys**\n3. Reveal the **Secret key** (starts with `sk_live_` or `sk_test_`) or create a **Restricted key** (`rk_live_...`) with the scopes you need\n4. Copy the key",
106979
+ storage: {
106980
+ secrets: ["STRIPE_TOKEN"],
106981
+ variables: []
106982
+ },
105942
106983
  grant: {
105943
106984
  kind: "manual",
105944
106985
  fields: {
@@ -105981,6 +107022,14 @@ var supabase = {
105981
107022
  clientIdEnv: "SUPABASE_OAUTH_CLIENT_ID",
105982
107023
  clientSecretEnv: "SUPABASE_OAUTH_CLIENT_SECRET"
105983
107024
  },
107025
+ storage: {
107026
+ secrets: ["SUPABASE_ACCESS_TOKEN", "SUPABASE_REFRESH_TOKEN"],
107027
+ variables: [],
107028
+ secretRoles: {
107029
+ accessToken: "SUPABASE_ACCESS_TOKEN",
107030
+ refreshToken: "SUPABASE_REFRESH_TOKEN"
107031
+ }
107032
+ },
105984
107033
  grant: {
105985
107034
  kind: "auth-code",
105986
107035
  tokenUrl: OAUTH_TOKEN_URL36,
@@ -106002,8 +107051,6 @@ var supabase = {
106002
107051
  access: {
106003
107052
  kind: "refresh-token",
106004
107053
  tokenUrl: OAUTH_TOKEN_URL36,
106005
- accessToken: "SUPABASE_ACCESS_TOKEN",
106006
- refreshToken: "SUPABASE_REFRESH_TOKEN",
106007
107054
  envBindings: {
106008
107055
  SUPABASE_TOKEN: "$secrets.SUPABASE_ACCESS_TOKEN"
106009
107056
  }
@@ -106013,6 +107060,10 @@ var supabase = {
106013
107060
  "api-token": {
106014
107061
  label: "Service Role Key",
106015
107062
  helpText: "1. Log in to the [Supabase Dashboard](https://supabase.com/dashboard)\n2. Open your project's **Connect** dialog, or go to **Project Settings > API Keys**\n3. For legacy keys, copy the `anon` key (for client-side) or `service_role` key (for server-side) from the **Legacy API Keys** tab\n4. For new keys, open the **API Keys** tab, click **Create new API Keys** if needed, and copy the value from the **Publishable key** section",
107063
+ storage: {
107064
+ secrets: ["SUPABASE_TOKEN"],
107065
+ variables: []
107066
+ },
106016
107067
  grant: {
106017
107068
  kind: "manual",
106018
107069
  fields: {
@@ -106047,6 +107098,10 @@ var supadata = {
106047
107098
  "api-token": {
106048
107099
  label: "API Key",
106049
107100
  helpText: "1. Go to the [Supadata Dashboard](https://dash.supadata.ai)\n2. Sign up for an account (no credit card required)\n3. Your API key will be generated automatically\n4. Use it in API requests with the header `x-api-key: [your_api_key]`",
107101
+ storage: {
107102
+ secrets: ["SUPADATA_TOKEN"],
107103
+ variables: []
107104
+ },
106050
107105
  grant: {
106051
107106
  kind: "manual",
106052
107107
  fields: {
@@ -106081,6 +107136,10 @@ var supermemory = {
106081
107136
  "api-token": {
106082
107137
  label: "API Key",
106083
107138
  helpText: "Go to [console.supermemory.ai](https://console.supermemory.ai) \u2192 **API Keys** \u2192 create or copy your key.",
107139
+ storage: {
107140
+ secrets: ["SUPERMEMORY_API_KEY"],
107141
+ variables: []
107142
+ },
106084
107143
  grant: {
106085
107144
  kind: "manual",
106086
107145
  fields: {
@@ -106115,6 +107174,10 @@ var tavily = {
106115
107174
  "api-token": {
106116
107175
  label: "API Key",
106117
107176
  helpText: "1. Go to [app.tavily.com](https://app.tavily.com/) and sign up for a free account\n2. After signing in, your API key will be available on the dashboard\n3. Copy the API key (it will start with `tvly-`)",
107177
+ storage: {
107178
+ secrets: ["TAVILY_TOKEN"],
107179
+ variables: []
107180
+ },
106118
107181
  grant: {
106119
107182
  kind: "manual",
106120
107183
  fields: {
@@ -106164,12 +107227,18 @@ var testOauth = {
106164
107227
  label: "OAuth",
106165
107228
  helpText: "Test-only OAuth provider. Only reachable in dev/preview.",
106166
107229
  client: TEST_OAUTH_CLIENT,
107230
+ storage: {
107231
+ secrets: ["TEST_OAUTH_ACCESS_TOKEN", "TEST_OAUTH_REFRESH_TOKEN"],
107232
+ variables: [],
107233
+ secretRoles: {
107234
+ accessToken: "TEST_OAUTH_ACCESS_TOKEN",
107235
+ refreshToken: "TEST_OAUTH_REFRESH_TOKEN"
107236
+ }
107237
+ },
106167
107238
  grant: TEST_OAUTH_AUTH_CODE_GRANT,
106168
107239
  access: {
106169
107240
  kind: "refresh-token",
106170
107241
  tokenUrl: OAUTH_TOKEN_URL37,
106171
- accessToken: "TEST_OAUTH_ACCESS_TOKEN",
106172
- refreshToken: "TEST_OAUTH_REFRESH_TOKEN",
106173
107242
  envBindings: {
106174
107243
  TEST_OAUTH_TOKEN: "$secrets.TEST_OAUTH_ACCESS_TOKEN"
106175
107244
  }
@@ -106181,12 +107250,21 @@ var testOauth = {
106181
107250
  label: "API OAuth",
106182
107251
  helpText: "Secondary test-only OAuth method used to exercise method-aware provider registration.",
106183
107252
  client: TEST_OAUTH_CLIENT,
107253
+ storage: {
107254
+ secrets: [
107255
+ "TEST_OAUTH_API_ACCESS_TOKEN",
107256
+ "TEST_OAUTH_API_REFRESH_TOKEN"
107257
+ ],
107258
+ variables: [],
107259
+ secretRoles: {
107260
+ accessToken: "TEST_OAUTH_API_ACCESS_TOKEN",
107261
+ refreshToken: "TEST_OAUTH_API_REFRESH_TOKEN"
107262
+ }
107263
+ },
106184
107264
  grant: TEST_OAUTH_AUTH_CODE_GRANT,
106185
107265
  access: {
106186
107266
  kind: "refresh-token",
106187
107267
  tokenUrl: OAUTH_TOKEN_URL37,
106188
- accessToken: "TEST_OAUTH_API_ACCESS_TOKEN",
106189
- refreshToken: "TEST_OAUTH_API_REFRESH_TOKEN",
106190
107268
  envBindings: {
106191
107269
  TEST_OAUTH_TOKEN: "$secrets.TEST_OAUTH_API_ACCESS_TOKEN"
106192
107270
  }
@@ -106215,6 +107293,13 @@ var testOauthDevice = {
106215
107293
  clientType: "public",
106216
107294
  clientId: "test-oauth-device-client"
106217
107295
  },
107296
+ storage: {
107297
+ secrets: ["TEST_OAUTH_DEVICE_ACCESS_TOKEN"],
107298
+ variables: [],
107299
+ secretRoles: {
107300
+ accessToken: "TEST_OAUTH_DEVICE_ACCESS_TOKEN"
107301
+ }
107302
+ },
106218
107303
  grant: {
106219
107304
  kind: "device-auth",
106220
107305
  deviceAuthUrl: "/api/test/oauth-provider/device/code",
@@ -106238,6 +107323,13 @@ var testOauthDevice = {
106238
107323
  clientType: "public",
106239
107324
  clientId: "test-oauth-device-api-client"
106240
107325
  },
107326
+ storage: {
107327
+ secrets: ["TEST_OAUTH_DEVICE_API_ACCESS_TOKEN"],
107328
+ variables: [],
107329
+ secretRoles: {
107330
+ accessToken: "TEST_OAUTH_DEVICE_API_ACCESS_TOKEN"
107331
+ }
107332
+ },
106241
107333
  grant: {
106242
107334
  kind: "device-auth",
106243
107335
  deviceAuthUrl: "/api/test/oauth-provider/device/code",
@@ -106269,6 +107361,10 @@ var testrail = {
106269
107361
  "api-token": {
106270
107362
  label: "API Key",
106271
107363
  helpText: "1. In TestRail, open **My Settings** (top-right user menu) \u2192 **API Keys**\n2. Click **Add Key**, name it (e.g. `vm0`), copy the generated key\n3. Enter the email you log in with, the generated API key, and your TestRail instance subdomain \u2014 the prefix of `https://<subdomain>.testrail.io`\n4. If your team self-hosts TestRail Server, set `TESTRAIL_INSTANCE` to the full host (e.g. `tests.example.com`) \u2014 the firewall accepts both forms",
107364
+ storage: {
107365
+ secrets: ["TESTRAIL_EMAIL", "TESTRAIL_TOKEN"],
107366
+ variables: ["TESTRAIL_INSTANCE"]
107367
+ },
106272
107368
  grant: {
106273
107369
  kind: "manual",
106274
107370
  fields: {
@@ -106316,6 +107412,10 @@ var ticketmaster = {
106316
107412
  "api-token": {
106317
107413
  label: "Discovery API Key",
106318
107414
  helpText: "1. Log in to the [Ticketmaster Developer Portal](https://developer.ticketmaster.com)\n2. Open your application in **My Apps**\n3. Copy the **Consumer Key** for the Discovery API\n4. Use it as the `apikey` query parameter for Discovery API requests",
107415
+ storage: {
107416
+ secrets: ["TICKETMASTER_API_KEY"],
107417
+ variables: []
107418
+ },
106319
107419
  grant: {
106320
107420
  kind: "manual",
106321
107421
  fields: {
@@ -106350,6 +107450,10 @@ var tldv = {
106350
107450
  "api-token": {
106351
107451
  label: "API Key",
106352
107452
  helpText: "1. Ensure you have a **Business Plan** subscription on [tldv](https://tldv.io)\n2. API and webhook access is only available on the Business Plan\n3. Contact support at **support@tldv.io** to request API access and obtain your credentials",
107453
+ storage: {
107454
+ secrets: ["TLDV_TOKEN"],
107455
+ variables: []
107456
+ },
106353
107457
  grant: {
106354
107458
  kind: "manual",
106355
107459
  fields: {
@@ -106385,6 +107489,10 @@ var together = {
106385
107489
  "api-token": {
106386
107490
  label: "API Key",
106387
107491
  helpText: "1. Sign up at [api.together.ai](https://api.together.ai)\n2. Go to **Settings \u2192 API Keys**\n3. Click **Create API Key**\n4. Copy the key. Paste it here. Free $1 credit on signup.",
107492
+ storage: {
107493
+ secrets: ["TOGETHER_TOKEN"],
107494
+ variables: []
107495
+ },
106388
107496
  grant: {
106389
107497
  kind: "manual",
106390
107498
  fields: {
@@ -106420,6 +107528,10 @@ var tripo = {
106420
107528
  "api-token": {
106421
107529
  label: "API Key",
106422
107530
  helpText: "1. Sign in at [platform.tripo3d.ai](https://platform.tripo3d.ai)\n2. Open **API Keys**\n3. Click **Create API Key**\n4. Copy the key (it begins with `tsk_`). It is shown only once. Paste it here.",
107531
+ storage: {
107532
+ secrets: ["TRIPO_API_KEY"],
107533
+ variables: []
107534
+ },
106423
107535
  grant: {
106424
107536
  kind: "manual",
106425
107537
  fields: {
@@ -106454,6 +107566,10 @@ var twenty = {
106454
107566
  "api-token": {
106455
107567
  label: "API Key",
106456
107568
  helpText: "1. Log in to your [Twenty](https://twenty.com) workspace\n2. Go to **Settings > APIs & Webhooks**\n3. Click **+ Create key**\n4. Enter a descriptive **Name** and set an **Expiration Date**\n5. Click **Save**\n6. Copy the key immediately \u2014 it is only shown once",
107569
+ storage: {
107570
+ secrets: ["TWENTY_TOKEN"],
107571
+ variables: []
107572
+ },
106457
107573
  grant: {
106458
107574
  kind: "manual",
106459
107575
  fields: {
@@ -106489,6 +107605,10 @@ var twilio = {
106489
107605
  "api-token": {
106490
107606
  label: "API Key",
106491
107607
  helpText: "1. Open the [Twilio Console](https://console.twilio.com) \u2014 your **Account SID** is shown on the dashboard\n2. Click **View** next to **Auth Token** to reveal the live auth token\n3. Copy both values and paste them below \u2014 the SID always starts with `AC`",
107608
+ storage: {
107609
+ secrets: ["TWILIO_ACCOUNT_SID", "TWILIO_AUTH_TOKEN"],
107610
+ variables: []
107611
+ },
106492
107612
  grant: {
106493
107613
  kind: "manual",
106494
107614
  fields: {
@@ -106529,6 +107649,10 @@ var typeform = {
106529
107649
  "api-token": {
106530
107650
  label: "Personal Access Token",
106531
107651
  helpText: "1. Log in to [Typeform](https://admin.typeform.com)\n2. Open the account menu (top-right) and pick **Personal tokens**\n3. Click **Generate a new token**, name it, and choose the scopes you need (e.g. `forms:read`, `responses:read`, `webhooks:write`)\n4. Copy the token (format: `tfp_...`)",
107652
+ storage: {
107653
+ secrets: ["TYPEFORM_TOKEN"],
107654
+ variables: []
107655
+ },
106532
107656
  grant: {
106533
107657
  kind: "manual",
106534
107658
  fields: {
@@ -106564,6 +107688,10 @@ var v0 = {
106564
107688
  "api-token": {
106565
107689
  label: "API Token",
106566
107690
  helpText: "1. Log in to [v0](https://v0.dev)\n2. Go to **Settings** \u2192 **Keys** ([direct link](https://v0.dev/chat/settings/keys))\n3. Create a new API key\n4. Copy the generated token",
107691
+ storage: {
107692
+ secrets: ["V0_TOKEN"],
107693
+ variables: []
107694
+ },
106567
107695
  grant: {
106568
107696
  kind: "manual",
106569
107697
  fields: {
@@ -106598,6 +107726,10 @@ var wandb = {
106598
107726
  "api-token": {
106599
107727
  label: "API Key",
106600
107728
  helpText: "Go to wandb.ai \u2192 Settings \u2192 API Keys \u2192 copy your key.",
107729
+ storage: {
107730
+ secrets: ["WANDB_TOKEN"],
107731
+ variables: []
107732
+ },
106601
107733
  grant: {
106602
107734
  kind: "manual",
106603
107735
  fields: {
@@ -106639,6 +107771,13 @@ var webflow = {
106639
107771
  clientIdEnv: "WEBFLOW_OAUTH_CLIENT_ID",
106640
107772
  clientSecretEnv: "WEBFLOW_OAUTH_CLIENT_SECRET"
106641
107773
  },
107774
+ storage: {
107775
+ secrets: ["WEBFLOW_ACCESS_TOKEN"],
107776
+ variables: [],
107777
+ secretRoles: {
107778
+ accessToken: "WEBFLOW_ACCESS_TOKEN"
107779
+ }
107780
+ },
106642
107781
  grant: {
106643
107782
  kind: "auth-code",
106644
107783
  tokenUrl: "https://api.webflow.com/oauth/access_token",
@@ -106672,6 +107811,10 @@ var webflow = {
106672
107811
  "api-token": {
106673
107812
  label: "Site Token",
106674
107813
  helpText: "1. Log in to [Webflow](https://webflow.com) (site administrator access required)\n2. In your workspace, find the site and click the gear icon to open **Site Settings**\n3. In the left sidebar, select **Apps & integrations**\n4. Scroll to the bottom of the page to the **API access** section\n5. Click **Generate API token**\n6. Enter a name for your token and choose the required scopes\n7. Click **Generate token**\n8. Copy the generated token and save it in a secure location",
107814
+ storage: {
107815
+ secrets: ["WEBFLOW_TOKEN"],
107816
+ variables: []
107817
+ },
106675
107818
  grant: {
106676
107819
  kind: "manual",
106677
107820
  fields: {
@@ -106715,6 +107858,10 @@ var weread = {
106715
107858
  "api-token": {
106716
107859
  label: "WeRead API Key",
106717
107860
  helpText: "1. Open the [WeRead Skill page](https://weread.qq.com/r/weread-skills)\n2. Scan the QR code with WeChat to sign in to your WeChat Reading account\n3. Copy the generated API key (it begins with `wrk-`)\n4. The key authorises every endpoint under `i.weread.qq.com` and is scoped to your own account data",
107861
+ storage: {
107862
+ secrets: ["WEREAD_TOKEN"],
107863
+ variables: []
107864
+ },
106718
107865
  grant: {
106719
107866
  kind: "manual",
106720
107867
  fields: {
@@ -106749,6 +107896,10 @@ var whaleAlert = {
106749
107896
  "api-token": {
106750
107897
  label: "API Key",
106751
107898
  helpText: "1. Create a Whale Alert developer account\n2. Subscribe to the Custom Alerts or Enterprise REST API plan\n3. Copy the API key provided for your subscription\n4. Use this key as the `api_key` query parameter",
107899
+ storage: {
107900
+ secrets: ["WHALE_ALERT_API_KEY"],
107901
+ variables: []
107902
+ },
106752
107903
  grant: {
106753
107904
  kind: "manual",
106754
107905
  fields: {
@@ -106783,6 +107934,10 @@ var wix = {
106783
107934
  "api-token": {
106784
107935
  label: "API Key",
106785
107936
  helpText: "1. Log in to your [Wix](https://www.wix.com) account (account owner or co-owner access required)\n2. Go to the [API Keys Manager](https://manage.wix.com/account/api-keys)\n3. Create a new API key and assign the required permissions\n4. Copy the generated API key and store it securely",
107937
+ storage: {
107938
+ secrets: ["WIX_TOKEN"],
107939
+ variables: []
107940
+ },
106786
107941
  grant: {
106787
107942
  kind: "manual",
106788
107943
  fields: {
@@ -106817,6 +107972,10 @@ var workos = {
106817
107972
  "api-token": {
106818
107973
  label: "API Key",
106819
107974
  helpText: "Go to WorkOS Dashboard \u2192 API Keys \u2192 copy your secret key (starts with `sk_live_` for production or `sk_test_` for sandbox).",
107975
+ storage: {
107976
+ secrets: ["WORKOS_TOKEN"],
107977
+ variables: []
107978
+ },
106820
107979
  grant: {
106821
107980
  kind: "manual",
106822
107981
  fields: {
@@ -106851,6 +108010,10 @@ var wrike = {
106851
108010
  "api-token": {
106852
108011
  label: "Permanent Access Token",
106853
108012
  helpText: "1. Navigate to your [Wrike](https://www.wrike.com) workspace\n2. Click on your **profile icon** in the navigation bar\n3. Select **Apps & Integrations**\n4. Click on **API**\n5. Click **+ App**\n6. Enter a name for your integration\n7. Click **Get Token** at the bottom of the window\n8. Copy and securely store your token \u2014 it will not be shown again after closing the page\n9. Click **Save**",
108013
+ storage: {
108014
+ secrets: ["WRIKE_TOKEN"],
108015
+ variables: []
108016
+ },
106854
108017
  grant: {
106855
108018
  kind: "manual",
106856
108019
  fields: {
@@ -106884,6 +108047,10 @@ var youtube = {
106884
108047
  "api-token": {
106885
108048
  label: "API Key",
106886
108049
  helpText: "1. Go to [Google Cloud Console](https://console.cloud.google.com/)\n2. Enable **YouTube Data API v3**\n3. Go to **Credentials** \u2192 **Create Credentials** \u2192 **API Key**\n4. Copy the API key",
108050
+ storage: {
108051
+ secrets: ["YOUTUBE_TOKEN"],
108052
+ variables: []
108053
+ },
106887
108054
  grant: {
106888
108055
  kind: "manual",
106889
108056
  fields: {
@@ -106918,6 +108085,10 @@ var zapier = {
106918
108085
  "api-token": {
106919
108086
  featureFlag: "zapierConnector" /* ZapierConnector */,
106920
108087
  label: "API Key",
108088
+ storage: {
108089
+ secrets: ["ZAPIER_TOKEN"],
108090
+ variables: []
108091
+ },
106921
108092
  grant: {
106922
108093
  kind: "manual",
106923
108094
  fields: {
@@ -106952,6 +108123,10 @@ var zapsign = {
106952
108123
  "api-token": {
106953
108124
  label: "API Token",
106954
108125
  helpText: "1. Log in to your [ZapSign](https://app.zapsign.com) account\n2. Go to **Settings**\n3. Navigate to **Integrations**\n4. Select **ZAPSIGN API**\n5. Copy your API token",
108126
+ storage: {
108127
+ secrets: ["ZAPSIGN_TOKEN"],
108128
+ variables: []
108129
+ },
106955
108130
  grant: {
106956
108131
  kind: "manual",
106957
108132
  fields: {
@@ -106986,6 +108161,10 @@ var zendesk = {
106986
108161
  "api-token": {
106987
108162
  label: "API Token",
106988
108163
  helpText: "1. Log in to [Zendesk Admin Center](https://www.zendesk.com/admin/)\n2. Go to **Apps and integrations \u2192 APIs \u2192 Zendesk API**\n3. Enable **Token Access** under the Settings tab\n4. Click **Add API token** and copy the token",
108164
+ storage: {
108165
+ secrets: ["ZENDESK_API_TOKEN"],
108166
+ variables: ["ZENDESK_EMAIL", "ZENDESK_SUBDOMAIN"]
108167
+ },
106989
108168
  grant: {
106990
108169
  kind: "manual",
106991
108170
  fields: {
@@ -107034,6 +108213,10 @@ var zep = {
107034
108213
  "api-token": {
107035
108214
  label: "API Key",
107036
108215
  helpText: "1. Log in to [app.getzep.com](https://app.getzep.com)\n2. Go to **Settings**\n3. Navigate to **API Keys**\n4. Click **Create API Key** and copy the key",
108216
+ storage: {
108217
+ secrets: ["ZEP_TOKEN"],
108218
+ variables: []
108219
+ },
107037
108220
  grant: {
107038
108221
  kind: "manual",
107039
108222
  fields: {
@@ -107068,6 +108251,10 @@ var zeptomail = {
107068
108251
  "api-token": {
107069
108252
  label: "Send Mail Token",
107070
108253
  helpText: "1. Log in to [ZeptoMail](https://zeptomail.zoho.com)\n2. Select the Mail Agent for which you want to generate the API key\n3. Go to the **SMTP/API** tab\n4. In the **API** section, copy the **Agent alias** (agentkey)\n5. Submit a POST request to `https://api.zeptomail.com/v1.1/agents/{agentkey}/apikeys` with an `Authorization: Zoho-oauthtoken [your-token]` header\n6. The response will contain your send mail token (username and password)",
108254
+ storage: {
108255
+ secrets: ["ZEPTOMAIL_TOKEN"],
108256
+ variables: []
108257
+ },
107071
108258
  grant: {
107072
108259
  kind: "manual",
107073
108260
  fields: {
@@ -107110,6 +108297,14 @@ var zoom = {
107110
108297
  clientIdEnv: "ZOOM_OAUTH_CLIENT_ID",
107111
108298
  clientSecretEnv: "ZOOM_OAUTH_CLIENT_SECRET"
107112
108299
  },
108300
+ storage: {
108301
+ secrets: ["ZOOM_ACCESS_TOKEN", "ZOOM_REFRESH_TOKEN"],
108302
+ variables: [],
108303
+ secretRoles: {
108304
+ accessToken: "ZOOM_ACCESS_TOKEN",
108305
+ refreshToken: "ZOOM_REFRESH_TOKEN"
108306
+ }
108307
+ },
107113
108308
  grant: {
107114
108309
  kind: "auth-code",
107115
108310
  tokenUrl: OAUTH_TOKEN_URL38,
@@ -107133,8 +108328,6 @@ var zoom = {
107133
108328
  access: {
107134
108329
  kind: "refresh-token",
107135
108330
  tokenUrl: OAUTH_TOKEN_URL38,
107136
- accessToken: "ZOOM_ACCESS_TOKEN",
107137
- refreshToken: "ZOOM_REFRESH_TOKEN",
107138
108331
  envBindings: {
107139
108332
  ZOOM_TOKEN: "$secrets.ZOOM_ACCESS_TOKEN"
107140
108333
  }
@@ -107149,7 +108342,10 @@ var zoom = {
107149
108342
  // ../../packages/connectors/src/connectors.ts
107150
108343
  var CONNECTOR_AUTH_METHOD_IDS = ["oauth", "api-token", "api"];
107151
108344
  var connectorAuthMethodIdSchema = external_exports.enum(CONNECTOR_AUTH_METHOD_IDS);
107152
- var CONNECTOR_TYPES_DEF = {
108345
+ function defineConnectors(configs) {
108346
+ return configs;
108347
+ }
108348
+ var CONNECTOR_TYPES_DEF = defineConnectors({
107153
108349
  ...github,
107154
108350
  ...gmail,
107155
108351
  ...notion,
@@ -107399,7 +108595,7 @@ var CONNECTOR_TYPES_DEF = {
107399
108595
  ...zep,
107400
108596
  ...zeptomail,
107401
108597
  ...zoom
107402
- };
108598
+ });
107403
108599
  var CONNECTOR_TYPES = CONNECTOR_TYPES_DEF;
107404
108600
  var CONNECTOR_TYPE_KEYS = Object.freeze(
107405
108601
  Object.keys(CONNECTOR_TYPES_DEF)
@@ -116096,7 +117292,6 @@ var CONNECTOR_AUTH_METHOD_PRIORITY = {
116096
117292
  "api-token": 1,
116097
117293
  api: 2
116098
117294
  };
116099
- var CONNECTOR_SECRET_REF_PREFIX = "$secrets.";
116100
117295
  function connectorAuthMethodPriority(authMethod) {
116101
117296
  return CONNECTOR_AUTH_METHOD_PRIORITY[authMethod];
116102
117297
  }
@@ -116133,32 +117328,6 @@ function connectorAccessEnvBindings(access) {
116133
117328
  return {};
116134
117329
  }
116135
117330
  }
116136
- function connectorAccessPlatformSecrets(access) {
116137
- switch (access.kind) {
116138
- case "static":
116139
- case "refresh-token":
116140
- return access.platformSecrets ?? [];
116141
- case "none":
116142
- return [];
116143
- }
116144
- }
116145
- function connectorOwnedAccessSecretBindingEntries(args) {
116146
- const platformSecretNames = new Set(
116147
- args.platformSecrets
116148
- );
116149
- const entries = [];
116150
- for (const [envName, valueRef] of Object.entries(args.envBindings)) {
116151
- if (!valueRef.startsWith(CONNECTOR_SECRET_REF_PREFIX)) {
116152
- continue;
116153
- }
116154
- const secretName = valueRef.slice(CONNECTOR_SECRET_REF_PREFIX.length);
116155
- if (platformSecretNames.has(secretName)) {
116156
- continue;
116157
- }
116158
- entries.push({ envName, secretName });
116159
- }
116160
- return entries;
116161
- }
116162
117331
  function connectorGrantScopes(grant) {
116163
117332
  switch (grant?.kind) {
116164
117333
  case "auth-code":
@@ -116180,33 +117349,7 @@ function getConnectorGenerationTypes(type) {
116180
117349
  return "generation" in config4 ? config4.generation ?? [] : [];
116181
117350
  }
116182
117351
  function connectorMethodOwnedSecretNames(method) {
116183
- if (!method) {
116184
- return [];
116185
- }
116186
- const names = /* @__PURE__ */ new Set();
116187
- const fields = getManualGrantFields(method);
116188
- for (const [name, field] of Object.entries(fields ?? {})) {
116189
- if (field.storage !== "variable") {
116190
- names.add(name);
116191
- }
116192
- }
116193
- for (const { secretName } of connectorOwnedAccessSecretBindingEntries({
116194
- envBindings: connectorAccessEnvBindings(method.access),
116195
- platformSecrets: connectorAccessPlatformSecrets(method.access)
116196
- })) {
116197
- names.add(secretName);
116198
- }
116199
- if (method.access.kind === "refresh-token") {
116200
- names.add(method.access.accessToken);
116201
- names.add(method.access.refreshToken);
116202
- }
116203
- const platformSecretNames = new Set(
116204
- connectorAccessPlatformSecrets(method.access)
116205
- );
116206
- for (const secretName of platformSecretNames) {
116207
- names.delete(secretName);
116208
- }
116209
- return [...names];
117352
+ return method ? [...method.storage.secrets] : [];
116210
117353
  }
116211
117354
  function getConnectorAuthMethodEnvBindings(type, authMethod) {
116212
117355
  const method = getConnectorAuthMethod(type, authMethod);
@@ -134452,4 +135595,4 @@ undici/lib/web/fetch/body.js:
134452
135595
  undici/lib/web/websocket/frame.js:
134453
135596
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
134454
135597
  */
134455
- //# sourceMappingURL=chunk-4ILTCW7H.js.map
135598
+ //# sourceMappingURL=chunk-DPEOZVW6.js.map