@cloudcart/dev-mcp 0.2.11 → 0.2.13

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/data/admin.json CHANGED
@@ -13173,8 +13173,8 @@
13173
13173
  "deprecationReason": null
13174
13174
  },
13175
13175
  {
13176
- "name": "nitroStorefronts",
13177
- "description": "List all Nitro storefronts for the current store.",
13176
+ "name": "nitrogenStorefronts",
13177
+ "description": "List all Nitrogen storefronts for the current store.",
13178
13178
  "args": [
13179
13179
  {
13180
13180
  "name": "first",
@@ -13212,7 +13212,7 @@
13212
13212
  "name": null,
13213
13213
  "ofType": {
13214
13214
  "kind": "OBJECT",
13215
- "name": "NitroStorefrontConnection",
13215
+ "name": "NitrogenStorefrontConnection",
13216
13216
  "ofType": null
13217
13217
  }
13218
13218
  },
@@ -13220,8 +13220,8 @@
13220
13220
  "deprecationReason": null
13221
13221
  },
13222
13222
  {
13223
- "name": "nitroStorefront",
13224
- "description": "Get a Nitro storefront by ID.",
13223
+ "name": "nitrogenStorefront",
13224
+ "description": "Get a Nitrogen storefront by ID.",
13225
13225
  "args": [
13226
13226
  {
13227
13227
  "name": "id",
@@ -13240,15 +13240,15 @@
13240
13240
  ],
13241
13241
  "type": {
13242
13242
  "kind": "OBJECT",
13243
- "name": "NitroStorefront",
13243
+ "name": "NitrogenStorefront",
13244
13244
  "ofType": null
13245
13245
  },
13246
13246
  "isDeprecated": false,
13247
13247
  "deprecationReason": null
13248
13248
  },
13249
13249
  {
13250
- "name": "nitroStorefrontByName",
13251
- "description": "Find a Nitro storefront by name.",
13250
+ "name": "nitrogenStorefrontByName",
13251
+ "description": "Find a Nitrogen storefront by name.",
13252
13252
  "args": [
13253
13253
  {
13254
13254
  "name": "name",
@@ -13267,7 +13267,7 @@
13267
13267
  ],
13268
13268
  "type": {
13269
13269
  "kind": "OBJECT",
13270
- "name": "NitroStorefront",
13270
+ "name": "NitrogenStorefront",
13271
13271
  "ofType": null
13272
13272
  },
13273
13273
  "isDeprecated": false,
@@ -17744,7 +17744,7 @@
17744
17744
  },
17745
17745
  {
17746
17746
  "name": "productsBulkSetBrandModels",
17747
- "description": "Replace the set of brand-models attached to N products. Mirrors the admin product-edit form's brand-models picker. Pass an empty `brandModelIds: []` to detach all brand-models from the supplied products. Each model id is verified against the `brand_model_models` table — invalid ids are silently dropped (no error).",
17747
+ "description": "Replace the set of brand-models attached to N products. Mirrors the admin product-edit form's brand-models picker. Pass an empty `brandModelIds: []` to detach all brand-models from the supplied products. Each model id is verified against the `brand_model_models` table — unrecognised ids are surfaced in `bulkOperationStatus.extra.invalidBrandModelIds`; if NONE of the supplied ids resolve, the job fails fast with reason `not_found` instead of silently detaching everything.",
17748
17748
  "args": [
17749
17749
  {
17750
17750
  "name": "ids",
@@ -17770,7 +17770,7 @@
17770
17770
  },
17771
17771
  {
17772
17772
  "name": "brandModelIds",
17773
- "description": "Brand-model IDs to attach. The supplied set REPLACES any previously-attached brand-models — pass an empty list to clear.",
17773
+ "description": "Brand-model ROW IDs (the `BrandModelItem.id` field — `models[].id` on the Brand type). NOT the brand id, NOT a composite key. Resolve via `brand(id) { models { id title } }` or `brandModels(brandId)` first — the brand is implicit through the model's `brand_id`. The supplied set REPLACES any previously-attached brand-models — pass an empty list to clear.",
17774
17774
  "type": {
17775
17775
  "kind": "NON_NULL",
17776
17776
  "name": null,
@@ -21608,6 +21608,33 @@
21608
21608
  "isDeprecated": false,
21609
21609
  "deprecationReason": null
21610
21610
  },
21611
+ {
21612
+ "name": "bulkOperationCancel",
21613
+ "description": "Cancel an in-flight bulk operation. Works for both backings:\n- Mongo-tracked productsBulk* jobs (productsBulkSetActive, BulkDuplicate, …): marks the `bulk_operations` doc as CANCELLED so the worker stops at the next chunk boundary. Already-processed records are kept (no rollback).\n- JsonImport-tracked productsBulkCreate jobs: deletes all pending SiteQueue + GlobalImportRecords rows so no further products are created, and marks the JsonImport row as cancelled. Products already created stay.\n\nIdempotent — calling on a job that's already in a terminal state (COMPLETED / FAILED / CANCELLED) is a no-op that returns the current status.\n\nReturns the same payload shape as `bulkOperationStatus(jobId)` so callers can read the final counts immediately.",
21614
+ "args": [
21615
+ {
21616
+ "name": "jobId",
21617
+ "description": "Job id originally returned by any `productsBulk*` mutation.",
21618
+ "type": {
21619
+ "kind": "NON_NULL",
21620
+ "name": null,
21621
+ "ofType": {
21622
+ "kind": "SCALAR",
21623
+ "name": "ID",
21624
+ "ofType": null
21625
+ }
21626
+ },
21627
+ "defaultValue": null
21628
+ }
21629
+ ],
21630
+ "type": {
21631
+ "kind": "OBJECT",
21632
+ "name": "BulkOperationStatus",
21633
+ "ofType": null
21634
+ },
21635
+ "isDeprecated": false,
21636
+ "deprecationReason": null
21637
+ },
21611
21638
  {
21612
21639
  "name": "createCustomer",
21613
21640
  "description": "Create a new customer.",
@@ -49786,6 +49813,12 @@
49786
49813
  "description": "Worker hit a fatal error before finishing.",
49787
49814
  "isDeprecated": false,
49788
49815
  "deprecationReason": null
49816
+ },
49817
+ {
49818
+ "name": "CANCELLED",
49819
+ "description": "Job was cancelled by a caller via `bulkOperationCancel(jobId)`. Already-processed work stays — only pending records are removed.",
49820
+ "isDeprecated": false,
49821
+ "deprecationReason": null
49789
49822
  }
49790
49823
  ],
49791
49824
  "possibleTypes": null
@@ -115942,8 +115975,8 @@
115942
115975
  },
115943
115976
  {
115944
115977
  "kind": "OBJECT",
115945
- "name": "NitroStorefront",
115946
- "description": "A Nitro headless storefront.",
115978
+ "name": "NitrogenStorefront",
115979
+ "description": "A Nitrogen headless storefront.",
115947
115980
  "fields": [
115948
115981
  {
115949
115982
  "name": "id",
@@ -116113,7 +116146,7 @@
116113
116146
  "name": null,
116114
116147
  "ofType": {
116115
116148
  "kind": "OBJECT",
116116
- "name": "NitroEnvironmentVariable",
116149
+ "name": "NitrogenEnvironmentVariable",
116117
116150
  "ofType": null
116118
116151
  }
116119
116152
  }
@@ -116153,8 +116186,8 @@
116153
116186
  },
116154
116187
  {
116155
116188
  "kind": "OBJECT",
116156
- "name": "NitroEnvironmentVariable",
116157
- "description": "An environment variable for a Nitro storefront.",
116189
+ "name": "NitrogenEnvironmentVariable",
116190
+ "description": "An environment variable for a Nitrogen storefront.",
116158
116191
  "fields": [
116159
116192
  {
116160
116193
  "name": "id",
@@ -116260,8 +116293,8 @@
116260
116293
  },
116261
116294
  {
116262
116295
  "kind": "OBJECT",
116263
- "name": "NitroStorefrontConnection",
116264
- "description": "Paginated Nitro storefronts.",
116296
+ "name": "NitrogenStorefrontConnection",
116297
+ "description": "Paginated Nitrogen storefronts.",
116265
116298
  "fields": [
116266
116299
  {
116267
116300
  "name": "edges",
@@ -116278,7 +116311,7 @@
116278
116311
  "name": null,
116279
116312
  "ofType": {
116280
116313
  "kind": "OBJECT",
116281
- "name": "NitroStorefrontEdge",
116314
+ "name": "NitrogenStorefrontEdge",
116282
116315
  "ofType": null
116283
116316
  }
116284
116317
  }
@@ -116302,7 +116335,7 @@
116302
116335
  "name": null,
116303
116336
  "ofType": {
116304
116337
  "kind": "OBJECT",
116305
- "name": "NitroStorefront",
116338
+ "name": "NitrogenStorefront",
116306
116339
  "ofType": null
116307
116340
  }
116308
116341
  }
@@ -116351,7 +116384,7 @@
116351
116384
  },
116352
116385
  {
116353
116386
  "kind": "OBJECT",
116354
- "name": "NitroStorefrontEdge",
116387
+ "name": "NitrogenStorefrontEdge",
116355
116388
  "description": null,
116356
116389
  "fields": [
116357
116390
  {
@@ -116363,7 +116396,7 @@
116363
116396
  "name": null,
116364
116397
  "ofType": {
116365
116398
  "kind": "OBJECT",
116366
- "name": "NitroStorefront",
116399
+ "name": "NitrogenStorefront",
116367
116400
  "ofType": null
116368
116401
  }
116369
116402
  },
Binary file