@erp-galoper/types 1.0.301 → 1.0.303
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 +35 -5
- 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
|
|
@@ -25435,6 +25450,19 @@ export interface components {
|
|
|
25435
25450
|
/** Name */
|
|
25436
25451
|
name: string;
|
|
25437
25452
|
};
|
|
25453
|
+
/** SupplierChildDetailSchema */
|
|
25454
|
+
SupplierChildDetailSchema: {
|
|
25455
|
+
/** Id */
|
|
25456
|
+
id: number;
|
|
25457
|
+
/** Accountnumber */
|
|
25458
|
+
accountNumber: string;
|
|
25459
|
+
/** Balance */
|
|
25460
|
+
balance: number;
|
|
25461
|
+
/** Companybalance */
|
|
25462
|
+
companyBalance: number;
|
|
25463
|
+
/** Secondarybalance */
|
|
25464
|
+
secondaryBalance: number;
|
|
25465
|
+
};
|
|
25438
25466
|
/** SupplierForListSchema */
|
|
25439
25467
|
SupplierForListSchema: {
|
|
25440
25468
|
/**
|
|
@@ -25457,8 +25485,6 @@ export interface components {
|
|
|
25457
25485
|
name: string;
|
|
25458
25486
|
/** Company */
|
|
25459
25487
|
company: string;
|
|
25460
|
-
/** Balance */
|
|
25461
|
-
balance: number;
|
|
25462
25488
|
/** Phone */
|
|
25463
25489
|
phone?: string | null;
|
|
25464
25490
|
/**
|
|
@@ -25467,6 +25493,8 @@ export interface components {
|
|
|
25467
25493
|
*/
|
|
25468
25494
|
attachments: string[];
|
|
25469
25495
|
group: components["schemas"]["ContactSegmentationSharedSchema"];
|
|
25496
|
+
/** Children */
|
|
25497
|
+
children: components["schemas"]["SupplierChildDetailSchema"][];
|
|
25470
25498
|
};
|
|
25471
25499
|
/** SupplierListSchema */
|
|
25472
25500
|
SupplierListSchema: {
|
|
@@ -25648,6 +25676,8 @@ export interface components {
|
|
|
25648
25676
|
*/
|
|
25649
25677
|
attachments: string[];
|
|
25650
25678
|
group: components["schemas"]["ContactSegmentationSharedSchema"];
|
|
25679
|
+
/** Children */
|
|
25680
|
+
children: components["schemas"]["SupplierChildDetailSchema"][];
|
|
25651
25681
|
};
|
|
25652
25682
|
/** ChangeSupplierBankSchema */
|
|
25653
25683
|
ChangeSupplierBankSchema: {
|
|
@@ -26631,7 +26661,7 @@ export interface components {
|
|
|
26631
26661
|
/**
|
|
26632
26662
|
* Id
|
|
26633
26663
|
* Format: uuid
|
|
26634
|
-
* @example
|
|
26664
|
+
* @example 0d5bf932-eb95-46f5-98d5-0b3a6236c34f
|
|
26635
26665
|
*/
|
|
26636
26666
|
id: string;
|
|
26637
26667
|
/**
|