@cloudcart/dev-mcp 0.2.19 → 0.2.20

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.",
@@ -12309,6 +12325,35 @@
12309
12325
  "isDeprecated": false,
12310
12326
  "deprecationReason": null
12311
12327
  },
12328
+ {
12329
+ "name": "csvImportTask",
12330
+ "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.",
12331
+ "args": [
12332
+ {
12333
+ "name": "id",
12334
+ "description": "CSV import task ID.",
12335
+ "type": {
12336
+ "kind": "NON_NULL",
12337
+ "name": null,
12338
+ "ofType": {
12339
+ "kind": "SCALAR",
12340
+ "name": "ID",
12341
+ "ofType": null
12342
+ }
12343
+ },
12344
+ "defaultValue": null,
12345
+ "isDeprecated": false,
12346
+ "deprecationReason": null
12347
+ }
12348
+ ],
12349
+ "type": {
12350
+ "kind": "SCALAR",
12351
+ "name": "JSON",
12352
+ "ofType": null
12353
+ },
12354
+ "isDeprecated": false,
12355
+ "deprecationReason": null
12356
+ },
12312
12357
  {
12313
12358
  "name": "csvImportPreview",
12314
12359
  "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 +32843,51 @@
32798
32843
  "isDeprecated": false,
32799
32844
  "deprecationReason": null
32800
32845
  },
32846
+ {
32847
+ "name": "uploadManagedFile",
32848
+ "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.",
32849
+ "args": [
32850
+ {
32851
+ "name": "filename",
32852
+ "description": "Target file name (with extension), e.g. \"banner.png\".",
32853
+ "type": {
32854
+ "kind": "NON_NULL",
32855
+ "name": null,
32856
+ "ofType": {
32857
+ "kind": "SCALAR",
32858
+ "name": "String",
32859
+ "ofType": null
32860
+ }
32861
+ },
32862
+ "defaultValue": null,
32863
+ "isDeprecated": false,
32864
+ "deprecationReason": null
32865
+ },
32866
+ {
32867
+ "name": "contentBase64",
32868
+ "description": "File bytes, base64-encoded.",
32869
+ "type": {
32870
+ "kind": "NON_NULL",
32871
+ "name": null,
32872
+ "ofType": {
32873
+ "kind": "SCALAR",
32874
+ "name": "String",
32875
+ "ofType": null
32876
+ }
32877
+ },
32878
+ "defaultValue": null,
32879
+ "isDeprecated": false,
32880
+ "deprecationReason": null
32881
+ }
32882
+ ],
32883
+ "type": {
32884
+ "kind": "SCALAR",
32885
+ "name": "JSON",
32886
+ "ofType": null
32887
+ },
32888
+ "isDeprecated": false,
32889
+ "deprecationReason": null
32890
+ },
32801
32891
  {
32802
32892
  "name": "createStaffMember",
32803
32893
  "description": "Create a new staff member (always created as moderator). Sends welcome email.",
@@ -97118,6 +97208,174 @@
97118
97208
  "enumValues": null,
97119
97209
  "possibleTypes": null
97120
97210
  },
97211
+ {
97212
+ "kind": "OBJECT",
97213
+ "name": "StorageQuota",
97214
+ "description": "Disk-space quota for the store — plan storage limit, current usage and remaining space.",
97215
+ "isOneOf": null,
97216
+ "fields": [
97217
+ {
97218
+ "name": "limitGb",
97219
+ "description": "Plan storage quota in GB (the `storage` plan feature).",
97220
+ "args": [],
97221
+ "type": {
97222
+ "kind": "SCALAR",
97223
+ "name": "Float",
97224
+ "ofType": null
97225
+ },
97226
+ "isDeprecated": false,
97227
+ "deprecationReason": null
97228
+ },
97229
+ {
97230
+ "name": "used",
97231
+ "description": "Used space, in bytes.",
97232
+ "args": [],
97233
+ "type": {
97234
+ "kind": "NON_NULL",
97235
+ "name": null,
97236
+ "ofType": {
97237
+ "kind": "SCALAR",
97238
+ "name": "Float",
97239
+ "ofType": null
97240
+ }
97241
+ },
97242
+ "isDeprecated": false,
97243
+ "deprecationReason": null
97244
+ },
97245
+ {
97246
+ "name": "usedFormatted",
97247
+ "description": "Used space, human-readable (e.g. \"2.3 GB\").",
97248
+ "args": [],
97249
+ "type": {
97250
+ "kind": "NON_NULL",
97251
+ "name": null,
97252
+ "ofType": {
97253
+ "kind": "SCALAR",
97254
+ "name": "String",
97255
+ "ofType": null
97256
+ }
97257
+ },
97258
+ "isDeprecated": false,
97259
+ "deprecationReason": null
97260
+ },
97261
+ {
97262
+ "name": "usedPercent",
97263
+ "description": "Percent of the quota currently used (0–100).",
97264
+ "args": [],
97265
+ "type": {
97266
+ "kind": "NON_NULL",
97267
+ "name": null,
97268
+ "ofType": {
97269
+ "kind": "SCALAR",
97270
+ "name": "Float",
97271
+ "ofType": null
97272
+ }
97273
+ },
97274
+ "isDeprecated": false,
97275
+ "deprecationReason": null
97276
+ },
97277
+ {
97278
+ "name": "total",
97279
+ "description": "Total quota, in bytes.",
97280
+ "args": [],
97281
+ "type": {
97282
+ "kind": "NON_NULL",
97283
+ "name": null,
97284
+ "ofType": {
97285
+ "kind": "SCALAR",
97286
+ "name": "Float",
97287
+ "ofType": null
97288
+ }
97289
+ },
97290
+ "isDeprecated": false,
97291
+ "deprecationReason": null
97292
+ },
97293
+ {
97294
+ "name": "totalFormatted",
97295
+ "description": "Total quota, human-readable.",
97296
+ "args": [],
97297
+ "type": {
97298
+ "kind": "NON_NULL",
97299
+ "name": null,
97300
+ "ofType": {
97301
+ "kind": "SCALAR",
97302
+ "name": "String",
97303
+ "ofType": null
97304
+ }
97305
+ },
97306
+ "isDeprecated": false,
97307
+ "deprecationReason": null
97308
+ },
97309
+ {
97310
+ "name": "remaining",
97311
+ "description": "Remaining space, in bytes (negative if over quota).",
97312
+ "args": [],
97313
+ "type": {
97314
+ "kind": "NON_NULL",
97315
+ "name": null,
97316
+ "ofType": {
97317
+ "kind": "SCALAR",
97318
+ "name": "Float",
97319
+ "ofType": null
97320
+ }
97321
+ },
97322
+ "isDeprecated": false,
97323
+ "deprecationReason": null
97324
+ },
97325
+ {
97326
+ "name": "remainingFormatted",
97327
+ "description": "Remaining space, human-readable.",
97328
+ "args": [],
97329
+ "type": {
97330
+ "kind": "NON_NULL",
97331
+ "name": null,
97332
+ "ofType": {
97333
+ "kind": "SCALAR",
97334
+ "name": "String",
97335
+ "ofType": null
97336
+ }
97337
+ },
97338
+ "isDeprecated": false,
97339
+ "deprecationReason": null
97340
+ },
97341
+ {
97342
+ "name": "fileCount",
97343
+ "description": "Number of stored files.",
97344
+ "args": [],
97345
+ "type": {
97346
+ "kind": "NON_NULL",
97347
+ "name": null,
97348
+ "ofType": {
97349
+ "kind": "SCALAR",
97350
+ "name": "Int",
97351
+ "ofType": null
97352
+ }
97353
+ },
97354
+ "isDeprecated": false,
97355
+ "deprecationReason": null
97356
+ },
97357
+ {
97358
+ "name": "dirCount",
97359
+ "description": "Number of directories (currently always 0).",
97360
+ "args": [],
97361
+ "type": {
97362
+ "kind": "NON_NULL",
97363
+ "name": null,
97364
+ "ofType": {
97365
+ "kind": "SCALAR",
97366
+ "name": "Int",
97367
+ "ofType": null
97368
+ }
97369
+ },
97370
+ "isDeprecated": false,
97371
+ "deprecationReason": null
97372
+ }
97373
+ ],
97374
+ "inputFields": null,
97375
+ "interfaces": [],
97376
+ "enumValues": null,
97377
+ "possibleTypes": null
97378
+ },
97121
97379
  {
97122
97380
  "kind": "OBJECT",
97123
97381
  "name": "QueueJob",
Binary file