@erp-galoper/types 1.0.302 → 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.
Files changed (2) hide show
  1. package/openapi.ts +18 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -25450,6 +25450,19 @@ export interface components {
25450
25450
  /** Name */
25451
25451
  name: string;
25452
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
+ };
25453
25466
  /** SupplierForListSchema */
25454
25467
  SupplierForListSchema: {
25455
25468
  /**
@@ -25472,8 +25485,6 @@ export interface components {
25472
25485
  name: string;
25473
25486
  /** Company */
25474
25487
  company: string;
25475
- /** Balance */
25476
- balance: number;
25477
25488
  /** Phone */
25478
25489
  phone?: string | null;
25479
25490
  /**
@@ -25482,6 +25493,8 @@ export interface components {
25482
25493
  */
25483
25494
  attachments: string[];
25484
25495
  group: components["schemas"]["ContactSegmentationSharedSchema"];
25496
+ /** Children */
25497
+ children: components["schemas"]["SupplierChildDetailSchema"][];
25485
25498
  };
25486
25499
  /** SupplierListSchema */
25487
25500
  SupplierListSchema: {
@@ -25663,6 +25676,8 @@ export interface components {
25663
25676
  */
25664
25677
  attachments: string[];
25665
25678
  group: components["schemas"]["ContactSegmentationSharedSchema"];
25679
+ /** Children */
25680
+ children: components["schemas"]["SupplierChildDetailSchema"][];
25666
25681
  };
25667
25682
  /** ChangeSupplierBankSchema */
25668
25683
  ChangeSupplierBankSchema: {
@@ -26646,7 +26661,7 @@ export interface components {
26646
26661
  /**
26647
26662
  * Id
26648
26663
  * Format: uuid
26649
- * @example 4ef39177-7a2f-436a-bf4c-583381a842aa
26664
+ * @example 0d5bf932-eb95-46f5-98d5-0b3a6236c34f
26650
26665
  */
26651
26666
  id: string;
26652
26667
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.302",
3
+ "version": "1.0.303",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],