@erp-galoper/types 1.0.1916 → 1.0.1917
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 +13 -10
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -753,7 +753,7 @@ export interface paths {
|
|
|
753
753
|
* Example:
|
|
754
754
|
* [
|
|
755
755
|
* {
|
|
756
|
-
* "id":
|
|
756
|
+
* "id": "3ff083f2-391d-4cb6-9071-476d3b1f5786",
|
|
757
757
|
* "shortName": "Prod A",
|
|
758
758
|
* "skuCode": "SKU-001",
|
|
759
759
|
* "purchasePrice": 10,
|
|
@@ -28424,20 +28424,20 @@ export interface components {
|
|
|
28424
28424
|
/** Active */
|
|
28425
28425
|
active?: boolean | null;
|
|
28426
28426
|
/** Family */
|
|
28427
|
-
family?:
|
|
28427
|
+
family?: string | null;
|
|
28428
28428
|
/** Brand */
|
|
28429
|
-
brand?:
|
|
28429
|
+
brand?: string | null;
|
|
28430
28430
|
/**
|
|
28431
28431
|
* Categories
|
|
28432
28432
|
* @description get categories from api/v1/inventory/categories/?type=item
|
|
28433
28433
|
* @default []
|
|
28434
28434
|
*/
|
|
28435
|
-
categories:
|
|
28435
|
+
categories: string[];
|
|
28436
28436
|
/**
|
|
28437
28437
|
* Tags
|
|
28438
28438
|
* @default []
|
|
28439
28439
|
*/
|
|
28440
|
-
tags:
|
|
28440
|
+
tags: string[] | null;
|
|
28441
28441
|
/**
|
|
28442
28442
|
* Specs
|
|
28443
28443
|
* @default []
|
|
@@ -28447,7 +28447,7 @@ export interface components {
|
|
|
28447
28447
|
* Taxes
|
|
28448
28448
|
* @default []
|
|
28449
28449
|
*/
|
|
28450
|
-
taxes:
|
|
28450
|
+
taxes: string[];
|
|
28451
28451
|
/** Transactionalgroup */
|
|
28452
28452
|
transactionalGroup?: number | null;
|
|
28453
28453
|
/** Allowsales */
|
|
@@ -28457,11 +28457,11 @@ export interface components {
|
|
|
28457
28457
|
/** Defaultsellingprice */
|
|
28458
28458
|
defaultSellingPrice?: number | null;
|
|
28459
28459
|
/** Defaultsellingpricecurrency */
|
|
28460
|
-
defaultSellingPriceCurrency?:
|
|
28460
|
+
defaultSellingPriceCurrency?: string | null;
|
|
28461
28461
|
/** Purchaseprice */
|
|
28462
28462
|
purchasePrice?: number | null;
|
|
28463
28463
|
/** Defaultpurchasepricecurrency */
|
|
28464
|
-
defaultPurchasePriceCurrency?:
|
|
28464
|
+
defaultPurchasePriceCurrency?: string | null;
|
|
28465
28465
|
/** Minimumquantityorder */
|
|
28466
28466
|
minimumQuantityOrder?: number | null;
|
|
28467
28467
|
/** Isexchangeable */
|
|
@@ -28485,8 +28485,11 @@ export interface components {
|
|
|
28485
28485
|
* @description Cannot be enabled for items tracked by serial number or batch
|
|
28486
28486
|
*/
|
|
28487
28487
|
allowNegativeStock?: boolean | null;
|
|
28488
|
-
/**
|
|
28489
|
-
|
|
28488
|
+
/**
|
|
28489
|
+
* Id
|
|
28490
|
+
* Format: uuid
|
|
28491
|
+
*/
|
|
28492
|
+
id: string;
|
|
28490
28493
|
};
|
|
28491
28494
|
/** UpdateBarcodeSchema */
|
|
28492
28495
|
UpdateBarcodeSchema: {
|