@vm0/cli 9.177.18 → 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.18",
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.18",
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) {
@@ -94843,13 +94846,10 @@ var SUPPORTED_RUN_MODELS = [
94843
94846
  "claude-opus-4-7",
94844
94847
  "claude-opus-4-6",
94845
94848
  "claude-sonnet-4-6",
94846
- "claude-haiku-4-5",
94847
94849
  "deepseek-v4-pro",
94848
- "deepseek-v4-flash",
94849
94850
  "kimi-k2.6",
94850
94851
  "kimi-k2.5",
94851
94852
  "MiniMax-M3",
94852
- "MiniMax-M2.7",
94853
94853
  "glm-5.1",
94854
94854
  "gpt-5.5",
94855
94855
  "gpt-5.4",
@@ -94860,13 +94860,10 @@ var VM0_MODEL_CREDIT_MULTIPLIER = Object.freeze({
94860
94860
  "claude-opus-4-7": 1.7,
94861
94861
  "claude-opus-4-6": 1.7,
94862
94862
  "claude-sonnet-4-6": 1,
94863
- "claude-haiku-4-5": 0.3,
94864
94863
  "deepseek-v4-pro": 0.06,
94865
- "deepseek-v4-flash": 0.02,
94866
94864
  "kimi-k2.6": 0.3,
94867
94865
  "kimi-k2.5": 0.2,
94868
94866
  "MiniMax-M3": 0.2,
94869
- "MiniMax-M2.7": 0.1,
94870
94867
  "glm-5.1": 0.4,
94871
94868
  "gpt-5.5": 2,
94872
94869
  "gpt-5.4": 1,
@@ -94905,10 +94902,6 @@ var VM0_MODEL_TO_PROVIDER = {
94905
94902
  vendor: "openrouter",
94906
94903
  apiModel: "z-ai/glm-5.1"
94907
94904
  },
94908
- "claude-haiku-4-5": {
94909
- concreteType: "anthropic-api-key",
94910
- vendor: "anthropic"
94911
- },
94912
94905
  "kimi-k2.6": {
94913
94906
  concreteType: "moonshot-api-key",
94914
94907
  vendor: "moonshot"
@@ -94921,18 +94914,10 @@ var VM0_MODEL_TO_PROVIDER = {
94921
94914
  concreteType: "minimax-api-key",
94922
94915
  vendor: "minimax"
94923
94916
  },
94924
- "MiniMax-M2.7": {
94925
- concreteType: "minimax-api-key",
94926
- vendor: "minimax"
94927
- },
94928
94917
  "deepseek-v4-pro": {
94929
94918
  concreteType: "deepseek-api-key",
94930
94919
  vendor: "deepseek"
94931
94920
  },
94932
- "deepseek-v4-flash": {
94933
- concreteType: "deepseek-api-key",
94934
- vendor: "deepseek"
94935
- },
94936
94921
  "gpt-5.5": {
94937
94922
  concreteType: "openai-api-key",
94938
94923
  vendor: "openai"
@@ -95006,13 +94991,10 @@ var MODEL_PROVIDER_TYPES = {
95006
94991
  "anthropic/claude-opus-4.6",
95007
94992
  "anthropic/claude-opus-4.5",
95008
94993
  "anthropic/claude-sonnet-4.5",
95009
- "anthropic/claude-haiku-4.5",
95010
94994
  "z-ai/glm-5.1",
95011
94995
  "deepseek/deepseek-v4-pro",
95012
- "deepseek/deepseek-v4-flash",
95013
94996
  "moonshotai/kimi-k2.6",
95014
- "moonshotai/kimi-k2.5",
95015
- "minimax/minimax-m2.7"
94997
+ "moonshotai/kimi-k2.5"
95016
94998
  ],
95017
94999
  defaultModel: ""
95018
95000
  },
@@ -95056,7 +95038,7 @@ var MODEL_PROVIDER_TYPES = {
95056
95038
  API_TIMEOUT_MS: "3000000",
95057
95039
  CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: "1"
95058
95040
  },
95059
- models: ["MiniMax-M3", "MiniMax-M2.7", "MiniMax-M2.1"],
95041
+ models: ["MiniMax-M3", "MiniMax-M2.1"],
95060
95042
  defaultModel: "MiniMax-M3"
95061
95043
  },
95062
95044
  "deepseek-api-key": {
@@ -95076,8 +95058,8 @@ var MODEL_PROVIDER_TYPES = {
95076
95058
  API_TIMEOUT_MS: "600000",
95077
95059
  CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: "1"
95078
95060
  },
95079
- models: ["deepseek-v4-pro", "deepseek-v4-flash"],
95080
- defaultModel: "deepseek-v4-flash"
95061
+ models: ["deepseek-v4-pro"],
95062
+ defaultModel: "deepseek-v4-pro"
95081
95063
  },
95082
95064
  "zai-api-key": {
95083
95065
  framework: "claude-code",
@@ -95121,7 +95103,6 @@ var MODEL_PROVIDER_TYPES = {
95121
95103
  "anthropic/claude-opus-4.5",
95122
95104
  "anthropic/claude-sonnet-4.6",
95123
95105
  "anthropic/claude-sonnet-4.5",
95124
- "anthropic/claude-haiku-4.5",
95125
95106
  "moonshotai/kimi-k2.6",
95126
95107
  "moonshotai/kimi-k2.5",
95127
95108
  "minimax/minimax-m2.5",
@@ -95816,6 +95797,7 @@ var orgMessageResponseSchema = external_exports.object({
95816
95797
  // ../../packages/api-contracts/src/contracts/orgs.ts
95817
95798
  var c4 = initContract();
95818
95799
  var orgTierSchema = external_exports.enum(["free", "pro-suspend", "pro", "team"]);
95800
+ var permissionGrantModeSchema = external_exports.enum(["legacy", "user-grants"]);
95819
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(
95820
95802
  /^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]{1,2}$/,
95821
95803
  "Org slug must contain only lowercase letters, numbers, and hyphens, and must start and end with an alphanumeric character"
@@ -95828,6 +95810,7 @@ var orgResponseSchema = external_exports.object({
95828
95810
  name: external_exports.string(),
95829
95811
  tier: external_exports.string().optional(),
95830
95812
  role: orgRoleSchema.optional(),
95813
+ permissionGrantMode: permissionGrantModeSchema.optional(),
95831
95814
  createdBy: external_exports.string().optional()
95832
95815
  });
95833
95816
  var updateOrgRequestSchema = external_exports.object({
@@ -97457,6 +97440,13 @@ var github = {
97457
97440
  clientIdEnv: "GH_OAUTH_CLIENT_ID",
97458
97441
  clientSecretEnv: "GH_OAUTH_CLIENT_SECRET"
97459
97442
  },
97443
+ storage: {
97444
+ secrets: ["GITHUB_ACCESS_TOKEN"],
97445
+ variables: [],
97446
+ secretRoles: {
97447
+ accessToken: "GITHUB_ACCESS_TOKEN"
97448
+ }
97449
+ },
97460
97450
  grant: {
97461
97451
  kind: "auth-code",
97462
97452
  tokenUrl: "https://github.com/login/oauth/access_token",
@@ -97495,6 +97485,14 @@ var gmail = {
97495
97485
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97496
97486
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97497
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
+ },
97498
97496
  grant: {
97499
97497
  kind: "auth-code",
97500
97498
  tokenUrl: OAUTH_TOKEN_URL,
@@ -97503,8 +97501,6 @@ var gmail = {
97503
97501
  access: {
97504
97502
  kind: "refresh-token",
97505
97503
  tokenUrl: OAUTH_TOKEN_URL,
97506
- accessToken: "GMAIL_ACCESS_TOKEN",
97507
- refreshToken: "GMAIL_REFRESH_TOKEN",
97508
97504
  envBindings: {
97509
97505
  GMAIL_TOKEN: "$secrets.GMAIL_ACCESS_TOKEN"
97510
97506
  }
@@ -97535,6 +97531,14 @@ var notion = {
97535
97531
  clientIdEnv: "NOTION_OAUTH_CLIENT_ID",
97536
97532
  clientSecretEnv: "NOTION_OAUTH_CLIENT_SECRET"
97537
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
+ },
97538
97542
  grant: {
97539
97543
  kind: "auth-code",
97540
97544
  tokenUrl: OAUTH_TOKEN_URL2,
@@ -97543,8 +97547,6 @@ var notion = {
97543
97547
  access: {
97544
97548
  kind: "refresh-token",
97545
97549
  tokenUrl: OAUTH_TOKEN_URL2,
97546
- accessToken: "NOTION_ACCESS_TOKEN",
97547
- refreshToken: "NOTION_REFRESH_TOKEN",
97548
97550
  envBindings: {
97549
97551
  NOTION_TOKEN: "$secrets.NOTION_ACCESS_TOKEN"
97550
97552
  }
@@ -97574,6 +97576,14 @@ var x = {
97574
97576
  clientIdEnv: "X_OAUTH_CLIENT_ID",
97575
97577
  clientSecretEnv: "X_OAUTH_CLIENT_SECRET"
97576
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
+ },
97577
97587
  grant: {
97578
97588
  kind: "auth-code",
97579
97589
  tokenUrl: OAUTH_TOKEN_URL3,
@@ -97627,8 +97637,6 @@ var x = {
97627
97637
  access: {
97628
97638
  kind: "refresh-token",
97629
97639
  tokenUrl: OAUTH_TOKEN_URL3,
97630
- accessToken: "X_ACCESS_TOKEN",
97631
- refreshToken: "X_REFRESH_TOKEN",
97632
97640
  envBindings: {
97633
97641
  X_TOKEN: "$secrets.X_ACCESS_TOKEN"
97634
97642
  }
@@ -97658,6 +97666,14 @@ var googleDrive = {
97658
97666
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97659
97667
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97660
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
+ },
97661
97677
  grant: {
97662
97678
  kind: "auth-code",
97663
97679
  tokenUrl: OAUTH_TOKEN_URL4,
@@ -97669,8 +97685,6 @@ var googleDrive = {
97669
97685
  access: {
97670
97686
  kind: "refresh-token",
97671
97687
  tokenUrl: OAUTH_TOKEN_URL4,
97672
- accessToken: "GOOGLE_DRIVE_ACCESS_TOKEN",
97673
- refreshToken: "GOOGLE_DRIVE_REFRESH_TOKEN",
97674
97688
  envBindings: {
97675
97689
  GOOGLE_DRIVE_TOKEN: "$secrets.GOOGLE_DRIVE_ACCESS_TOKEN"
97676
97690
  }
@@ -97700,6 +97714,13 @@ var slack = {
97700
97714
  clientIdEnv: "SLACK_OAUTH_CLIENT_ID",
97701
97715
  clientSecretEnv: "SLACK_OAUTH_CLIENT_SECRET"
97702
97716
  },
97717
+ storage: {
97718
+ secrets: ["SLACK_ACCESS_TOKEN"],
97719
+ variables: [],
97720
+ secretRoles: {
97721
+ accessToken: "SLACK_ACCESS_TOKEN"
97722
+ }
97723
+ },
97703
97724
  grant: {
97704
97725
  kind: "auth-code",
97705
97726
  tokenUrl: "https://slack.com/api/oauth.v2.access",
@@ -97770,6 +97791,18 @@ var slock = {
97770
97791
  clientRegistration: "dynamic",
97771
97792
  clientType: "public"
97772
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
+ },
97773
97806
  grant: {
97774
97807
  kind: "device-auth",
97775
97808
  deviceAuthUrl: `${SLOCK_API_BASE_URL}/api/auth/device/authorize`,
@@ -97779,8 +97812,6 @@ var slock = {
97779
97812
  access: {
97780
97813
  kind: "refresh-token",
97781
97814
  tokenUrl: SLOCK_REFRESH_TOKEN_URL,
97782
- accessToken: "SLOCK_ACCESS_TOKEN",
97783
- refreshToken: "SLOCK_REFRESH_TOKEN",
97784
97815
  envBindings: {
97785
97816
  SLOCK_TOKEN: "$secrets.SLOCK_ACCESS_TOKEN",
97786
97817
  SLOCK_SERVER_ID: "$secrets.SLOCK_SERVER_ID"
@@ -97811,6 +97842,17 @@ var googleSheets = {
97811
97842
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97812
97843
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97813
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
+ },
97814
97856
  grant: {
97815
97857
  kind: "auth-code",
97816
97858
  tokenUrl: OAUTH_TOKEN_URL5,
@@ -97822,8 +97864,6 @@ var googleSheets = {
97822
97864
  access: {
97823
97865
  kind: "refresh-token",
97824
97866
  tokenUrl: OAUTH_TOKEN_URL5,
97825
- accessToken: "GOOGLE_SHEETS_ACCESS_TOKEN",
97826
- refreshToken: "GOOGLE_SHEETS_REFRESH_TOKEN",
97827
97867
  envBindings: {
97828
97868
  GOOGLE_SHEETS_TOKEN: "$secrets.GOOGLE_SHEETS_ACCESS_TOKEN"
97829
97869
  }
@@ -97854,6 +97894,17 @@ var googleCalendar = {
97854
97894
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97855
97895
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97856
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
+ },
97857
97908
  grant: {
97858
97909
  kind: "auth-code",
97859
97910
  tokenUrl: OAUTH_TOKEN_URL6,
@@ -97865,8 +97916,6 @@ var googleCalendar = {
97865
97916
  access: {
97866
97917
  kind: "refresh-token",
97867
97918
  tokenUrl: OAUTH_TOKEN_URL6,
97868
- accessToken: "GOOGLE_CALENDAR_ACCESS_TOKEN",
97869
- refreshToken: "GOOGLE_CALENDAR_REFRESH_TOKEN",
97870
97919
  envBindings: {
97871
97920
  GOOGLE_CALENDAR_TOKEN: "$secrets.GOOGLE_CALENDAR_ACCESS_TOKEN"
97872
97921
  }
@@ -97896,6 +97945,14 @@ var googleDocs = {
97896
97945
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
97897
97946
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
97898
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
+ },
97899
97956
  grant: {
97900
97957
  kind: "auth-code",
97901
97958
  tokenUrl: OAUTH_TOKEN_URL7,
@@ -97907,8 +97964,6 @@ var googleDocs = {
97907
97964
  access: {
97908
97965
  kind: "refresh-token",
97909
97966
  tokenUrl: OAUTH_TOKEN_URL7,
97910
- accessToken: "GOOGLE_DOCS_ACCESS_TOKEN",
97911
- refreshToken: "GOOGLE_DOCS_REFRESH_TOKEN",
97912
97967
  envBindings: {
97913
97968
  GOOGLE_DOCS_TOKEN: "$secrets.GOOGLE_DOCS_ACCESS_TOKEN"
97914
97969
  }
@@ -97939,6 +97994,14 @@ var linear = {
97939
97994
  clientIdEnv: "LINEAR_OAUTH_CLIENT_ID",
97940
97995
  clientSecretEnv: "LINEAR_OAUTH_CLIENT_SECRET"
97941
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
+ },
97942
98005
  grant: {
97943
98006
  kind: "auth-code",
97944
98007
  tokenUrl: OAUTH_TOKEN_URL8,
@@ -97953,8 +98016,6 @@ var linear = {
97953
98016
  access: {
97954
98017
  kind: "refresh-token",
97955
98018
  tokenUrl: OAUTH_TOKEN_URL8,
97956
- accessToken: "LINEAR_ACCESS_TOKEN",
97957
- refreshToken: "LINEAR_REFRESH_TOKEN",
97958
98019
  envBindings: {
97959
98020
  LINEAR_TOKEN: "$secrets.LINEAR_ACCESS_TOKEN"
97960
98021
  }
@@ -97983,6 +98044,13 @@ var intervalsIcu = {
97983
98044
  clientIdEnv: "INTERVALS_ICU_OAUTH_CLIENT_ID",
97984
98045
  clientSecretEnv: "INTERVALS_ICU_OAUTH_CLIENT_SECRET"
97985
98046
  },
98047
+ storage: {
98048
+ secrets: ["INTERVALS_ICU_ACCESS_TOKEN"],
98049
+ variables: [],
98050
+ secretRoles: {
98051
+ accessToken: "INTERVALS_ICU_ACCESS_TOKEN"
98052
+ }
98053
+ },
97986
98054
  grant: {
97987
98055
  kind: "auth-code",
97988
98056
  tokenUrl: "https://intervals.icu/api/oauth/token",
@@ -98018,6 +98086,13 @@ var vercel = {
98018
98086
  clientIdEnv: "VERCEL_OAUTH_CLIENT_ID",
98019
98087
  clientSecretEnv: "VERCEL_OAUTH_CLIENT_SECRET"
98020
98088
  },
98089
+ storage: {
98090
+ secrets: ["VERCEL_ACCESS_TOKEN"],
98091
+ variables: [],
98092
+ secretRoles: {
98093
+ accessToken: "VERCEL_ACCESS_TOKEN"
98094
+ }
98095
+ },
98021
98096
  grant: {
98022
98097
  kind: "auth-code",
98023
98098
  tokenUrl: "https://api.vercel.com/v2/oauth/access_token",
@@ -98054,6 +98129,14 @@ var strava = {
98054
98129
  clientIdEnv: "STRAVA_OAUTH_CLIENT_ID",
98055
98130
  clientSecretEnv: "STRAVA_OAUTH_CLIENT_SECRET"
98056
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
+ },
98057
98140
  grant: {
98058
98141
  kind: "auth-code",
98059
98142
  tokenUrl: OAUTH_TOKEN_URL9,
@@ -98067,8 +98150,6 @@ var strava = {
98067
98150
  access: {
98068
98151
  kind: "refresh-token",
98069
98152
  tokenUrl: OAUTH_TOKEN_URL9,
98070
- accessToken: "STRAVA_ACCESS_TOKEN",
98071
- refreshToken: "STRAVA_REFRESH_TOKEN",
98072
98153
  envBindings: {
98073
98154
  STRAVA_TOKEN: "$secrets.STRAVA_ACCESS_TOKEN"
98074
98155
  }
@@ -98098,6 +98179,14 @@ var googleMeet = {
98098
98179
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
98099
98180
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
98100
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
+ },
98101
98190
  grant: {
98102
98191
  kind: "auth-code",
98103
98192
  tokenUrl: OAUTH_TOKEN_URL10,
@@ -98114,8 +98203,6 @@ var googleMeet = {
98114
98203
  access: {
98115
98204
  kind: "refresh-token",
98116
98205
  tokenUrl: OAUTH_TOKEN_URL10,
98117
- accessToken: "GOOGLE_MEET_ACCESS_TOKEN",
98118
- refreshToken: "GOOGLE_MEET_REFRESH_TOKEN",
98119
98206
  envBindings: {
98120
98207
  GOOGLE_MEET_TOKEN: "$secrets.GOOGLE_MEET_ACCESS_TOKEN"
98121
98208
  }
@@ -98145,6 +98232,14 @@ var hubspot = {
98145
98232
  clientIdEnv: "HUBSPOT_OAUTH_CLIENT_ID",
98146
98233
  clientSecretEnv: "HUBSPOT_OAUTH_CLIENT_SECRET"
98147
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
+ },
98148
98243
  grant: {
98149
98244
  kind: "auth-code",
98150
98245
  tokenUrl: OAUTH_TOKEN_URL11,
@@ -98166,8 +98261,6 @@ var hubspot = {
98166
98261
  access: {
98167
98262
  kind: "refresh-token",
98168
98263
  tokenUrl: OAUTH_TOKEN_URL11,
98169
- accessToken: "HUBSPOT_ACCESS_TOKEN",
98170
- refreshToken: "HUBSPOT_REFRESH_TOKEN",
98171
98264
  envBindings: {
98172
98265
  HUBSPOT_TOKEN: "$secrets.HUBSPOT_ACCESS_TOKEN"
98173
98266
  }
@@ -98197,6 +98290,14 @@ var sentry = {
98197
98290
  clientIdEnv: "SENTRY_OAUTH_CLIENT_ID",
98198
98291
  clientSecretEnv: "SENTRY_OAUTH_CLIENT_SECRET"
98199
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
+ },
98200
98301
  grant: {
98201
98302
  kind: "auth-code",
98202
98303
  tokenUrl: OAUTH_TOKEN_URL12,
@@ -98212,8 +98313,6 @@ var sentry = {
98212
98313
  access: {
98213
98314
  kind: "refresh-token",
98214
98315
  tokenUrl: OAUTH_TOKEN_URL12,
98215
- accessToken: "SENTRY_ACCESS_TOKEN",
98216
- refreshToken: "SENTRY_REFRESH_TOKEN",
98217
98316
  envBindings: {
98218
98317
  SENTRY_TOKEN: "$secrets.SENTRY_ACCESS_TOKEN"
98219
98318
  }
@@ -98242,6 +98341,13 @@ var todoist = {
98242
98341
  clientIdEnv: "TODOIST_OAUTH_CLIENT_ID",
98243
98342
  clientSecretEnv: "TODOIST_OAUTH_CLIENT_SECRET"
98244
98343
  },
98344
+ storage: {
98345
+ secrets: ["TODOIST_ACCESS_TOKEN"],
98346
+ variables: [],
98347
+ secretRoles: {
98348
+ accessToken: "TODOIST_ACCESS_TOKEN"
98349
+ }
98350
+ },
98245
98351
  grant: {
98246
98352
  kind: "auth-code",
98247
98353
  tokenUrl: "https://todoist.com/oauth/access_token",
@@ -98278,6 +98384,14 @@ var xero = {
98278
98384
  clientIdEnv: "XERO_OAUTH_CLIENT_ID",
98279
98385
  clientSecretEnv: "XERO_OAUTH_CLIENT_SECRET"
98280
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
+ },
98281
98395
  grant: {
98282
98396
  kind: "auth-code",
98283
98397
  tokenUrl: OAUTH_TOKEN_URL13,
@@ -98309,8 +98423,6 @@ var xero = {
98309
98423
  access: {
98310
98424
  kind: "refresh-token",
98311
98425
  tokenUrl: OAUTH_TOKEN_URL13,
98312
- accessToken: "XERO_ACCESS_TOKEN",
98313
- refreshToken: "XERO_REFRESH_TOKEN",
98314
98426
  envBindings: {
98315
98427
  XERO_TOKEN: "$secrets.XERO_ACCESS_TOKEN"
98316
98428
  }
@@ -98340,6 +98452,14 @@ var airtable = {
98340
98452
  clientIdEnv: "AIRTABLE_OAUTH_CLIENT_ID",
98341
98453
  clientSecretEnv: "AIRTABLE_OAUTH_CLIENT_SECRET"
98342
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
+ },
98343
98463
  grant: {
98344
98464
  kind: "auth-code",
98345
98465
  tokenUrl: OAUTH_TOKEN_URL14,
@@ -98356,8 +98476,6 @@ var airtable = {
98356
98476
  access: {
98357
98477
  kind: "refresh-token",
98358
98478
  tokenUrl: OAUTH_TOKEN_URL14,
98359
- accessToken: "AIRTABLE_ACCESS_TOKEN",
98360
- refreshToken: "AIRTABLE_REFRESH_TOKEN",
98361
98479
  envBindings: {
98362
98480
  AIRTABLE_TOKEN: "$secrets.AIRTABLE_ACCESS_TOKEN"
98363
98481
  }
@@ -98393,6 +98511,14 @@ var docusign = {
98393
98511
  clientIdEnv: "DOCUSIGN_OAUTH_CLIENT_ID",
98394
98512
  clientSecretEnv: "DOCUSIGN_OAUTH_CLIENT_SECRET"
98395
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
+ },
98396
98522
  grant: {
98397
98523
  kind: "auth-code",
98398
98524
  tokenUrl: OAUTH_TOKEN_URL15,
@@ -98401,8 +98527,6 @@ var docusign = {
98401
98527
  access: {
98402
98528
  kind: "refresh-token",
98403
98529
  tokenUrl: OAUTH_TOKEN_URL15,
98404
- accessToken: "DOCUSIGN_ACCESS_TOKEN",
98405
- refreshToken: "DOCUSIGN_REFRESH_TOKEN",
98406
98530
  envBindings: {
98407
98531
  DOCUSIGN_TOKEN: "$secrets.DOCUSIGN_ACCESS_TOKEN"
98408
98532
  }
@@ -98434,6 +98558,14 @@ var googleAds = {
98434
98558
  clientIdEnv: "GOOGLE_OAUTH_CLIENT_ID",
98435
98559
  clientSecretEnv: "GOOGLE_OAUTH_CLIENT_SECRET"
98436
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
+ },
98437
98569
  grant: {
98438
98570
  kind: "auth-code",
98439
98571
  tokenUrl: OAUTH_TOKEN_URL16,
@@ -98445,8 +98577,6 @@ var googleAds = {
98445
98577
  access: {
98446
98578
  kind: "refresh-token",
98447
98579
  tokenUrl: OAUTH_TOKEN_URL16,
98448
- accessToken: "GOOGLE_ADS_ACCESS_TOKEN",
98449
- refreshToken: "GOOGLE_ADS_REFRESH_TOKEN",
98450
98580
  platformSecrets: ["GOOGLE_ADS_DEVELOPER_TOKEN"],
98451
98581
  envBindings: {
98452
98582
  GOOGLE_ADS_TOKEN: "$secrets.GOOGLE_ADS_ACCESS_TOKEN",
@@ -98471,6 +98601,10 @@ var googleMaps = {
98471
98601
  "api-token": {
98472
98602
  label: "API Key",
98473
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
+ },
98474
98608
  grant: {
98475
98609
  kind: "manual",
98476
98610
  fields: {
@@ -98513,6 +98647,14 @@ var gumroad = {
98513
98647
  clientIdEnv: "GUMROAD_OAUTH_CLIENT_ID",
98514
98648
  clientSecretEnv: "GUMROAD_OAUTH_CLIENT_SECRET"
98515
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
+ },
98516
98658
  grant: {
98517
98659
  kind: "auth-code",
98518
98660
  tokenUrl: OAUTH_TOKEN_URL17,
@@ -98527,8 +98669,6 @@ var gumroad = {
98527
98669
  access: {
98528
98670
  kind: "refresh-token",
98529
98671
  tokenUrl: OAUTH_TOKEN_URL17,
98530
- accessToken: "GUMROAD_ACCESS_TOKEN",
98531
- refreshToken: "GUMROAD_REFRESH_TOKEN",
98532
98672
  envBindings: {
98533
98673
  GUMROAD_TOKEN: "$secrets.GUMROAD_ACCESS_TOKEN"
98534
98674
  }
@@ -98538,6 +98678,10 @@ var gumroad = {
98538
98678
  "api-token": {
98539
98679
  label: "Access Token",
98540
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
+ },
98541
98685
  grant: {
98542
98686
  kind: "manual",
98543
98687
  fields: {
@@ -98580,6 +98724,14 @@ var spotify = {
98580
98724
  clientIdEnv: "SPOTIFY_OAUTH_CLIENT_ID",
98581
98725
  clientSecretEnv: "SPOTIFY_OAUTH_CLIENT_SECRET"
98582
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
+ },
98583
98735
  grant: {
98584
98736
  kind: "auth-code",
98585
98737
  tokenUrl: OAUTH_TOKEN_URL18,
@@ -98608,8 +98760,6 @@ var spotify = {
98608
98760
  access: {
98609
98761
  kind: "refresh-token",
98610
98762
  tokenUrl: OAUTH_TOKEN_URL18,
98611
- accessToken: "SPOTIFY_ACCESS_TOKEN",
98612
- refreshToken: "SPOTIFY_REFRESH_TOKEN",
98613
98763
  envBindings: {
98614
98764
  SPOTIFY_TOKEN: "$secrets.SPOTIFY_ACCESS_TOKEN"
98615
98765
  }
@@ -98632,6 +98782,10 @@ var agentmail = {
98632
98782
  "api-token": {
98633
98783
  label: "API Key",
98634
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
+ },
98635
98789
  grant: {
98636
98790
  kind: "manual",
98637
98791
  fields: {
@@ -98667,6 +98821,14 @@ var agora = {
98667
98821
  "api-token": {
98668
98822
  label: "REST credentials",
98669
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
+ },
98670
98832
  grant: {
98671
98833
  kind: "manual",
98672
98834
  fields: {
@@ -98728,6 +98890,14 @@ var ahrefs = {
98728
98890
  clientIdEnv: "AHREFS_OAUTH_CLIENT_ID",
98729
98891
  clientSecretEnv: "AHREFS_OAUTH_CLIENT_SECRET"
98730
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
+ },
98731
98901
  grant: {
98732
98902
  kind: "auth-code",
98733
98903
  tokenUrl: OAUTH_TOKEN_URL19,
@@ -98736,8 +98906,6 @@ var ahrefs = {
98736
98906
  access: {
98737
98907
  kind: "refresh-token",
98738
98908
  tokenUrl: OAUTH_TOKEN_URL19,
98739
- accessToken: "AHREFS_ACCESS_TOKEN",
98740
- refreshToken: "AHREFS_REFRESH_TOKEN",
98741
98909
  envBindings: {
98742
98910
  AHREFS_TOKEN: "$secrets.AHREFS_ACCESS_TOKEN"
98743
98911
  }
@@ -98747,6 +98915,10 @@ var ahrefs = {
98747
98915
  "api-token": {
98748
98916
  label: "API Token",
98749
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
+ },
98750
98922
  grant: {
98751
98923
  kind: "manual",
98752
98924
  fields: {
@@ -98782,6 +98954,10 @@ var adzuna = {
98782
98954
  "api-token": {
98783
98955
  label: "App ID and App Key",
98784
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
+ },
98785
98961
  grant: {
98786
98962
  kind: "manual",
98787
98963
  fields: {
@@ -98824,6 +99000,10 @@ var altium365 = {
98824
99000
  "api-token": {
98825
99001
  label: "API Key",
98826
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
+ },
98827
99007
  grant: {
98828
99008
  kind: "manual",
98829
99009
  fields: {
@@ -98865,6 +99045,10 @@ var alchemy = {
98865
99045
  "api-token": {
98866
99046
  label: "API Key or Access Key",
98867
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
+ },
98868
99052
  grant: {
98869
99053
  kind: "manual",
98870
99054
  fields: {
@@ -98899,6 +99083,10 @@ var amplitude = {
98899
99083
  "api-token": {
98900
99084
  label: "API Key",
98901
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
+ },
98902
99090
  grant: {
98903
99091
  kind: "manual",
98904
99092
  fields: {
@@ -98939,6 +99127,10 @@ var amadeus = {
98939
99127
  "api-token": {
98940
99128
  label: "API Key and Secret",
98941
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
+ },
98942
99134
  grant: {
98943
99135
  kind: "manual",
98944
99136
  fields: {
@@ -98977,6 +99169,10 @@ var anthropicManagedAgents = {
98977
99169
  "api-token": {
98978
99170
  label: "API Key",
98979
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
+ },
98980
99176
  grant: {
98981
99177
  kind: "manual",
98982
99178
  fields: {
@@ -99011,6 +99207,10 @@ var apify = {
99011
99207
  "api-token": {
99012
99208
  label: "API Token",
99013
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
+ },
99014
99214
  grant: {
99015
99215
  kind: "manual",
99016
99216
  fields: {
@@ -99045,6 +99245,10 @@ var apollo = {
99045
99245
  "api-token": {
99046
99246
  label: "API Key",
99047
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
+ },
99048
99252
  grant: {
99049
99253
  kind: "manual",
99050
99254
  fields: {
@@ -99086,6 +99290,14 @@ var asana = {
99086
99290
  clientIdEnv: "ASANA_OAUTH_CLIENT_ID",
99087
99291
  clientSecretEnv: "ASANA_OAUTH_CLIENT_SECRET"
99088
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
+ },
99089
99301
  grant: {
99090
99302
  kind: "auth-code",
99091
99303
  tokenUrl: OAUTH_TOKEN_URL20,
@@ -99094,8 +99306,6 @@ var asana = {
99094
99306
  access: {
99095
99307
  kind: "refresh-token",
99096
99308
  tokenUrl: OAUTH_TOKEN_URL20,
99097
- accessToken: "ASANA_ACCESS_TOKEN",
99098
- refreshToken: "ASANA_REFRESH_TOKEN",
99099
99309
  envBindings: {
99100
99310
  ASANA_TOKEN: "$secrets.ASANA_ACCESS_TOKEN"
99101
99311
  }
@@ -99118,6 +99328,10 @@ var atlassian = {
99118
99328
  "api-token": {
99119
99329
  label: "API Token",
99120
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
+ },
99121
99335
  grant: {
99122
99336
  kind: "manual",
99123
99337
  fields: {
@@ -99166,6 +99380,10 @@ var attio = {
99166
99380
  "api-token": {
99167
99381
  label: "API Key",
99168
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
+ },
99169
99387
  grant: {
99170
99388
  kind: "manual",
99171
99389
  fields: {
@@ -99202,6 +99420,10 @@ var atlascloud = {
99202
99420
  "api-token": {
99203
99421
  label: "API Key",
99204
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
+ },
99205
99427
  grant: {
99206
99428
  kind: "manual",
99207
99429
  fields: {
@@ -99236,6 +99458,10 @@ var aviationstack = {
99236
99458
  "api-token": {
99237
99459
  label: "Access Key",
99238
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
+ },
99239
99465
  grant: {
99240
99466
  kind: "manual",
99241
99467
  fields: {
@@ -99269,6 +99495,10 @@ var axiom = {
99269
99495
  "api-token": {
99270
99496
  label: "API Token",
99271
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
+ },
99272
99502
  grant: {
99273
99503
  kind: "manual",
99274
99504
  fields: {
@@ -99309,6 +99539,14 @@ var base44 = {
99309
99539
  clientType: "public",
99310
99540
  clientId: "base44_cli"
99311
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
+ },
99312
99550
  grant: {
99313
99551
  kind: "device-auth",
99314
99552
  deviceAuthUrl: "https://app.base44.com/oauth/device/code",
@@ -99318,8 +99556,6 @@ var base44 = {
99318
99556
  access: {
99319
99557
  kind: "refresh-token",
99320
99558
  tokenUrl: OAUTH_TOKEN_URL21,
99321
- accessToken: "BASE44_ACCESS_TOKEN",
99322
- refreshToken: "BASE44_REFRESH_TOKEN",
99323
99559
  envBindings: {
99324
99560
  BASE44_TOKEN: "$secrets.BASE44_ACCESS_TOKEN"
99325
99561
  }
@@ -99345,6 +99581,10 @@ var bentoml = {
99345
99581
  featureFlag: "bentomlConnector" /* BentomlConnector */,
99346
99582
  label: "BentoCloud API Token",
99347
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
+ },
99348
99588
  grant: {
99349
99589
  kind: "manual",
99350
99590
  fields: {
@@ -99388,6 +99628,10 @@ var bfl = {
99388
99628
  "api-token": {
99389
99629
  label: "API Key",
99390
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
+ },
99391
99635
  grant: {
99392
99636
  kind: "manual",
99393
99637
  fields: {
@@ -99422,6 +99666,10 @@ var bitrefill = {
99422
99666
  "api-token": {
99423
99667
  label: "Personal API Token",
99424
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
+ },
99425
99673
  grant: {
99426
99674
  kind: "manual",
99427
99675
  fields: {
@@ -99455,6 +99703,10 @@ var bitrix = {
99455
99703
  "api-token": {
99456
99704
  label: "Webhook URL",
99457
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
+ },
99458
99710
  grant: {
99459
99711
  kind: "manual",
99460
99712
  fields: {
@@ -99491,6 +99743,10 @@ var bland = {
99491
99743
  "api-token": {
99492
99744
  label: "API Key",
99493
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
+ },
99494
99750
  grant: {
99495
99751
  kind: "manual",
99496
99752
  fields: {
@@ -99525,6 +99781,10 @@ var braveSearch = {
99525
99781
  "api-token": {
99526
99782
  label: "API Key",
99527
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
+ },
99528
99788
  grant: {
99529
99789
  kind: "manual",
99530
99790
  fields: {
@@ -99560,6 +99820,10 @@ var brex = {
99560
99820
  "api-token": {
99561
99821
  label: "API Token",
99562
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
+ },
99563
99827
  grant: {
99564
99828
  kind: "manual",
99565
99829
  fields: {
@@ -99594,6 +99858,10 @@ var brevo = {
99594
99858
  "api-token": {
99595
99859
  label: "API Key",
99596
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
+ },
99597
99865
  grant: {
99598
99866
  kind: "manual",
99599
99867
  fields: {
@@ -99628,6 +99896,10 @@ var brightData = {
99628
99896
  "api-token": {
99629
99897
  label: "API Token",
99630
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
+ },
99631
99903
  grant: {
99632
99904
  kind: "manual",
99633
99905
  fields: {
@@ -99661,6 +99933,10 @@ var browserbase = {
99661
99933
  "api-token": {
99662
99934
  label: "API Token",
99663
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
+ },
99664
99940
  grant: {
99665
99941
  kind: "manual",
99666
99942
  fields: {
@@ -99701,6 +99977,10 @@ var browserless = {
99701
99977
  "api-token": {
99702
99978
  label: "API Token",
99703
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
+ },
99704
99984
  grant: {
99705
99985
  kind: "manual",
99706
99986
  fields: {
@@ -99735,6 +100015,10 @@ var browserstack = {
99735
100015
  "api-token": {
99736
100016
  label: "API Key",
99737
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
+ },
99738
100022
  grant: {
99739
100023
  kind: "manual",
99740
100024
  fields: {
@@ -99775,6 +100059,10 @@ var browserUse = {
99775
100059
  "api-token": {
99776
100060
  label: "API Key",
99777
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
+ },
99778
100066
  grant: {
99779
100067
  kind: "manual",
99780
100068
  fields: {
@@ -99809,6 +100097,10 @@ var bubblemaps = {
99809
100097
  "api-token": {
99810
100098
  label: "API Key",
99811
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
+ },
99812
100104
  grant: {
99813
100105
  kind: "manual",
99814
100106
  fields: {
@@ -99843,6 +100135,10 @@ var buffer = {
99843
100135
  "api-token": {
99844
100136
  label: "API Key",
99845
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
+ },
99846
100142
  grant: {
99847
100143
  kind: "manual",
99848
100144
  fields: {
@@ -99877,6 +100173,10 @@ var builtwith = {
99877
100173
  "api-token": {
99878
100174
  label: "API Key",
99879
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
+ },
99880
100180
  grant: {
99881
100181
  kind: "manual",
99882
100182
  fields: {
@@ -99910,6 +100210,10 @@ var calCom = {
99910
100210
  "api-token": {
99911
100211
  label: "API Token",
99912
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
+ },
99913
100217
  grant: {
99914
100218
  kind: "manual",
99915
100219
  fields: {
@@ -99944,6 +100248,10 @@ var calendly = {
99944
100248
  "api-token": {
99945
100249
  label: "Personal Access Token",
99946
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
+ },
99947
100255
  grant: {
99948
100256
  kind: "manual",
99949
100257
  fields: {
@@ -99986,6 +100294,14 @@ var canva = {
99986
100294
  clientIdEnv: "CANVA_OAUTH_CLIENT_ID",
99987
100295
  clientSecretEnv: "CANVA_OAUTH_CLIENT_SECRET"
99988
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
+ },
99989
100305
  grant: {
99990
100306
  kind: "auth-code",
99991
100307
  tokenUrl: OAUTH_TOKEN_URL22,
@@ -100007,8 +100323,6 @@ var canva = {
100007
100323
  access: {
100008
100324
  kind: "refresh-token",
100009
100325
  tokenUrl: OAUTH_TOKEN_URL22,
100010
- accessToken: "CANVA_ACCESS_TOKEN",
100011
- refreshToken: "CANVA_REFRESH_TOKEN",
100012
100326
  envBindings: {
100013
100327
  CANVA_TOKEN: "$secrets.CANVA_ACCESS_TOKEN"
100014
100328
  }
@@ -100031,6 +100345,10 @@ var chatwoot = {
100031
100345
  "api-token": {
100032
100346
  label: "API Access Token",
100033
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
+ },
100034
100352
  grant: {
100035
100353
  kind: "manual",
100036
100354
  fields: {
@@ -100072,6 +100390,10 @@ var checkr = {
100072
100390
  "api-token": {
100073
100391
  label: "API Key",
100074
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
+ },
100075
100397
  grant: {
100076
100398
  kind: "manual",
100077
100399
  fields: {
@@ -100106,6 +100428,10 @@ var clado = {
100106
100428
  "api-token": {
100107
100429
  label: "API Key",
100108
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
+ },
100109
100435
  grant: {
100110
100436
  kind: "manual",
100111
100437
  fields: {
@@ -100139,6 +100465,10 @@ var clerk = {
100139
100465
  "api-token": {
100140
100466
  label: "Secret Key",
100141
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
+ },
100142
100472
  grant: {
100143
100473
  kind: "manual",
100144
100474
  fields: {
@@ -100173,6 +100503,10 @@ var clearbit = {
100173
100503
  "api-token": {
100174
100504
  label: "API Key",
100175
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
+ },
100176
100510
  grant: {
100177
100511
  kind: "manual",
100178
100512
  fields: {
@@ -100207,6 +100541,10 @@ var clickup = {
100207
100541
  "api-token": {
100208
100542
  label: "API Token",
100209
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
+ },
100210
100548
  grant: {
100211
100549
  kind: "manual",
100212
100550
  fields: {
@@ -100249,6 +100587,14 @@ var close2 = {
100249
100587
  clientIdEnv: "CLOSE_OAUTH_CLIENT_ID",
100250
100588
  clientSecretEnv: "CLOSE_OAUTH_CLIENT_SECRET"
100251
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
+ },
100252
100598
  grant: {
100253
100599
  kind: "auth-code",
100254
100600
  tokenUrl: OAUTH_TOKEN_URL23,
@@ -100257,8 +100603,6 @@ var close2 = {
100257
100603
  access: {
100258
100604
  kind: "refresh-token",
100259
100605
  tokenUrl: OAUTH_TOKEN_URL23,
100260
- accessToken: "CLOSE_ACCESS_TOKEN",
100261
- refreshToken: "CLOSE_REFRESH_TOKEN",
100262
100606
  envBindings: {
100263
100607
  CLOSE_TOKEN: "$secrets.CLOSE_ACCESS_TOKEN"
100264
100608
  }
@@ -100281,6 +100625,10 @@ var cloudflare = {
100281
100625
  "api-token": {
100282
100626
  label: "API Token",
100283
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
+ },
100284
100632
  grant: {
100285
100633
  kind: "manual",
100286
100634
  fields: {
@@ -100314,6 +100662,10 @@ var cloudinary = {
100314
100662
  "api-token": {
100315
100663
  label: "API Credentials",
100316
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
+ },
100317
100669
  grant: {
100318
100670
  kind: "manual",
100319
100671
  fields: {
@@ -100359,6 +100711,10 @@ var coda = {
100359
100711
  "api-token": {
100360
100712
  label: "API Token",
100361
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
+ },
100362
100718
  grant: {
100363
100719
  kind: "manual",
100364
100720
  fields: {
@@ -100393,6 +100749,10 @@ var coingecko = {
100393
100749
  "api-token": {
100394
100750
  label: "API Key",
100395
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
+ },
100396
100756
  grant: {
100397
100757
  kind: "manual",
100398
100758
  fields: {
@@ -100427,6 +100787,10 @@ var coresignal = {
100427
100787
  "api-token": {
100428
100788
  label: "API Key",
100429
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
+ },
100430
100794
  grant: {
100431
100795
  kind: "manual",
100432
100796
  fields: {
@@ -100461,6 +100825,10 @@ var cronlytic = {
100461
100825
  "api-token": {
100462
100826
  label: "API Key",
100463
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
+ },
100464
100832
  grant: {
100465
100833
  kind: "manual",
100466
100834
  fields: {
@@ -100500,6 +100868,10 @@ var crustdata = {
100500
100868
  "api-token": {
100501
100869
  label: "API Key",
100502
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
+ },
100503
100875
  grant: {
100504
100876
  kind: "manual",
100505
100877
  fields: {
@@ -100533,6 +100905,10 @@ var customerIo = {
100533
100905
  "api-token": {
100534
100906
  label: "API Token",
100535
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
+ },
100536
100912
  grant: {
100537
100913
  kind: "manual",
100538
100914
  fields: {
@@ -100566,6 +100942,10 @@ var db9 = {
100566
100942
  "api-token": {
100567
100943
  label: "API Key",
100568
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
+ },
100569
100949
  grant: {
100570
100950
  kind: "manual",
100571
100951
  fields: {
@@ -100608,6 +100988,14 @@ var deel = {
100608
100988
  clientIdEnv: "DEEL_OAUTH_CLIENT_ID",
100609
100989
  clientSecretEnv: "DEEL_OAUTH_CLIENT_SECRET"
100610
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
+ },
100611
100999
  grant: {
100612
101000
  kind: "auth-code",
100613
101001
  tokenUrl: OAUTH_TOKEN_URL24,
@@ -100625,8 +101013,6 @@ var deel = {
100625
101013
  access: {
100626
101014
  kind: "refresh-token",
100627
101015
  tokenUrl: OAUTH_TOKEN_URL24,
100628
- accessToken: "DEEL_ACCESS_TOKEN",
100629
- refreshToken: "DEEL_REFRESH_TOKEN",
100630
101016
  envBindings: {
100631
101017
  DEEL_TOKEN: "$secrets.DEEL_ACCESS_TOKEN"
100632
101018
  }
@@ -100636,6 +101022,10 @@ var deel = {
100636
101022
  "api-token": {
100637
101023
  label: "API Token",
100638
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
+ },
100639
101029
  grant: {
100640
101030
  kind: "manual",
100641
101031
  fields: {
@@ -100669,6 +101059,10 @@ var defillama = {
100669
101059
  "api-token": {
100670
101060
  label: "Pro API Key",
100671
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
+ },
100672
101066
  grant: {
100673
101067
  kind: "manual",
100674
101068
  fields: {
@@ -100704,6 +101098,10 @@ var deepseek = {
100704
101098
  "api-token": {
100705
101099
  label: "API Key",
100706
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
+ },
100707
101105
  grant: {
100708
101106
  kind: "manual",
100709
101107
  fields: {
@@ -100738,6 +101136,10 @@ var devto = {
100738
101136
  "api-token": {
100739
101137
  label: "API Key",
100740
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
+ },
100741
101143
  grant: {
100742
101144
  kind: "manual",
100743
101145
  fields: {
@@ -100772,6 +101174,10 @@ var diffbot = {
100772
101174
  "api-token": {
100773
101175
  label: "API Token",
100774
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
+ },
100775
101181
  grant: {
100776
101182
  kind: "manual",
100777
101183
  fields: {
@@ -100806,6 +101212,10 @@ var dify = {
100806
101212
  "api-token": {
100807
101213
  label: "API Key",
100808
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
+ },
100809
101219
  grant: {
100810
101220
  kind: "manual",
100811
101221
  fields: {
@@ -100840,6 +101250,10 @@ var discord = {
100840
101250
  "api-token": {
100841
101251
  label: "Bot Token",
100842
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
+ },
100843
101257
  grant: {
100844
101258
  kind: "manual",
100845
101259
  fields: {
@@ -100874,6 +101288,10 @@ var discordWebhook = {
100874
101288
  "api-token": {
100875
101289
  label: "Webhook URL",
100876
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
+ },
100877
101295
  grant: {
100878
101296
  kind: "manual",
100879
101297
  fields: {
@@ -100908,6 +101326,10 @@ var doppler = {
100908
101326
  "api-token": {
100909
101327
  label: "Service Token",
100910
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
+ },
100911
101333
  grant: {
100912
101334
  kind: "manual",
100913
101335
  fields: {
@@ -100944,6 +101366,10 @@ var doubao = {
100944
101366
  "api-token": {
100945
101367
  label: "Doubao API Key",
100946
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
+ },
100947
101373
  grant: {
100948
101374
  kind: "manual",
100949
101375
  fields: {
@@ -100978,6 +101404,10 @@ var drive9 = {
100978
101404
  "api-token": {
100979
101405
  label: "API Key",
100980
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
+ },
100981
101411
  grant: {
100982
101412
  kind: "manual",
100983
101413
  fields: {
@@ -101020,6 +101450,14 @@ var dropbox = {
101020
101450
  clientIdEnv: "DROPBOX_OAUTH_CLIENT_ID",
101021
101451
  clientSecretEnv: "DROPBOX_OAUTH_CLIENT_SECRET"
101022
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
+ },
101023
101461
  grant: {
101024
101462
  kind: "auth-code",
101025
101463
  tokenUrl: OAUTH_TOKEN_URL25,
@@ -101032,8 +101470,6 @@ var dropbox = {
101032
101470
  access: {
101033
101471
  kind: "refresh-token",
101034
101472
  tokenUrl: OAUTH_TOKEN_URL25,
101035
- accessToken: "DROPBOX_ACCESS_TOKEN",
101036
- refreshToken: "DROPBOX_REFRESH_TOKEN",
101037
101473
  envBindings: {
101038
101474
  DROPBOX_TOKEN: "$secrets.DROPBOX_ACCESS_TOKEN"
101039
101475
  }
@@ -101043,6 +101479,10 @@ var dropbox = {
101043
101479
  "api-token": {
101044
101480
  label: "Access Token",
101045
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
+ },
101046
101486
  grant: {
101047
101487
  kind: "manual",
101048
101488
  fields: {
@@ -101078,6 +101518,10 @@ var dropboxSign = {
101078
101518
  "api-token": {
101079
101519
  label: "API Key",
101080
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
+ },
101081
101525
  grant: {
101082
101526
  kind: "manual",
101083
101527
  fields: {
@@ -101112,6 +101556,10 @@ var duffel = {
101112
101556
  "api-token": {
101113
101557
  label: "Access Token",
101114
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
+ },
101115
101563
  grant: {
101116
101564
  kind: "manual",
101117
101565
  fields: {
@@ -101146,6 +101594,10 @@ var e2b = {
101146
101594
  "api-token": {
101147
101595
  label: "API Key",
101148
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
+ },
101149
101601
  grant: {
101150
101602
  kind: "manual",
101151
101603
  fields: {
@@ -101181,6 +101633,10 @@ var elevenlabs = {
101181
101633
  "api-token": {
101182
101634
  label: "API Key",
101183
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
+ },
101184
101640
  grant: {
101185
101641
  kind: "manual",
101186
101642
  fields: {
@@ -101215,6 +101671,10 @@ var etsy = {
101215
101671
  "api-token": {
101216
101672
  label: "API Key",
101217
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
+ },
101218
101678
  grant: {
101219
101679
  kind: "manual",
101220
101680
  fields: {
@@ -101249,6 +101709,10 @@ var etherscan = {
101249
101709
  "api-token": {
101250
101710
  label: "API Key",
101251
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
+ },
101252
101716
  grant: {
101253
101717
  kind: "manual",
101254
101718
  fields: {
@@ -101282,6 +101746,10 @@ var exa = {
101282
101746
  "api-token": {
101283
101747
  label: "API Key",
101284
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
+ },
101285
101753
  grant: {
101286
101754
  kind: "manual",
101287
101755
  fields: {
@@ -101316,6 +101784,10 @@ var explorium = {
101316
101784
  "api-token": {
101317
101785
  label: "API Key",
101318
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
+ },
101319
101791
  grant: {
101320
101792
  kind: "manual",
101321
101793
  fields: {
@@ -101358,6 +101830,10 @@ var faire = {
101358
101830
  "api-token": {
101359
101831
  label: "Access Token",
101360
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
+ },
101361
101837
  grant: {
101362
101838
  kind: "manual",
101363
101839
  fields: {
@@ -101393,6 +101869,10 @@ var fal = {
101393
101869
  "api-token": {
101394
101870
  label: "API Key",
101395
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
+ },
101396
101876
  grant: {
101397
101877
  kind: "manual",
101398
101878
  fields: {
@@ -101435,6 +101915,14 @@ var figma = {
101435
101915
  clientIdEnv: "FIGMA_OAUTH_CLIENT_ID",
101436
101916
  clientSecretEnv: "FIGMA_OAUTH_CLIENT_SECRET"
101437
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
+ },
101438
101926
  grant: {
101439
101927
  kind: "auth-code",
101440
101928
  tokenUrl: OAUTH_TOKEN_URL26,
@@ -101453,8 +101941,6 @@ var figma = {
101453
101941
  access: {
101454
101942
  kind: "refresh-token",
101455
101943
  tokenUrl: OAUTH_TOKEN_URL26,
101456
- accessToken: "FIGMA_ACCESS_TOKEN",
101457
- refreshToken: "FIGMA_REFRESH_TOKEN",
101458
101944
  envBindings: {
101459
101945
  FIGMA_TOKEN: "$secrets.FIGMA_ACCESS_TOKEN"
101460
101946
  }
@@ -101464,6 +101950,10 @@ var figma = {
101464
101950
  "api-token": {
101465
101951
  label: "Personal Access Token",
101466
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
+ },
101467
101957
  grant: {
101468
101958
  kind: "manual",
101469
101959
  fields: {
@@ -101498,6 +101988,10 @@ var firecrawl = {
101498
101988
  "api-token": {
101499
101989
  label: "API Token",
101500
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
+ },
101501
101995
  grant: {
101502
101996
  kind: "manual",
101503
101997
  fields: {
@@ -101532,6 +102026,10 @@ var fireflies = {
101532
102026
  "api-token": {
101533
102027
  label: "API Token",
101534
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
+ },
101535
102033
  grant: {
101536
102034
  kind: "manual",
101537
102035
  fields: {
@@ -101565,6 +102063,10 @@ var flightaware = {
101565
102063
  "api-token": {
101566
102064
  label: "AeroAPI Key",
101567
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
+ },
101568
102070
  grant: {
101569
102071
  kind: "manual",
101570
102072
  fields: {
@@ -101599,6 +102101,10 @@ var freshdesk = {
101599
102101
  "api-token": {
101600
102102
  label: "API Key",
101601
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
+ },
101602
102108
  grant: {
101603
102109
  kind: "manual",
101604
102110
  fields: {
@@ -101640,6 +102146,10 @@ var gamma = {
101640
102146
  "api-token": {
101641
102147
  label: "API Key",
101642
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
+ },
101643
102153
  grant: {
101644
102154
  kind: "manual",
101645
102155
  fields: {
@@ -101682,6 +102192,17 @@ var garminConnect = {
101682
102192
  clientIdEnv: "GARMIN_CONNECT_OAUTH_CLIENT_ID",
101683
102193
  clientSecretEnv: "GARMIN_CONNECT_OAUTH_CLIENT_SECRET"
101684
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
+ },
101685
102206
  grant: {
101686
102207
  kind: "auth-code",
101687
102208
  tokenUrl: OAUTH_TOKEN_URL27,
@@ -101690,8 +102211,6 @@ var garminConnect = {
101690
102211
  access: {
101691
102212
  kind: "refresh-token",
101692
102213
  tokenUrl: OAUTH_TOKEN_URL27,
101693
- accessToken: "GARMIN_CONNECT_ACCESS_TOKEN",
101694
- refreshToken: "GARMIN_CONNECT_REFRESH_TOKEN",
101695
102214
  envBindings: {
101696
102215
  GARMIN_CONNECT_TOKEN: "$secrets.GARMIN_CONNECT_ACCESS_TOKEN"
101697
102216
  }
@@ -101716,6 +102235,10 @@ var gemini = {
101716
102235
  "api-token": {
101717
102236
  label: "API Key",
101718
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
+ },
101719
102242
  grant: {
101720
102243
  kind: "manual",
101721
102244
  fields: {
@@ -101751,6 +102274,10 @@ var gitlab = {
101751
102274
  "api-token": {
101752
102275
  label: "Personal Access Token",
101753
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
+ },
101754
102281
  grant: {
101755
102282
  kind: "manual",
101756
102283
  fields: {
@@ -101792,6 +102319,10 @@ var gong = {
101792
102319
  "api-token": {
101793
102320
  label: "Access Key",
101794
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
+ },
101795
102326
  grant: {
101796
102327
  kind: "manual",
101797
102328
  fields: {
@@ -101837,6 +102368,10 @@ var granola = {
101837
102368
  "api-token": {
101838
102369
  label: "API Key",
101839
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
+ },
101840
102375
  grant: {
101841
102376
  kind: "manual",
101842
102377
  fields: {
@@ -101871,6 +102406,10 @@ var greenhouse = {
101871
102406
  "api-token": {
101872
102407
  label: "API Key",
101873
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
+ },
101874
102413
  grant: {
101875
102414
  kind: "manual",
101876
102415
  fields: {
@@ -101907,6 +102446,10 @@ var groq = {
101907
102446
  "api-token": {
101908
102447
  label: "API Key",
101909
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
+ },
101910
102453
  grant: {
101911
102454
  kind: "manual",
101912
102455
  fields: {
@@ -101941,6 +102484,10 @@ var helicone = {
101941
102484
  "api-token": {
101942
102485
  label: "API Key",
101943
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
+ },
101944
102491
  grant: {
101945
102492
  kind: "manual",
101946
102493
  fields: {
@@ -101976,6 +102523,10 @@ var heygen = {
101976
102523
  "api-token": {
101977
102524
  label: "API Key",
101978
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
+ },
101979
102530
  grant: {
101980
102531
  kind: "manual",
101981
102532
  fields: {
@@ -102012,6 +102563,10 @@ var hitem3d = {
102012
102563
  "api-token": {
102013
102564
  label: "API Credentials",
102014
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
+ },
102015
102570
  grant: {
102016
102571
  kind: "manual",
102017
102572
  fields: {
@@ -102053,6 +102608,10 @@ var htmlcsstoimage = {
102053
102608
  "api-token": {
102054
102609
  label: "API Key",
102055
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
+ },
102056
102615
  grant: {
102057
102616
  kind: "manual",
102058
102617
  fields: {
@@ -102092,6 +102651,10 @@ var honcho = {
102092
102651
  "api-token": {
102093
102652
  label: "API Key",
102094
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
+ },
102095
102658
  grant: {
102096
102659
  kind: "manual",
102097
102660
  fields: {
@@ -102127,6 +102690,10 @@ var huggingFace = {
102127
102690
  "api-token": {
102128
102691
  label: "API Token",
102129
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
+ },
102130
102697
  grant: {
102131
102698
  kind: "manual",
102132
102699
  fields: {
@@ -102162,6 +102729,10 @@ var hume = {
102162
102729
  "api-token": {
102163
102730
  label: "API Key",
102164
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
+ },
102165
102736
  grant: {
102166
102737
  kind: "manual",
102167
102738
  fields: {
@@ -102195,6 +102766,10 @@ var hunter = {
102195
102766
  "api-token": {
102196
102767
  label: "API Key",
102197
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
+ },
102198
102773
  grant: {
102199
102774
  kind: "manual",
102200
102775
  fields: {
@@ -102228,6 +102803,10 @@ var imgur = {
102228
102803
  "api-token": {
102229
102804
  label: "API Token",
102230
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
+ },
102231
102810
  grant: {
102232
102811
  kind: "manual",
102233
102812
  fields: {
@@ -102262,6 +102841,10 @@ var infisical = {
102262
102841
  "api-token": {
102263
102842
  label: "Token Auth",
102264
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
+ },
102265
102848
  grant: {
102266
102849
  kind: "manual",
102267
102850
  fields: {
@@ -102296,6 +102879,10 @@ var instagram = {
102296
102879
  "api-token": {
102297
102880
  label: "API Token",
102298
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
+ },
102299
102886
  grant: {
102300
102887
  kind: "manual",
102301
102888
  fields: {
@@ -102335,6 +102922,10 @@ var instantly = {
102335
102922
  "api-token": {
102336
102923
  label: "API Key",
102337
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
+ },
102338
102929
  grant: {
102339
102930
  kind: "manual",
102340
102931
  fields: {
@@ -102369,6 +102960,10 @@ var intercom = {
102369
102960
  "api-token": {
102370
102961
  label: "Access Token",
102371
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
+ },
102372
102967
  grant: {
102373
102968
  kind: "manual",
102374
102969
  fields: {
@@ -102403,6 +102998,10 @@ var ironclad = {
102403
102998
  "api-token": {
102404
102999
  label: "API Key",
102405
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
+ },
102406
103005
  grant: {
102407
103006
  kind: "manual",
102408
103007
  fields: {
@@ -102443,6 +103042,10 @@ var jam = {
102443
103042
  "api-token": {
102444
103043
  label: "Personal Access Token",
102445
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
+ },
102446
103049
  grant: {
102447
103050
  kind: "manual",
102448
103051
  fields: {
@@ -102478,6 +103081,10 @@ var jira = {
102478
103081
  "api-token": {
102479
103082
  label: "API Token",
102480
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
+ },
102481
103088
  grant: {
102482
103089
  kind: "manual",
102483
103090
  fields: {
@@ -102525,6 +103132,10 @@ var jotform = {
102525
103132
  "api-token": {
102526
103133
  label: "API Key",
102527
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
+ },
102528
103139
  grant: {
102529
103140
  kind: "manual",
102530
103141
  fields: {
@@ -102558,6 +103169,10 @@ var klaviyo = {
102558
103169
  "api-token": {
102559
103170
  label: "API Key",
102560
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
+ },
102561
103176
  grant: {
102562
103177
  kind: "manual",
102563
103178
  fields: {
@@ -102592,6 +103207,10 @@ var kommo = {
102592
103207
  "api-token": {
102593
103208
  label: "API Key",
102594
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
+ },
102595
103214
  grant: {
102596
103215
  kind: "manual",
102597
103216
  fields: {
@@ -102633,6 +103252,10 @@ var langfuse = {
102633
103252
  "api-token": {
102634
103253
  label: "API Keys",
102635
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
+ },
102636
103259
  grant: {
102637
103260
  kind: "manual",
102638
103261
  fields: {
@@ -102673,6 +103296,10 @@ var langsmith = {
102673
103296
  "api-token": {
102674
103297
  label: "API Key",
102675
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
+ },
102676
103303
  grant: {
102677
103304
  kind: "manual",
102678
103305
  fields: {
@@ -102708,6 +103335,10 @@ var lark = {
102708
103335
  featureFlag: "larkConnector" /* LarkConnector */,
102709
103336
  label: "App Credentials",
102710
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
+ },
102711
103342
  grant: {
102712
103343
  kind: "manual",
102713
103344
  fields: {
@@ -102748,6 +103379,10 @@ var line = {
102748
103379
  "api-token": {
102749
103380
  label: "Channel Access Token",
102750
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
+ },
102751
103386
  grant: {
102752
103387
  kind: "manual",
102753
103388
  fields: {
@@ -102781,6 +103416,10 @@ var loops = {
102781
103416
  "api-token": {
102782
103417
  label: "API Key",
102783
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
+ },
102784
103423
  grant: {
102785
103424
  kind: "manual",
102786
103425
  fields: {
@@ -102816,6 +103455,10 @@ var luma = {
102816
103455
  "api-token": {
102817
103456
  label: "API Key",
102818
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
+ },
102819
103462
  grant: {
102820
103463
  kind: "manual",
102821
103464
  fields: {
@@ -102851,6 +103494,10 @@ var lumaAi = {
102851
103494
  "api-token": {
102852
103495
  label: "API Key",
102853
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
+ },
102854
103501
  grant: {
102855
103502
  kind: "manual",
102856
103503
  fields: {
@@ -102892,6 +103539,13 @@ var mailchimp = {
102892
103539
  clientIdEnv: "MAILCHIMP_OAUTH_CLIENT_ID",
102893
103540
  clientSecretEnv: "MAILCHIMP_OAUTH_CLIENT_SECRET"
102894
103541
  },
103542
+ storage: {
103543
+ secrets: ["MAILCHIMP_ACCESS_TOKEN"],
103544
+ variables: [],
103545
+ secretRoles: {
103546
+ accessToken: "MAILCHIMP_ACCESS_TOKEN"
103547
+ }
103548
+ },
102895
103549
  grant: {
102896
103550
  kind: "auth-code",
102897
103551
  tokenUrl: "https://login.mailchimp.com/oauth2/token",
@@ -102908,6 +103562,10 @@ var mailchimp = {
102908
103562
  "api-token": {
102909
103563
  label: "API Key",
102910
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
+ },
102911
103569
  grant: {
102912
103570
  kind: "manual",
102913
103571
  fields: {
@@ -102942,6 +103600,10 @@ var mailsac = {
102942
103600
  "api-token": {
102943
103601
  label: "API Key",
102944
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
+ },
102945
103607
  grant: {
102946
103608
  kind: "manual",
102947
103609
  fields: {
@@ -102976,6 +103638,10 @@ var make = {
102976
103638
  "api-token": {
102977
103639
  label: "API Token",
102978
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
+ },
102979
103645
  grant: {
102980
103646
  kind: "manual",
102981
103647
  fields: {
@@ -103009,6 +103675,10 @@ var manus = {
103009
103675
  "api-token": {
103010
103676
  label: "API Key",
103011
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
+ },
103012
103682
  grant: {
103013
103683
  kind: "manual",
103014
103684
  fields: {
@@ -103043,6 +103713,10 @@ var mapbox = {
103043
103713
  "api-token": {
103044
103714
  label: "Access Token",
103045
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
+ },
103046
103720
  grant: {
103047
103721
  kind: "manual",
103048
103722
  fields: {
@@ -103077,6 +103751,10 @@ var mathpix = {
103077
103751
  "api-token": {
103078
103752
  label: "App ID + App Key",
103079
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
+ },
103080
103758
  grant: {
103081
103759
  kind: "manual",
103082
103760
  fields: {
@@ -103116,6 +103794,10 @@ var mem0 = {
103116
103794
  "api-token": {
103117
103795
  label: "API Key",
103118
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
+ },
103119
103801
  grant: {
103120
103802
  kind: "manual",
103121
103803
  fields: {
@@ -103158,6 +103840,14 @@ var mercury = {
103158
103840
  clientIdEnv: "MERCURY_OAUTH_CLIENT_ID",
103159
103841
  clientSecretEnv: "MERCURY_OAUTH_CLIENT_SECRET"
103160
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
+ },
103161
103851
  grant: {
103162
103852
  kind: "auth-code",
103163
103853
  tokenUrl: OAUTH_TOKEN_URL28,
@@ -103166,8 +103856,6 @@ var mercury = {
103166
103856
  access: {
103167
103857
  kind: "refresh-token",
103168
103858
  tokenUrl: OAUTH_TOKEN_URL28,
103169
- accessToken: "MERCURY_ACCESS_TOKEN",
103170
- refreshToken: "MERCURY_REFRESH_TOKEN",
103171
103859
  envBindings: {
103172
103860
  MERCURY_TOKEN: "$secrets.MERCURY_ACCESS_TOKEN"
103173
103861
  }
@@ -103177,6 +103865,10 @@ var mercury = {
103177
103865
  "api-token": {
103178
103866
  label: "API Token",
103179
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
+ },
103180
103872
  grant: {
103181
103873
  kind: "manual",
103182
103874
  fields: {
@@ -103212,6 +103904,10 @@ var meshy = {
103212
103904
  "api-token": {
103213
103905
  label: "API Key",
103214
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
+ },
103215
103911
  grant: {
103216
103912
  kind: "manual",
103217
103913
  fields: {
@@ -103253,6 +103949,13 @@ var metaAds = {
103253
103949
  clientIdEnv: "META_ADS_OAUTH_CLIENT_ID",
103254
103950
  clientSecretEnv: "META_ADS_OAUTH_CLIENT_SECRET"
103255
103951
  },
103952
+ storage: {
103953
+ secrets: ["META_ADS_ACCESS_TOKEN"],
103954
+ variables: [],
103955
+ secretRoles: {
103956
+ accessToken: "META_ADS_ACCESS_TOKEN"
103957
+ }
103958
+ },
103256
103959
  grant: {
103257
103960
  kind: "auth-code",
103258
103961
  tokenUrl: "https://graph.facebook.com/v22.0/oauth/access_token",
@@ -103282,6 +103985,10 @@ var metabase = {
103282
103985
  "api-token": {
103283
103986
  label: "API Key",
103284
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
+ },
103285
103992
  grant: {
103286
103993
  kind: "manual",
103287
103994
  fields: {
@@ -103323,6 +104030,10 @@ var minimax = {
103323
104030
  "api-token": {
103324
104031
  label: "API Key",
103325
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
+ },
103326
104037
  grant: {
103327
104038
  kind: "manual",
103328
104039
  fields: {
@@ -103357,6 +104068,10 @@ var minio = {
103357
104068
  "api-token": {
103358
104069
  label: "Access Credentials",
103359
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
+ },
103360
104075
  grant: {
103361
104076
  kind: "manual",
103362
104077
  fields: {
@@ -103404,6 +104119,10 @@ var miro = {
103404
104119
  "api-token": {
103405
104120
  label: "Access Token",
103406
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
+ },
103407
104126
  grant: {
103408
104127
  kind: "manual",
103409
104128
  fields: {
@@ -103439,6 +104158,13 @@ var mixpanel = {
103439
104158
  "api-token": {
103440
104159
  label: "Service Account",
103441
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
+ },
103442
104168
  grant: {
103443
104169
  kind: "manual",
103444
104170
  fields: {
@@ -103492,6 +104218,14 @@ var monday = {
103492
104218
  clientIdEnv: "MONDAY_OAUTH_CLIENT_ID",
103493
104219
  clientSecretEnv: "MONDAY_OAUTH_CLIENT_SECRET"
103494
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
+ },
103495
104229
  grant: {
103496
104230
  kind: "auth-code",
103497
104231
  tokenUrl: OAUTH_TOKEN_URL29,
@@ -103515,8 +104249,6 @@ var monday = {
103515
104249
  access: {
103516
104250
  kind: "refresh-token",
103517
104251
  tokenUrl: OAUTH_TOKEN_URL29,
103518
- accessToken: "MONDAY_ACCESS_TOKEN",
103519
- refreshToken: "MONDAY_REFRESH_TOKEN",
103520
104252
  envBindings: {
103521
104253
  MONDAY_TOKEN: "$secrets.MONDAY_ACCESS_TOKEN"
103522
104254
  }
@@ -103540,6 +104272,10 @@ var moss = {
103540
104272
  "api-token": {
103541
104273
  label: "Project Credentials",
103542
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
+ },
103543
104279
  grant: {
103544
104280
  kind: "manual",
103545
104281
  fields: {
@@ -103580,6 +104316,10 @@ var msg9 = {
103580
104316
  "api-token": {
103581
104317
  label: "API Key",
103582
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
+ },
103583
104323
  grant: {
103584
104324
  kind: "manual",
103585
104325
  fields: {
@@ -103614,6 +104354,10 @@ var n8n = {
103614
104354
  "api-token": {
103615
104355
  label: "API Key",
103616
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
+ },
103617
104361
  grant: {
103618
104362
  kind: "manual",
103619
104363
  fields: {
@@ -103663,6 +104407,14 @@ var neon = {
103663
104407
  clientIdEnv: "NEON_OAUTH_CLIENT_ID",
103664
104408
  clientSecretEnv: "NEON_OAUTH_CLIENT_SECRET"
103665
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
+ },
103666
104418
  grant: {
103667
104419
  kind: "auth-code",
103668
104420
  tokenUrl: OAUTH_TOKEN_URL30,
@@ -103678,8 +104430,6 @@ var neon = {
103678
104430
  access: {
103679
104431
  kind: "refresh-token",
103680
104432
  tokenUrl: OAUTH_TOKEN_URL30,
103681
- accessToken: "NEON_ACCESS_TOKEN",
103682
- refreshToken: "NEON_REFRESH_TOKEN",
103683
104433
  envBindings: {
103684
104434
  NEON_TOKEN: "$secrets.NEON_ACCESS_TOKEN"
103685
104435
  }
@@ -103689,6 +104439,10 @@ var neon = {
103689
104439
  "api-token": {
103690
104440
  label: "API Key",
103691
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
+ },
103692
104446
  grant: {
103693
104447
  kind: "manual",
103694
104448
  fields: {
@@ -103724,6 +104478,10 @@ var novita = {
103724
104478
  "api-token": {
103725
104479
  label: "API Key",
103726
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
+ },
103727
104485
  grant: {
103728
104486
  kind: "manual",
103729
104487
  fields: {
@@ -103758,6 +104516,10 @@ var nyne = {
103758
104516
  "api-token": {
103759
104517
  label: "API Credentials",
103760
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
+ },
103761
104523
  grant: {
103762
104524
  kind: "manual",
103763
104525
  fields: {
@@ -103796,6 +104558,10 @@ var onyx = {
103796
104558
  "api-token": {
103797
104559
  label: "API Key / PAT",
103798
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
+ },
103799
104565
  grant: {
103800
104566
  kind: "manual",
103801
104567
  fields: {
@@ -103832,6 +104598,10 @@ var openai = {
103832
104598
  "api-token": {
103833
104599
  label: "API Key",
103834
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
+ },
103835
104605
  grant: {
103836
104606
  kind: "manual",
103837
104607
  fields: {
@@ -103867,6 +104637,10 @@ var openrouter = {
103867
104637
  "api-token": {
103868
104638
  label: "API Key",
103869
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
+ },
103870
104644
  grant: {
103871
104645
  kind: "manual",
103872
104646
  fields: {
@@ -103901,6 +104675,10 @@ var openweather = {
103901
104675
  "api-token": {
103902
104676
  label: "API Key",
103903
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
+ },
103904
104682
  grant: {
103905
104683
  kind: "manual",
103906
104684
  fields: {
@@ -103942,6 +104720,17 @@ var outlookCalendar = {
103942
104720
  clientIdEnv: "MICROSOFT_OAUTH_CLIENT_ID",
103943
104721
  clientSecretEnv: "MICROSOFT_OAUTH_CLIENT_SECRET"
103944
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
+ },
103945
104734
  grant: {
103946
104735
  kind: "auth-code",
103947
104736
  tokenUrl: OAUTH_TOKEN_URL31,
@@ -103950,8 +104739,6 @@ var outlookCalendar = {
103950
104739
  access: {
103951
104740
  kind: "refresh-token",
103952
104741
  tokenUrl: OAUTH_TOKEN_URL31,
103953
- accessToken: "OUTLOOK_CALENDAR_ACCESS_TOKEN",
103954
- refreshToken: "OUTLOOK_CALENDAR_REFRESH_TOKEN",
103955
104742
  envBindings: {
103956
104743
  OUTLOOK_CALENDAR_TOKEN: "$secrets.OUTLOOK_CALENDAR_ACCESS_TOKEN"
103957
104744
  }
@@ -103982,6 +104769,14 @@ var outlookMail = {
103982
104769
  clientIdEnv: "MICROSOFT_OAUTH_CLIENT_ID",
103983
104770
  clientSecretEnv: "MICROSOFT_OAUTH_CLIENT_SECRET"
103984
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
+ },
103985
104780
  grant: {
103986
104781
  kind: "auth-code",
103987
104782
  tokenUrl: OAUTH_TOKEN_URL32,
@@ -103995,8 +104790,6 @@ var outlookMail = {
103995
104790
  access: {
103996
104791
  kind: "refresh-token",
103997
104792
  tokenUrl: OAUTH_TOKEN_URL32,
103998
- accessToken: "OUTLOOK_MAIL_ACCESS_TOKEN",
103999
- refreshToken: "OUTLOOK_MAIL_REFRESH_TOKEN",
104000
104793
  envBindings: {
104001
104794
  OUTLOOK_MAIL_TOKEN: "$secrets.OUTLOOK_MAIL_ACCESS_TOKEN"
104002
104795
  }
@@ -104019,6 +104812,10 @@ var pandadoc = {
104019
104812
  "api-token": {
104020
104813
  label: "API Key",
104021
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
+ },
104022
104819
  grant: {
104023
104820
  kind: "manual",
104024
104821
  fields: {
@@ -104053,6 +104850,10 @@ var parallel = {
104053
104850
  "api-token": {
104054
104851
  label: "API Key",
104055
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
+ },
104056
104857
  grant: {
104057
104858
  kind: "manual",
104058
104859
  fields: {
@@ -104088,6 +104889,10 @@ var pdf4me = {
104088
104889
  "api-token": {
104089
104890
  label: "API Key",
104090
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
+ },
104091
104896
  grant: {
104092
104897
  kind: "manual",
104093
104898
  fields: {
@@ -104122,6 +104927,10 @@ var pdfco = {
104122
104927
  authMethods: {
104123
104928
  "api-token": {
104124
104929
  label: "API Key",
104930
+ storage: {
104931
+ secrets: ["PDFCO_TOKEN"],
104932
+ variables: []
104933
+ },
104125
104934
  grant: {
104126
104935
  kind: "manual",
104127
104936
  fields: {
@@ -104157,6 +104966,10 @@ var pdforge = {
104157
104966
  "api-token": {
104158
104967
  label: "API Key",
104159
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
+ },
104160
104973
  grant: {
104161
104974
  kind: "manual",
104162
104975
  fields: {
@@ -104191,6 +105004,10 @@ var peopleDataLabs = {
104191
105004
  "api-token": {
104192
105005
  label: "API Key",
104193
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
+ },
104194
105011
  grant: {
104195
105012
  kind: "manual",
104196
105013
  fields: {
@@ -104226,6 +105043,10 @@ var perplexity = {
104226
105043
  "api-token": {
104227
105044
  label: "API Key",
104228
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
+ },
104229
105050
  grant: {
104230
105051
  kind: "manual",
104231
105052
  fields: {
@@ -104260,6 +105081,10 @@ var pika = {
104260
105081
  "api-token": {
104261
105082
  label: "Developer Key",
104262
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
+ },
104263
105088
  grant: {
104264
105089
  kind: "manual",
104265
105090
  fields: {
@@ -104294,6 +105119,10 @@ var pinecone = {
104294
105119
  "api-token": {
104295
105120
  label: "API Key",
104296
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
+ },
104297
105126
  grant: {
104298
105127
  kind: "manual",
104299
105128
  fields: {
@@ -104328,6 +105157,10 @@ var pipedream = {
104328
105157
  "api-token": {
104329
105158
  label: "User API Key",
104330
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
+ },
104331
105164
  grant: {
104332
105165
  kind: "manual",
104333
105166
  fields: {
@@ -104362,6 +105195,10 @@ var pipedrive = {
104362
105195
  "api-token": {
104363
105196
  label: "API Key",
104364
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
+ },
104365
105202
  grant: {
104366
105203
  kind: "manual",
104367
105204
  fields: {
@@ -104396,6 +105233,10 @@ var plain = {
104396
105233
  "api-token": {
104397
105234
  label: "API Key",
104398
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
+ },
104399
105240
  grant: {
104400
105241
  kind: "manual",
104401
105242
  fields: {
@@ -104430,6 +105271,10 @@ var plausible = {
104430
105271
  "api-token": {
104431
105272
  label: "API Key",
104432
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
+ },
104433
105278
  grant: {
104434
105279
  kind: "manual",
104435
105280
  fields: {
@@ -104464,6 +105309,10 @@ var podchaser = {
104464
105309
  "api-token": {
104465
105310
  label: "API Token",
104466
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
+ },
104467
105316
  grant: {
104468
105317
  kind: "manual",
104469
105318
  fields: {
@@ -104506,6 +105355,14 @@ var posthog = {
104506
105355
  clientIdEnv: "POSTHOG_OAUTH_CLIENT_ID",
104507
105356
  clientSecretEnv: "POSTHOG_OAUTH_CLIENT_SECRET"
104508
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
+ },
104509
105366
  grant: {
104510
105367
  kind: "auth-code",
104511
105368
  tokenUrl: OAUTH_TOKEN_URL33,
@@ -104539,8 +105396,6 @@ var posthog = {
104539
105396
  access: {
104540
105397
  kind: "refresh-token",
104541
105398
  tokenUrl: OAUTH_TOKEN_URL33,
104542
- accessToken: "POSTHOG_ACCESS_TOKEN",
104543
- refreshToken: "POSTHOG_REFRESH_TOKEN",
104544
105399
  envBindings: {
104545
105400
  POSTHOG_TOKEN: "$secrets.POSTHOG_ACCESS_TOKEN"
104546
105401
  }
@@ -104550,6 +105405,10 @@ var posthog = {
104550
105405
  "api-token": {
104551
105406
  label: "Personal API Key",
104552
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
+ },
104553
105412
  grant: {
104554
105413
  kind: "manual",
104555
105414
  fields: {
@@ -104584,6 +105443,10 @@ var porkbun = {
104584
105443
  "api-token": {
104585
105444
  label: "API Key",
104586
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
+ },
104587
105450
  grant: {
104588
105451
  kind: "manual",
104589
105452
  fields: {
@@ -104625,6 +105488,10 @@ var printful = {
104625
105488
  "api-token": {
104626
105489
  label: "Private Token",
104627
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
+ },
104628
105495
  grant: {
104629
105496
  kind: "manual",
104630
105497
  fields: {
@@ -104658,6 +105525,10 @@ var prismaPostgres = {
104658
105525
  "api-token": {
104659
105526
  label: "API Key",
104660
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
+ },
104661
105532
  grant: {
104662
105533
  kind: "manual",
104663
105534
  fields: {
@@ -104691,6 +105562,10 @@ var productlane = {
104691
105562
  authMethods: {
104692
105563
  "api-token": {
104693
105564
  label: "API Key",
105565
+ storage: {
105566
+ secrets: ["PRODUCTLANE_TOKEN"],
105567
+ variables: []
105568
+ },
104694
105569
  grant: {
104695
105570
  kind: "manual",
104696
105571
  fields: {
@@ -104724,6 +105599,10 @@ var pushinator = {
104724
105599
  authMethods: {
104725
105600
  "api-token": {
104726
105601
  label: "API Token",
105602
+ storage: {
105603
+ secrets: ["PUSHINATOR_TOKEN"],
105604
+ variables: []
105605
+ },
104727
105606
  grant: {
104728
105607
  kind: "manual",
104729
105608
  fields: {
@@ -104758,6 +105637,10 @@ var qdrant = {
104758
105637
  "api-token": {
104759
105638
  label: "API Key",
104760
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
+ },
104761
105644
  grant: {
104762
105645
  kind: "manual",
104763
105646
  fields: {
@@ -104799,6 +105682,10 @@ var qiita = {
104799
105682
  "api-token": {
104800
105683
  label: "Access Token",
104801
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
+ },
104802
105689
  grant: {
104803
105690
  kind: "manual",
104804
105691
  fields: {
@@ -104833,6 +105720,10 @@ var railway = {
104833
105720
  "api-token": {
104834
105721
  label: "Account or Workspace Token",
104835
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
+ },
104836
105727
  grant: {
104837
105728
  kind: "manual",
104838
105729
  fields: {
@@ -104867,6 +105758,10 @@ var railwayProject = {
104867
105758
  "api-token": {
104868
105759
  label: "Project Token",
104869
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
+ },
104870
105765
  grant: {
104871
105766
  kind: "manual",
104872
105767
  fields: {
@@ -104909,6 +105804,10 @@ var reap = {
104909
105804
  "api-token": {
104910
105805
  label: "API Key",
104911
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
+ },
104912
105811
  grant: {
104913
105812
  kind: "manual",
104914
105813
  fields: {
@@ -104958,6 +105857,14 @@ var reddit = {
104958
105857
  clientIdEnv: "REDDIT_OAUTH_CLIENT_ID",
104959
105858
  clientSecretEnv: "REDDIT_OAUTH_CLIENT_SECRET"
104960
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
+ },
104961
105868
  grant: {
104962
105869
  kind: "auth-code",
104963
105870
  tokenUrl: OAUTH_TOKEN_URL34,
@@ -104966,8 +105873,6 @@ var reddit = {
104966
105873
  access: {
104967
105874
  kind: "refresh-token",
104968
105875
  tokenUrl: OAUTH_TOKEN_URL34,
104969
- accessToken: "REDDIT_ACCESS_TOKEN",
104970
- refreshToken: "REDDIT_REFRESH_TOKEN",
104971
105876
  envBindings: {
104972
105877
  REDDIT_TOKEN: "$secrets.REDDIT_ACCESS_TOKEN"
104973
105878
  }
@@ -104990,6 +105895,10 @@ var reducto = {
104990
105895
  "api-token": {
104991
105896
  label: "API Key",
104992
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
+ },
104993
105902
  grant: {
104994
105903
  kind: "manual",
104995
105904
  fields: {
@@ -105024,6 +105933,10 @@ var recraft = {
105024
105933
  "api-token": {
105025
105934
  label: "API Token",
105026
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
+ },
105027
105940
  grant: {
105028
105941
  kind: "manual",
105029
105942
  fields: {
@@ -105058,6 +105971,10 @@ var replicate = {
105058
105971
  "api-token": {
105059
105972
  label: "API Token",
105060
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
+ },
105061
105978
  grant: {
105062
105979
  kind: "manual",
105063
105980
  fields: {
@@ -105092,6 +106009,10 @@ var reportei = {
105092
106009
  "api-token": {
105093
106010
  label: "API Token",
105094
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
+ },
105095
106016
  grant: {
105096
106017
  kind: "manual",
105097
106018
  fields: {
@@ -105126,6 +106047,10 @@ var resend = {
105126
106047
  "api-token": {
105127
106048
  label: "API Key",
105128
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
+ },
105129
106054
  grant: {
105130
106055
  kind: "manual",
105131
106056
  fields: {
@@ -105160,6 +106085,10 @@ var rentcast = {
105160
106085
  "api-token": {
105161
106086
  label: "API Key",
105162
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
+ },
105163
106092
  grant: {
105164
106093
  kind: "manual",
105165
106094
  fields: {
@@ -105194,6 +106123,10 @@ var revenuecat = {
105194
106123
  "api-token": {
105195
106124
  label: "Secret API Key",
105196
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
+ },
105197
106130
  grant: {
105198
106131
  kind: "manual",
105199
106132
  fields: {
@@ -105229,6 +106162,10 @@ var runway = {
105229
106162
  "api-token": {
105230
106163
  label: "API Key",
105231
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
+ },
105232
106169
  grant: {
105233
106170
  kind: "manual",
105234
106171
  fields: {
@@ -105262,6 +106199,10 @@ var salesforce = {
105262
106199
  authMethods: {
105263
106200
  "api-token": {
105264
106201
  label: "API Token",
106202
+ storage: {
106203
+ secrets: ["SALESFORCE_TOKEN"],
106204
+ variables: ["SALESFORCE_INSTANCE"]
106205
+ },
105265
106206
  grant: {
105266
106207
  kind: "manual",
105267
106208
  fields: {
@@ -105302,6 +106243,10 @@ var scrapeninja = {
105302
106243
  authMethods: {
105303
106244
  "api-token": {
105304
106245
  label: "API Token",
106246
+ storage: {
106247
+ secrets: ["SCRAPENINJA_TOKEN"],
106248
+ variables: []
106249
+ },
105305
106250
  grant: {
105306
106251
  kind: "manual",
105307
106252
  fields: {
@@ -105336,6 +106281,10 @@ var segment = {
105336
106281
  "api-token": {
105337
106282
  label: "Public API Token",
105338
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
+ },
105339
106288
  grant: {
105340
106289
  kind: "manual",
105341
106290
  fields: {
@@ -105371,6 +106320,10 @@ var sendgrid = {
105371
106320
  "api-token": {
105372
106321
  label: "API Key",
105373
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
+ },
105374
106327
  grant: {
105375
106328
  kind: "manual",
105376
106329
  fields: {
@@ -105405,6 +106358,10 @@ var serpapi = {
105405
106358
  "api-token": {
105406
106359
  label: "API Key",
105407
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
+ },
105408
106365
  grant: {
105409
106366
  kind: "manual",
105410
106367
  fields: {
@@ -105440,6 +106397,10 @@ var servicenow = {
105440
106397
  "api-token": {
105441
106398
  label: "API Key",
105442
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
+ },
105443
106404
  grant: {
105444
106405
  kind: "manual",
105445
106406
  fields: {
@@ -105488,6 +106449,10 @@ var shopify = {
105488
106449
  "api-token": {
105489
106450
  label: "API Key",
105490
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
+ },
105491
106456
  grant: {
105492
106457
  kind: "manual",
105493
106458
  fields: {
@@ -105529,6 +106494,10 @@ var shortio = {
105529
106494
  "api-token": {
105530
106495
  label: "API Key",
105531
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
+ },
105532
106501
  grant: {
105533
106502
  kind: "manual",
105534
106503
  fields: {
@@ -105563,6 +106532,10 @@ var similarweb = {
105563
106532
  "api-token": {
105564
106533
  label: "API Key",
105565
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
+ },
105566
106539
  grant: {
105567
106540
  kind: "manual",
105568
106541
  fields: {
@@ -105597,6 +106570,10 @@ var slackWebhook = {
105597
106570
  "api-token": {
105598
106571
  label: "Webhook URL",
105599
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
+ },
105600
106577
  grant: {
105601
106578
  kind: "manual",
105602
106579
  fields: {
@@ -105632,6 +106609,10 @@ var snowflake = {
105632
106609
  "api-token": {
105633
106610
  label: "Programmatic Access Token",
105634
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
+ },
105635
106616
  grant: {
105636
106617
  kind: "manual",
105637
106618
  fields: {
@@ -105673,6 +106654,10 @@ var sociavault = {
105673
106654
  "api-token": {
105674
106655
  label: "API Key",
105675
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
+ },
105676
106661
  grant: {
105677
106662
  kind: "manual",
105678
106663
  fields: {
@@ -105707,6 +106692,10 @@ var sponge = {
105707
106692
  "api-token": {
105708
106693
  label: "Master API Key",
105709
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
+ },
105710
106699
  grant: {
105711
106700
  kind: "manual",
105712
106701
  fields: {
@@ -105749,6 +106738,10 @@ var sproutgigs = {
105749
106738
  "api-token": {
105750
106739
  label: "API Secret",
105751
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
+ },
105752
106745
  grant: {
105753
106746
  kind: "manual",
105754
106747
  fields: {
@@ -105790,6 +106783,10 @@ var square = {
105790
106783
  "api-token": {
105791
106784
  label: "Access Token",
105792
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
+ },
105793
106790
  grant: {
105794
106791
  kind: "manual",
105795
106792
  fields: {
@@ -105825,6 +106822,10 @@ var stabilityAi = {
105825
106822
  "api-token": {
105826
106823
  label: "API Key",
105827
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
+ },
105828
106829
  grant: {
105829
106830
  kind: "manual",
105830
106831
  fields: {
@@ -105859,6 +106860,10 @@ var strapi = {
105859
106860
  "api-token": {
105860
106861
  label: "API Token",
105861
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
+ },
105862
106867
  grant: {
105863
106868
  kind: "manual",
105864
106869
  fields: {
@@ -105899,6 +106904,10 @@ var streak = {
105899
106904
  "api-token": {
105900
106905
  label: "API Key",
105901
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
+ },
105902
106911
  grant: {
105903
106912
  kind: "manual",
105904
106913
  fields: {
@@ -105942,6 +106951,14 @@ var stripe = {
105942
106951
  clientIdEnv: "STRIPE_OAUTH_CLIENT_ID",
105943
106952
  clientSecretEnv: "STRIPE_OAUTH_CLIENT_SECRET"
105944
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
+ },
105945
106962
  grant: {
105946
106963
  kind: "auth-code",
105947
106964
  tokenUrl: OAUTH_TOKEN_URL35,
@@ -105950,8 +106967,6 @@ var stripe = {
105950
106967
  access: {
105951
106968
  kind: "refresh-token",
105952
106969
  tokenUrl: OAUTH_TOKEN_URL35,
105953
- accessToken: "STRIPE_ACCESS_TOKEN",
105954
- refreshToken: "STRIPE_REFRESH_TOKEN",
105955
106970
  envBindings: {
105956
106971
  STRIPE_TOKEN: "$secrets.STRIPE_ACCESS_TOKEN"
105957
106972
  }
@@ -105961,6 +106976,10 @@ var stripe = {
105961
106976
  "api-token": {
105962
106977
  label: "API Key",
105963
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
+ },
105964
106983
  grant: {
105965
106984
  kind: "manual",
105966
106985
  fields: {
@@ -106003,6 +107022,14 @@ var supabase = {
106003
107022
  clientIdEnv: "SUPABASE_OAUTH_CLIENT_ID",
106004
107023
  clientSecretEnv: "SUPABASE_OAUTH_CLIENT_SECRET"
106005
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
+ },
106006
107033
  grant: {
106007
107034
  kind: "auth-code",
106008
107035
  tokenUrl: OAUTH_TOKEN_URL36,
@@ -106024,8 +107051,6 @@ var supabase = {
106024
107051
  access: {
106025
107052
  kind: "refresh-token",
106026
107053
  tokenUrl: OAUTH_TOKEN_URL36,
106027
- accessToken: "SUPABASE_ACCESS_TOKEN",
106028
- refreshToken: "SUPABASE_REFRESH_TOKEN",
106029
107054
  envBindings: {
106030
107055
  SUPABASE_TOKEN: "$secrets.SUPABASE_ACCESS_TOKEN"
106031
107056
  }
@@ -106035,6 +107060,10 @@ var supabase = {
106035
107060
  "api-token": {
106036
107061
  label: "Service Role Key",
106037
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
+ },
106038
107067
  grant: {
106039
107068
  kind: "manual",
106040
107069
  fields: {
@@ -106069,6 +107098,10 @@ var supadata = {
106069
107098
  "api-token": {
106070
107099
  label: "API Key",
106071
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
+ },
106072
107105
  grant: {
106073
107106
  kind: "manual",
106074
107107
  fields: {
@@ -106103,6 +107136,10 @@ var supermemory = {
106103
107136
  "api-token": {
106104
107137
  label: "API Key",
106105
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
+ },
106106
107143
  grant: {
106107
107144
  kind: "manual",
106108
107145
  fields: {
@@ -106137,6 +107174,10 @@ var tavily = {
106137
107174
  "api-token": {
106138
107175
  label: "API Key",
106139
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
+ },
106140
107181
  grant: {
106141
107182
  kind: "manual",
106142
107183
  fields: {
@@ -106186,12 +107227,18 @@ var testOauth = {
106186
107227
  label: "OAuth",
106187
107228
  helpText: "Test-only OAuth provider. Only reachable in dev/preview.",
106188
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
+ },
106189
107238
  grant: TEST_OAUTH_AUTH_CODE_GRANT,
106190
107239
  access: {
106191
107240
  kind: "refresh-token",
106192
107241
  tokenUrl: OAUTH_TOKEN_URL37,
106193
- accessToken: "TEST_OAUTH_ACCESS_TOKEN",
106194
- refreshToken: "TEST_OAUTH_REFRESH_TOKEN",
106195
107242
  envBindings: {
106196
107243
  TEST_OAUTH_TOKEN: "$secrets.TEST_OAUTH_ACCESS_TOKEN"
106197
107244
  }
@@ -106203,12 +107250,21 @@ var testOauth = {
106203
107250
  label: "API OAuth",
106204
107251
  helpText: "Secondary test-only OAuth method used to exercise method-aware provider registration.",
106205
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
+ },
106206
107264
  grant: TEST_OAUTH_AUTH_CODE_GRANT,
106207
107265
  access: {
106208
107266
  kind: "refresh-token",
106209
107267
  tokenUrl: OAUTH_TOKEN_URL37,
106210
- accessToken: "TEST_OAUTH_API_ACCESS_TOKEN",
106211
- refreshToken: "TEST_OAUTH_API_REFRESH_TOKEN",
106212
107268
  envBindings: {
106213
107269
  TEST_OAUTH_TOKEN: "$secrets.TEST_OAUTH_API_ACCESS_TOKEN"
106214
107270
  }
@@ -106237,6 +107293,13 @@ var testOauthDevice = {
106237
107293
  clientType: "public",
106238
107294
  clientId: "test-oauth-device-client"
106239
107295
  },
107296
+ storage: {
107297
+ secrets: ["TEST_OAUTH_DEVICE_ACCESS_TOKEN"],
107298
+ variables: [],
107299
+ secretRoles: {
107300
+ accessToken: "TEST_OAUTH_DEVICE_ACCESS_TOKEN"
107301
+ }
107302
+ },
106240
107303
  grant: {
106241
107304
  kind: "device-auth",
106242
107305
  deviceAuthUrl: "/api/test/oauth-provider/device/code",
@@ -106260,6 +107323,13 @@ var testOauthDevice = {
106260
107323
  clientType: "public",
106261
107324
  clientId: "test-oauth-device-api-client"
106262
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
+ },
106263
107333
  grant: {
106264
107334
  kind: "device-auth",
106265
107335
  deviceAuthUrl: "/api/test/oauth-provider/device/code",
@@ -106291,6 +107361,10 @@ var testrail = {
106291
107361
  "api-token": {
106292
107362
  label: "API Key",
106293
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
+ },
106294
107368
  grant: {
106295
107369
  kind: "manual",
106296
107370
  fields: {
@@ -106338,6 +107412,10 @@ var ticketmaster = {
106338
107412
  "api-token": {
106339
107413
  label: "Discovery API Key",
106340
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
+ },
106341
107419
  grant: {
106342
107420
  kind: "manual",
106343
107421
  fields: {
@@ -106372,6 +107450,10 @@ var tldv = {
106372
107450
  "api-token": {
106373
107451
  label: "API Key",
106374
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
+ },
106375
107457
  grant: {
106376
107458
  kind: "manual",
106377
107459
  fields: {
@@ -106407,6 +107489,10 @@ var together = {
106407
107489
  "api-token": {
106408
107490
  label: "API Key",
106409
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
+ },
106410
107496
  grant: {
106411
107497
  kind: "manual",
106412
107498
  fields: {
@@ -106442,6 +107528,10 @@ var tripo = {
106442
107528
  "api-token": {
106443
107529
  label: "API Key",
106444
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
+ },
106445
107535
  grant: {
106446
107536
  kind: "manual",
106447
107537
  fields: {
@@ -106476,6 +107566,10 @@ var twenty = {
106476
107566
  "api-token": {
106477
107567
  label: "API Key",
106478
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
+ },
106479
107573
  grant: {
106480
107574
  kind: "manual",
106481
107575
  fields: {
@@ -106511,6 +107605,10 @@ var twilio = {
106511
107605
  "api-token": {
106512
107606
  label: "API Key",
106513
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
+ },
106514
107612
  grant: {
106515
107613
  kind: "manual",
106516
107614
  fields: {
@@ -106551,6 +107649,10 @@ var typeform = {
106551
107649
  "api-token": {
106552
107650
  label: "Personal Access Token",
106553
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
+ },
106554
107656
  grant: {
106555
107657
  kind: "manual",
106556
107658
  fields: {
@@ -106586,6 +107688,10 @@ var v0 = {
106586
107688
  "api-token": {
106587
107689
  label: "API Token",
106588
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
+ },
106589
107695
  grant: {
106590
107696
  kind: "manual",
106591
107697
  fields: {
@@ -106620,6 +107726,10 @@ var wandb = {
106620
107726
  "api-token": {
106621
107727
  label: "API Key",
106622
107728
  helpText: "Go to wandb.ai \u2192 Settings \u2192 API Keys \u2192 copy your key.",
107729
+ storage: {
107730
+ secrets: ["WANDB_TOKEN"],
107731
+ variables: []
107732
+ },
106623
107733
  grant: {
106624
107734
  kind: "manual",
106625
107735
  fields: {
@@ -106661,6 +107771,13 @@ var webflow = {
106661
107771
  clientIdEnv: "WEBFLOW_OAUTH_CLIENT_ID",
106662
107772
  clientSecretEnv: "WEBFLOW_OAUTH_CLIENT_SECRET"
106663
107773
  },
107774
+ storage: {
107775
+ secrets: ["WEBFLOW_ACCESS_TOKEN"],
107776
+ variables: [],
107777
+ secretRoles: {
107778
+ accessToken: "WEBFLOW_ACCESS_TOKEN"
107779
+ }
107780
+ },
106664
107781
  grant: {
106665
107782
  kind: "auth-code",
106666
107783
  tokenUrl: "https://api.webflow.com/oauth/access_token",
@@ -106694,6 +107811,10 @@ var webflow = {
106694
107811
  "api-token": {
106695
107812
  label: "Site Token",
106696
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
+ },
106697
107818
  grant: {
106698
107819
  kind: "manual",
106699
107820
  fields: {
@@ -106737,6 +107858,10 @@ var weread = {
106737
107858
  "api-token": {
106738
107859
  label: "WeRead API Key",
106739
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
+ },
106740
107865
  grant: {
106741
107866
  kind: "manual",
106742
107867
  fields: {
@@ -106771,6 +107896,10 @@ var whaleAlert = {
106771
107896
  "api-token": {
106772
107897
  label: "API Key",
106773
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
+ },
106774
107903
  grant: {
106775
107904
  kind: "manual",
106776
107905
  fields: {
@@ -106805,6 +107934,10 @@ var wix = {
106805
107934
  "api-token": {
106806
107935
  label: "API Key",
106807
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
+ },
106808
107941
  grant: {
106809
107942
  kind: "manual",
106810
107943
  fields: {
@@ -106839,6 +107972,10 @@ var workos = {
106839
107972
  "api-token": {
106840
107973
  label: "API Key",
106841
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
+ },
106842
107979
  grant: {
106843
107980
  kind: "manual",
106844
107981
  fields: {
@@ -106873,6 +108010,10 @@ var wrike = {
106873
108010
  "api-token": {
106874
108011
  label: "Permanent Access Token",
106875
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
+ },
106876
108017
  grant: {
106877
108018
  kind: "manual",
106878
108019
  fields: {
@@ -106906,6 +108047,10 @@ var youtube = {
106906
108047
  "api-token": {
106907
108048
  label: "API Key",
106908
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
+ },
106909
108054
  grant: {
106910
108055
  kind: "manual",
106911
108056
  fields: {
@@ -106940,6 +108085,10 @@ var zapier = {
106940
108085
  "api-token": {
106941
108086
  featureFlag: "zapierConnector" /* ZapierConnector */,
106942
108087
  label: "API Key",
108088
+ storage: {
108089
+ secrets: ["ZAPIER_TOKEN"],
108090
+ variables: []
108091
+ },
106943
108092
  grant: {
106944
108093
  kind: "manual",
106945
108094
  fields: {
@@ -106974,6 +108123,10 @@ var zapsign = {
106974
108123
  "api-token": {
106975
108124
  label: "API Token",
106976
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
+ },
106977
108130
  grant: {
106978
108131
  kind: "manual",
106979
108132
  fields: {
@@ -107008,6 +108161,10 @@ var zendesk = {
107008
108161
  "api-token": {
107009
108162
  label: "API Token",
107010
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
+ },
107011
108168
  grant: {
107012
108169
  kind: "manual",
107013
108170
  fields: {
@@ -107056,6 +108213,10 @@ var zep = {
107056
108213
  "api-token": {
107057
108214
  label: "API Key",
107058
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
+ },
107059
108220
  grant: {
107060
108221
  kind: "manual",
107061
108222
  fields: {
@@ -107090,6 +108251,10 @@ var zeptomail = {
107090
108251
  "api-token": {
107091
108252
  label: "Send Mail Token",
107092
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
+ },
107093
108258
  grant: {
107094
108259
  kind: "manual",
107095
108260
  fields: {
@@ -107132,6 +108297,14 @@ var zoom = {
107132
108297
  clientIdEnv: "ZOOM_OAUTH_CLIENT_ID",
107133
108298
  clientSecretEnv: "ZOOM_OAUTH_CLIENT_SECRET"
107134
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
+ },
107135
108308
  grant: {
107136
108309
  kind: "auth-code",
107137
108310
  tokenUrl: OAUTH_TOKEN_URL38,
@@ -107155,8 +108328,6 @@ var zoom = {
107155
108328
  access: {
107156
108329
  kind: "refresh-token",
107157
108330
  tokenUrl: OAUTH_TOKEN_URL38,
107158
- accessToken: "ZOOM_ACCESS_TOKEN",
107159
- refreshToken: "ZOOM_REFRESH_TOKEN",
107160
108331
  envBindings: {
107161
108332
  ZOOM_TOKEN: "$secrets.ZOOM_ACCESS_TOKEN"
107162
108333
  }
@@ -107171,7 +108342,10 @@ var zoom = {
107171
108342
  // ../../packages/connectors/src/connectors.ts
107172
108343
  var CONNECTOR_AUTH_METHOD_IDS = ["oauth", "api-token", "api"];
107173
108344
  var connectorAuthMethodIdSchema = external_exports.enum(CONNECTOR_AUTH_METHOD_IDS);
107174
- var CONNECTOR_TYPES_DEF = {
108345
+ function defineConnectors(configs) {
108346
+ return configs;
108347
+ }
108348
+ var CONNECTOR_TYPES_DEF = defineConnectors({
107175
108349
  ...github,
107176
108350
  ...gmail,
107177
108351
  ...notion,
@@ -107421,7 +108595,7 @@ var CONNECTOR_TYPES_DEF = {
107421
108595
  ...zep,
107422
108596
  ...zeptomail,
107423
108597
  ...zoom
107424
- };
108598
+ });
107425
108599
  var CONNECTOR_TYPES = CONNECTOR_TYPES_DEF;
107426
108600
  var CONNECTOR_TYPE_KEYS = Object.freeze(
107427
108601
  Object.keys(CONNECTOR_TYPES_DEF)
@@ -116118,7 +117292,6 @@ var CONNECTOR_AUTH_METHOD_PRIORITY = {
116118
117292
  "api-token": 1,
116119
117293
  api: 2
116120
117294
  };
116121
- var CONNECTOR_SECRET_REF_PREFIX = "$secrets.";
116122
117295
  function connectorAuthMethodPriority(authMethod) {
116123
117296
  return CONNECTOR_AUTH_METHOD_PRIORITY[authMethod];
116124
117297
  }
@@ -116155,32 +117328,6 @@ function connectorAccessEnvBindings(access) {
116155
117328
  return {};
116156
117329
  }
116157
117330
  }
116158
- function connectorAccessPlatformSecrets(access) {
116159
- switch (access.kind) {
116160
- case "static":
116161
- case "refresh-token":
116162
- return access.platformSecrets ?? [];
116163
- case "none":
116164
- return [];
116165
- }
116166
- }
116167
- function connectorOwnedAccessSecretBindingEntries(args) {
116168
- const platformSecretNames = new Set(
116169
- args.platformSecrets
116170
- );
116171
- const entries = [];
116172
- for (const [envName, valueRef] of Object.entries(args.envBindings)) {
116173
- if (!valueRef.startsWith(CONNECTOR_SECRET_REF_PREFIX)) {
116174
- continue;
116175
- }
116176
- const secretName = valueRef.slice(CONNECTOR_SECRET_REF_PREFIX.length);
116177
- if (platformSecretNames.has(secretName)) {
116178
- continue;
116179
- }
116180
- entries.push({ envName, secretName });
116181
- }
116182
- return entries;
116183
- }
116184
117331
  function connectorGrantScopes(grant) {
116185
117332
  switch (grant?.kind) {
116186
117333
  case "auth-code":
@@ -116202,33 +117349,7 @@ function getConnectorGenerationTypes(type) {
116202
117349
  return "generation" in config4 ? config4.generation ?? [] : [];
116203
117350
  }
116204
117351
  function connectorMethodOwnedSecretNames(method) {
116205
- if (!method) {
116206
- return [];
116207
- }
116208
- const names = /* @__PURE__ */ new Set();
116209
- const fields = getManualGrantFields(method);
116210
- for (const [name, field] of Object.entries(fields ?? {})) {
116211
- if (field.storage !== "variable") {
116212
- names.add(name);
116213
- }
116214
- }
116215
- for (const { secretName } of connectorOwnedAccessSecretBindingEntries({
116216
- envBindings: connectorAccessEnvBindings(method.access),
116217
- platformSecrets: connectorAccessPlatformSecrets(method.access)
116218
- })) {
116219
- names.add(secretName);
116220
- }
116221
- if (method.access.kind === "refresh-token") {
116222
- names.add(method.access.accessToken);
116223
- names.add(method.access.refreshToken);
116224
- }
116225
- const platformSecretNames = new Set(
116226
- connectorAccessPlatformSecrets(method.access)
116227
- );
116228
- for (const secretName of platformSecretNames) {
116229
- names.delete(secretName);
116230
- }
116231
- return [...names];
117352
+ return method ? [...method.storage.secrets] : [];
116232
117353
  }
116233
117354
  function getConnectorAuthMethodEnvBindings(type, authMethod) {
116234
117355
  const method = getConnectorAuthMethod(type, authMethod);
@@ -130209,12 +131330,6 @@ var agentIdSchema = external_exports.string().uuid();
130209
131330
  var connectorRefSchema = external_exports.string().min(1).max(64);
130210
131331
  var permissionSchema = external_exports.string().min(1).max(128);
130211
131332
  var userPermissionGrantActionSchema = external_exports.enum(["allow", "deny"]);
130212
- var userPermissionGrantTtlSecondsSchema = external_exports.union([
130213
- external_exports.literal(300),
130214
- external_exports.literal(900),
130215
- external_exports.literal(3600),
130216
- external_exports.literal(86400)
130217
- ]);
130218
131333
  var userPermissionGrantResponseSchema = external_exports.object({
130219
131334
  agentId: agentIdSchema,
130220
131335
  connectorRef: connectorRefSchema,
@@ -130231,8 +131346,7 @@ var upsertUserPermissionGrantRequestSchema = external_exports.object({
130231
131346
  agentId: agentIdSchema,
130232
131347
  connectorRef: connectorRefSchema,
130233
131348
  permission: permissionSchema,
130234
- action: userPermissionGrantActionSchema,
130235
- ttlSeconds: userPermissionGrantTtlSecondsSchema
131349
+ action: userPermissionGrantActionSchema
130236
131350
  });
130237
131351
  var zeroUserPermissionGrantsContract = c61.router({
130238
131352
  list: {
@@ -134481,4 +135595,4 @@ undici/lib/web/fetch/body.js:
134481
135595
  undici/lib/web/websocket/frame.js:
134482
135596
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
134483
135597
  */
134484
- //# sourceMappingURL=chunk-CYXYACBN.js.map
135598
+ //# sourceMappingURL=chunk-DPEOZVW6.js.map