@cloudcart/dev-mcp 0.2.17 → 0.2.18

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
@@ -10280,6 +10280,39 @@
10280
10280
  "isDeprecated": false,
10281
10281
  "deprecationReason": null
10282
10282
  },
10283
+ {
10284
+ "name": "erpDiagnostics",
10285
+ "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.",
10286
+ "args": [
10287
+ {
10288
+ "name": "key",
10289
+ "description": "ERP app key (e.g. \"gensoft\").",
10290
+ "type": {
10291
+ "kind": "NON_NULL",
10292
+ "name": null,
10293
+ "ofType": {
10294
+ "kind": "SCALAR",
10295
+ "name": "String",
10296
+ "ofType": null
10297
+ }
10298
+ },
10299
+ "defaultValue": null,
10300
+ "isDeprecated": false,
10301
+ "deprecationReason": null
10302
+ }
10303
+ ],
10304
+ "type": {
10305
+ "kind": "NON_NULL",
10306
+ "name": null,
10307
+ "ofType": {
10308
+ "kind": "OBJECT",
10309
+ "name": "ErpDiagnostics",
10310
+ "ofType": null
10311
+ }
10312
+ },
10313
+ "isDeprecated": false,
10314
+ "deprecationReason": null
10315
+ },
10283
10316
  {
10284
10317
  "name": "barsyModificators",
10285
10318
  "description": "List Barsy product modificators.",
@@ -111647,6 +111680,22 @@
111647
111680
  },
111648
111681
  "isDeprecated": false,
111649
111682
  "deprecationReason": null
111683
+ },
111684
+ {
111685
+ "name": "diagnostics",
111686
+ "description": "Whether the app exposes the read-only connection diagnostics (Test connection).",
111687
+ "args": [],
111688
+ "type": {
111689
+ "kind": "NON_NULL",
111690
+ "name": null,
111691
+ "ofType": {
111692
+ "kind": "SCALAR",
111693
+ "name": "Boolean",
111694
+ "ofType": null
111695
+ }
111696
+ },
111697
+ "isDeprecated": false,
111698
+ "deprecationReason": null
111650
111699
  }
111651
111700
  ],
111652
111701
  "inputFields": null,
@@ -112254,6 +112303,186 @@
112254
112303
  "enumValues": null,
112255
112304
  "possibleTypes": null
112256
112305
  },
112306
+ {
112307
+ "kind": "OBJECT",
112308
+ "name": "ErpDiagnostics",
112309
+ "description": "Result of a read-only ERP connection diagnostic run (the Test connection tab).",
112310
+ "isOneOf": null,
112311
+ "fields": [
112312
+ {
112313
+ "name": "overall",
112314
+ "description": "Overall verdict, derived from the worst check: ok | warning | error | skipped.",
112315
+ "args": [],
112316
+ "type": {
112317
+ "kind": "NON_NULL",
112318
+ "name": null,
112319
+ "ofType": {
112320
+ "kind": "SCALAR",
112321
+ "name": "String",
112322
+ "ofType": null
112323
+ }
112324
+ },
112325
+ "isDeprecated": false,
112326
+ "deprecationReason": null
112327
+ },
112328
+ {
112329
+ "name": "supported",
112330
+ "description": "Whether this ERP implements a diagnostics runner. When false, checks is empty and overall is \"skipped\".",
112331
+ "args": [],
112332
+ "type": {
112333
+ "kind": "NON_NULL",
112334
+ "name": null,
112335
+ "ofType": {
112336
+ "kind": "SCALAR",
112337
+ "name": "Boolean",
112338
+ "ofType": null
112339
+ }
112340
+ },
112341
+ "isDeprecated": false,
112342
+ "deprecationReason": null
112343
+ },
112344
+ {
112345
+ "name": "checks",
112346
+ "description": "Ordered list of individual checks.",
112347
+ "args": [],
112348
+ "type": {
112349
+ "kind": "NON_NULL",
112350
+ "name": null,
112351
+ "ofType": {
112352
+ "kind": "LIST",
112353
+ "name": null,
112354
+ "ofType": {
112355
+ "kind": "NON_NULL",
112356
+ "name": null,
112357
+ "ofType": {
112358
+ "kind": "OBJECT",
112359
+ "name": "ErpDiagnosticCheck",
112360
+ "ofType": null
112361
+ }
112362
+ }
112363
+ }
112364
+ },
112365
+ "isDeprecated": false,
112366
+ "deprecationReason": null
112367
+ },
112368
+ {
112369
+ "name": "message",
112370
+ "description": "Optional message (e.g. when unsupported or on an unexpected error).",
112371
+ "args": [],
112372
+ "type": {
112373
+ "kind": "SCALAR",
112374
+ "name": "String",
112375
+ "ofType": null
112376
+ },
112377
+ "isDeprecated": false,
112378
+ "deprecationReason": null
112379
+ }
112380
+ ],
112381
+ "inputFields": null,
112382
+ "interfaces": [],
112383
+ "enumValues": null,
112384
+ "possibleTypes": null
112385
+ },
112386
+ {
112387
+ "kind": "OBJECT",
112388
+ "name": "ErpDiagnosticCheck",
112389
+ "description": "A single check within an ERP diagnostic run.",
112390
+ "isOneOf": null,
112391
+ "fields": [
112392
+ {
112393
+ "name": "key",
112394
+ "description": "Machine key (e.g. \"connection\", \"authentication\", \"products\").",
112395
+ "args": [],
112396
+ "type": {
112397
+ "kind": "NON_NULL",
112398
+ "name": null,
112399
+ "ofType": {
112400
+ "kind": "SCALAR",
112401
+ "name": "String",
112402
+ "ofType": null
112403
+ }
112404
+ },
112405
+ "isDeprecated": false,
112406
+ "deprecationReason": null
112407
+ },
112408
+ {
112409
+ "name": "label",
112410
+ "description": "Human-readable label.",
112411
+ "args": [],
112412
+ "type": {
112413
+ "kind": "NON_NULL",
112414
+ "name": null,
112415
+ "ofType": {
112416
+ "kind": "SCALAR",
112417
+ "name": "String",
112418
+ "ofType": null
112419
+ }
112420
+ },
112421
+ "isDeprecated": false,
112422
+ "deprecationReason": null
112423
+ },
112424
+ {
112425
+ "name": "status",
112426
+ "description": "Check outcome: ok | warning | error | skipped.",
112427
+ "args": [],
112428
+ "type": {
112429
+ "kind": "NON_NULL",
112430
+ "name": null,
112431
+ "ofType": {
112432
+ "kind": "SCALAR",
112433
+ "name": "String",
112434
+ "ofType": null
112435
+ }
112436
+ },
112437
+ "isDeprecated": false,
112438
+ "deprecationReason": null
112439
+ },
112440
+ {
112441
+ "name": "summary",
112442
+ "description": "One-sentence description of the outcome.",
112443
+ "args": [],
112444
+ "type": {
112445
+ "kind": "NON_NULL",
112446
+ "name": null,
112447
+ "ofType": {
112448
+ "kind": "SCALAR",
112449
+ "name": "String",
112450
+ "ofType": null
112451
+ }
112452
+ },
112453
+ "isDeprecated": false,
112454
+ "deprecationReason": null
112455
+ },
112456
+ {
112457
+ "name": "details",
112458
+ "description": "Optional structured extras (counts, lists, ...).",
112459
+ "args": [],
112460
+ "type": {
112461
+ "kind": "SCALAR",
112462
+ "name": "JSON",
112463
+ "ofType": null
112464
+ },
112465
+ "isDeprecated": false,
112466
+ "deprecationReason": null
112467
+ },
112468
+ {
112469
+ "name": "hint",
112470
+ "description": "Optional merchant-facing next step.",
112471
+ "args": [],
112472
+ "type": {
112473
+ "kind": "SCALAR",
112474
+ "name": "String",
112475
+ "ofType": null
112476
+ },
112477
+ "isDeprecated": false,
112478
+ "deprecationReason": null
112479
+ }
112480
+ ],
112481
+ "inputFields": null,
112482
+ "interfaces": [],
112483
+ "enumValues": null,
112484
+ "possibleTypes": null
112485
+ },
112257
112486
  {
112258
112487
  "kind": "INPUT_OBJECT",
112259
112488
  "name": "ErpCategoryMappingInput",
Binary file