@erp-galoper/types 1.0.1259 → 1.0.1261

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 +41 -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
@@ -21091,6 +21094,9 @@ export interface paths {
21091
21094
  * Possible Responses:
21092
21095
  * - 200:
21093
21096
  * - RetrieveNotificationSetting
21097
+ * -403:
21098
+ * - userSettingsNotFound
21099
+ * - noModuleAccess
21094
21100
  * - 404:
21095
21101
  * - notificationSettingDoesNotExist
21096
21102
  * - 500:
@@ -21105,6 +21111,9 @@ export interface paths {
21105
21111
  * - RetrieveNotificationSetting
21106
21112
  * - 400:
21107
21113
  * - ValidationError
21114
+ * -403:
21115
+ * - userSettingsNotFound
21116
+ * - noModuleAccess
21108
21117
  * - 404:
21109
21118
  * - notificationSettingDoesNotExist
21110
21119
  * - 500:
@@ -21135,6 +21144,9 @@ export interface paths {
21135
21144
  * - 400:
21136
21145
  * - invalidFilterFormat
21137
21146
  * - paginationError
21147
+ * -403:
21148
+ * - userSettingsNotFound
21149
+ * - noModuleAccess
21138
21150
  * - 500:
21139
21151
  * - internalServerError
21140
21152
  */
@@ -21197,6 +21209,9 @@ export interface paths {
21197
21209
  * - 400:
21198
21210
  * - invalidFilterFormat
21199
21211
  * - paginationError
21212
+ * -403:
21213
+ * - userSettingsNotFound
21214
+ * - noModuleAccess
21200
21215
  * - 500:
21201
21216
  * - internalServerError
21202
21217
  */
@@ -21231,6 +21246,9 @@ export interface paths {
21231
21246
  * - RetrieveNotificationRecipient
21232
21247
  * - 400:
21233
21248
  * - ValidationError
21249
+ * -403:
21250
+ * - userSettingsNotFound
21251
+ * - noModuleAccess
21234
21252
  * - 404:
21235
21253
  * - NotificationDoesNotExist
21236
21254
  * - 500:
@@ -21256,6 +21274,9 @@ export interface paths {
21256
21274
  * - MessageResponse
21257
21275
  * - 400:
21258
21276
  * - ValidationError
21277
+ * -403:
21278
+ * - userSettingsNotFound
21279
+ * - noModuleAccess
21259
21280
  * - 404:
21260
21281
  * - NotificationDoesNotExist
21261
21282
  * - 500:
@@ -21283,6 +21304,9 @@ export interface paths {
21283
21304
  * Possible Responses:
21284
21305
  * - 200:
21285
21306
  * - RetrieveNotificationRecipient
21307
+ * -403:
21308
+ * - userSettingsNotFound
21309
+ * - noModuleAccess
21286
21310
  * - 404:
21287
21311
  * - notificationDoesNotExist
21288
21312
  * - 500:
@@ -54063,6 +54087,12 @@ export interface components {
54063
54087
  /** Autosyncinventory */
54064
54088
  autoSyncInventory: boolean;
54065
54089
  customerSourceOfTruth: components["schemas"]["CustomerSourceOfTruthSchema"];
54090
+ /**
54091
+ * Warehouses
54092
+ * @description Warehouses for online store inventory sync operations. Quantities will be synced from these warehouses, but effects will be on the default warehouse
54093
+ * @default []
54094
+ */
54095
+ warehouses: components["schemas"]["WarehouseSummaryInfo"][];
54066
54096
  defaultWarehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
54067
54097
  defaultTax: components["schemas"]["TaxSharedSchema"] | null;
54068
54098
  defaultCurrency: components["schemas"]["CurrencyCommonSchema"] | null;
@@ -54111,11 +54141,20 @@ export interface components {
54111
54141
  * @default galoper
54112
54142
  */
54113
54143
  customerSourceOfTruth: components["schemas"]["CustomerSourceOfTruthSchema"];
54144
+ /**
54145
+ * Warehouses
54146
+ * @description - List of warehouse IDs for online store inventory operations
54147
+ * - These warehouses will be used to sync quantities from several warehouses, but the effect will be on the default warehouse
54148
+ * - Get warehouses using route /api/v1/inventory/warehouses/
54149
+ */
54150
+ warehouses: number[];
54114
54151
  /**
54115
54152
  * Defaultwarehouse
54116
54153
  * @description - Default warehouse ID for online store inventory operations
54117
- * - required when use_online_shop is true, and should be null if use_online_shop is false
54118
- * - get warehouse using route /api/v1/inventory/warehouses/
54154
+ * - This warehouse will receive the inventory effects from online store operations
54155
+ * - Required when use_online_shop is true, and should be null if use_online_shop is false
54156
+ * - MUST be one of the warehouses specified in the warehouses field
54157
+ * - Get warehouse using route /api/v1/inventory/warehouses/
54119
54158
  */
54120
54159
  defaultWarehouse?: number;
54121
54160
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1259",
3
+ "version": "1.0.1261",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],