@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.
Files changed (2) hide show
  1. package/openapi.ts +12 -5
  2. 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 f9a7069a-f2a4-442d-98db-d42eec10f093
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"]["BranchSummaryInfo"] | null;
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"]["BranchSummaryInfo"] | null;
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"]["BranchSummaryInfo"] | null;
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"]["BranchSummaryInfo"] | null;
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. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.99",
3
+ "version": "1.0.100",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],