@vm0/cli 9.84.3 → 9.84.4
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.
- package/{chunk-2OLTSQSV.js → chunk-ANZYCH6W.js} +43 -3
- package/chunk-ANZYCH6W.js.map +1 -0
- package/index.js +10 -10
- package/package.json +1 -1
- package/zero.js +2 -2
- package/chunk-2OLTSQSV.js.map +0 -1
|
@@ -47,7 +47,7 @@ if (DSN) {
|
|
|
47
47
|
Sentry.init({
|
|
48
48
|
dsn: DSN,
|
|
49
49
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
50
|
-
release: "9.84.
|
|
50
|
+
release: "9.84.4",
|
|
51
51
|
sendDefaultPii: false,
|
|
52
52
|
tracesSampleRate: 0,
|
|
53
53
|
shutdownTimeout: 500,
|
|
@@ -66,7 +66,7 @@ if (DSN) {
|
|
|
66
66
|
}
|
|
67
67
|
});
|
|
68
68
|
Sentry.setContext("cli", {
|
|
69
|
-
version: "9.84.
|
|
69
|
+
version: "9.84.4",
|
|
70
70
|
command: process.argv.slice(2).join(" ")
|
|
71
71
|
});
|
|
72
72
|
Sentry.setContext("runtime", {
|
|
@@ -2199,6 +2199,26 @@ var firefliesFirewall = {
|
|
|
2199
2199
|
]
|
|
2200
2200
|
};
|
|
2201
2201
|
|
|
2202
|
+
// ../../packages/core/src/firewalls/gamma.generated.ts
|
|
2203
|
+
var gammaFirewall = {
|
|
2204
|
+
name: "gamma",
|
|
2205
|
+
description: "Gamma API",
|
|
2206
|
+
placeholders: {
|
|
2207
|
+
GAMMA_TOKEN: "sk-gamma-Vm0PlaceHolder000000000000a"
|
|
2208
|
+
},
|
|
2209
|
+
apis: [
|
|
2210
|
+
{
|
|
2211
|
+
base: "https://public-api.gamma.app",
|
|
2212
|
+
auth: {
|
|
2213
|
+
headers: {
|
|
2214
|
+
"X-API-KEY": "${{ secrets.GAMMA_TOKEN }}"
|
|
2215
|
+
}
|
|
2216
|
+
},
|
|
2217
|
+
permissions: []
|
|
2218
|
+
}
|
|
2219
|
+
]
|
|
2220
|
+
};
|
|
2221
|
+
|
|
2202
2222
|
// ../../packages/core/src/firewalls/garmin-connect.generated.ts
|
|
2203
2223
|
var garminConnectFirewall = {
|
|
2204
2224
|
name: "garmin-connect",
|
|
@@ -8852,6 +8872,7 @@ var CONNECTOR_FIREWALLS = {
|
|
|
8852
8872
|
figma: figmaFirewall,
|
|
8853
8873
|
firecrawl: firecrawlFirewall,
|
|
8854
8874
|
fireflies: firefliesFirewall,
|
|
8875
|
+
gamma: gammaFirewall,
|
|
8855
8876
|
"garmin-connect": garminConnectFirewall,
|
|
8856
8877
|
github: githubFirewall,
|
|
8857
8878
|
gitlab: gitlabFirewall,
|
|
@@ -13217,6 +13238,24 @@ var CONNECTOR_TYPES_DEF = {
|
|
|
13217
13238
|
}
|
|
13218
13239
|
}
|
|
13219
13240
|
},
|
|
13241
|
+
gamma: {
|
|
13242
|
+
label: "Gamma",
|
|
13243
|
+
helpText: "Connect your Gamma account to generate presentations, documents, and websites with AI",
|
|
13244
|
+
authMethods: {
|
|
13245
|
+
"api-token": {
|
|
13246
|
+
label: "API Key",
|
|
13247
|
+
helpText: "1. Log in to [Gamma](https://gamma.app) (requires Pro, Ultra, Teams, or Business plan)\n2. Go to **Settings and Members > API key** tab\n3. Click **Create API key**\n4. Copy the key (it is only shown once)",
|
|
13248
|
+
secrets: {
|
|
13249
|
+
GAMMA_TOKEN: {
|
|
13250
|
+
label: "API Key",
|
|
13251
|
+
required: true,
|
|
13252
|
+
placeholder: "sk-gamma-..."
|
|
13253
|
+
}
|
|
13254
|
+
}
|
|
13255
|
+
}
|
|
13256
|
+
},
|
|
13257
|
+
defaultAuthMethod: "api-token"
|
|
13258
|
+
},
|
|
13220
13259
|
"garmin-connect": {
|
|
13221
13260
|
label: "Garmin Connect",
|
|
13222
13261
|
featureFlag: "garminConnectConnector" /* GarminConnectConnector */,
|
|
@@ -14965,6 +15004,7 @@ var connectorTypeSchema = z21.enum([
|
|
|
14965
15004
|
"reddit",
|
|
14966
15005
|
"strava",
|
|
14967
15006
|
"neon",
|
|
15007
|
+
"gamma",
|
|
14968
15008
|
"garmin-connect",
|
|
14969
15009
|
"x",
|
|
14970
15010
|
"vercel",
|
|
@@ -18191,4 +18231,4 @@ export {
|
|
|
18191
18231
|
promptSelect,
|
|
18192
18232
|
promptPassword
|
|
18193
18233
|
};
|
|
18194
|
-
//# sourceMappingURL=chunk-
|
|
18234
|
+
//# sourceMappingURL=chunk-ANZYCH6W.js.map
|