@erp-galoper/types 1.0.503 → 1.0.505
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 +17 -1
- 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
|
|
26951
|
+
* @example 0fe99e21-1dbf-4fc2-925b-6ae5775c9707
|
|
26938
26952
|
*/
|
|
26939
26953
|
id: string;
|
|
26940
26954
|
/**
|
|
@@ -44403,6 +44417,8 @@ export interface components {
|
|
|
44403
44417
|
downPayment: components["schemas"]["DownPaymentDetailInRefundVoucher"] | null;
|
|
44404
44418
|
refundReturnInvoice: components["schemas"]["DocumentCommonSchema"] | null;
|
|
44405
44419
|
returnReturnablePackage: components["schemas"]["DocumentCommonSchema"] | null;
|
|
44420
|
+
/** @description visible when project module is active */
|
|
44421
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
44406
44422
|
};
|
|
44407
44423
|
/** SalesRefundVoucherResponse */
|
|
44408
44424
|
SalesRefundVoucherResponse: {
|