@vm0/cli 9.177.16 → 9.177.17

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.16",
74086
+ release: "9.177.17",
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.16",
74105
+ version: "9.177.17",
74106
74106
  command: process.argv.slice(2).join(" ")
74107
74107
  });
74108
74108
  setContext("runtime", {
@@ -88716,10 +88716,18 @@ var ACTIONABLE_RUN_ERROR_SNIPPETS = [
88716
88716
  "Cannot continue session",
88717
88717
  "Invalid signature in thinking block",
88718
88718
  "Run cancelled",
88719
+ // Upstream model usage/quota limits are shown verbatim (the CLI already
88720
+ // emits clean, user-friendly copy with reset time and upgrade links).
88721
+ // Codex: "You've hit your usage limit …"
88719
88722
  "usage limit",
88720
88723
  "usage_limit",
88721
88724
  "usage-limit",
88722
- "UsageLimit"
88725
+ "UsageLimit",
88726
+ // Claude Code subscription limits:
88727
+ // "You've hit your session limit · resets …"
88728
+ // "You've hit your weekly limit · resets …"
88729
+ "session limit",
88730
+ "weekly limit"
88723
88731
  ];
88724
88732
 
88725
88733
  // src/lib/api/core/client-factory.ts
@@ -101991,6 +101999,48 @@ var heygen = {
101991
101999
  }
101992
102000
  };
101993
102001
 
102002
+ // ../../packages/connectors/src/connectors/hitem3d.ts
102003
+ init_esm_shims();
102004
+ var hitem3d = {
102005
+ hitem3d: {
102006
+ label: "Hitem3D",
102007
+ category: "ai-image-video",
102008
+ generation: ["image"],
102009
+ tags: ["hi3d", "sparc3d", "ultra3d", "image-to-3d", "3d"],
102010
+ helpText: "Connect your Hitem3D account to generate 3D models from images through the Hitem3D API",
102011
+ authMethods: {
102012
+ "api-token": {
102013
+ label: "API Credentials",
102014
+ 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.",
102015
+ grant: {
102016
+ kind: "manual",
102017
+ fields: {
102018
+ HITEM3D_CLIENT_ID: {
102019
+ label: "Client ID",
102020
+ required: true,
102021
+ placeholder: "hitem3d_client_id"
102022
+ },
102023
+ HITEM3D_CLIENT_SECRET: {
102024
+ label: "Client Secret",
102025
+ required: true,
102026
+ placeholder: "hitem3d_client_secret"
102027
+ }
102028
+ }
102029
+ },
102030
+ access: {
102031
+ kind: "static",
102032
+ envBindings: {
102033
+ HITEM3D_CLIENT_ID: "$secrets.HITEM3D_CLIENT_ID",
102034
+ HITEM3D_CLIENT_SECRET: "$secrets.HITEM3D_CLIENT_SECRET"
102035
+ }
102036
+ },
102037
+ revoke: { kind: "none" }
102038
+ }
102039
+ },
102040
+ defaultAuthMethod: "api-token"
102041
+ }
102042
+ };
102043
+
101994
102044
  // ../../packages/connectors/src/connectors/htmlcsstoimage.ts
101995
102045
  init_esm_shims();
101996
102046
  var htmlcsstoimage = {
@@ -106200,6 +106250,29 @@ var testOauthDevice = {
106200
106250
  }
106201
106251
  },
106202
106252
  revoke: { kind: "none" }
106253
+ },
106254
+ api: {
106255
+ featureFlag: "testOauthConnector" /* TestOauthConnector */,
106256
+ label: "API Device Authorization",
106257
+ helpText: "Secondary test-only OAuth device method used to exercise method-aware device authorization sessions.",
106258
+ client: {
106259
+ clientRegistration: "static",
106260
+ clientType: "public",
106261
+ clientId: "test-oauth-device-api-client"
106262
+ },
106263
+ grant: {
106264
+ kind: "device-auth",
106265
+ deviceAuthUrl: "/api/test/oauth-provider/device/code",
106266
+ tokenUrl: "/api/test/oauth-provider/token",
106267
+ scopes: ["read"]
106268
+ },
106269
+ access: {
106270
+ kind: "static",
106271
+ envBindings: {
106272
+ TEST_OAUTH_DEVICE_API_TOKEN: "$secrets.TEST_OAUTH_DEVICE_API_ACCESS_TOKEN"
106273
+ }
106274
+ },
106275
+ revoke: { kind: "none" }
106203
106276
  }
106204
106277
  },
106205
106278
  defaultAuthMethod: "oauth"
@@ -107214,6 +107287,7 @@ var CONNECTOR_TYPES_DEF = {
107214
107287
  ...groq,
107215
107288
  ...helicone,
107216
107289
  ...heygen,
107290
+ ...hitem3d,
107217
107291
  ...htmlcsstoimage,
107218
107292
  ...honcho,
107219
107293
  ...huggingFace,
@@ -109358,6 +109432,7 @@ init_esm_shims();
109358
109432
  // ../../packages/api-contracts/src/contracts/chat-threads.ts
109359
109433
  init_esm_shims();
109360
109434
  var c21 = initContract();
109435
+ var MODEL_FIRST_SELECTION_PROVIDER_ID = "00000000-0000-4000-8000-000000000000";
109361
109436
  var attachFileSchema = external_exports.object({
109362
109437
  id: external_exports.string(),
109363
109438
  filename: external_exports.string(),
@@ -109519,6 +109594,14 @@ var chatThreadDetailSchema = external_exports.object({
109519
109594
  var modelSelectionRequestSchema = external_exports.object({
109520
109595
  modelProviderId: external_exports.string().uuid(),
109521
109596
  selectedModel: external_exports.string().min(1)
109597
+ }).superRefine((value, ctx) => {
109598
+ if (value.modelProviderId === MODEL_FIRST_SELECTION_PROVIDER_ID && !isSupportedRunModel(value.selectedModel)) {
109599
+ ctx.addIssue({
109600
+ code: external_exports.ZodIssueCode.custom,
109601
+ path: ["selectedModel"],
109602
+ message: "Invalid model selection"
109603
+ });
109604
+ }
109522
109605
  });
109523
109606
  var chatThreadsContract = c21.router({
109524
109607
  create: {
@@ -121551,6 +121634,43 @@ var heliconeFirewall = {
121551
121634
  ]
121552
121635
  };
121553
121636
 
121637
+ // ../../packages/connectors/src/firewalls/hitem3d.generated.ts
121638
+ init_esm_shims();
121639
+ var hitem3dFirewall = {
121640
+ name: "hitem3d",
121641
+ description: "Hitem3D API",
121642
+ placeholders: {
121643
+ HITEM3D_CLIENT_ID: "hitem3d_client_id_CoffeeSafeLocalCoffeeSafeLocal",
121644
+ HITEM3D_CLIENT_SECRET: "hitem3d_client_secret_CoffeeSafeLocalCoffeeSafeLocal"
121645
+ },
121646
+ apis: [
121647
+ {
121648
+ base: "https://api.hitem3d.ai/open-api/v1/auth/token",
121649
+ auth: {
121650
+ headers: {
121651
+ Authorization: "${{ basic(secrets.HITEM3D_CLIENT_ID, secrets.HITEM3D_CLIENT_SECRET) }}"
121652
+ }
121653
+ },
121654
+ permissions: [
121655
+ {
121656
+ name: "auth-token",
121657
+ description: "Obtain a Hitem3D API access token",
121658
+ rules: ["POST /"]
121659
+ }
121660
+ ]
121661
+ },
121662
+ {
121663
+ base: "https://mcp.hitem3d.ai/mcp",
121664
+ auth: {
121665
+ headers: {
121666
+ Authorization: "${{ basic(secrets.HITEM3D_CLIENT_ID, secrets.HITEM3D_CLIENT_SECRET) }}"
121667
+ }
121668
+ },
121669
+ permissions: []
121670
+ }
121671
+ ]
121672
+ };
121673
+
121554
121674
  // ../../packages/connectors/src/firewalls/htmlcsstoimage.generated.ts
121555
121675
  init_esm_shims();
121556
121676
  var htmlcsstoimageFirewall = {
@@ -127455,6 +127575,7 @@ var CONNECTOR_FIREWALLS = {
127455
127575
  gumroad: gumroadFirewall,
127456
127576
  heygen: heygenFirewall,
127457
127577
  helicone: heliconeFirewall,
127578
+ hitem3d: hitem3dFirewall,
127458
127579
  htmlcsstoimage: htmlcsstoimageFirewall,
127459
127580
  honcho: honchoFirewall,
127460
127581
  hubspot: hubspotFirewall,
@@ -134360,4 +134481,4 @@ undici/lib/web/fetch/body.js:
134360
134481
  undici/lib/web/websocket/frame.js:
134361
134482
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
134362
134483
  */
134363
- //# sourceMappingURL=chunk-BFQSUVXT.js.map
134484
+ //# sourceMappingURL=chunk-R76KWHIG.js.map