@erp-galoper/types 1.0.99 → 1.0.100
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 +12 -5
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26481,7 +26481,7 @@ export interface components {
|
|
|
26481
26481
|
/**
|
|
26482
26482
|
* Id
|
|
26483
26483
|
* Format: uuid
|
|
26484
|
-
* @example
|
|
26484
|
+
* @example ac268125-2068-4efb-9f29-a6c97ccdb7c9
|
|
26485
26485
|
*/
|
|
26486
26486
|
id: string;
|
|
26487
26487
|
/**
|
|
@@ -36576,6 +36576,13 @@ export interface components {
|
|
|
36576
36576
|
commissionValue: number;
|
|
36577
36577
|
currency: components["schemas"]["CurrencySummaryInfo"] | null;
|
|
36578
36578
|
};
|
|
36579
|
+
/** CustomerBranchSharedSchema */
|
|
36580
|
+
CustomerBranchSharedSchema: {
|
|
36581
|
+
/** Id */
|
|
36582
|
+
id: number;
|
|
36583
|
+
/** Name */
|
|
36584
|
+
name: string;
|
|
36585
|
+
};
|
|
36579
36586
|
/**
|
|
36580
36587
|
* NonInventoryItemType
|
|
36581
36588
|
* @enum {string}
|
|
@@ -36772,7 +36779,7 @@ export interface components {
|
|
|
36772
36779
|
/** Serialnumber */
|
|
36773
36780
|
serialNumber: string;
|
|
36774
36781
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
36775
|
-
customerBranch?: components["schemas"]["
|
|
36782
|
+
customerBranch?: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
36776
36783
|
/**
|
|
36777
36784
|
* Date
|
|
36778
36785
|
* Format: date
|
|
@@ -37143,7 +37150,7 @@ export interface components {
|
|
|
37143
37150
|
/** Serialnumber */
|
|
37144
37151
|
serialNumber: string;
|
|
37145
37152
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
37146
|
-
customerBranch?: components["schemas"]["
|
|
37153
|
+
customerBranch?: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
37147
37154
|
/**
|
|
37148
37155
|
* Date
|
|
37149
37156
|
* Format: date
|
|
@@ -38775,7 +38782,7 @@ export interface components {
|
|
|
38775
38782
|
serialNumber: string;
|
|
38776
38783
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
38777
38784
|
/** @description Details about the customer's branch. */
|
|
38778
|
-
customerBranch: components["schemas"]["
|
|
38785
|
+
customerBranch: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
38779
38786
|
/** @description Details about the warehouse where the order is managed, if applicable. */
|
|
38780
38787
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
38781
38788
|
/** @description The sales quotation linked to this order, if applicable. */
|
|
@@ -40208,7 +40215,7 @@ export interface components {
|
|
|
40208
40215
|
serialNumber: string;
|
|
40209
40216
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
40210
40217
|
/** @description Details about the customer's branch. */
|
|
40211
|
-
customerBranch: components["schemas"]["
|
|
40218
|
+
customerBranch: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
40212
40219
|
/** @description Details about the warehouse where the invoice is managed, if applicable. */
|
|
40213
40220
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
40214
40221
|
/** @description The sales order linked to this invoice, if applicable. */
|