@cmssy/mcp-server 0.9.0 → 0.11.0
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/README.md +68 -2
- package/dist/graphql-client.d.ts +1 -1
- package/dist/graphql-client.d.ts.map +1 -1
- package/dist/graphql-client.js.map +1 -1
- package/dist/index.js +0 -0
- package/dist/queries.d.ts +35 -4
- package/dist/queries.d.ts.map +1 -1
- package/dist/queries.js +414 -0
- package/dist/queries.js.map +1 -1
- package/dist/responses.d.ts +40 -0
- package/dist/responses.d.ts.map +1 -1
- package/dist/responses.js +34 -0
- package/dist/responses.js.map +1 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +713 -5
- package/dist/server.js.map +1 -1
- package/dist/types.d.ts +4 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -52,7 +52,9 @@ As of 0.6.0, most write tools accept an optional `response` arg:
|
|
|
52
52
|
`{pageId, blockId, hasUnpublishedChanges, updatedAt}` for block tools,
|
|
53
53
|
`{id, slug, status, updatedAt}` for form tools,
|
|
54
54
|
`{id, slug, updatedAt}` for model tools,
|
|
55
|
-
`{id, status, updatedAt}` for record tools
|
|
55
|
+
`{id, status, updatedAt}` for record tools,
|
|
56
|
+
`{id, orderNumber, status, paymentStatus, fulfillmentStatus, total, balanceDue, currency, updatedAt}` for order tools,
|
|
57
|
+
`{id, code, type, value, enabled, updatedAt}` for discount tools.
|
|
56
58
|
- `response: "full"` - returns the full mutation response (pre-0.6 behavior).
|
|
57
59
|
|
|
58
60
|
Use `"full"` only if you need the post-write state inline; otherwise issue a
|
|
@@ -63,7 +65,11 @@ Tools that accept `response`: `create_page`, `update_page_blocks`,
|
|
|
63
65
|
`update_page_settings`, `publish_page`, `unpublish_page`, `revert_to_published`,
|
|
64
66
|
`update_page_layout`, `add_block_to_page`, `update_block_content`,
|
|
65
67
|
`remove_block_from_page`, `create_form`, `update_form`, `create_model`,
|
|
66
|
-
`update_model`, `create_record`, `update_record
|
|
68
|
+
`update_model`, `create_record`, `update_record`, `create_manual_order`,
|
|
69
|
+
`edit_order`, `update_order_details`, `mark_order_paid`, `record_order_payment`,
|
|
70
|
+
`refund_order`, `cancel_order`, `transition_order_fulfillment`,
|
|
71
|
+
`set_order_pipeline_stage`, `record_order_invoice`, `create_discount`,
|
|
72
|
+
`update_discount`, `set_discount_enabled`.
|
|
67
73
|
|
|
68
74
|
`patch_block_content` and the various `delete_*` / status-only tools
|
|
69
75
|
(`update_form_submission_status`, `import_records`)
|
|
@@ -156,6 +162,66 @@ model on every write.
|
|
|
156
162
|
Requires workspace permissions `MODELS_VIEW` (read) / `MODELS_CREATE` /
|
|
157
163
|
`MODELS_EDIT` / `MODELS_DELETE` depending on the operation.
|
|
158
164
|
|
|
165
|
+
### Commerce Tools (Orders, Carts, Discounts)
|
|
166
|
+
|
|
167
|
+
Manage the storefront's orders, carts, and discount codes. **All money fields
|
|
168
|
+
are integer minor units (cents).** Order/discount write tools accept the
|
|
169
|
+
`response` arg (see [Response shape](#response-shape-write-tools)).
|
|
170
|
+
|
|
171
|
+
| Tool | Description |
|
|
172
|
+
| ------------------------------ | ------------------------------------------------------------------- |
|
|
173
|
+
| `list_orders` | List orders (filter by payment/fulfillment status, customer, dates) |
|
|
174
|
+
| `get_order` | Get an order with items, payments, and tax summary |
|
|
175
|
+
| `get_order_pipeline` | Get the workspace's configurable order pipeline stages |
|
|
176
|
+
| `create_manual_order` | Create an admin-entered order |
|
|
177
|
+
| `edit_order` | Replace an order's line items (recomputes totals) |
|
|
178
|
+
| `update_order_details` | Update customer email, notes, and tracking |
|
|
179
|
+
| `mark_order_paid` | Record a full payment (manual reconciliation, no provider verify) |
|
|
180
|
+
| `record_order_payment` | Record a partial payment against the balance due |
|
|
181
|
+
| `refund_order` | Refund an order (full, or partial with `amount`) |
|
|
182
|
+
| `cancel_order` | Cancel an order |
|
|
183
|
+
| `transition_order_fulfillment` | Move an order to a new fulfillment status (with optional tracking) |
|
|
184
|
+
| `set_order_pipeline_stage` | Move an order to a pipeline stage |
|
|
185
|
+
| `record_order_invoice` | Attach an invoice (number, url, provider) to an order |
|
|
186
|
+
| `list_carts` | List shopping carts (admin view, optional status filter) |
|
|
187
|
+
| `list_discounts` | List discount codes (filter by enabled/type/code) |
|
|
188
|
+
| `get_discount` | Get a discount by id |
|
|
189
|
+
| `create_discount` | Create a discount (`percentage` / `fixed` / `free_shipping`) |
|
|
190
|
+
| `update_discount` | Partial update (code/type/currency lock once the code is used) |
|
|
191
|
+
| `set_discount_enabled` | Enable or disable a discount |
|
|
192
|
+
| `list_products` | Product catalog with stock + variant info (over a Data Model) |
|
|
193
|
+
| `bulk_update_products` | Bulk set/adjust status, stock, or price on selected products |
|
|
194
|
+
| `bulk_delete_products` | Bulk-delete selected product records |
|
|
195
|
+
|
|
196
|
+
Products are records of a Custom Data Model; these tools add product-aware
|
|
197
|
+
stock/variant reads and bulk writes on top of the generic record tools. The
|
|
198
|
+
bulk tools target an explicit `ids` list **or** everything matching a `filter`
|
|
199
|
+
(`allMatching: true`). There is no per-variant stock write and no standalone
|
|
200
|
+
inventory mutation - stock is set/adjusted in bulk via `patch.setStock` /
|
|
201
|
+
`patch.adjustStock`.
|
|
202
|
+
|
|
203
|
+
Requires workspace permissions `ORDERS_VIEW` / `ORDERS_MANAGE` (orders),
|
|
204
|
+
`CARTS_VIEW` (carts), `DISCOUNTS_VIEW` / `DISCOUNTS_MANAGE` (discounts),
|
|
205
|
+
`MODELS_VIEW` / `MODELS_EDIT` / `MODELS_DELETE` (products).
|
|
206
|
+
|
|
207
|
+
### Webhook Tools
|
|
208
|
+
|
|
209
|
+
Manage outbound event webhooks. `create_webhook` and `rotate_webhook_secret`
|
|
210
|
+
return the signing secret **once** - it cannot be retrieved again.
|
|
211
|
+
|
|
212
|
+
| Tool | Description |
|
|
213
|
+
| -------------------------- | -------------------------------------------------------- |
|
|
214
|
+
| `list_webhooks` | List webhook endpoints (secrets never returned) |
|
|
215
|
+
| `list_webhook_deliveries` | Recent delivery attempts (pending/success/failed) |
|
|
216
|
+
| `list_webhook_event_types` | The authoritative allowlist of subscribable events |
|
|
217
|
+
| `create_webhook` | Create an endpoint; returns the endpoint + secret (once) |
|
|
218
|
+
| `update_webhook` | Partial update; pass `enabled` to enable/disable |
|
|
219
|
+
| `rotate_webhook_secret` | Rotate the signing secret (returns new secret once) |
|
|
220
|
+
| `delete_webhook` | Delete an endpoint |
|
|
221
|
+
|
|
222
|
+
Requires workspace permissions `WEBHOOKS_VIEW` (read) / `WEBHOOKS_MANAGE`
|
|
223
|
+
(create, update, rotate, delete).
|
|
224
|
+
|
|
159
225
|
## Resources
|
|
160
226
|
|
|
161
227
|
| URI | Description |
|
package/dist/graphql-client.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare class CmssyClient {
|
|
2
2
|
private apiUrl;
|
|
3
3
|
private token;
|
|
4
|
-
|
|
4
|
+
readonly workspaceId: string;
|
|
5
5
|
private selectionCache;
|
|
6
6
|
constructor(apiUrl: string, token: string, workspaceId: string);
|
|
7
7
|
query<T>(query: string, variables?: Record<string, unknown>): Promise<T>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql-client.d.ts","sourceRoot":"","sources":["../src/graphql-client.ts"],"names":[],"mappings":"AAoCA,qBAAa,WAAW;IAIpB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"graphql-client.d.ts","sourceRoot":"","sources":["../src/graphql-client.ts"],"names":[],"mappings":"AAoCA,qBAAa,WAAW;IAIpB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,KAAK;aACG,WAAW,EAAE,MAAM;IALrC,OAAO,CAAC,cAAc,CAA6B;gBAGzC,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACL,WAAW,EAAE,MAAM;IAG/B,KAAK,CAAC,CAAC,EACX,KAAK,EAAE,MAAM,EACb,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAClC,OAAO,CAAC,CAAC,CAAC;IA+Bb;;;OAGG;IACG,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,SAAI,GAAG,OAAO,CAAC,MAAM,CAAC;CA8BtE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphql-client.js","sourceRoot":"","sources":["../src/graphql-client.ts"],"names":[],"mappings":"AAWA,MAAM,qBAAqB,GAAG;;;;;;;;;;;;;CAa7B,CAAC;AAEF,SAAS,UAAU,CAAC,IAAa;IAC/B,IAAI,OAAO,GAA+B,IAAI,CAAC;IAC/C,OAAO,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,KAAK,UAAU,IAAI,OAAO,CAAC,IAAI,KAAK,MAAM,CAAC,EAAE,CAAC;QAC3E,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC;IAC3B,CAAC;IACD,OAAO,OAAO;QACZ,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,IAAI,EAAE;QAC5C,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;AACrC,CAAC;AAED,MAAM,OAAO,WAAW;IAIZ;IACA;
|
|
1
|
+
{"version":3,"file":"graphql-client.js","sourceRoot":"","sources":["../src/graphql-client.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
File without changes
|
package/dist/queries.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
export declare const PAGES_QUERY = "\n query Pages($search: String) {\n pages(search: $search) {\n id\n name\n slug\n description\n displayName\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n order\n version\n createdAt\n updatedAt\n }\n }\n";
|
|
2
|
-
export declare const PAGE_BY_ID_QUERY = "\n query PageById($pageId: ID!) {\n page(pageId: $pageId) {\n id\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n order\n version\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n publishedBlocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n layoutBlocks {\n id type position order isActive\n content settings style advanced\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n publishedLayoutBlocks {\n id type position order isActive\n content settings style advanced\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n layoutOverrides { position action blockId }\n inheritsLayout\n createdAt\n updatedAt\n }\n }\n";
|
|
1
|
+
export declare const PAGES_QUERY = "\n query Pages($search: String) {\n pages(search: $search) {\n id\n name\n slug\n description\n displayName\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n customFields { fieldKey value }\n order\n version\n createdAt\n updatedAt\n }\n }\n";
|
|
2
|
+
export declare const PAGE_BY_ID_QUERY = "\n query PageById($pageId: ID!) {\n page(pageId: $pageId) {\n id\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n customFields { fieldKey value }\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n order\n version\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n publishedBlocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n layoutBlocks {\n id type position order isActive\n content settings style advanced\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n publishedLayoutBlocks {\n id type position order isActive\n content settings style advanced\n translations defaultLanguage\n metadata { createdAt updatedAt createdBy version }\n blockVersion\n }\n layoutOverrides { position action blockId }\n inheritsLayout\n createdAt\n updatedAt\n }\n }\n";
|
|
3
3
|
export declare const SITE_CONFIG_QUERY = "\n query SiteConfig {\n siteConfig {\n id\n defaultLanguage\n enabledLanguages\n siteName\n enabledFeatures\n }\n }\n";
|
|
4
4
|
export declare const CURRENT_WORKSPACE_QUERY = "\n query CurrentWorkspace {\n currentWorkspace {\n id\n name\n slug\n plan\n limits {\n maxPages\n maxUsers\n maxStorageMb\n maxAiTokensMonth\n maxWorkspacesOwned\n canUseCustomDomain\n canRemoveBranding\n canUseCustomScripts\n maxCustomBlocks\n maxCustomBlocksStorageMb\n }\n }\n }\n";
|
|
5
5
|
export declare const MEDIA_ASSETS_QUERY = "\n query MediaAssets($limit: Int, $offset: Int) {\n mediaAssets(limit: $limit, offset: $offset) {\n items {\n id\n url\n filename\n type\n mimeType\n size\n width\n height\n alt\n tags\n }\n total\n hasMore\n }\n }\n";
|
|
6
|
-
export declare const SAVE_PAGE_MUTATION = "\n mutation SavePage($input: SavePageInput!) {\n savePage(input: $input) {\n id\n version\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n published\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n createdAt\n updatedAt\n }\n }\n";
|
|
6
|
+
export declare const SAVE_PAGE_MUTATION = "\n mutation SavePage($input: SavePageInput!) {\n savePage(input: $input) {\n id\n version\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n customFields { fieldKey value }\n published\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n pageType\n parentId\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n createdAt\n updatedAt\n }\n }\n";
|
|
7
7
|
export declare const PATCH_BLOCK_CONTENT_MUTATION = "\n mutation PatchBlockContent($input: PatchBlockContentInput!) {\n patchBlockContent(input: $input) {\n id\n slug\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n }\n }\n";
|
|
8
|
-
export declare const UPDATE_PAGE_SETTINGS_MUTATION = "\n mutation UpdatePageSettings($input: UpdatePageSettingsInput!) {\n updatePageSettings(input: $input) {\n id\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n pageType\n parentId\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n }\n }\n";
|
|
8
|
+
export declare const UPDATE_PAGE_SETTINGS_MUTATION = "\n mutation UpdatePageSettings($input: UpdatePageSettingsInput!) {\n updatePageSettings(input: $input) {\n id\n name\n slug\n description\n displayName\n seoTitle\n seoDescription\n seoKeywords\n customFields { fieldKey value }\n pageType\n parentId\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n }\n }\n";
|
|
9
|
+
export declare const PAGE_TYPES_QUERY = "\n query PageTypes {\n pageTypes {\n id\n name\n slug\n description\n icon\n schemaType\n urlPrefix\n allowChildren\n fields {\n key\n label\n type\n required\n description\n options\n defaultValue\n }\n }\n }\n";
|
|
10
|
+
export declare const CREATE_PAGE_TYPE_MUTATION = "\n mutation CreatePageType($input: CreatePageTypeInput!) {\n createPageType(input: $input) {\n id\n name\n slug\n description\n icon\n schemaType\n urlPrefix\n allowChildren\n fields { key label type required description options defaultValue }\n }\n }\n";
|
|
9
11
|
export declare const TOGGLE_PUBLISH_MUTATION = "\n mutation TogglePublish($id: ID!) {\n togglePublish(id: $id) {\n id\n slug\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n }\n }\n";
|
|
10
12
|
export declare const PUBLISH_PAGE_CONTENT_MUTATION = "\n mutation PublishPageContent($id: ID!) {\n publishPageContent(id: $id) {\n id\n slug\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n blocks {\n id\n type\n content\n settings\n style\n advanced\n translations\n defaultLanguage\n metadata {\n createdAt\n updatedAt\n createdBy\n version\n }\n blockVersion\n }\n }\n }\n";
|
|
11
13
|
export declare const PUBLISH_PAGE_LAYOUT_MUTATION = "\n mutation PublishPageLayout($id: ID!) {\n publishPageLayout(id: $id) {\n id\n slug\n published\n publishedAt\n hasUnpublishedContentChanges\n hasUnpublishedLayoutChanges\n updatedAt\n }\n }\n";
|
|
@@ -35,4 +37,33 @@ export declare const UPDATE_MODEL_RECORD_MUTATION = "\n mutation UpdateModelRec
|
|
|
35
37
|
export declare const UPDATE_MODEL_RECORD_STATUS_MUTATION = "\n mutation UpdateModelRecordStatus($input: UpdateModelRecordStatusInput!) {\n updateModelRecordStatus(input: $input) {\n \n id\n workspaceId\n modelId\n data\n status\n createdAt\n updatedAt\n createdBy\n updatedBy\n\n }\n }\n";
|
|
36
38
|
export declare const DELETE_MODEL_RECORD_MUTATION = "\n mutation DeleteModelRecord($id: ID!) {\n deleteModelRecord(id: $id)\n }\n";
|
|
37
39
|
export declare const IMPORT_MODEL_RECORDS_MUTATION = "\n mutation ImportModelRecords($input: ImportModelRecordsInput!) {\n importModelRecords(input: $input) {\n importedCount\n errors { row message }\n }\n }\n";
|
|
40
|
+
export declare const ORDERS_QUERY = "\n query Orders(\n $workspaceId: ID!\n $paymentStatus: String\n $fulfillmentStatus: String\n $customerId: ID\n $search: String\n $pipelineStageId: String\n $dateFrom: DateTime\n $dateTo: DateTime\n $skip: Int\n $limit: Int\n ) {\n orders(\n workspaceId: $workspaceId\n paymentStatus: $paymentStatus\n fulfillmentStatus: $fulfillmentStatus\n customerId: $customerId\n search: $search\n pipelineStageId: $pipelineStageId\n dateFrom: $dateFrom\n dateTo: $dateTo\n skip: $skip\n limit: $limit\n ) {\n items { \n id\n status\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n amountPaid\n balanceDue\n refundedAmount\n pipelineStageId\n createdAt\n updatedAt\n }\n total\n hasMore\n }\n }\n";
|
|
41
|
+
export declare const ORDER_BY_ID_QUERY = "\n query Order($workspaceId: ID!, $id: ID!) {\n order(workspaceId: $workspaceId, id: $id) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
42
|
+
export declare const ORDER_PIPELINE_QUERY = "\n query OrderPipeline($workspaceId: ID!) {\n orderPipeline(workspaceId: $workspaceId) {\n stages { id label color position isDefault isTerminal }\n }\n }\n";
|
|
43
|
+
export declare const CREATE_MANUAL_ORDER_MUTATION = "\n mutation CreateManualOrder($input: CreateManualOrderInput!) {\n createManualOrder(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
44
|
+
export declare const EDIT_ORDER_MUTATION = "\n mutation EditOrder($input: EditOrderInput!) {\n editOrder(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
45
|
+
export declare const UPDATE_ORDER_DETAILS_MUTATION = "\n mutation UpdateOrderDetails($input: UpdateOrderDetailsInput!) {\n updateOrderDetails(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
46
|
+
export declare const MARK_ORDER_PAID_MUTATION = "\n mutation MarkOrderPaid($input: MarkOrderPaidInput!) {\n markOrderPaid(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
47
|
+
export declare const RECORD_ORDER_PAYMENT_MUTATION = "\n mutation RecordOrderPayment($input: RecordOrderPaymentInput!) {\n recordOrderPayment(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
48
|
+
export declare const REFUND_ORDER_MUTATION = "\n mutation RefundOrder($input: RefundOrderInput!) {\n refundOrder(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
49
|
+
export declare const CANCEL_ORDER_MUTATION = "\n mutation CancelOrder($input: CancelOrderInput!) {\n cancelOrder(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
50
|
+
export declare const TRANSITION_ORDER_FULFILLMENT_MUTATION = "\n mutation TransitionOrderFulfillment($input: FulfillOrderInput!) {\n transitionOrderFulfillment(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
51
|
+
export declare const SET_ORDER_PIPELINE_STAGE_MUTATION = "\n mutation SetOrderPipelineStage($input: SetOrderPipelineStageInput!) {\n setOrderPipelineStage(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
52
|
+
export declare const RECORD_ORDER_INVOICE_MUTATION = "\n mutation RecordOrderInvoice($input: RecordOrderInvoiceInput!) {\n recordOrderInvoice(input: $input) { \n id\n status\n displayStatus\n paymentStatus\n fulfillmentStatus\n orderNumber\n customerId\n customerEmail\n currency\n subtotal\n tax\n total\n pricesIncludeTax\n amountPaid\n balanceDue\n refundedAmount\n paymentProvider\n paymentReference\n paidAt\n fulfilledAt\n trackingNumber\n trackingCarrier\n notes\n invoiceNumber\n invoiceUrl\n invoiceProvider\n invoicedAt\n canceledAt\n pipelineStageId\n items {\n name\n price\n currency\n quantity\n sku\n variantKey\n modelId\n recordId\n recordDeleted\n taxRate\n taxAmount\n }\n payments { amount reference provider at }\n taxSummary { name rate base amount }\n createdAt\n updatedAt\n }\n }\n";
|
|
53
|
+
export declare const ADMIN_CARTS_QUERY = "\n query AdminCarts($workspaceId: ID!, $status: String, $skip: Int, $limit: Int) {\n adminCarts(workspaceId: $workspaceId, status: $status, skip: $skip, limit: $limit) {\n items {\n id\n status\n customerId\n itemCount\n totalValue\n currency\n createdAt\n updatedAt\n }\n total\n hasMore\n }\n }\n";
|
|
54
|
+
export declare const DISCOUNTS_QUERY = "\n query Discounts(\n $workspaceId: ID!\n $enabled: Boolean\n $type: String\n $search: String\n $limit: Int\n $offset: Int\n ) {\n discounts(\n workspaceId: $workspaceId\n enabled: $enabled\n type: $type\n search: $search\n limit: $limit\n offset: $offset\n ) {\n items { \n id\n code\n type\n value\n currency\n minSubtotal\n maxUses\n currentUses\n maxUsesPerUser\n startsAt\n endsAt\n enabled\n createdAt\n updatedAt\n }\n total\n hasMore\n }\n }\n";
|
|
55
|
+
export declare const DISCOUNT_BY_ID_QUERY = "\n query Discount($workspaceId: ID!, $id: ID!) {\n discount(workspaceId: $workspaceId, id: $id) { \n id\n code\n type\n value\n currency\n minSubtotal\n maxUses\n currentUses\n maxUsesPerUser\n startsAt\n endsAt\n enabled\n createdAt\n updatedAt\n }\n }\n";
|
|
56
|
+
export declare const CREATE_DISCOUNT_MUTATION = "\n mutation CreateDiscount($workspaceId: ID!, $input: CreateDiscountInput!) {\n createDiscount(workspaceId: $workspaceId, input: $input) { \n id\n code\n type\n value\n currency\n minSubtotal\n maxUses\n currentUses\n maxUsesPerUser\n startsAt\n endsAt\n enabled\n createdAt\n updatedAt\n }\n }\n";
|
|
57
|
+
export declare const UPDATE_DISCOUNT_MUTATION = "\n mutation UpdateDiscount($workspaceId: ID!, $id: ID!, $input: UpdateDiscountInput!) {\n updateDiscount(workspaceId: $workspaceId, id: $id, input: $input) { \n id\n code\n type\n value\n currency\n minSubtotal\n maxUses\n currentUses\n maxUsesPerUser\n startsAt\n endsAt\n enabled\n createdAt\n updatedAt\n }\n }\n";
|
|
58
|
+
export declare const SET_DISCOUNT_ENABLED_MUTATION = "\n mutation SetDiscountEnabled($workspaceId: ID!, $id: ID!, $enabled: Boolean!) {\n setDiscountEnabled(workspaceId: $workspaceId, id: $id, enabled: $enabled) { \n id\n code\n type\n value\n currency\n minSubtotal\n maxUses\n currentUses\n maxUsesPerUser\n startsAt\n endsAt\n enabled\n createdAt\n updatedAt\n }\n }\n";
|
|
59
|
+
export declare const WEBHOOK_ENDPOINTS_QUERY = "\n query WebhookEndpoints($workspaceId: ID!) {\n webhookEndpoints(workspaceId: $workspaceId) { \n id\n url\n events\n enabled\n description\n createdAt\n updatedAt\n }\n }\n";
|
|
60
|
+
export declare const WEBHOOK_DELIVERIES_QUERY = "\n query WebhookDeliveries($workspaceId: ID!, $limit: Int) {\n webhookDeliveries(workspaceId: $workspaceId, limit: $limit) {\n id\n endpointId\n webhookId\n event\n url\n status\n attempts\n responseCode\n error\n nextAttemptAt\n deliveredAt\n createdAt\n }\n }\n";
|
|
61
|
+
export declare const WEBHOOK_EVENT_TYPES_QUERY = "\n query WebhookEventTypes($workspaceId: ID!) {\n webhookEventTypes(workspaceId: $workspaceId)\n }\n";
|
|
62
|
+
export declare const CREATE_WEBHOOK_ENDPOINT_MUTATION = "\n mutation CreateWebhookEndpoint($input: CreateWebhookEndpointInput!) {\n createWebhookEndpoint(input: $input) {\n secret\n endpoint { \n id\n url\n events\n enabled\n description\n createdAt\n updatedAt\n }\n }\n }\n";
|
|
63
|
+
export declare const UPDATE_WEBHOOK_ENDPOINT_MUTATION = "\n mutation UpdateWebhookEndpoint($input: UpdateWebhookEndpointInput!) {\n updateWebhookEndpoint(input: $input) { \n id\n url\n events\n enabled\n description\n createdAt\n updatedAt\n }\n }\n";
|
|
64
|
+
export declare const ROTATE_WEBHOOK_SECRET_MUTATION = "\n mutation RotateWebhookSecret($workspaceId: ID!, $id: ID!) {\n rotateWebhookSecret(workspaceId: $workspaceId, id: $id) {\n secret\n endpoint { \n id\n url\n events\n enabled\n description\n createdAt\n updatedAt\n }\n }\n }\n";
|
|
65
|
+
export declare const DELETE_WEBHOOK_ENDPOINT_MUTATION = "\n mutation DeleteWebhookEndpoint($workspaceId: ID!, $id: ID!) {\n deleteWebhookEndpoint(workspaceId: $workspaceId, id: $id)\n }\n";
|
|
66
|
+
export declare const PRODUCT_CATALOG_QUERY = "\n query ProductCatalog(\n $modelId: ID!\n $filter: ProductCatalogFilterInput\n $limit: Int\n $offset: Int\n $sort: String\n ) {\n productCatalog(\n modelId: $modelId\n filter: $filter\n limit: $limit\n offset: $offset\n sort: $sort\n ) {\n items {\n id\n data\n status\n onHand\n reserved\n available\n hasVariants\n variants {\n key\n sku\n price\n onHand\n reserved\n available\n selectedOptions { name value }\n }\n createdAt\n updatedAt\n }\n total\n hasMore\n lowStockThreshold\n }\n }\n";
|
|
67
|
+
export declare const BULK_UPDATE_PRODUCT_RECORDS_MUTATION = "\n mutation BulkUpdateProductRecords(\n $modelId: ID!\n $selection: ProductBulkSelectionInput!\n $patch: ProductBulkPatchInput!\n ) {\n bulkUpdateProductRecords(\n modelId: $modelId\n selection: $selection\n patch: $patch\n )\n }\n";
|
|
68
|
+
export declare const BULK_DELETE_PRODUCT_RECORDS_MUTATION = "\n mutation BulkDeleteProductRecords(\n $modelId: ID!\n $selection: ProductBulkSelectionInput!\n ) {\n bulkDeleteProductRecords(modelId: $modelId, selection: $selection)\n }\n";
|
|
38
69
|
//# sourceMappingURL=queries.d.ts.map
|
package/dist/queries.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"queries.d.ts","sourceRoot":"","sources":["../src/queries.ts"],"names":[],"mappings":"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"}
|