@erp-galoper/types 1.0.1521 → 1.0.1523

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.
Files changed (2) hide show
  1. package/openapi.ts +20 -2
  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. **Note: This endpoint only works for WooCommerce stores.** Categories are synced one-way from ERP to WooCommerce, including parent category hierarchy.
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. **Note: This endpoint only works for WooCommerce stores.** Categories are synced one-way from ERP to WooCommerce, including parent category hierarchy.
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;
@@ -60408,6 +60408,15 @@ export interface operations {
60408
60408
  "application/json": components["schemas"]["MessageResponse"];
60409
60409
  };
60410
60410
  };
60411
+ /** @description Not Found */
60412
+ 404: {
60413
+ headers: {
60414
+ [name: string]: unknown;
60415
+ };
60416
+ content: {
60417
+ "application/json": components["schemas"]["MessageResponse"];
60418
+ };
60419
+ };
60411
60420
  /** @description Internal Server Error */
60412
60421
  500: {
60413
60422
  headers: {
@@ -99233,6 +99242,15 @@ export interface operations {
99233
99242
  "application/json": components["schemas"]["MessageResponse"];
99234
99243
  };
99235
99244
  };
99245
+ /** @description Internal Server Error */
99246
+ 500: {
99247
+ headers: {
99248
+ [name: string]: unknown;
99249
+ };
99250
+ content: {
99251
+ "application/json": components["schemas"]["MessageResponse"];
99252
+ };
99253
+ };
99236
99254
  };
99237
99255
  };
99238
99256
  integration_sync_views_get_sync_store: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1521",
3
+ "version": "1.0.1523",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],