@erp-galoper/types 1.0.1520 → 1.0.1522
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 +11 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -21099,7 +21099,7 @@ export interface paths {
|
|
|
21099
21099
|
put?: never;
|
|
21100
21100
|
/**
|
|
21101
21101
|
* Manually sync a single category to WooCommerce
|
|
21102
|
-
* @description Triggers background sync of a specific ERP category to WooCommerce.
|
|
21102
|
+
* @description Triggers background sync of a specific ERP category to WooCommerce. Syncs from the root parent down to ensure proper hierarchy.
|
|
21103
21103
|
*/
|
|
21104
21104
|
post: operations["integration_sync_views_sync_single_category_endpoint"];
|
|
21105
21105
|
delete?: never;
|
|
@@ -21119,7 +21119,7 @@ export interface paths {
|
|
|
21119
21119
|
put?: never;
|
|
21120
21120
|
/**
|
|
21121
21121
|
* Manually sync all categories to WooCommerce
|
|
21122
|
-
* @description Triggers background sync of all ERP categories to WooCommerce.
|
|
21122
|
+
* @description Triggers background sync of all ERP root categories to WooCommerce. Children are synced automatically with their parents.
|
|
21123
21123
|
*/
|
|
21124
21124
|
post: operations["integration_sync_views_sync_all_categories_endpoint"];
|
|
21125
21125
|
delete?: never;
|
|
@@ -99233,6 +99233,15 @@ export interface operations {
|
|
|
99233
99233
|
"application/json": components["schemas"]["MessageResponse"];
|
|
99234
99234
|
};
|
|
99235
99235
|
};
|
|
99236
|
+
/** @description Internal Server Error */
|
|
99237
|
+
500: {
|
|
99238
|
+
headers: {
|
|
99239
|
+
[name: string]: unknown;
|
|
99240
|
+
};
|
|
99241
|
+
content: {
|
|
99242
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
99243
|
+
};
|
|
99244
|
+
};
|
|
99236
99245
|
};
|
|
99237
99246
|
};
|
|
99238
99247
|
integration_sync_views_get_sync_store: {
|