@cloudcart/dev-mcp 0.2.8 → 0.2.10
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 +116 -97
- package/data/embeddings.bin +0 -0
- package/data/embeddings.json +1 -1
- package/dist/prompts/admin.d.ts +1 -1
- package/dist/prompts/admin.d.ts.map +1 -1
- package/dist/prompts/admin.js +22 -0
- package/dist/prompts/admin.js.map +1 -1
- package/package.json +3 -3
package/data/admin.json
CHANGED
|
@@ -1760,7 +1760,7 @@
|
|
|
1760
1760
|
},
|
|
1761
1761
|
{
|
|
1762
1762
|
"name": "bulkOperationStatus",
|
|
1763
|
-
"description": "
|
|
1763
|
+
"description": "Poll the status of an async / queue-backed bulk operation — track progress of a background job dispatched by any `productsBulk*` mutation. Use this to check job state, monitor processedCount/totalCount, and read final affectedCount + skippedIds when the job completes. Returns null if no operation with that `jobId` exists in the current site. Poll every ~250 ms while `status` is `PENDING` or `RUNNING`; stop once it reaches `COMPLETED` or `FAILED`.",
|
|
1764
1764
|
"args": [
|
|
1765
1765
|
{
|
|
1766
1766
|
"name": "jobId",
|
|
@@ -16683,7 +16683,7 @@
|
|
|
16683
16683
|
},
|
|
16684
16684
|
{
|
|
16685
16685
|
"name": "ordersBulkChangeStatus",
|
|
16686
|
-
"description": "Bulk change status for
|
|
16686
|
+
"description": "Bulk change order status on N orders at once — set them to pending, paid, shipped, fulfilled, etc. Async / queue-backed: returns BulkOperationJob immediately and runs through Order::changeStatus() per order on the tmp queue (which fires customer notifications, history entries, fulfillment events as it goes). Poll bulkOperationStatus(jobId) for progress. Common phrasings: bulk change order status, mass update orders status, mark many orders as paid / shipped / fulfilled, change status of many orders.",
|
|
16687
16687
|
"args": [
|
|
16688
16688
|
{
|
|
16689
16689
|
"name": "input",
|
|
@@ -16704,17 +16704,9 @@
|
|
|
16704
16704
|
"kind": "NON_NULL",
|
|
16705
16705
|
"name": null,
|
|
16706
16706
|
"ofType": {
|
|
16707
|
-
"kind": "
|
|
16708
|
-
"name":
|
|
16709
|
-
"ofType":
|
|
16710
|
-
"kind": "NON_NULL",
|
|
16711
|
-
"name": null,
|
|
16712
|
-
"ofType": {
|
|
16713
|
-
"kind": "OBJECT",
|
|
16714
|
-
"name": "Order",
|
|
16715
|
-
"ofType": null
|
|
16716
|
-
}
|
|
16717
|
-
}
|
|
16707
|
+
"kind": "OBJECT",
|
|
16708
|
+
"name": "BulkOperationJob",
|
|
16709
|
+
"ofType": null
|
|
16718
16710
|
}
|
|
16719
16711
|
},
|
|
16720
16712
|
"isDeprecated": false,
|
|
@@ -16722,7 +16714,7 @@
|
|
|
16722
16714
|
},
|
|
16723
16715
|
{
|
|
16724
16716
|
"name": "ordersBulkArchive",
|
|
16725
|
-
"description": "Bulk archive or unarchive
|
|
16717
|
+
"description": "Bulk archive or unarchive N orders at once — sets the archived flag in either direction. Async / queue-backed: returns BulkOperationJob immediately and runs through Order::archive() / Order::unArchive() per order on the tmp queue. Poll bulkOperationStatus(jobId) for progress. Common phrasings: bulk archive orders, mass unarchive orders, archive many orders, soft-archive orders, restore orders from archive.",
|
|
16726
16718
|
"args": [
|
|
16727
16719
|
{
|
|
16728
16720
|
"name": "input",
|
|
@@ -16743,17 +16735,9 @@
|
|
|
16743
16735
|
"kind": "NON_NULL",
|
|
16744
16736
|
"name": null,
|
|
16745
16737
|
"ofType": {
|
|
16746
|
-
"kind": "
|
|
16747
|
-
"name":
|
|
16748
|
-
"ofType":
|
|
16749
|
-
"kind": "NON_NULL",
|
|
16750
|
-
"name": null,
|
|
16751
|
-
"ofType": {
|
|
16752
|
-
"kind": "OBJECT",
|
|
16753
|
-
"name": "Order",
|
|
16754
|
-
"ofType": null
|
|
16755
|
-
}
|
|
16756
|
-
}
|
|
16738
|
+
"kind": "OBJECT",
|
|
16739
|
+
"name": "BulkOperationJob",
|
|
16740
|
+
"ofType": null
|
|
16757
16741
|
}
|
|
16758
16742
|
},
|
|
16759
16743
|
"isDeprecated": false,
|
|
@@ -18004,7 +17988,7 @@
|
|
|
18004
17988
|
},
|
|
18005
17989
|
{
|
|
18006
17990
|
"name": "productsBulkAdjustPrice",
|
|
18007
|
-
"description": "Apply a `PriceChange` to every variant.price on every product matching the selector. Examples: `change: { op: PERCENT_DELTA, value: 10 }` = +10
|
|
17991
|
+
"description": "Bulk increase, decrease, raise, lower, change or set product prices across many products at once. Apply a `PriceChange` to every variant.price on every product matching the selector. Examples: `change: { op: PERCENT_DELTA, value: 10 }` = +10% (raise / increase), `change: { op: PERCENT_DELTA, value: -25 }` = -25% (decrease / lower / discount price), `change: { op: ABSOLUTE_DELTA, value: 5 }` = +5 (currency units), `change: { op: SET_TO, value: 99 }` = set every variant to 99. Worker bypasses client paginated fetch when the selector is by categoryId / vendorId / tagName. Refreshes `priceFrom`/`priceTo` + fires ES re-index once at end of batch. Common phrasings: increase prices, decrease prices, raise prices, lower prices, change prices, adjust prices, set prices, mass update product prices.",
|
|
18008
17992
|
"args": [
|
|
18009
17993
|
{
|
|
18010
17994
|
"name": "selector",
|
|
@@ -18049,7 +18033,7 @@
|
|
|
18049
18033
|
},
|
|
18050
18034
|
{
|
|
18051
18035
|
"name": "productsBulkApplyDiscount",
|
|
18052
|
-
"description": "
|
|
18036
|
+
"description": "Put many products on sale — bulk apply a fixed sale price / discount to every variant of every product matching the selector. The supplied `discountPrice` is in main currency units (e.g. `79.99`) and is set as the new `Variant.discountPrice` for any variant whose regular price is strictly greater than `discountPrice`. Variants where `regular price <= discountPrice` are skipped per-variant (would be a no-op or invalid). Routes through the canonical `Discount::addFixedDiscount()` engine + `product_to_discount` pivot — same path the admin product-edit form uses. Idempotent: rerunning with the same `discountPrice` leaves a single pivot row, not duplicates. Common phrasings: apply discount, set sale price, put products on sale, discount many products, mass discount, sale across products, give a discount, set discount on N products.",
|
|
18053
18037
|
"args": [
|
|
18054
18038
|
{
|
|
18055
18039
|
"name": "selector",
|
|
@@ -18125,7 +18109,7 @@
|
|
|
18125
18109
|
},
|
|
18126
18110
|
{
|
|
18127
18111
|
"name": "productsBulkRoundPrices",
|
|
18128
|
-
"description": "
|
|
18112
|
+
"description": "Bulk round product prices to psychological-pricing endpoints (.99, .49, integer, nearest 5/10) — the natural follow-up after a percent-based price increase that produced odd numbers like 170.51. Round every variant.price on every product matching the selector. Common phrasings: round prices to .99, psychological pricing, round to nearest 5, charm pricing, fix pricing endings.",
|
|
18129
18113
|
"args": [
|
|
18130
18114
|
{
|
|
18131
18115
|
"name": "selector",
|
|
@@ -18420,7 +18404,7 @@
|
|
|
18420
18404
|
"name": null,
|
|
18421
18405
|
"ofType": {
|
|
18422
18406
|
"kind": "OBJECT",
|
|
18423
|
-
"name": "
|
|
18407
|
+
"name": "BulkOperationJob",
|
|
18424
18408
|
"ofType": null
|
|
18425
18409
|
}
|
|
18426
18410
|
},
|
|
@@ -18510,7 +18494,7 @@
|
|
|
18510
18494
|
"name": null,
|
|
18511
18495
|
"ofType": {
|
|
18512
18496
|
"kind": "OBJECT",
|
|
18513
|
-
"name": "
|
|
18497
|
+
"name": "BulkOperationJob",
|
|
18514
18498
|
"ofType": null
|
|
18515
18499
|
}
|
|
18516
18500
|
},
|
|
@@ -18652,7 +18636,7 @@
|
|
|
18652
18636
|
"name": null,
|
|
18653
18637
|
"ofType": {
|
|
18654
18638
|
"kind": "OBJECT",
|
|
18655
|
-
"name": "
|
|
18639
|
+
"name": "BulkOperationJob",
|
|
18656
18640
|
"ofType": null
|
|
18657
18641
|
}
|
|
18658
18642
|
},
|
|
@@ -19000,7 +18984,7 @@
|
|
|
19000
18984
|
"name": null,
|
|
19001
18985
|
"ofType": {
|
|
19002
18986
|
"kind": "OBJECT",
|
|
19003
|
-
"name": "
|
|
18987
|
+
"name": "BulkOperationJob",
|
|
19004
18988
|
"ofType": null
|
|
19005
18989
|
}
|
|
19006
18990
|
},
|
|
@@ -19039,7 +19023,7 @@
|
|
|
19039
19023
|
"name": null,
|
|
19040
19024
|
"ofType": {
|
|
19041
19025
|
"kind": "OBJECT",
|
|
19042
|
-
"name": "
|
|
19026
|
+
"name": "BulkOperationJob",
|
|
19043
19027
|
"ofType": null
|
|
19044
19028
|
}
|
|
19045
19029
|
},
|
|
@@ -19170,7 +19154,7 @@
|
|
|
19170
19154
|
"name": null,
|
|
19171
19155
|
"ofType": {
|
|
19172
19156
|
"kind": "OBJECT",
|
|
19173
|
-
"name": "
|
|
19157
|
+
"name": "BulkOperationJob",
|
|
19174
19158
|
"ofType": null
|
|
19175
19159
|
}
|
|
19176
19160
|
},
|
|
@@ -19223,7 +19207,7 @@
|
|
|
19223
19207
|
"name": null,
|
|
19224
19208
|
"ofType": {
|
|
19225
19209
|
"kind": "OBJECT",
|
|
19226
|
-
"name": "
|
|
19210
|
+
"name": "BulkOperationJob",
|
|
19227
19211
|
"ofType": null
|
|
19228
19212
|
}
|
|
19229
19213
|
},
|
|
@@ -19275,17 +19259,9 @@
|
|
|
19275
19259
|
"kind": "NON_NULL",
|
|
19276
19260
|
"name": null,
|
|
19277
19261
|
"ofType": {
|
|
19278
|
-
"kind": "
|
|
19279
|
-
"name":
|
|
19280
|
-
"ofType":
|
|
19281
|
-
"kind": "NON_NULL",
|
|
19282
|
-
"name": null,
|
|
19283
|
-
"ofType": {
|
|
19284
|
-
"kind": "OBJECT",
|
|
19285
|
-
"name": "ParameterOption",
|
|
19286
|
-
"ofType": null
|
|
19287
|
-
}
|
|
19288
|
-
}
|
|
19262
|
+
"kind": "OBJECT",
|
|
19263
|
+
"name": "BulkOperationJob",
|
|
19264
|
+
"ofType": null
|
|
19289
19265
|
}
|
|
19290
19266
|
},
|
|
19291
19267
|
"isDeprecated": false,
|
|
@@ -20051,9 +20027,13 @@
|
|
|
20051
20027
|
}
|
|
20052
20028
|
],
|
|
20053
20029
|
"type": {
|
|
20054
|
-
"kind": "
|
|
20055
|
-
"name":
|
|
20056
|
-
"ofType":
|
|
20030
|
+
"kind": "NON_NULL",
|
|
20031
|
+
"name": null,
|
|
20032
|
+
"ofType": {
|
|
20033
|
+
"kind": "OBJECT",
|
|
20034
|
+
"name": "BulkOperationJob",
|
|
20035
|
+
"ofType": null
|
|
20036
|
+
}
|
|
20057
20037
|
},
|
|
20058
20038
|
"isDeprecated": false,
|
|
20059
20039
|
"deprecationReason": null
|
|
@@ -20087,7 +20067,7 @@
|
|
|
20087
20067
|
},
|
|
20088
20068
|
{
|
|
20089
20069
|
"name": "productVariantsBulkUpdateQuantity",
|
|
20090
|
-
"description": "Bulk update variant quantities
|
|
20070
|
+
"description": "Bulk update variant quantities — set or add. Async / queue-backed: returns BulkOperationJob immediately and runs through Variant::updateColumns() per variant on the tmp queue. After the per-variant loop the worker fires one batched ES re-index for every touched parent product. Poll bulkOperationStatus(jobId) for progress. Common phrasings: bulk update variant quantity, mass set inventory, increment stock, restock variants, set quantity on N variants.",
|
|
20091
20071
|
"args": [
|
|
20092
20072
|
{
|
|
20093
20073
|
"name": "input",
|
|
@@ -20109,7 +20089,7 @@
|
|
|
20109
20089
|
"name": null,
|
|
20110
20090
|
"ofType": {
|
|
20111
20091
|
"kind": "OBJECT",
|
|
20112
|
-
"name": "
|
|
20092
|
+
"name": "BulkOperationJob",
|
|
20113
20093
|
"ofType": null
|
|
20114
20094
|
}
|
|
20115
20095
|
},
|
|
@@ -20118,7 +20098,7 @@
|
|
|
20118
20098
|
},
|
|
20119
20099
|
{
|
|
20120
20100
|
"name": "productVariantsBulkUpdatePrice",
|
|
20121
|
-
"description": "Bulk
|
|
20101
|
+
"description": "Bulk set a fixed price on N variants — every variant in `input.ids` gets the same `input.price` (use `productsBulkAdjustPrice` if you instead want a percentage adjustment or a per-product change). Async / queue-backed: returns BulkOperationJob, processes through Variant::updateColumns + Variant::updateProductsDefaultVariant. Common phrasings: bulk set variant price, mass update prices on variants, set price on N variants, fixed price across variants.",
|
|
20122
20102
|
"args": [
|
|
20123
20103
|
{
|
|
20124
20104
|
"name": "input",
|
|
@@ -20140,7 +20120,7 @@
|
|
|
20140
20120
|
"name": null,
|
|
20141
20121
|
"ofType": {
|
|
20142
20122
|
"kind": "OBJECT",
|
|
20143
|
-
"name": "
|
|
20123
|
+
"name": "BulkOperationJob",
|
|
20144
20124
|
"ofType": null
|
|
20145
20125
|
}
|
|
20146
20126
|
},
|
|
@@ -20149,7 +20129,7 @@
|
|
|
20149
20129
|
},
|
|
20150
20130
|
{
|
|
20151
20131
|
"name": "productVariantsBulkUpdateSellingStatus",
|
|
20152
|
-
"description": "Bulk
|
|
20132
|
+
"description": "Bulk toggle the `continue_selling` flag on the parent products of N variants. The flag lives on the product row (not variant) — the worker dedupes by parent product. Async / queue-backed: returns BulkOperationJob immediately. Common phrasings: bulk allow continue selling, mass enable backorder, toggle continue selling on variants, allow oversell on N products.",
|
|
20153
20133
|
"args": [
|
|
20154
20134
|
{
|
|
20155
20135
|
"name": "input",
|
|
@@ -20171,7 +20151,7 @@
|
|
|
20171
20151
|
"name": null,
|
|
20172
20152
|
"ofType": {
|
|
20173
20153
|
"kind": "OBJECT",
|
|
20174
|
-
"name": "
|
|
20154
|
+
"name": "BulkOperationJob",
|
|
20175
20155
|
"ofType": null
|
|
20176
20156
|
}
|
|
20177
20157
|
},
|
|
@@ -20224,7 +20204,7 @@
|
|
|
20224
20204
|
"name": null,
|
|
20225
20205
|
"ofType": {
|
|
20226
20206
|
"kind": "OBJECT",
|
|
20227
|
-
"name": "
|
|
20207
|
+
"name": "BulkOperationJob",
|
|
20228
20208
|
"ofType": null
|
|
20229
20209
|
}
|
|
20230
20210
|
},
|
|
@@ -20277,7 +20257,7 @@
|
|
|
20277
20257
|
"name": null,
|
|
20278
20258
|
"ofType": {
|
|
20279
20259
|
"kind": "OBJECT",
|
|
20280
|
-
"name": "
|
|
20260
|
+
"name": "BulkOperationJob",
|
|
20281
20261
|
"ofType": null
|
|
20282
20262
|
}
|
|
20283
20263
|
},
|
|
@@ -20874,7 +20854,7 @@
|
|
|
20874
20854
|
"name": null,
|
|
20875
20855
|
"ofType": {
|
|
20876
20856
|
"kind": "OBJECT",
|
|
20877
|
-
"name": "
|
|
20857
|
+
"name": "BulkOperationJob",
|
|
20878
20858
|
"ofType": null
|
|
20879
20859
|
}
|
|
20880
20860
|
},
|
|
@@ -20927,7 +20907,7 @@
|
|
|
20927
20907
|
"name": null,
|
|
20928
20908
|
"ofType": {
|
|
20929
20909
|
"kind": "OBJECT",
|
|
20930
|
-
"name": "
|
|
20910
|
+
"name": "BulkOperationJob",
|
|
20931
20911
|
"ofType": null
|
|
20932
20912
|
}
|
|
20933
20913
|
},
|
|
@@ -20966,7 +20946,7 @@
|
|
|
20966
20946
|
"name": null,
|
|
20967
20947
|
"ofType": {
|
|
20968
20948
|
"kind": "OBJECT",
|
|
20969
|
-
"name": "
|
|
20949
|
+
"name": "BulkOperationJob",
|
|
20970
20950
|
"ofType": null
|
|
20971
20951
|
}
|
|
20972
20952
|
},
|
|
@@ -21064,7 +21044,7 @@
|
|
|
21064
21044
|
"name": null,
|
|
21065
21045
|
"ofType": {
|
|
21066
21046
|
"kind": "OBJECT",
|
|
21067
|
-
"name": "
|
|
21047
|
+
"name": "BulkOperationJob",
|
|
21068
21048
|
"ofType": null
|
|
21069
21049
|
}
|
|
21070
21050
|
},
|
|
@@ -21370,7 +21350,7 @@
|
|
|
21370
21350
|
"name": null,
|
|
21371
21351
|
"ofType": {
|
|
21372
21352
|
"kind": "OBJECT",
|
|
21373
|
-
"name": "
|
|
21353
|
+
"name": "BulkOperationJob",
|
|
21374
21354
|
"ofType": null
|
|
21375
21355
|
}
|
|
21376
21356
|
},
|
|
@@ -22005,8 +21985,8 @@
|
|
|
22005
21985
|
"deprecationReason": null
|
|
22006
21986
|
},
|
|
22007
21987
|
{
|
|
22008
|
-
"name": "
|
|
22009
|
-
"description": "
|
|
21988
|
+
"name": "customersBulkSetMarketing",
|
|
21989
|
+
"description": "Bulk-toggle the marketing opt-in flag on N customers. Async / queue-backed: returns BulkOperationJob immediately and runs through Customer::update(['marketing' => 'yes'|'no']) per record on the tmp queue. Poll bulkOperationStatus(jobId) for progress. Common phrasings: bulk allow marketing, mass opt-in customers, opt customers out of marketing, set newsletter consent on N customers.",
|
|
22010
21990
|
"args": [
|
|
22011
21991
|
{
|
|
22012
21992
|
"name": "ids",
|
|
@@ -22031,28 +22011,67 @@
|
|
|
22031
22011
|
"defaultValue": null
|
|
22032
22012
|
},
|
|
22033
22013
|
{
|
|
22034
|
-
"name": "
|
|
22035
|
-
"description": "
|
|
22014
|
+
"name": "allow",
|
|
22015
|
+
"description": "True = customer accepts marketing; false = opted out.",
|
|
22036
22016
|
"type": {
|
|
22037
22017
|
"kind": "NON_NULL",
|
|
22038
22018
|
"name": null,
|
|
22039
22019
|
"ofType": {
|
|
22040
22020
|
"kind": "SCALAR",
|
|
22041
|
-
"name": "
|
|
22021
|
+
"name": "Boolean",
|
|
22042
22022
|
"ofType": null
|
|
22043
22023
|
}
|
|
22044
22024
|
},
|
|
22045
22025
|
"defaultValue": null
|
|
22026
|
+
}
|
|
22027
|
+
],
|
|
22028
|
+
"type": {
|
|
22029
|
+
"kind": "NON_NULL",
|
|
22030
|
+
"name": null,
|
|
22031
|
+
"ofType": {
|
|
22032
|
+
"kind": "OBJECT",
|
|
22033
|
+
"name": "BulkOperationJob",
|
|
22034
|
+
"ofType": null
|
|
22035
|
+
}
|
|
22036
|
+
},
|
|
22037
|
+
"isDeprecated": false,
|
|
22038
|
+
"deprecationReason": null
|
|
22039
|
+
},
|
|
22040
|
+
{
|
|
22041
|
+
"name": "customersBulkSetActive",
|
|
22042
|
+
"description": "Bulk-toggle the `active` flag on N customers. When activating a previously-unactivated customer the worker sends the welcome email (and confirmation email if the site requires it). Async / queue-backed: returns BulkOperationJob immediately. Common phrasings: bulk activate customers, mass deactivate accounts, enable / disable customer accounts in batch.",
|
|
22043
|
+
"args": [
|
|
22044
|
+
{
|
|
22045
|
+
"name": "ids",
|
|
22046
|
+
"description": "Customer IDs.",
|
|
22047
|
+
"type": {
|
|
22048
|
+
"kind": "NON_NULL",
|
|
22049
|
+
"name": null,
|
|
22050
|
+
"ofType": {
|
|
22051
|
+
"kind": "LIST",
|
|
22052
|
+
"name": null,
|
|
22053
|
+
"ofType": {
|
|
22054
|
+
"kind": "NON_NULL",
|
|
22055
|
+
"name": null,
|
|
22056
|
+
"ofType": {
|
|
22057
|
+
"kind": "SCALAR",
|
|
22058
|
+
"name": "ID",
|
|
22059
|
+
"ofType": null
|
|
22060
|
+
}
|
|
22061
|
+
}
|
|
22062
|
+
}
|
|
22063
|
+
},
|
|
22064
|
+
"defaultValue": null
|
|
22046
22065
|
},
|
|
22047
22066
|
{
|
|
22048
|
-
"name": "
|
|
22049
|
-
"description": "
|
|
22067
|
+
"name": "active",
|
|
22068
|
+
"description": "True = active, false = inactive.",
|
|
22050
22069
|
"type": {
|
|
22051
22070
|
"kind": "NON_NULL",
|
|
22052
22071
|
"name": null,
|
|
22053
22072
|
"ofType": {
|
|
22054
22073
|
"kind": "SCALAR",
|
|
22055
|
-
"name": "
|
|
22074
|
+
"name": "Boolean",
|
|
22056
22075
|
"ofType": null
|
|
22057
22076
|
}
|
|
22058
22077
|
},
|
|
@@ -22063,8 +22082,8 @@
|
|
|
22063
22082
|
"kind": "NON_NULL",
|
|
22064
22083
|
"name": null,
|
|
22065
22084
|
"ofType": {
|
|
22066
|
-
"kind": "
|
|
22067
|
-
"name": "
|
|
22085
|
+
"kind": "OBJECT",
|
|
22086
|
+
"name": "BulkOperationJob",
|
|
22068
22087
|
"ofType": null
|
|
22069
22088
|
}
|
|
22070
22089
|
},
|
|
@@ -22864,8 +22883,8 @@
|
|
|
22864
22883
|
"kind": "NON_NULL",
|
|
22865
22884
|
"name": null,
|
|
22866
22885
|
"ofType": {
|
|
22867
|
-
"kind": "
|
|
22868
|
-
"name": "
|
|
22886
|
+
"kind": "OBJECT",
|
|
22887
|
+
"name": "BulkOperationJob",
|
|
22869
22888
|
"ofType": null
|
|
22870
22889
|
}
|
|
22871
22890
|
},
|
|
@@ -24675,8 +24694,8 @@
|
|
|
24675
24694
|
"kind": "NON_NULL",
|
|
24676
24695
|
"name": null,
|
|
24677
24696
|
"ofType": {
|
|
24678
|
-
"kind": "
|
|
24679
|
-
"name": "
|
|
24697
|
+
"kind": "OBJECT",
|
|
24698
|
+
"name": "BulkOperationJob",
|
|
24680
24699
|
"ofType": null
|
|
24681
24700
|
}
|
|
24682
24701
|
},
|
|
@@ -24745,8 +24764,8 @@
|
|
|
24745
24764
|
"kind": "NON_NULL",
|
|
24746
24765
|
"name": null,
|
|
24747
24766
|
"ofType": {
|
|
24748
|
-
"kind": "
|
|
24749
|
-
"name": "
|
|
24767
|
+
"kind": "OBJECT",
|
|
24768
|
+
"name": "BulkOperationJob",
|
|
24750
24769
|
"ofType": null
|
|
24751
24770
|
}
|
|
24752
24771
|
},
|
|
@@ -30469,7 +30488,7 @@
|
|
|
30469
30488
|
"name": null,
|
|
30470
30489
|
"ofType": {
|
|
30471
30490
|
"kind": "OBJECT",
|
|
30472
|
-
"name": "
|
|
30491
|
+
"name": "BulkOperationJob",
|
|
30473
30492
|
"ofType": null
|
|
30474
30493
|
}
|
|
30475
30494
|
},
|
|
@@ -30508,7 +30527,7 @@
|
|
|
30508
30527
|
"name": null,
|
|
30509
30528
|
"ofType": {
|
|
30510
30529
|
"kind": "OBJECT",
|
|
30511
|
-
"name": "
|
|
30530
|
+
"name": "BulkOperationJob",
|
|
30512
30531
|
"ofType": null
|
|
30513
30532
|
}
|
|
30514
30533
|
},
|
|
@@ -30623,7 +30642,7 @@
|
|
|
30623
30642
|
"name": null,
|
|
30624
30643
|
"ofType": {
|
|
30625
30644
|
"kind": "OBJECT",
|
|
30626
|
-
"name": "
|
|
30645
|
+
"name": "BulkOperationJob",
|
|
30627
30646
|
"ofType": null
|
|
30628
30647
|
}
|
|
30629
30648
|
},
|
|
@@ -30749,7 +30768,7 @@
|
|
|
30749
30768
|
"name": null,
|
|
30750
30769
|
"ofType": {
|
|
30751
30770
|
"kind": "OBJECT",
|
|
30752
|
-
"name": "
|
|
30771
|
+
"name": "BulkOperationJob",
|
|
30753
30772
|
"ofType": null
|
|
30754
30773
|
}
|
|
30755
30774
|
},
|
|
@@ -30922,7 +30941,7 @@
|
|
|
30922
30941
|
"name": null,
|
|
30923
30942
|
"ofType": {
|
|
30924
30943
|
"kind": "OBJECT",
|
|
30925
|
-
"name": "
|
|
30944
|
+
"name": "BulkOperationJob",
|
|
30926
30945
|
"ofType": null
|
|
30927
30946
|
}
|
|
30928
30947
|
},
|
|
@@ -31838,7 +31857,7 @@
|
|
|
31838
31857
|
"name": null,
|
|
31839
31858
|
"ofType": {
|
|
31840
31859
|
"kind": "OBJECT",
|
|
31841
|
-
"name": "
|
|
31860
|
+
"name": "BulkOperationJob",
|
|
31842
31861
|
"ofType": null
|
|
31843
31862
|
}
|
|
31844
31863
|
},
|
|
@@ -31877,7 +31896,7 @@
|
|
|
31877
31896
|
"name": null,
|
|
31878
31897
|
"ofType": {
|
|
31879
31898
|
"kind": "OBJECT",
|
|
31880
|
-
"name": "
|
|
31899
|
+
"name": "BulkOperationJob",
|
|
31881
31900
|
"ofType": null
|
|
31882
31901
|
}
|
|
31883
31902
|
},
|
|
@@ -33902,7 +33921,7 @@
|
|
|
33902
33921
|
"name": null,
|
|
33903
33922
|
"ofType": {
|
|
33904
33923
|
"kind": "OBJECT",
|
|
33905
|
-
"name": "
|
|
33924
|
+
"name": "BulkOperationJob",
|
|
33906
33925
|
"ofType": null
|
|
33907
33926
|
}
|
|
33908
33927
|
},
|
|
@@ -36745,7 +36764,7 @@
|
|
|
36745
36764
|
"name": null,
|
|
36746
36765
|
"ofType": {
|
|
36747
36766
|
"kind": "OBJECT",
|
|
36748
|
-
"name": "
|
|
36767
|
+
"name": "BulkOperationJob",
|
|
36749
36768
|
"ofType": null
|
|
36750
36769
|
}
|
|
36751
36770
|
},
|
|
@@ -36868,7 +36887,7 @@
|
|
|
36868
36887
|
"name": null,
|
|
36869
36888
|
"ofType": {
|
|
36870
36889
|
"kind": "OBJECT",
|
|
36871
|
-
"name": "
|
|
36890
|
+
"name": "BulkOperationJob",
|
|
36872
36891
|
"ofType": null
|
|
36873
36892
|
}
|
|
36874
36893
|
},
|
|
@@ -36913,7 +36932,7 @@
|
|
|
36913
36932
|
"name": null,
|
|
36914
36933
|
"ofType": {
|
|
36915
36934
|
"kind": "OBJECT",
|
|
36916
|
-
"name": "
|
|
36935
|
+
"name": "BulkOperationJob",
|
|
36917
36936
|
"ofType": null
|
|
36918
36937
|
}
|
|
36919
36938
|
},
|
|
@@ -36944,7 +36963,7 @@
|
|
|
36944
36963
|
"name": null,
|
|
36945
36964
|
"ofType": {
|
|
36946
36965
|
"kind": "OBJECT",
|
|
36947
|
-
"name": "
|
|
36966
|
+
"name": "BulkOperationJob",
|
|
36948
36967
|
"ofType": null
|
|
36949
36968
|
}
|
|
36950
36969
|
},
|
|
@@ -36989,7 +37008,7 @@
|
|
|
36989
37008
|
"name": null,
|
|
36990
37009
|
"ofType": {
|
|
36991
37010
|
"kind": "OBJECT",
|
|
36992
|
-
"name": "
|
|
37011
|
+
"name": "BulkOperationJob",
|
|
36993
37012
|
"ofType": null
|
|
36994
37013
|
}
|
|
36995
37014
|
},
|
|
@@ -37028,7 +37047,7 @@
|
|
|
37028
37047
|
"name": null,
|
|
37029
37048
|
"ofType": {
|
|
37030
37049
|
"kind": "OBJECT",
|
|
37031
|
-
"name": "
|
|
37050
|
+
"name": "BulkOperationJob",
|
|
37032
37051
|
"ofType": null
|
|
37033
37052
|
}
|
|
37034
37053
|
},
|
|
@@ -37109,7 +37128,7 @@
|
|
|
37109
37128
|
"name": null,
|
|
37110
37129
|
"ofType": {
|
|
37111
37130
|
"kind": "OBJECT",
|
|
37112
|
-
"name": "
|
|
37131
|
+
"name": "BulkOperationJob",
|
|
37113
37132
|
"ofType": null
|
|
37114
37133
|
}
|
|
37115
37134
|
},
|
|
@@ -37154,7 +37173,7 @@
|
|
|
37154
37173
|
"name": null,
|
|
37155
37174
|
"ofType": {
|
|
37156
37175
|
"kind": "OBJECT",
|
|
37157
|
-
"name": "
|
|
37176
|
+
"name": "BulkOperationJob",
|
|
37158
37177
|
"ofType": null
|
|
37159
37178
|
}
|
|
37160
37179
|
},
|
|
@@ -37207,7 +37226,7 @@
|
|
|
37207
37226
|
"name": null,
|
|
37208
37227
|
"ofType": {
|
|
37209
37228
|
"kind": "OBJECT",
|
|
37210
|
-
"name": "
|
|
37229
|
+
"name": "BulkOperationJob",
|
|
37211
37230
|
"ofType": null
|
|
37212
37231
|
}
|
|
37213
37232
|
},
|
|
@@ -37238,7 +37257,7 @@
|
|
|
37238
37257
|
"name": null,
|
|
37239
37258
|
"ofType": {
|
|
37240
37259
|
"kind": "OBJECT",
|
|
37241
|
-
"name": "
|
|
37260
|
+
"name": "BulkOperationJob",
|
|
37242
37261
|
"ofType": null
|
|
37243
37262
|
}
|
|
37244
37263
|
},
|
|
@@ -53557,7 +53576,7 @@
|
|
|
53557
53576
|
{
|
|
53558
53577
|
"kind": "INPUT_OBJECT",
|
|
53559
53578
|
"name": "PriceChange",
|
|
53560
|
-
"description": "Operation + value applied to a price column. Used by `productsBulkAdjustPrice`
|
|
53579
|
+
"description": "Operation + value applied to a price column. Used by `productsBulkAdjustPrice` only — `productsBulkApplyDiscount` has its own simpler `discountPrice: Float` argument.",
|
|
53561
53580
|
"fields": null,
|
|
53562
53581
|
"inputFields": [
|
|
53563
53582
|
{
|
package/data/embeddings.bin
CHANGED
|
Binary file
|