@erp-galoper/types 1.0.1258 → 1.0.1260

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 +46 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -20539,6 +20539,9 @@ export interface paths {
20539
20539
  * - 200: onlineStoreSettingUpdated
20540
20540
  * - 400: validationFailed
20541
20541
  * - platformRequired
20542
+ * - warehousesRequired
20543
+ * - defaultWarehouseRequired
20544
+ * - defaultWarehouseNotInWarehouses
20542
20545
  * - defaultWarehouseDoesNotExist
20543
20546
  * - defaultTaxDoesNotExist
20544
20547
  * - defaultCurrencyDoesNotExist
@@ -23961,6 +23964,18 @@ export interface components {
23961
23964
  * @default []
23962
23965
  */
23963
23966
  onlinestore: components["schemas"]["BasePermissionsSchema_Settings_Integrations_OnlinestoreEnum"][];
23967
+ /**
23968
+ * Whatsappintegration
23969
+ * @description whatsappintegration actions
23970
+ * @default []
23971
+ */
23972
+ whatsappintegration: components["schemas"]["BasePermissionsSchema_Settings_Integrations_WhatsappintegrationEnum"][];
23973
+ /**
23974
+ * Whatsapptemplate
23975
+ * @description whatsapptemplate actions
23976
+ * @default []
23977
+ */
23978
+ whatsapptemplate: components["schemas"]["BasePermissionsSchema_Settings_Integrations_WhatsapptemplateEnum"][];
23964
23979
  };
23965
23980
  /**
23966
23981
  * BasePermissionsSchema_Settings_Integrations_EmailsettingEnum
@@ -23982,6 +23997,16 @@ export interface components {
23982
23997
  * @enum {string}
23983
23998
  */
23984
23999
  BasePermissionsSchema_Settings_Integrations_OnlinestoresettingEnum: "add" | "change" | "view";
24000
+ /**
24001
+ * BasePermissionsSchema_Settings_Integrations_WhatsappintegrationEnum
24002
+ * @enum {string}
24003
+ */
24004
+ BasePermissionsSchema_Settings_Integrations_WhatsappintegrationEnum: "add" | "change" | "delete" | "view";
24005
+ /**
24006
+ * BasePermissionsSchema_Settings_Integrations_WhatsapptemplateEnum
24007
+ * @enum {string}
24008
+ */
24009
+ BasePermissionsSchema_Settings_Integrations_WhatsapptemplateEnum: "add" | "change" | "delete" | "view";
23985
24010
  /** BasePermissionsSchema_Settings_Inventory */
23986
24011
  BasePermissionsSchema_Settings_Inventory: {
23987
24012
  /**
@@ -26498,6 +26523,10 @@ export interface components {
26498
26523
  packages: components["schemas"]["CreateOrUpdatePackageItemSchema"][];
26499
26524
  /**
26500
26525
  * Children
26526
+ * @description List of variant items to create under this item template.
26527
+ * Fields that are filled in the item template will be automatically inherited by the variants.
26528
+ * The inherited values should be pre-populated in the variant form for the user to view.
26529
+ * based on fields to inherit from item variant settings (/api/v1/settings/inventory/item-variant-settings/)
26501
26530
  * @default []
26502
26531
  */
26503
26532
  children: components["schemas"]["CreateChildItemSchema"][];
@@ -54037,6 +54066,12 @@ export interface components {
54037
54066
  /** Autosyncinventory */
54038
54067
  autoSyncInventory: boolean;
54039
54068
  customerSourceOfTruth: components["schemas"]["CustomerSourceOfTruthSchema"];
54069
+ /**
54070
+ * Warehouses
54071
+ * @description Warehouses for online store inventory sync operations. Quantities will be synced from these warehouses, but effects will be on the default warehouse
54072
+ * @default []
54073
+ */
54074
+ warehouses: components["schemas"]["WarehouseSummaryInfo"][];
54040
54075
  defaultWarehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
54041
54076
  defaultTax: components["schemas"]["TaxSharedSchema"] | null;
54042
54077
  defaultCurrency: components["schemas"]["CurrencyCommonSchema"] | null;
@@ -54085,11 +54120,20 @@ export interface components {
54085
54120
  * @default galoper
54086
54121
  */
54087
54122
  customerSourceOfTruth: components["schemas"]["CustomerSourceOfTruthSchema"];
54123
+ /**
54124
+ * Warehouses
54125
+ * @description - List of warehouse IDs for online store inventory operations
54126
+ * - These warehouses will be used to sync quantities from several warehouses, but the effect will be on the default warehouse
54127
+ * - Get warehouses using route /api/v1/inventory/warehouses/
54128
+ */
54129
+ warehouses: number[];
54088
54130
  /**
54089
54131
  * Defaultwarehouse
54090
54132
  * @description - Default warehouse ID for online store inventory operations
54091
- * - required when use_online_shop is true, and should be null if use_online_shop is false
54092
- * - get warehouse using route /api/v1/inventory/warehouses/
54133
+ * - This warehouse will receive the inventory effects from online store operations
54134
+ * - Required when use_online_shop is true, and should be null if use_online_shop is false
54135
+ * - MUST be one of the warehouses specified in the warehouses field
54136
+ * - Get warehouse using route /api/v1/inventory/warehouses/
54093
54137
  */
54094
54138
  defaultWarehouse?: number;
54095
54139
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1258",
3
+ "version": "1.0.1260",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],