@erp-galoper/types 1.0.504 → 1.0.506

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 +15 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -24890,6 +24890,11 @@ export interface components {
24890
24890
  currencies: components["schemas"]["CommonCurrency"][];
24891
24891
  /** Children */
24892
24892
  children: components["schemas"]["CustomerChildDetailSchema"][];
24893
+ /**
24894
+ * Companyregistrationnumber
24895
+ * @description visible when customer type is company
24896
+ */
24897
+ companyRegistrationNumber: string | null;
24893
24898
  };
24894
24899
  /** CustomerGroupInfoSchema */
24895
24900
  CustomerGroupInfoSchema: {
@@ -25410,6 +25415,8 @@ export interface components {
25410
25415
  * @default []
25411
25416
  */
25412
25417
  attachments: string[];
25418
+ /** Companyregistrationnumber */
25419
+ companyRegistrationNumber?: string;
25413
25420
  };
25414
25421
  /** CreateCustomerBranchSchema */
25415
25422
  CreateCustomerBranchSchema: {
@@ -25629,6 +25636,8 @@ export interface components {
25629
25636
  * @default []
25630
25637
  */
25631
25638
  attachments: string[];
25639
+ /** Companyregistrationnumber */
25640
+ companyRegistrationNumber?: string;
25632
25641
  };
25633
25642
  /** CustomerSchema */
25634
25643
  CustomerSchema: {
@@ -25704,6 +25713,11 @@ export interface components {
25704
25713
  group: components["schemas"]["CustomerGroupInfoSchema"];
25705
25714
  /** Children */
25706
25715
  children: components["schemas"]["CustomerChildDetailSchema"][];
25716
+ /**
25717
+ * Companyregistrationnumber
25718
+ * @description visible when customer type is company
25719
+ */
25720
+ companyRegistrationNumber: string | null;
25707
25721
  };
25708
25722
  /**
25709
25723
  * TypeOfCustomerValue
@@ -26934,7 +26948,7 @@ export interface components {
26934
26948
  /**
26935
26949
  * Id
26936
26950
  * Format: uuid
26937
- * @example 2f2c58ae-e2fe-463a-b0b3-9dec060a4fc9
26951
+ * @example d47355c1-688d-404b-b9af-528635a0266a
26938
26952
  */
26939
26953
  id: string;
26940
26954
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.504",
3
+ "version": "1.0.506",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],