@erp-galoper/types 1.0.612 → 1.0.614
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 -7
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -25470,8 +25470,10 @@ export interface components {
|
|
|
25470
25470
|
/** Email */
|
|
25471
25471
|
email: string | null;
|
|
25472
25472
|
type: components["schemas"]["TypeOfCustomer"];
|
|
25473
|
-
/**
|
|
25474
|
-
|
|
25473
|
+
/** Phone1 */
|
|
25474
|
+
phone1?: string | null;
|
|
25475
|
+
/** Phone2 */
|
|
25476
|
+
phone2?: string | null;
|
|
25475
25477
|
group: components["schemas"]["CustomerGroupInfoSchema"];
|
|
25476
25478
|
/**
|
|
25477
25479
|
* Attachments
|
|
@@ -26380,8 +26382,10 @@ export interface components {
|
|
|
26380
26382
|
email: string | null;
|
|
26381
26383
|
/** Company */
|
|
26382
26384
|
company: string;
|
|
26383
|
-
/**
|
|
26384
|
-
|
|
26385
|
+
/** Phone1 */
|
|
26386
|
+
phone1?: string | null;
|
|
26387
|
+
/** Phone2 */
|
|
26388
|
+
phone2?: string | null;
|
|
26385
26389
|
/**
|
|
26386
26390
|
* Attachments
|
|
26387
26391
|
* @default []
|
|
@@ -27216,8 +27220,10 @@ export interface components {
|
|
|
27216
27220
|
lastName?: string | null;
|
|
27217
27221
|
/** Company */
|
|
27218
27222
|
company?: string | null;
|
|
27219
|
-
/**
|
|
27220
|
-
|
|
27223
|
+
/** Phone1 */
|
|
27224
|
+
phone1?: string | null;
|
|
27225
|
+
/** Phone2 */
|
|
27226
|
+
phone2?: string | null;
|
|
27221
27227
|
};
|
|
27222
27228
|
/** InvoiceSchema */
|
|
27223
27229
|
InvoiceSchema: {
|
|
@@ -27553,7 +27559,7 @@ export interface components {
|
|
|
27553
27559
|
/**
|
|
27554
27560
|
* Id
|
|
27555
27561
|
* Format: uuid
|
|
27556
|
-
* @example
|
|
27562
|
+
* @example e7b5d37a-6771-4fb9-9ae6-92af898b0e01
|
|
27557
27563
|
*/
|
|
27558
27564
|
id: string;
|
|
27559
27565
|
/**
|