@erp-galoper/types 1.0.300 → 1.0.302
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 +18 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -24547,6 +24547,19 @@ export interface components {
|
|
|
24547
24547
|
/** Code */
|
|
24548
24548
|
code?: string | null;
|
|
24549
24549
|
};
|
|
24550
|
+
/** CustomerChildDetailSchema */
|
|
24551
|
+
CustomerChildDetailSchema: {
|
|
24552
|
+
/** Id */
|
|
24553
|
+
id: number;
|
|
24554
|
+
/** Accountnumber */
|
|
24555
|
+
accountNumber: string;
|
|
24556
|
+
/** Balance */
|
|
24557
|
+
balance: number;
|
|
24558
|
+
/** Companybalance */
|
|
24559
|
+
companyBalance: number;
|
|
24560
|
+
/** Secondarybalance */
|
|
24561
|
+
secondaryBalance: number;
|
|
24562
|
+
};
|
|
24550
24563
|
/** CustomerForListSchema */
|
|
24551
24564
|
CustomerForListSchema: {
|
|
24552
24565
|
/** Isactive */
|
|
@@ -24558,8 +24571,6 @@ export interface components {
|
|
|
24558
24571
|
/** Name */
|
|
24559
24572
|
name: string;
|
|
24560
24573
|
type: components["schemas"]["TypeOfCustomer"];
|
|
24561
|
-
/** Balance */
|
|
24562
|
-
balance: number;
|
|
24563
24574
|
/** Phone */
|
|
24564
24575
|
phone?: string | null;
|
|
24565
24576
|
group: components["schemas"]["CustomerGroupInfoSchema"];
|
|
@@ -24570,6 +24581,8 @@ export interface components {
|
|
|
24570
24581
|
attachments: string[];
|
|
24571
24582
|
/** Currencies */
|
|
24572
24583
|
currencies: components["schemas"]["CommonCurrency"][];
|
|
24584
|
+
/** Children */
|
|
24585
|
+
children: components["schemas"]["CustomerChildDetailSchema"][];
|
|
24573
24586
|
};
|
|
24574
24587
|
/** CustomerGroupInfoSchema */
|
|
24575
24588
|
CustomerGroupInfoSchema: {
|
|
@@ -25409,6 +25422,8 @@ export interface components {
|
|
|
25409
25422
|
attachments: string[];
|
|
25410
25423
|
type: components["schemas"]["TypeOfCustomerValue"];
|
|
25411
25424
|
group: components["schemas"]["CustomerGroupInfoSchema"];
|
|
25425
|
+
/** Children */
|
|
25426
|
+
children: components["schemas"]["CustomerChildDetailSchema"][];
|
|
25412
25427
|
};
|
|
25413
25428
|
/**
|
|
25414
25429
|
* TypeOfCustomerValue
|
|
@@ -26631,7 +26646,7 @@ export interface components {
|
|
|
26631
26646
|
/**
|
|
26632
26647
|
* Id
|
|
26633
26648
|
* Format: uuid
|
|
26634
|
-
* @example
|
|
26649
|
+
* @example 4ef39177-7a2f-436a-bf4c-583381a842aa
|
|
26635
26650
|
*/
|
|
26636
26651
|
id: string;
|
|
26637
26652
|
/**
|