@erp-galoper/types 1.0.1754 → 1.0.1756
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/openapi.ts +403 -147
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -613,6 +613,9 @@ export interface paths {
|
|
|
613
613
|
* - The endpoint will automatically detect if the model has 'items' or 'details' relation
|
|
614
614
|
* - Returns only the items that are present in the specified document
|
|
615
615
|
*
|
|
616
|
+
* Optional ``syncableOnlineItems``: standalone/template items only — same gate as
|
|
617
|
+
* ``should_attempt_product_sync_to_store`` on at least one active store; variants excluded.
|
|
618
|
+
*
|
|
616
619
|
* Responses:
|
|
617
620
|
* - 200: ItemListSchema
|
|
618
621
|
* - 400: {"message": "Error applying filter {error}", "code": "invalidFilterFormat"}
|
|
@@ -21038,11 +21041,12 @@ export interface paths {
|
|
|
21038
21041
|
get: operations["integration_settings_views_get_online_store_setting"];
|
|
21039
21042
|
/**
|
|
21040
21043
|
* Update Online Store Setting
|
|
21041
|
-
* @description Endpoint for updating online store settings
|
|
21044
|
+
* @description Endpoint for updating online store settings (singleton — shared across all sync stores).
|
|
21045
|
+
*
|
|
21042
21046
|
* Possible Responses:
|
|
21043
21047
|
* - 200: onlineStoreSettingUpdated
|
|
21044
21048
|
* - 400: validationFailed
|
|
21045
|
-
* -
|
|
21049
|
+
* - syncStoreRequired
|
|
21046
21050
|
* - warehousesRequired
|
|
21047
21051
|
* - defaultWarehouseRequired
|
|
21048
21052
|
* - defaultWarehouseNotInWarehouses
|
|
@@ -21080,7 +21084,7 @@ export interface paths {
|
|
|
21080
21084
|
* Possible Responses:
|
|
21081
21085
|
* - 200: onlineStoreSettingUpdated
|
|
21082
21086
|
* - 400: validationFailed
|
|
21083
|
-
* -
|
|
21087
|
+
* - syncStoreRequired
|
|
21084
21088
|
* - defaultWarehouseRequired
|
|
21085
21089
|
* - defaultCurrencyRequired
|
|
21086
21090
|
* - 403: permissionDenied
|
|
@@ -21102,8 +21106,8 @@ export interface paths {
|
|
|
21102
21106
|
get?: never;
|
|
21103
21107
|
put?: never;
|
|
21104
21108
|
/**
|
|
21105
|
-
* Kill
|
|
21106
|
-
* @description
|
|
21109
|
+
* Kill running syncs
|
|
21110
|
+
* @description Clears Redis locks and queues and marks running jobs failed. Pass storeId for one active store; omit storeId for all active stores.
|
|
21107
21111
|
*/
|
|
21108
21112
|
post: operations["integration_sync_views_kill_all_syncs_endpoint"];
|
|
21109
21113
|
delete?: never;
|
|
@@ -21113,6 +21117,38 @@ export interface paths {
|
|
|
21113
21117
|
trace?: never;
|
|
21114
21118
|
};
|
|
21115
21119
|
"/api/v1/integrations/sync/store/": {
|
|
21120
|
+
parameters: {
|
|
21121
|
+
query?: never;
|
|
21122
|
+
header?: never;
|
|
21123
|
+
path?: never;
|
|
21124
|
+
cookie?: never;
|
|
21125
|
+
};
|
|
21126
|
+
get?: never;
|
|
21127
|
+
put?: never;
|
|
21128
|
+
/**
|
|
21129
|
+
* Create Sync Store
|
|
21130
|
+
* @description Endpoint for creating a sync store configuration (Shopify or WooCommerce)
|
|
21131
|
+
*
|
|
21132
|
+
* Required fields by platform:
|
|
21133
|
+
* - Shopify: storeName, storeType='shopify', storeDomain, accessToken, apiVersion (optional, default: '2024-01')
|
|
21134
|
+
* - WooCommerce: storeName, storeType='woocommerce', storeUrl, consumerKey, consumerSecret, apiVersion (optional, default: 'wc/v3')
|
|
21135
|
+
*
|
|
21136
|
+
* Possible Responses:
|
|
21137
|
+
* - 201: syncStoreCreated
|
|
21138
|
+
* - 400: storeAlreadyExists, validationFailed, onlineStoreSettingNotConfigured, connectionFailed
|
|
21139
|
+
* - 403: permissionDenied
|
|
21140
|
+
* - 500: unexpectedError
|
|
21141
|
+
*
|
|
21142
|
+
* permission key: onlinestore: ["add"]
|
|
21143
|
+
*/
|
|
21144
|
+
post: operations["integration_sync_views_create_sync_store"];
|
|
21145
|
+
delete?: never;
|
|
21146
|
+
options?: never;
|
|
21147
|
+
head?: never;
|
|
21148
|
+
patch?: never;
|
|
21149
|
+
trace?: never;
|
|
21150
|
+
};
|
|
21151
|
+
"/api/v1/integrations/sync/store/{id}/": {
|
|
21116
21152
|
parameters: {
|
|
21117
21153
|
query?: never;
|
|
21118
21154
|
header?: never;
|
|
@@ -21121,7 +21157,8 @@ export interface paths {
|
|
|
21121
21157
|
};
|
|
21122
21158
|
/**
|
|
21123
21159
|
* Get Sync Store
|
|
21124
|
-
* @description
|
|
21160
|
+
* @description Retrieve one sync store via path ``GET …/store/{id}/``.
|
|
21161
|
+
*
|
|
21125
21162
|
* Possible Responses:
|
|
21126
21163
|
* - 200: success
|
|
21127
21164
|
* - 404: storeDoesNotExist
|
|
@@ -21135,6 +21172,8 @@ export interface paths {
|
|
|
21135
21172
|
* Update Sync Store
|
|
21136
21173
|
* @description Endpoint for updating sync store configuration (Shopify or WooCommerce)
|
|
21137
21174
|
*
|
|
21175
|
+
* Target store UUID is in the path: ``PUT …/store/{id}/``.
|
|
21176
|
+
*
|
|
21138
21177
|
* Can update platform-specific fields:
|
|
21139
21178
|
* - Shopify: storeDomain, accessToken, apiVersion, shopifyClientId, shopifyClientSecret
|
|
21140
21179
|
* - WooCommerce: storeUrl, consumerKey, consumerSecret, apiVersion
|
|
@@ -21154,23 +21193,7 @@ export interface paths {
|
|
|
21154
21193
|
* permission key: onlinestore: ["change"]
|
|
21155
21194
|
*/
|
|
21156
21195
|
put: operations["integration_sync_views_update_sync_store"];
|
|
21157
|
-
|
|
21158
|
-
* Create Sync Store
|
|
21159
|
-
* @description Endpoint for creating a sync store configuration (Shopify or WooCommerce)
|
|
21160
|
-
*
|
|
21161
|
-
* Required fields by platform:
|
|
21162
|
-
* - Shopify: storeName, storeType='shopify', storeDomain, accessToken, apiVersion (optional, default: '2024-01')
|
|
21163
|
-
* - WooCommerce: storeName, storeType='woocommerce', storeUrl, consumerKey, consumerSecret, apiVersion (optional, default: 'wc/v3')
|
|
21164
|
-
*
|
|
21165
|
-
* Possible Responses:
|
|
21166
|
-
* - 201: syncStoreCreated
|
|
21167
|
-
* - 400: storeAlreadyExists, validationFailed, onlineStoreSettingNotConfigured, connectionFailed
|
|
21168
|
-
* - 403: permissionDenied
|
|
21169
|
-
* - 500: unexpectedError
|
|
21170
|
-
*
|
|
21171
|
-
* permission key: onlinestore: ["add"]
|
|
21172
|
-
*/
|
|
21173
|
-
post: operations["integration_sync_views_create_sync_store"];
|
|
21196
|
+
post?: never;
|
|
21174
21197
|
/**
|
|
21175
21198
|
* Delete Sync Store
|
|
21176
21199
|
* @description Endpoint for deleting sync store configuration
|
|
@@ -21196,6 +21219,8 @@ export interface paths {
|
|
|
21196
21219
|
* Patch Sync Store
|
|
21197
21220
|
* @description Endpoint for partially updating sync store configuration (Shopify or WooCommerce)
|
|
21198
21221
|
*
|
|
21222
|
+
* Target store UUID is in the path: ``PATCH …/store/{id}/``.
|
|
21223
|
+
*
|
|
21199
21224
|
* Can update all fields EXCEPT storeDomain (domain cannot be changed after creation).
|
|
21200
21225
|
* Only provide the fields you want to update.
|
|
21201
21226
|
*
|
|
@@ -21216,7 +21241,27 @@ export interface paths {
|
|
|
21216
21241
|
patch: operations["integration_sync_views_patch_sync_store"];
|
|
21217
21242
|
trace?: never;
|
|
21218
21243
|
};
|
|
21219
|
-
"/api/v1/integrations/sync/
|
|
21244
|
+
"/api/v1/integrations/sync/stores/": {
|
|
21245
|
+
parameters: {
|
|
21246
|
+
query?: never;
|
|
21247
|
+
header?: never;
|
|
21248
|
+
path?: never;
|
|
21249
|
+
cookie?: never;
|
|
21250
|
+
};
|
|
21251
|
+
/**
|
|
21252
|
+
* List Sync Stores
|
|
21253
|
+
* @description List all configured sync stores (any status).
|
|
21254
|
+
*/
|
|
21255
|
+
get: operations["integration_sync_views_list_sync_stores"];
|
|
21256
|
+
put?: never;
|
|
21257
|
+
post?: never;
|
|
21258
|
+
delete?: never;
|
|
21259
|
+
options?: never;
|
|
21260
|
+
head?: never;
|
|
21261
|
+
patch?: never;
|
|
21262
|
+
trace?: never;
|
|
21263
|
+
};
|
|
21264
|
+
"/api/v1/integrations/sync/store/{id}/test-connection/": {
|
|
21220
21265
|
parameters: {
|
|
21221
21266
|
query?: never;
|
|
21222
21267
|
header?: never;
|
|
@@ -21229,7 +21274,7 @@ export interface paths {
|
|
|
21229
21274
|
* Test Sync Store Connection
|
|
21230
21275
|
* @description Endpoint for testing sync store connection (Shopify or WooCommerce)
|
|
21231
21276
|
*
|
|
21232
|
-
* Tests the API connection to the configured store and updates connection status.
|
|
21277
|
+
* Tests the API connection to the configured store at ``POST …/store/{id}/test-connection/`` and updates connection status.
|
|
21233
21278
|
*
|
|
21234
21279
|
* Possible Responses:
|
|
21235
21280
|
* - 200: success: true (connection successful)
|
|
@@ -21258,7 +21303,7 @@ export interface paths {
|
|
|
21258
21303
|
put?: never;
|
|
21259
21304
|
/**
|
|
21260
21305
|
* Manually sync ALL items to the online store
|
|
21261
|
-
* @description Triggers background BULK sync of ALL eligible ERP items
|
|
21306
|
+
* @description Triggers background BULK sync of ALL eligible ERP items. Pass storeId for one active store; omit for all active stores. Returns 202 if request is queued.
|
|
21262
21307
|
*/
|
|
21263
21308
|
post: operations["integration_sync_views_sync_all_items_endpoint"];
|
|
21264
21309
|
delete?: never;
|
|
@@ -21278,8 +21323,7 @@ export interface paths {
|
|
|
21278
21323
|
put?: never;
|
|
21279
21324
|
/**
|
|
21280
21325
|
* Manually sync a single item to the online store
|
|
21281
|
-
* @description Triggers background sync of a specific ERP item
|
|
21282
|
-
* filter items by: active=True, role in ['template', 'standalone']
|
|
21326
|
+
* @description Triggers background sync of a specific ERP item. Pass storeId for one active sync store; omit storeId for all active stores. Returns 202 if request is queued. Filter items by: active=True, role in ['template', 'standalone']
|
|
21283
21327
|
*/
|
|
21284
21328
|
post: operations["integration_sync_views_sync_single_item_endpoint"];
|
|
21285
21329
|
delete?: never;
|
|
@@ -21299,7 +21343,7 @@ export interface paths {
|
|
|
21299
21343
|
put?: never;
|
|
21300
21344
|
/**
|
|
21301
21345
|
* Manually sync a single category to WooCommerce
|
|
21302
|
-
* @description Triggers background sync of a specific ERP category to WooCommerce. Syncs from the root parent down
|
|
21346
|
+
* @description Triggers background sync of a specific ERP category to WooCommerce for one or all active WooCommerce stores. Syncs from the root parent down. Omit storeId for every active WooCommerce store.
|
|
21303
21347
|
*/
|
|
21304
21348
|
post: operations["integration_sync_views_sync_single_category_endpoint"];
|
|
21305
21349
|
delete?: never;
|
|
@@ -21319,7 +21363,7 @@ export interface paths {
|
|
|
21319
21363
|
put?: never;
|
|
21320
21364
|
/**
|
|
21321
21365
|
* Manually sync all categories to WooCommerce
|
|
21322
|
-
* @description Triggers background sync of all ERP root categories to WooCommerce. Children are synced automatically with their parents.
|
|
21366
|
+
* @description Triggers background sync of all ERP root categories to WooCommerce. Omit storeId for all active WooCommerce stores. Children are synced automatically with their parents.
|
|
21323
21367
|
*/
|
|
21324
21368
|
post: operations["integration_sync_views_sync_all_categories_endpoint"];
|
|
21325
21369
|
delete?: never;
|
|
@@ -21339,7 +21383,7 @@ export interface paths {
|
|
|
21339
21383
|
put?: never;
|
|
21340
21384
|
/**
|
|
21341
21385
|
* Manually sync a single brand to WooCommerce
|
|
21342
|
-
* @description Triggers background sync of a specific ERP brand to WooCommerce.
|
|
21386
|
+
* @description Triggers background sync of a specific ERP brand to WooCommerce. Omit storeId for all active WooCommerce stores. **Note:** WooCommerce-only. Brands are synced one-way from ERP to WooCommerce as product attributes.
|
|
21343
21387
|
*/
|
|
21344
21388
|
post: operations["integration_sync_views_sync_single_brand_endpoint"];
|
|
21345
21389
|
delete?: never;
|
|
@@ -21359,7 +21403,7 @@ export interface paths {
|
|
|
21359
21403
|
put?: never;
|
|
21360
21404
|
/**
|
|
21361
21405
|
* Manually sync all brands to WooCommerce
|
|
21362
|
-
* @description Triggers background sync of all ERP brands to WooCommerce.
|
|
21406
|
+
* @description Triggers background sync of all ERP brands to WooCommerce. Omit storeId for all active WooCommerce stores. **Note:** WooCommerce-only.
|
|
21363
21407
|
*/
|
|
21364
21408
|
post: operations["integration_sync_views_sync_all_brands_endpoint"];
|
|
21365
21409
|
delete?: never;
|
|
@@ -21379,7 +21423,7 @@ export interface paths {
|
|
|
21379
21423
|
put?: never;
|
|
21380
21424
|
/**
|
|
21381
21425
|
* Manually sync a single tag to WooCommerce
|
|
21382
|
-
* @description Triggers background sync of a specific ERP tag to WooCommerce.
|
|
21426
|
+
* @description Triggers background sync of a specific ERP tag to WooCommerce. Omit storeId for all active WooCommerce stores. **Note:** WooCommerce-only.
|
|
21383
21427
|
*/
|
|
21384
21428
|
post: operations["integration_sync_views_sync_single_tag_endpoint"];
|
|
21385
21429
|
delete?: never;
|
|
@@ -21399,7 +21443,7 @@ export interface paths {
|
|
|
21399
21443
|
put?: never;
|
|
21400
21444
|
/**
|
|
21401
21445
|
* Manually sync all tags to WooCommerce
|
|
21402
|
-
* @description Triggers background sync of all ERP tags to WooCommerce.
|
|
21446
|
+
* @description Triggers background sync of all ERP tags to WooCommerce. Omit storeId for all active WooCommerce stores. **Note:** WooCommerce-only.
|
|
21403
21447
|
*/
|
|
21404
21448
|
post: operations["integration_sync_views_sync_all_tags_endpoint"];
|
|
21405
21449
|
delete?: never;
|
|
@@ -21419,7 +21463,8 @@ export interface paths {
|
|
|
21419
21463
|
put?: never;
|
|
21420
21464
|
/**
|
|
21421
21465
|
* Sync Orders Endpoint
|
|
21422
|
-
* @description Endpoint for syncing orders from
|
|
21466
|
+
* @description Endpoint for syncing orders from connected online stores.
|
|
21467
|
+
* Pass storeId for one active store; omit for all active stores.
|
|
21423
21468
|
* Possible Responses:
|
|
21424
21469
|
* - 200: ordersSyncInitiated
|
|
21425
21470
|
* - 400: validationFailed, storeNotFound
|
|
@@ -21447,7 +21492,10 @@ export interface paths {
|
|
|
21447
21492
|
put?: never;
|
|
21448
21493
|
/**
|
|
21449
21494
|
* Sync Customers Endpoint
|
|
21450
|
-
* @description Endpoint for
|
|
21495
|
+
* @description Endpoint for bidirectional customer synchronization across active stores (one storeId or all).
|
|
21496
|
+
* First sync: Full bidirectional with email matching
|
|
21497
|
+
* Subsequent syncs: Incremental with conflict resolution based on source_of_truth setting
|
|
21498
|
+
*
|
|
21451
21499
|
* Possible Responses:
|
|
21452
21500
|
* - 200: customersSyncInitiated
|
|
21453
21501
|
* - 400: validationFailed, storeNotFound
|
|
@@ -21473,11 +21521,15 @@ export interface paths {
|
|
|
21473
21521
|
};
|
|
21474
21522
|
/**
|
|
21475
21523
|
* List Orders
|
|
21476
|
-
* @description Endpoint for retrieving synced orders with pagination and filtering
|
|
21524
|
+
* @description Endpoint for retrieving synced orders with pagination and filtering.
|
|
21525
|
+
*
|
|
21526
|
+
* Optional query ``storeId`` limits results to one active sync store (see schema ``OnlineOrderListSchema``).
|
|
21527
|
+
*
|
|
21528
|
+
* Each order in ``results`` includes a nested ``syncStore`` summary (see ``SyncStoreSummarySchema``).
|
|
21477
21529
|
* Possible Responses:
|
|
21478
21530
|
* - 200: ordersRetrieved
|
|
21479
21531
|
* - 400: validationFailed
|
|
21480
|
-
* - 404:
|
|
21532
|
+
* - 404: noStoreFound, noActiveStoresFound
|
|
21481
21533
|
* - 500: unexpectedError
|
|
21482
21534
|
*
|
|
21483
21535
|
* permission key: onlinestore: ["view"]
|
|
@@ -21500,7 +21552,8 @@ export interface paths {
|
|
|
21500
21552
|
};
|
|
21501
21553
|
/**
|
|
21502
21554
|
* Get Order
|
|
21503
|
-
* @description Endpoint for retrieving a specific order
|
|
21555
|
+
* @description Endpoint for retrieving a specific order.
|
|
21556
|
+
* When storeId is omitted, the order must belong to an active sync store (by order primary key).
|
|
21504
21557
|
* Possible Responses:
|
|
21505
21558
|
* - 200: orderRetrieved
|
|
21506
21559
|
* - 400: validationFailed
|
|
@@ -21529,7 +21582,7 @@ export interface paths {
|
|
|
21529
21582
|
put?: never;
|
|
21530
21583
|
/**
|
|
21531
21584
|
* Manually sync a single customer to Shopify
|
|
21532
|
-
* @description Triggers background sync of a specific ERP customer to
|
|
21585
|
+
* @description Triggers background sync of a specific ERP customer to active online stores. Pass storeId for one active sync store or omit storeId for all active stores. If customer exists in both systems and both have been updated since last sync, conflict is resolved based on 'customer_source_of_truth' setting in Online Store Settings. Returns 202 if request is queued. Customers should be filtered by: is_active=True, walk_in_pos=False, parent_customer is None (children only), and currency_id matches default currency in online store settings.
|
|
21533
21586
|
*/
|
|
21534
21587
|
post: operations["integration_sync_views_sync_single_customer_endpoint"];
|
|
21535
21588
|
delete?: never;
|
|
@@ -26190,6 +26243,15 @@ export interface components {
|
|
|
26190
26243
|
*/
|
|
26191
26244
|
results: components["schemas"]["ItemWithChildrenSchema"][];
|
|
26192
26245
|
};
|
|
26246
|
+
/**
|
|
26247
|
+
* ItemOnlineStoreReadSchema
|
|
26248
|
+
* @description Per sync store: store summary and whether this item is listed there.
|
|
26249
|
+
*/
|
|
26250
|
+
ItemOnlineStoreReadSchema: {
|
|
26251
|
+
store: components["schemas"]["SyncStoreSummarySchema"];
|
|
26252
|
+
/** Availableinonlinestore */
|
|
26253
|
+
availableInOnlineStore: boolean;
|
|
26254
|
+
};
|
|
26193
26255
|
/** ItemPackageSummarySchema */
|
|
26194
26256
|
ItemPackageSummarySchema: {
|
|
26195
26257
|
/**
|
|
@@ -26396,32 +26458,31 @@ export interface components {
|
|
|
26396
26458
|
* @default false
|
|
26397
26459
|
*/
|
|
26398
26460
|
isExchangeable: boolean | null;
|
|
26399
|
-
/**
|
|
26400
|
-
* Availableinonlinestore
|
|
26401
|
-
* @description this field only appears if online store is enabled in galoper settings
|
|
26402
|
-
* @default false
|
|
26403
|
-
*/
|
|
26404
|
-
availableInOnlineStore: boolean;
|
|
26405
26461
|
/**
|
|
26406
26462
|
* Onlineprice
|
|
26407
|
-
* @description Price for online store sales
|
|
26463
|
+
* @description Price for online store sales; may be set regardless of per-store listing.
|
|
26408
26464
|
*/
|
|
26409
26465
|
onlinePrice?: number | null;
|
|
26410
26466
|
/**
|
|
26411
26467
|
* Onlinepricebeforediscount
|
|
26412
|
-
* @description Original price before discount for online store
|
|
26468
|
+
* @description Original price before discount for online store; may be set regardless of per-store listing.
|
|
26413
26469
|
*/
|
|
26414
26470
|
onlinePriceBeforeDiscount?: number | null;
|
|
26415
26471
|
/**
|
|
26416
26472
|
* Seotitle
|
|
26417
|
-
* @description SEO page title for search engines (70 characters recommended)
|
|
26473
|
+
* @description SEO page title for search engines (70 characters recommended); may be set regardless of per-store listing.
|
|
26418
26474
|
*/
|
|
26419
26475
|
seoTitle?: string | null;
|
|
26420
26476
|
/**
|
|
26421
26477
|
* Seodescription
|
|
26422
|
-
* @description SEO meta description for search engines (160 characters recommended)
|
|
26478
|
+
* @description SEO meta description for search engines (160 characters recommended); may be set regardless of per-store listing.
|
|
26423
26479
|
*/
|
|
26424
26480
|
seoDescription?: string | null;
|
|
26481
|
+
/**
|
|
26482
|
+
* Onlinestores
|
|
26483
|
+
* @description Sync stores for online publishing; each row includes store summary and listing availability.
|
|
26484
|
+
*/
|
|
26485
|
+
onlineStores?: components["schemas"]["ItemOnlineStoreReadSchema"][];
|
|
26425
26486
|
/**
|
|
26426
26487
|
* Allowsales
|
|
26427
26488
|
* @default true
|
|
@@ -26661,32 +26722,31 @@ export interface components {
|
|
|
26661
26722
|
* @default false
|
|
26662
26723
|
*/
|
|
26663
26724
|
isExchangeable: boolean | null;
|
|
26664
|
-
/**
|
|
26665
|
-
* Availableinonlinestore
|
|
26666
|
-
* @description this field only appears if online store is enabled in galoper settings
|
|
26667
|
-
* @default false
|
|
26668
|
-
*/
|
|
26669
|
-
availableInOnlineStore: boolean;
|
|
26670
26725
|
/**
|
|
26671
26726
|
* Onlineprice
|
|
26672
|
-
* @description Price for online store sales
|
|
26727
|
+
* @description Price for online store sales; may be set regardless of per-store listing.
|
|
26673
26728
|
*/
|
|
26674
26729
|
onlinePrice?: number | null;
|
|
26675
26730
|
/**
|
|
26676
26731
|
* Onlinepricebeforediscount
|
|
26677
|
-
* @description Original price before discount for online store
|
|
26732
|
+
* @description Original price before discount for online store; may be set regardless of per-store listing.
|
|
26678
26733
|
*/
|
|
26679
26734
|
onlinePriceBeforeDiscount?: number | null;
|
|
26680
26735
|
/**
|
|
26681
26736
|
* Seotitle
|
|
26682
|
-
* @description SEO page title for search engines (70 characters recommended)
|
|
26737
|
+
* @description SEO page title for search engines (70 characters recommended); may be set regardless of per-store listing.
|
|
26683
26738
|
*/
|
|
26684
26739
|
seoTitle?: string | null;
|
|
26685
26740
|
/**
|
|
26686
26741
|
* Seodescription
|
|
26687
|
-
* @description SEO meta description for search engines (160 characters recommended)
|
|
26742
|
+
* @description SEO meta description for search engines (160 characters recommended); may be set regardless of per-store listing.
|
|
26688
26743
|
*/
|
|
26689
26744
|
seoDescription?: string | null;
|
|
26745
|
+
/**
|
|
26746
|
+
* Onlinestores
|
|
26747
|
+
* @description Sync stores for online publishing; each row includes store summary and listing availability.
|
|
26748
|
+
*/
|
|
26749
|
+
onlineStores?: components["schemas"]["ItemOnlineStoreReadSchema"][];
|
|
26690
26750
|
/**
|
|
26691
26751
|
* Allowsales
|
|
26692
26752
|
* @default true
|
|
@@ -26944,6 +27004,11 @@ export interface components {
|
|
|
26944
27004
|
/** Description */
|
|
26945
27005
|
description: string;
|
|
26946
27006
|
};
|
|
27007
|
+
/**
|
|
27008
|
+
* StoreType
|
|
27009
|
+
* @enum {string}
|
|
27010
|
+
*/
|
|
27011
|
+
StoreType: "shopify" | "wooCommerce";
|
|
26947
27012
|
/** SupplierPurchasedPricesSchema */
|
|
26948
27013
|
SupplierPurchasedPricesSchema: {
|
|
26949
27014
|
/** Quantity */
|
|
@@ -26960,6 +27025,26 @@ export interface components {
|
|
|
26960
27025
|
/** Total */
|
|
26961
27026
|
total: number | string | null;
|
|
26962
27027
|
};
|
|
27028
|
+
/**
|
|
27029
|
+
* SyncStoreSummarySchema
|
|
27030
|
+
* @description Minimal sync store payload for nesting on items and similar.
|
|
27031
|
+
*/
|
|
27032
|
+
SyncStoreSummarySchema: {
|
|
27033
|
+
/**
|
|
27034
|
+
* Id
|
|
27035
|
+
* Format: uuid
|
|
27036
|
+
*/
|
|
27037
|
+
id: string;
|
|
27038
|
+
/** Storename */
|
|
27039
|
+
storeName: string;
|
|
27040
|
+
storeType: components["schemas"]["StoreType"];
|
|
27041
|
+
/** Storedomain */
|
|
27042
|
+
storeDomain?: string | null;
|
|
27043
|
+
/** Status */
|
|
27044
|
+
status: string;
|
|
27045
|
+
/** Isconnected */
|
|
27046
|
+
isConnected: boolean;
|
|
27047
|
+
};
|
|
26963
27048
|
/** TagSchema */
|
|
26964
27049
|
TagSchema: {
|
|
26965
27050
|
/** Id */
|
|
@@ -27239,32 +27324,31 @@ export interface components {
|
|
|
27239
27324
|
* @default false
|
|
27240
27325
|
*/
|
|
27241
27326
|
isExchangeable: boolean | null;
|
|
27242
|
-
/**
|
|
27243
|
-
* Availableinonlinestore
|
|
27244
|
-
* @description this field only appears if online store is enabled in galoper settings
|
|
27245
|
-
* @default false
|
|
27246
|
-
*/
|
|
27247
|
-
availableInOnlineStore: boolean | null;
|
|
27248
27327
|
/**
|
|
27249
27328
|
* Onlineprice
|
|
27250
|
-
* @description Price for online store sales
|
|
27329
|
+
* @description Price for online store sales; may be set regardless of per-store listing.
|
|
27251
27330
|
*/
|
|
27252
27331
|
onlinePrice?: number | null;
|
|
27253
27332
|
/**
|
|
27254
27333
|
* Onlinepricebeforediscount
|
|
27255
|
-
* @description Original price before discount for online store
|
|
27334
|
+
* @description Original price before discount for online store; may be set regardless of per-store listing.
|
|
27256
27335
|
*/
|
|
27257
27336
|
onlinePriceBeforeDiscount?: number | null;
|
|
27258
27337
|
/**
|
|
27259
27338
|
* Seotitle
|
|
27260
|
-
* @description SEO page title for search engines (70 characters recommended)
|
|
27339
|
+
* @description SEO page title for search engines (70 characters recommended); may be set regardless of per-store listing.
|
|
27261
27340
|
*/
|
|
27262
27341
|
seoTitle?: string | null;
|
|
27263
27342
|
/**
|
|
27264
27343
|
* Seodescription
|
|
27265
|
-
* @description SEO meta description for search engines (160 characters recommended)
|
|
27344
|
+
* @description SEO meta description for search engines (160 characters recommended); may be set regardless of per-store listing.
|
|
27266
27345
|
*/
|
|
27267
27346
|
seoDescription?: string | null;
|
|
27347
|
+
/**
|
|
27348
|
+
* Onlinesyncstores
|
|
27349
|
+
* @description Per sync store: whether this variant is listed there.
|
|
27350
|
+
*/
|
|
27351
|
+
onlineSyncStores?: components["schemas"]["OnlineSyncStoreLinkInputSchema"][] | null;
|
|
27268
27352
|
/**
|
|
27269
27353
|
* Allowsales
|
|
27270
27354
|
* @default true
|
|
@@ -27514,32 +27598,31 @@ export interface components {
|
|
|
27514
27598
|
* @default false
|
|
27515
27599
|
*/
|
|
27516
27600
|
isExchangeable: boolean | null;
|
|
27517
|
-
/**
|
|
27518
|
-
* Availableinonlinestore
|
|
27519
|
-
* @description this field only appears if online store is enabled in galoper settings
|
|
27520
|
-
* @default false
|
|
27521
|
-
*/
|
|
27522
|
-
availableInOnlineStore: boolean;
|
|
27523
27601
|
/**
|
|
27524
27602
|
* Onlineprice
|
|
27525
|
-
* @description Price for online store sales
|
|
27603
|
+
* @description Price for online store sales; may be set regardless of per-store listing.
|
|
27526
27604
|
*/
|
|
27527
27605
|
onlinePrice?: number | null;
|
|
27528
27606
|
/**
|
|
27529
27607
|
* Onlinepricebeforediscount
|
|
27530
|
-
* @description Original price before discount for online store
|
|
27608
|
+
* @description Original price before discount for online store; may be set regardless of per-store listing.
|
|
27531
27609
|
*/
|
|
27532
27610
|
onlinePriceBeforeDiscount?: number | null;
|
|
27533
27611
|
/**
|
|
27534
27612
|
* Seotitle
|
|
27535
|
-
* @description SEO page title for search engines (70 characters recommended)
|
|
27613
|
+
* @description SEO page title for search engines (70 characters recommended); may be set regardless of per-store listing.
|
|
27536
27614
|
*/
|
|
27537
27615
|
seoTitle?: string | null;
|
|
27538
27616
|
/**
|
|
27539
27617
|
* Seodescription
|
|
27540
|
-
* @description SEO meta description for search engines (160 characters recommended)
|
|
27618
|
+
* @description SEO meta description for search engines (160 characters recommended); may be set regardless of per-store listing.
|
|
27541
27619
|
*/
|
|
27542
27620
|
seoDescription?: string | null;
|
|
27621
|
+
/**
|
|
27622
|
+
* Onlinesyncstores
|
|
27623
|
+
* @description Per sync store listing; each row sets availability on that store.
|
|
27624
|
+
*/
|
|
27625
|
+
onlineSyncStores?: components["schemas"]["OnlineSyncStoreLinkInputSchema"][] | null;
|
|
27543
27626
|
/**
|
|
27544
27627
|
* Allowsales
|
|
27545
27628
|
* @default true
|
|
@@ -27725,6 +27808,22 @@ export interface components {
|
|
|
27725
27808
|
*/
|
|
27726
27809
|
unitOfMeasure: number;
|
|
27727
27810
|
};
|
|
27811
|
+
/**
|
|
27812
|
+
* OnlineSyncStoreLinkInputSchema
|
|
27813
|
+
* @description One store row for create/patch ``onlineSyncStores``.
|
|
27814
|
+
*/
|
|
27815
|
+
OnlineSyncStoreLinkInputSchema: {
|
|
27816
|
+
/**
|
|
27817
|
+
* Id
|
|
27818
|
+
* Format: uuid
|
|
27819
|
+
*/
|
|
27820
|
+
id: string;
|
|
27821
|
+
/**
|
|
27822
|
+
* Availableinonlinestore
|
|
27823
|
+
* @default true
|
|
27824
|
+
*/
|
|
27825
|
+
availableInOnlineStore: boolean;
|
|
27826
|
+
};
|
|
27728
27827
|
/** BulkUpdateItemsResponse */
|
|
27729
27828
|
BulkUpdateItemsResponse: {
|
|
27730
27829
|
/** Message */
|
|
@@ -27962,31 +28061,31 @@ export interface components {
|
|
|
27962
28061
|
* @default false
|
|
27963
28062
|
*/
|
|
27964
28063
|
isExchangeable: boolean | null;
|
|
27965
|
-
/**
|
|
27966
|
-
* Availableinonlinestore
|
|
27967
|
-
* @description this field only appears if online store is enabled in galoper settings
|
|
27968
|
-
*/
|
|
27969
|
-
availableInOnlineStore?: boolean | null;
|
|
27970
28064
|
/**
|
|
27971
28065
|
* Onlineprice
|
|
27972
|
-
* @description Price for online store sales
|
|
28066
|
+
* @description Price for online store sales; may be set regardless of per-store listing.
|
|
27973
28067
|
*/
|
|
27974
28068
|
onlinePrice?: number | null;
|
|
27975
28069
|
/**
|
|
27976
28070
|
* Onlinepricebeforediscount
|
|
27977
|
-
* @description Original price before discount for online store
|
|
28071
|
+
* @description Original price before discount for online store; may be set regardless of per-store listing.
|
|
27978
28072
|
*/
|
|
27979
28073
|
onlinePriceBeforeDiscount?: number | null;
|
|
27980
28074
|
/**
|
|
27981
28075
|
* Seotitle
|
|
27982
|
-
* @description SEO page title for search engines (70 characters recommended)
|
|
28076
|
+
* @description SEO page title for search engines (70 characters recommended); may be set regardless of per-store listing.
|
|
27983
28077
|
*/
|
|
27984
28078
|
seoTitle?: string | null;
|
|
27985
28079
|
/**
|
|
27986
28080
|
* Seodescription
|
|
27987
|
-
* @description SEO meta description for search engines (160 characters recommended)
|
|
28081
|
+
* @description SEO meta description for search engines (160 characters recommended); may be set regardless of per-store listing.
|
|
27988
28082
|
*/
|
|
27989
28083
|
seoDescription?: string | null;
|
|
28084
|
+
/**
|
|
28085
|
+
* Onlinesyncstores
|
|
28086
|
+
* @description Replace per-store links when set; each entry controls listing on that sync store.
|
|
28087
|
+
*/
|
|
28088
|
+
onlineSyncStores?: components["schemas"]["OnlineSyncStoreLinkInputSchema"][] | null;
|
|
27990
28089
|
/** Allowsales */
|
|
27991
28090
|
allowSales?: boolean | null;
|
|
27992
28091
|
/** Maxdiscountsales */
|
|
@@ -59147,7 +59246,6 @@ export interface components {
|
|
|
59147
59246
|
* Format: uuid
|
|
59148
59247
|
*/
|
|
59149
59248
|
id: string;
|
|
59150
|
-
platform: components["schemas"]["PlatformSchema"] | null;
|
|
59151
59249
|
/** Useonlineshop */
|
|
59152
59250
|
useOnlineShop: boolean;
|
|
59153
59251
|
/** Autosyncorders */
|
|
@@ -59169,15 +59267,8 @@ export interface components {
|
|
|
59169
59267
|
defaultTax: components["schemas"]["TaxSharedSchema"] | null;
|
|
59170
59268
|
defaultCurrency: components["schemas"]["CurrencyCommonSchema"] | null;
|
|
59171
59269
|
};
|
|
59172
|
-
/**
|
|
59173
|
-
* PlatformSchema
|
|
59174
|
-
* @enum {string}
|
|
59175
|
-
*/
|
|
59176
|
-
PlatformSchema: "shopify" | "wooCommerce";
|
|
59177
59270
|
/** OnlineStoreSettingCreateUpdateSchema */
|
|
59178
59271
|
OnlineStoreSettingCreateUpdateSchema: {
|
|
59179
|
-
/** @description E-commerce platform to integrate with, required when use_online_shop is true */
|
|
59180
|
-
platform?: components["schemas"]["PlatformSchema"] | null;
|
|
59181
59272
|
/**
|
|
59182
59273
|
* Useonlineshop
|
|
59183
59274
|
* @description Enable/disable online shop integration
|
|
@@ -59248,11 +59339,6 @@ export interface components {
|
|
|
59248
59339
|
*/
|
|
59249
59340
|
enabled: boolean;
|
|
59250
59341
|
};
|
|
59251
|
-
/**
|
|
59252
|
-
* StoreType
|
|
59253
|
-
* @enum {string}
|
|
59254
|
-
*/
|
|
59255
|
-
StoreType: "shopify" | "wooCommerce";
|
|
59256
59342
|
/**
|
|
59257
59343
|
* SyncStoreSchema
|
|
59258
59344
|
* @description Schema for sync store response
|
|
@@ -59327,6 +59413,28 @@ export interface components {
|
|
|
59327
59413
|
* @description Timestamp of last successful order sync
|
|
59328
59414
|
*/
|
|
59329
59415
|
lastOrdersSync?: string | null;
|
|
59416
|
+
/**
|
|
59417
|
+
* Lastcustomerssync
|
|
59418
|
+
* @description Timestamp of last successful customer sync
|
|
59419
|
+
*/
|
|
59420
|
+
lastCustomersSync?: string | null;
|
|
59421
|
+
/**
|
|
59422
|
+
* Lastcategoriessync
|
|
59423
|
+
* @description Timestamp of last successful category sync
|
|
59424
|
+
*/
|
|
59425
|
+
lastCategoriesSync?: string | null;
|
|
59426
|
+
/**
|
|
59427
|
+
* Lastbrandssync
|
|
59428
|
+
* @description Timestamp of last successful brand sync
|
|
59429
|
+
*/
|
|
59430
|
+
lastBrandsSync?: string | null;
|
|
59431
|
+
/**
|
|
59432
|
+
* Lasttagssync
|
|
59433
|
+
* @description Timestamp of last successful tag sync
|
|
59434
|
+
*/
|
|
59435
|
+
lastTagsSync?: string | null;
|
|
59436
|
+
/** @description Counts of synced entities for this store */
|
|
59437
|
+
syncCounts: components["schemas"]["SyncStoreSyncCountsSchema"];
|
|
59330
59438
|
/**
|
|
59331
59439
|
* Canupdate
|
|
59332
59440
|
* @description Whether user has permission to update this store
|
|
@@ -59334,6 +59442,42 @@ export interface components {
|
|
|
59334
59442
|
*/
|
|
59335
59443
|
canUpdate: boolean;
|
|
59336
59444
|
};
|
|
59445
|
+
/**
|
|
59446
|
+
* SyncStoreSyncCountsSchema
|
|
59447
|
+
* @description Synced row counts for this integration (mappings + local online orders).
|
|
59448
|
+
*/
|
|
59449
|
+
SyncStoreSyncCountsSchema: {
|
|
59450
|
+
/**
|
|
59451
|
+
* Items
|
|
59452
|
+
* @description Product/item SyncMapping rows (external_type=products)
|
|
59453
|
+
*/
|
|
59454
|
+
items: number;
|
|
59455
|
+
/**
|
|
59456
|
+
* Orders
|
|
59457
|
+
* @description OnlineOrder rows synced for this store
|
|
59458
|
+
*/
|
|
59459
|
+
orders: number;
|
|
59460
|
+
/**
|
|
59461
|
+
* Customers
|
|
59462
|
+
* @description Customer SyncMapping rows
|
|
59463
|
+
*/
|
|
59464
|
+
customers: number;
|
|
59465
|
+
/**
|
|
59466
|
+
* Categories
|
|
59467
|
+
* @description Category SyncMapping rows
|
|
59468
|
+
*/
|
|
59469
|
+
categories: number;
|
|
59470
|
+
/**
|
|
59471
|
+
* Brands
|
|
59472
|
+
* @description Brand SyncMapping rows
|
|
59473
|
+
*/
|
|
59474
|
+
brands: number;
|
|
59475
|
+
/**
|
|
59476
|
+
* Tags
|
|
59477
|
+
* @description Tag SyncMapping rows
|
|
59478
|
+
*/
|
|
59479
|
+
tags: number;
|
|
59480
|
+
};
|
|
59337
59481
|
/**
|
|
59338
59482
|
* SyncStoreCreateSchema
|
|
59339
59483
|
* @description Schema for creating a sync store
|
|
@@ -59491,7 +59635,12 @@ export interface components {
|
|
|
59491
59635
|
};
|
|
59492
59636
|
/**
|
|
59493
59637
|
* OnlineOrderListSchema
|
|
59494
|
-
* @description
|
|
59638
|
+
* @description Paginated list of synced online orders (GET ``/orders/``).
|
|
59639
|
+
*
|
|
59640
|
+
* **Query parameters:**
|
|
59641
|
+
* - ``storeId`` (optional UUID): restrict to orders from one *active* sync store; omit for every active store.
|
|
59642
|
+
* - ``page`` / ``pageSize``: pagination.
|
|
59643
|
+
* - ``search`` (optional): text search on order number, customer name/email, item name/SKU, financial/fulfillment status.
|
|
59495
59644
|
*/
|
|
59496
59645
|
OnlineOrderListSchema: {
|
|
59497
59646
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -59508,6 +59657,8 @@ export interface components {
|
|
|
59508
59657
|
* Format: uuid
|
|
59509
59658
|
*/
|
|
59510
59659
|
id: string;
|
|
59660
|
+
/** @description Summary of the sync store this order was imported from */
|
|
59661
|
+
syncStore: components["schemas"]["SyncStoreSummarySchema"];
|
|
59511
59662
|
/** Ordernumber */
|
|
59512
59663
|
orderNumber: string;
|
|
59513
59664
|
/** Name */
|
|
@@ -62518,6 +62669,8 @@ export interface operations {
|
|
|
62518
62669
|
documentModel?: components["schemas"]["LogModelName"] | null;
|
|
62519
62670
|
/** @description Document ID to get items from (required if documentModel is provided) */
|
|
62520
62671
|
documentId?: string | null;
|
|
62672
|
+
/** @description Standalone and template rows only where product sync applies on at least one active store (publish-eligible or existing mapping). Matches should_attempt_product_sync_to_store; variants excluded. */
|
|
62673
|
+
syncableOnlineItems?: boolean;
|
|
62521
62674
|
};
|
|
62522
62675
|
header?: never;
|
|
62523
62676
|
path?: never;
|
|
@@ -102896,7 +103049,9 @@ export interface operations {
|
|
|
102896
103049
|
};
|
|
102897
103050
|
integration_sync_views_kill_all_syncs_endpoint: {
|
|
102898
103051
|
parameters: {
|
|
102899
|
-
query?:
|
|
103052
|
+
query?: {
|
|
103053
|
+
storeId?: string | null;
|
|
103054
|
+
};
|
|
102900
103055
|
header?: never;
|
|
102901
103056
|
path?: never;
|
|
102902
103057
|
cookie?: never;
|
|
@@ -102932,17 +103087,21 @@ export interface operations {
|
|
|
102932
103087
|
};
|
|
102933
103088
|
};
|
|
102934
103089
|
};
|
|
102935
|
-
|
|
103090
|
+
integration_sync_views_create_sync_store: {
|
|
102936
103091
|
parameters: {
|
|
102937
103092
|
query?: never;
|
|
102938
103093
|
header?: never;
|
|
102939
103094
|
path?: never;
|
|
102940
103095
|
cookie?: never;
|
|
102941
103096
|
};
|
|
102942
|
-
requestBody
|
|
103097
|
+
requestBody: {
|
|
103098
|
+
content: {
|
|
103099
|
+
"application/json": components["schemas"]["SyncStoreCreateSchema"];
|
|
103100
|
+
};
|
|
103101
|
+
};
|
|
102943
103102
|
responses: {
|
|
102944
|
-
/** @description
|
|
102945
|
-
|
|
103103
|
+
/** @description Created */
|
|
103104
|
+
201: {
|
|
102946
103105
|
headers: {
|
|
102947
103106
|
[name: string]: unknown;
|
|
102948
103107
|
};
|
|
@@ -102950,17 +103109,17 @@ export interface operations {
|
|
|
102950
103109
|
"application/json": components["schemas"]["SyncStoreSchema"];
|
|
102951
103110
|
};
|
|
102952
103111
|
};
|
|
102953
|
-
/** @description
|
|
102954
|
-
|
|
103112
|
+
/** @description Bad Request */
|
|
103113
|
+
400: {
|
|
102955
103114
|
headers: {
|
|
102956
103115
|
[name: string]: unknown;
|
|
102957
103116
|
};
|
|
102958
103117
|
content: {
|
|
102959
|
-
"application/json": components["schemas"]["
|
|
103118
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
102960
103119
|
};
|
|
102961
103120
|
};
|
|
102962
|
-
/** @description
|
|
102963
|
-
|
|
103121
|
+
/** @description Forbidden */
|
|
103122
|
+
403: {
|
|
102964
103123
|
headers: {
|
|
102965
103124
|
[name: string]: unknown;
|
|
102966
103125
|
};
|
|
@@ -102979,18 +103138,16 @@ export interface operations {
|
|
|
102979
103138
|
};
|
|
102980
103139
|
};
|
|
102981
103140
|
};
|
|
102982
|
-
|
|
103141
|
+
integration_sync_views_get_sync_store: {
|
|
102983
103142
|
parameters: {
|
|
102984
103143
|
query?: never;
|
|
102985
103144
|
header?: never;
|
|
102986
|
-
path
|
|
102987
|
-
|
|
102988
|
-
};
|
|
102989
|
-
requestBody: {
|
|
102990
|
-
content: {
|
|
102991
|
-
"application/json": components["schemas"]["SyncStoreCreateSchema"];
|
|
103145
|
+
path: {
|
|
103146
|
+
id: string;
|
|
102992
103147
|
};
|
|
103148
|
+
cookie?: never;
|
|
102993
103149
|
};
|
|
103150
|
+
requestBody?: never;
|
|
102994
103151
|
responses: {
|
|
102995
103152
|
/** @description OK */
|
|
102996
103153
|
200: {
|
|
@@ -103001,15 +103158,6 @@ export interface operations {
|
|
|
103001
103158
|
"application/json": components["schemas"]["SyncStoreSchema"];
|
|
103002
103159
|
};
|
|
103003
103160
|
};
|
|
103004
|
-
/** @description Bad Request */
|
|
103005
|
-
400: {
|
|
103006
|
-
headers: {
|
|
103007
|
-
[name: string]: unknown;
|
|
103008
|
-
};
|
|
103009
|
-
content: {
|
|
103010
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
103011
|
-
};
|
|
103012
|
-
};
|
|
103013
103161
|
/** @description Forbidden */
|
|
103014
103162
|
403: {
|
|
103015
103163
|
headers: {
|
|
@@ -103039,11 +103187,13 @@ export interface operations {
|
|
|
103039
103187
|
};
|
|
103040
103188
|
};
|
|
103041
103189
|
};
|
|
103042
|
-
|
|
103190
|
+
integration_sync_views_update_sync_store: {
|
|
103043
103191
|
parameters: {
|
|
103044
103192
|
query?: never;
|
|
103045
103193
|
header?: never;
|
|
103046
|
-
path
|
|
103194
|
+
path: {
|
|
103195
|
+
id: string;
|
|
103196
|
+
};
|
|
103047
103197
|
cookie?: never;
|
|
103048
103198
|
};
|
|
103049
103199
|
requestBody: {
|
|
@@ -103052,8 +103202,8 @@ export interface operations {
|
|
|
103052
103202
|
};
|
|
103053
103203
|
};
|
|
103054
103204
|
responses: {
|
|
103055
|
-
/** @description
|
|
103056
|
-
|
|
103205
|
+
/** @description OK */
|
|
103206
|
+
200: {
|
|
103057
103207
|
headers: {
|
|
103058
103208
|
[name: string]: unknown;
|
|
103059
103209
|
};
|
|
@@ -103079,6 +103229,15 @@ export interface operations {
|
|
|
103079
103229
|
"application/json": components["schemas"]["MessageResponse"];
|
|
103080
103230
|
};
|
|
103081
103231
|
};
|
|
103232
|
+
/** @description Not Found */
|
|
103233
|
+
404: {
|
|
103234
|
+
headers: {
|
|
103235
|
+
[name: string]: unknown;
|
|
103236
|
+
};
|
|
103237
|
+
content: {
|
|
103238
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
103239
|
+
};
|
|
103240
|
+
};
|
|
103082
103241
|
/** @description Internal Server Error */
|
|
103083
103242
|
500: {
|
|
103084
103243
|
headers: {
|
|
@@ -103094,7 +103253,9 @@ export interface operations {
|
|
|
103094
103253
|
parameters: {
|
|
103095
103254
|
query?: never;
|
|
103096
103255
|
header?: never;
|
|
103097
|
-
path
|
|
103256
|
+
path: {
|
|
103257
|
+
id: string;
|
|
103258
|
+
};
|
|
103098
103259
|
cookie?: never;
|
|
103099
103260
|
};
|
|
103100
103261
|
requestBody?: never;
|
|
@@ -103141,7 +103302,9 @@ export interface operations {
|
|
|
103141
103302
|
parameters: {
|
|
103142
103303
|
query?: never;
|
|
103143
103304
|
header?: never;
|
|
103144
|
-
path
|
|
103305
|
+
path: {
|
|
103306
|
+
id: string;
|
|
103307
|
+
};
|
|
103145
103308
|
cookie?: never;
|
|
103146
103309
|
};
|
|
103147
103310
|
requestBody: {
|
|
@@ -103197,7 +103360,7 @@ export interface operations {
|
|
|
103197
103360
|
};
|
|
103198
103361
|
};
|
|
103199
103362
|
};
|
|
103200
|
-
|
|
103363
|
+
integration_sync_views_list_sync_stores: {
|
|
103201
103364
|
parameters: {
|
|
103202
103365
|
query?: never;
|
|
103203
103366
|
header?: never;
|
|
@@ -103205,6 +103368,46 @@ export interface operations {
|
|
|
103205
103368
|
cookie?: never;
|
|
103206
103369
|
};
|
|
103207
103370
|
requestBody?: never;
|
|
103371
|
+
responses: {
|
|
103372
|
+
/** @description OK */
|
|
103373
|
+
200: {
|
|
103374
|
+
headers: {
|
|
103375
|
+
[name: string]: unknown;
|
|
103376
|
+
};
|
|
103377
|
+
content: {
|
|
103378
|
+
"application/json": components["schemas"]["SyncStoreSchema"][];
|
|
103379
|
+
};
|
|
103380
|
+
};
|
|
103381
|
+
/** @description Forbidden */
|
|
103382
|
+
403: {
|
|
103383
|
+
headers: {
|
|
103384
|
+
[name: string]: unknown;
|
|
103385
|
+
};
|
|
103386
|
+
content: {
|
|
103387
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
103388
|
+
};
|
|
103389
|
+
};
|
|
103390
|
+
/** @description Internal Server Error */
|
|
103391
|
+
500: {
|
|
103392
|
+
headers: {
|
|
103393
|
+
[name: string]: unknown;
|
|
103394
|
+
};
|
|
103395
|
+
content: {
|
|
103396
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
103397
|
+
};
|
|
103398
|
+
};
|
|
103399
|
+
};
|
|
103400
|
+
};
|
|
103401
|
+
integration_sync_views_test_sync_store_connection: {
|
|
103402
|
+
parameters: {
|
|
103403
|
+
query?: never;
|
|
103404
|
+
header?: never;
|
|
103405
|
+
path: {
|
|
103406
|
+
id: string;
|
|
103407
|
+
};
|
|
103408
|
+
cookie?: never;
|
|
103409
|
+
};
|
|
103410
|
+
requestBody?: never;
|
|
103208
103411
|
responses: {
|
|
103209
103412
|
/** @description OK */
|
|
103210
103413
|
200: {
|
|
@@ -103257,6 +103460,7 @@ export interface operations {
|
|
|
103257
103460
|
parameters: {
|
|
103258
103461
|
query?: {
|
|
103259
103462
|
forceUpdate?: boolean;
|
|
103463
|
+
storeId?: string | null;
|
|
103260
103464
|
};
|
|
103261
103465
|
header?: never;
|
|
103262
103466
|
path?: never;
|
|
@@ -103313,7 +103517,9 @@ export interface operations {
|
|
|
103313
103517
|
};
|
|
103314
103518
|
integration_sync_views_sync_single_item_endpoint: {
|
|
103315
103519
|
parameters: {
|
|
103316
|
-
query?:
|
|
103520
|
+
query?: {
|
|
103521
|
+
storeId?: string | null;
|
|
103522
|
+
};
|
|
103317
103523
|
header?: never;
|
|
103318
103524
|
path: {
|
|
103319
103525
|
id: number;
|
|
@@ -103371,7 +103577,9 @@ export interface operations {
|
|
|
103371
103577
|
};
|
|
103372
103578
|
integration_sync_views_sync_single_category_endpoint: {
|
|
103373
103579
|
parameters: {
|
|
103374
|
-
query?:
|
|
103580
|
+
query?: {
|
|
103581
|
+
storeId?: string | null;
|
|
103582
|
+
};
|
|
103375
103583
|
header?: never;
|
|
103376
103584
|
path: {
|
|
103377
103585
|
id: number;
|
|
@@ -103420,7 +103628,9 @@ export interface operations {
|
|
|
103420
103628
|
};
|
|
103421
103629
|
integration_sync_views_sync_all_categories_endpoint: {
|
|
103422
103630
|
parameters: {
|
|
103423
|
-
query?:
|
|
103631
|
+
query?: {
|
|
103632
|
+
storeId?: string | null;
|
|
103633
|
+
};
|
|
103424
103634
|
header?: never;
|
|
103425
103635
|
path?: never;
|
|
103426
103636
|
cookie?: never;
|
|
@@ -103436,6 +103646,15 @@ export interface operations {
|
|
|
103436
103646
|
"application/json": components["schemas"]["MessageResponse"];
|
|
103437
103647
|
};
|
|
103438
103648
|
};
|
|
103649
|
+
/** @description Bad Request */
|
|
103650
|
+
400: {
|
|
103651
|
+
headers: {
|
|
103652
|
+
[name: string]: unknown;
|
|
103653
|
+
};
|
|
103654
|
+
content: {
|
|
103655
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
103656
|
+
};
|
|
103657
|
+
};
|
|
103439
103658
|
/** @description Not Found */
|
|
103440
103659
|
404: {
|
|
103441
103660
|
headers: {
|
|
@@ -103458,7 +103677,9 @@ export interface operations {
|
|
|
103458
103677
|
};
|
|
103459
103678
|
integration_sync_views_sync_single_brand_endpoint: {
|
|
103460
103679
|
parameters: {
|
|
103461
|
-
query?:
|
|
103680
|
+
query?: {
|
|
103681
|
+
storeId?: string | null;
|
|
103682
|
+
};
|
|
103462
103683
|
header?: never;
|
|
103463
103684
|
path: {
|
|
103464
103685
|
id: number;
|
|
@@ -103507,7 +103728,9 @@ export interface operations {
|
|
|
103507
103728
|
};
|
|
103508
103729
|
integration_sync_views_sync_all_brands_endpoint: {
|
|
103509
103730
|
parameters: {
|
|
103510
|
-
query?:
|
|
103731
|
+
query?: {
|
|
103732
|
+
storeId?: string | null;
|
|
103733
|
+
};
|
|
103511
103734
|
header?: never;
|
|
103512
103735
|
path?: never;
|
|
103513
103736
|
cookie?: never;
|
|
@@ -103523,6 +103746,15 @@ export interface operations {
|
|
|
103523
103746
|
"application/json": components["schemas"]["MessageResponse"];
|
|
103524
103747
|
};
|
|
103525
103748
|
};
|
|
103749
|
+
/** @description Bad Request */
|
|
103750
|
+
400: {
|
|
103751
|
+
headers: {
|
|
103752
|
+
[name: string]: unknown;
|
|
103753
|
+
};
|
|
103754
|
+
content: {
|
|
103755
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
103756
|
+
};
|
|
103757
|
+
};
|
|
103526
103758
|
/** @description Not Found */
|
|
103527
103759
|
404: {
|
|
103528
103760
|
headers: {
|
|
@@ -103545,7 +103777,9 @@ export interface operations {
|
|
|
103545
103777
|
};
|
|
103546
103778
|
integration_sync_views_sync_single_tag_endpoint: {
|
|
103547
103779
|
parameters: {
|
|
103548
|
-
query?:
|
|
103780
|
+
query?: {
|
|
103781
|
+
storeId?: string | null;
|
|
103782
|
+
};
|
|
103549
103783
|
header?: never;
|
|
103550
103784
|
path: {
|
|
103551
103785
|
id: number;
|
|
@@ -103594,7 +103828,9 @@ export interface operations {
|
|
|
103594
103828
|
};
|
|
103595
103829
|
integration_sync_views_sync_all_tags_endpoint: {
|
|
103596
103830
|
parameters: {
|
|
103597
|
-
query?:
|
|
103831
|
+
query?: {
|
|
103832
|
+
storeId?: string | null;
|
|
103833
|
+
};
|
|
103598
103834
|
header?: never;
|
|
103599
103835
|
path?: never;
|
|
103600
103836
|
cookie?: never;
|
|
@@ -103610,6 +103846,15 @@ export interface operations {
|
|
|
103610
103846
|
"application/json": components["schemas"]["MessageResponse"];
|
|
103611
103847
|
};
|
|
103612
103848
|
};
|
|
103849
|
+
/** @description Bad Request */
|
|
103850
|
+
400: {
|
|
103851
|
+
headers: {
|
|
103852
|
+
[name: string]: unknown;
|
|
103853
|
+
};
|
|
103854
|
+
content: {
|
|
103855
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
103856
|
+
};
|
|
103857
|
+
};
|
|
103613
103858
|
/** @description Not Found */
|
|
103614
103859
|
404: {
|
|
103615
103860
|
headers: {
|
|
@@ -103632,7 +103877,9 @@ export interface operations {
|
|
|
103632
103877
|
};
|
|
103633
103878
|
integration_sync_views_sync_orders_endpoint: {
|
|
103634
103879
|
parameters: {
|
|
103635
|
-
query?:
|
|
103880
|
+
query?: {
|
|
103881
|
+
storeId?: string | null;
|
|
103882
|
+
};
|
|
103636
103883
|
header?: never;
|
|
103637
103884
|
path?: never;
|
|
103638
103885
|
cookie?: never;
|
|
@@ -103688,7 +103935,9 @@ export interface operations {
|
|
|
103688
103935
|
};
|
|
103689
103936
|
integration_sync_views_sync_customers_endpoint: {
|
|
103690
103937
|
parameters: {
|
|
103691
|
-
query?:
|
|
103938
|
+
query?: {
|
|
103939
|
+
storeId?: string | null;
|
|
103940
|
+
};
|
|
103692
103941
|
header?: never;
|
|
103693
103942
|
path?: never;
|
|
103694
103943
|
cookie?: never;
|
|
@@ -103745,6 +103994,8 @@ export interface operations {
|
|
|
103745
103994
|
integration_sync_views_list_orders: {
|
|
103746
103995
|
parameters: {
|
|
103747
103996
|
query?: {
|
|
103997
|
+
/** @description Restrict to orders from this active sync store (UUID). Omit to include orders from all active stores. */
|
|
103998
|
+
storeId?: string | null;
|
|
103748
103999
|
/** @description Page number */
|
|
103749
104000
|
page?: number;
|
|
103750
104001
|
/** @description Page size */
|
|
@@ -103798,7 +104049,10 @@ export interface operations {
|
|
|
103798
104049
|
};
|
|
103799
104050
|
integration_sync_views_get_order: {
|
|
103800
104051
|
parameters: {
|
|
103801
|
-
query?:
|
|
104052
|
+
query?: {
|
|
104053
|
+
/** @description Optional. When set, resolve the order only if it belongs to this active sync store (UUID). */
|
|
104054
|
+
storeId?: string | null;
|
|
104055
|
+
};
|
|
103802
104056
|
header?: never;
|
|
103803
104057
|
path: {
|
|
103804
104058
|
order_id: string;
|
|
@@ -103847,7 +104101,9 @@ export interface operations {
|
|
|
103847
104101
|
};
|
|
103848
104102
|
integration_sync_views_sync_single_customer_endpoint: {
|
|
103849
104103
|
parameters: {
|
|
103850
|
-
query?:
|
|
104104
|
+
query?: {
|
|
104105
|
+
storeId?: string | null;
|
|
104106
|
+
};
|
|
103851
104107
|
header?: never;
|
|
103852
104108
|
path: {
|
|
103853
104109
|
customer_id: number;
|