@cloudcart/dev-mcp 0.2.19 → 0.2.21

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
@@ -6915,6 +6915,22 @@
6915
6915
  "isDeprecated": false,
6916
6916
  "deprecationReason": null
6917
6917
  },
6918
+ {
6919
+ "name": "storageQuota",
6920
+ "description": "Disk-space quota for the store: plan storage limit, current usage and\nremaining space (mirrors the admin file-manager \"used / total\" indicator).\nBacked by Plan::storageRemaining() — plan feature `storage`, in GB.",
6921
+ "args": [],
6922
+ "type": {
6923
+ "kind": "NON_NULL",
6924
+ "name": null,
6925
+ "ofType": {
6926
+ "kind": "OBJECT",
6927
+ "name": "StorageQuota",
6928
+ "ofType": null
6929
+ }
6930
+ },
6931
+ "isDeprecated": false,
6932
+ "deprecationReason": null
6933
+ },
6918
6934
  {
6919
6935
  "name": "queueJobs",
6920
6936
  "description": "Get a paginated list of queue jobs.",
@@ -10247,6 +10263,18 @@
10247
10263
  "isDeprecated": false,
10248
10264
  "deprecationReason": null
10249
10265
  },
10266
+ {
10267
+ "name": "parentId",
10268
+ "description": "Parent task ID. Omit for top-level tasks; pass a task id to list its children (the Tasks tab is a parent → children tree).",
10269
+ "type": {
10270
+ "kind": "SCALAR",
10271
+ "name": "ID",
10272
+ "ofType": null
10273
+ },
10274
+ "defaultValue": null,
10275
+ "isDeprecated": false,
10276
+ "deprecationReason": null
10277
+ },
10250
10278
  {
10251
10279
  "name": "first",
10252
10280
  "description": "Results per page.",
@@ -10280,6 +10308,51 @@
10280
10308
  "isDeprecated": false,
10281
10309
  "deprecationReason": null
10282
10310
  },
10311
+ {
10312
+ "name": "erpTaskXml",
10313
+ "description": "Get the raw ERP XML payload for a single ERP task — the XML the ERP (e.g.\nMicroinvest) sent for that task, as shown by the task detail view on the\nTasks tab. Returns null if the ERP's TasksController exposes no detail view.",
10314
+ "args": [
10315
+ {
10316
+ "name": "key",
10317
+ "description": "App key (e.g. \"microinvest\").",
10318
+ "type": {
10319
+ "kind": "NON_NULL",
10320
+ "name": null,
10321
+ "ofType": {
10322
+ "kind": "SCALAR",
10323
+ "name": "String",
10324
+ "ofType": null
10325
+ }
10326
+ },
10327
+ "defaultValue": null,
10328
+ "isDeprecated": false,
10329
+ "deprecationReason": null
10330
+ },
10331
+ {
10332
+ "name": "id",
10333
+ "description": "Task ID.",
10334
+ "type": {
10335
+ "kind": "NON_NULL",
10336
+ "name": null,
10337
+ "ofType": {
10338
+ "kind": "SCALAR",
10339
+ "name": "ID",
10340
+ "ofType": null
10341
+ }
10342
+ },
10343
+ "defaultValue": null,
10344
+ "isDeprecated": false,
10345
+ "deprecationReason": null
10346
+ }
10347
+ ],
10348
+ "type": {
10349
+ "kind": "SCALAR",
10350
+ "name": "String",
10351
+ "ofType": null
10352
+ },
10353
+ "isDeprecated": false,
10354
+ "deprecationReason": null
10355
+ },
10283
10356
  {
10284
10357
  "name": "erpDiagnostics",
10285
10358
  "description": "Run the read-only ERP connection diagnostic — the same \"Test connection\"\nchecks shown on the app's Diagnostics tab (reachability, authentication,\nconfigured catalog, categories, products, previously-imported products).\nReturns supported=false (overall \"skipped\") for ERPs without a diagnostics\nrunner. Currently implemented by Gensoft.",
@@ -12309,6 +12382,35 @@
12309
12382
  "isDeprecated": false,
12310
12383
  "deprecationReason": null
12311
12384
  },
12385
+ {
12386
+ "name": "csvImportTask",
12387
+ "description": "Get a saved CSV import task's full detail — the same data shown on the admin\ncsv_import/task/{id} page: status, counts, settings, the field->column\n`mapping`, and `mapping_sample` (the file's first row keyed by column index —\njoin mapping[field] -> mapping_sample[column] to get each field's sample\nvalue), plus a sample of failed records and live progress.",
12388
+ "args": [
12389
+ {
12390
+ "name": "id",
12391
+ "description": "CSV import task ID.",
12392
+ "type": {
12393
+ "kind": "NON_NULL",
12394
+ "name": null,
12395
+ "ofType": {
12396
+ "kind": "SCALAR",
12397
+ "name": "ID",
12398
+ "ofType": null
12399
+ }
12400
+ },
12401
+ "defaultValue": null,
12402
+ "isDeprecated": false,
12403
+ "deprecationReason": null
12404
+ }
12405
+ ],
12406
+ "type": {
12407
+ "kind": "SCALAR",
12408
+ "name": "JSON",
12409
+ "ofType": null
12410
+ },
12411
+ "isDeprecated": false,
12412
+ "deprecationReason": null
12413
+ },
12312
12414
  {
12313
12415
  "name": "csvImportPreview",
12314
12416
  "description": "Preview the first row of an uploaded CSV file.\nReturns column indices mapped to cell values — use these indices to build the mapping for `csvImportStart`.",
@@ -32798,6 +32900,51 @@
32798
32900
  "isDeprecated": false,
32799
32901
  "deprecationReason": null
32800
32902
  },
32903
+ {
32904
+ "name": "uploadManagedFile",
32905
+ "description": "Upload a file to the media library. Provide the raw bytes base64-encoded in\n`contentBase64` and the target `filename`. Single-shot upload (the admin's\nchunked S3 path is for very large files). Returns the created file record\n({ id, name, url, size, dir, created_at, ... }), or { error } on failure.",
32906
+ "args": [
32907
+ {
32908
+ "name": "filename",
32909
+ "description": "Target file name (with extension), e.g. \"banner.png\".",
32910
+ "type": {
32911
+ "kind": "NON_NULL",
32912
+ "name": null,
32913
+ "ofType": {
32914
+ "kind": "SCALAR",
32915
+ "name": "String",
32916
+ "ofType": null
32917
+ }
32918
+ },
32919
+ "defaultValue": null,
32920
+ "isDeprecated": false,
32921
+ "deprecationReason": null
32922
+ },
32923
+ {
32924
+ "name": "contentBase64",
32925
+ "description": "File bytes, base64-encoded.",
32926
+ "type": {
32927
+ "kind": "NON_NULL",
32928
+ "name": null,
32929
+ "ofType": {
32930
+ "kind": "SCALAR",
32931
+ "name": "String",
32932
+ "ofType": null
32933
+ }
32934
+ },
32935
+ "defaultValue": null,
32936
+ "isDeprecated": false,
32937
+ "deprecationReason": null
32938
+ }
32939
+ ],
32940
+ "type": {
32941
+ "kind": "SCALAR",
32942
+ "name": "JSON",
32943
+ "ofType": null
32944
+ },
32945
+ "isDeprecated": false,
32946
+ "deprecationReason": null
32947
+ },
32801
32948
  {
32802
32949
  "name": "createStaffMember",
32803
32950
  "description": "Create a new staff member (always created as moderator). Sends welcome email.",
@@ -97118,6 +97265,174 @@
97118
97265
  "enumValues": null,
97119
97266
  "possibleTypes": null
97120
97267
  },
97268
+ {
97269
+ "kind": "OBJECT",
97270
+ "name": "StorageQuota",
97271
+ "description": "Disk-space quota for the store — plan storage limit, current usage and remaining space.",
97272
+ "isOneOf": null,
97273
+ "fields": [
97274
+ {
97275
+ "name": "limitGb",
97276
+ "description": "Plan storage quota in GB (the `storage` plan feature).",
97277
+ "args": [],
97278
+ "type": {
97279
+ "kind": "SCALAR",
97280
+ "name": "Float",
97281
+ "ofType": null
97282
+ },
97283
+ "isDeprecated": false,
97284
+ "deprecationReason": null
97285
+ },
97286
+ {
97287
+ "name": "used",
97288
+ "description": "Used space, in bytes.",
97289
+ "args": [],
97290
+ "type": {
97291
+ "kind": "NON_NULL",
97292
+ "name": null,
97293
+ "ofType": {
97294
+ "kind": "SCALAR",
97295
+ "name": "Float",
97296
+ "ofType": null
97297
+ }
97298
+ },
97299
+ "isDeprecated": false,
97300
+ "deprecationReason": null
97301
+ },
97302
+ {
97303
+ "name": "usedFormatted",
97304
+ "description": "Used space, human-readable (e.g. \"2.3 GB\").",
97305
+ "args": [],
97306
+ "type": {
97307
+ "kind": "NON_NULL",
97308
+ "name": null,
97309
+ "ofType": {
97310
+ "kind": "SCALAR",
97311
+ "name": "String",
97312
+ "ofType": null
97313
+ }
97314
+ },
97315
+ "isDeprecated": false,
97316
+ "deprecationReason": null
97317
+ },
97318
+ {
97319
+ "name": "usedPercent",
97320
+ "description": "Percent of the quota currently used (0–100).",
97321
+ "args": [],
97322
+ "type": {
97323
+ "kind": "NON_NULL",
97324
+ "name": null,
97325
+ "ofType": {
97326
+ "kind": "SCALAR",
97327
+ "name": "Float",
97328
+ "ofType": null
97329
+ }
97330
+ },
97331
+ "isDeprecated": false,
97332
+ "deprecationReason": null
97333
+ },
97334
+ {
97335
+ "name": "total",
97336
+ "description": "Total quota, in bytes.",
97337
+ "args": [],
97338
+ "type": {
97339
+ "kind": "NON_NULL",
97340
+ "name": null,
97341
+ "ofType": {
97342
+ "kind": "SCALAR",
97343
+ "name": "Float",
97344
+ "ofType": null
97345
+ }
97346
+ },
97347
+ "isDeprecated": false,
97348
+ "deprecationReason": null
97349
+ },
97350
+ {
97351
+ "name": "totalFormatted",
97352
+ "description": "Total quota, human-readable.",
97353
+ "args": [],
97354
+ "type": {
97355
+ "kind": "NON_NULL",
97356
+ "name": null,
97357
+ "ofType": {
97358
+ "kind": "SCALAR",
97359
+ "name": "String",
97360
+ "ofType": null
97361
+ }
97362
+ },
97363
+ "isDeprecated": false,
97364
+ "deprecationReason": null
97365
+ },
97366
+ {
97367
+ "name": "remaining",
97368
+ "description": "Remaining space, in bytes (negative if over quota).",
97369
+ "args": [],
97370
+ "type": {
97371
+ "kind": "NON_NULL",
97372
+ "name": null,
97373
+ "ofType": {
97374
+ "kind": "SCALAR",
97375
+ "name": "Float",
97376
+ "ofType": null
97377
+ }
97378
+ },
97379
+ "isDeprecated": false,
97380
+ "deprecationReason": null
97381
+ },
97382
+ {
97383
+ "name": "remainingFormatted",
97384
+ "description": "Remaining space, human-readable.",
97385
+ "args": [],
97386
+ "type": {
97387
+ "kind": "NON_NULL",
97388
+ "name": null,
97389
+ "ofType": {
97390
+ "kind": "SCALAR",
97391
+ "name": "String",
97392
+ "ofType": null
97393
+ }
97394
+ },
97395
+ "isDeprecated": false,
97396
+ "deprecationReason": null
97397
+ },
97398
+ {
97399
+ "name": "fileCount",
97400
+ "description": "Number of stored files.",
97401
+ "args": [],
97402
+ "type": {
97403
+ "kind": "NON_NULL",
97404
+ "name": null,
97405
+ "ofType": {
97406
+ "kind": "SCALAR",
97407
+ "name": "Int",
97408
+ "ofType": null
97409
+ }
97410
+ },
97411
+ "isDeprecated": false,
97412
+ "deprecationReason": null
97413
+ },
97414
+ {
97415
+ "name": "dirCount",
97416
+ "description": "Number of directories (currently always 0).",
97417
+ "args": [],
97418
+ "type": {
97419
+ "kind": "NON_NULL",
97420
+ "name": null,
97421
+ "ofType": {
97422
+ "kind": "SCALAR",
97423
+ "name": "Int",
97424
+ "ofType": null
97425
+ }
97426
+ },
97427
+ "isDeprecated": false,
97428
+ "deprecationReason": null
97429
+ }
97430
+ ],
97431
+ "inputFields": null,
97432
+ "interfaces": [],
97433
+ "enumValues": null,
97434
+ "possibleTypes": null
97435
+ },
97121
97436
  {
97122
97437
  "kind": "OBJECT",
97123
97438
  "name": "QueueJob",
Binary file