@erp-galoper/types 1.0.613 → 1.0.615
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 +9 -11
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -25470,8 +25470,10 @@ export interface components {
|
|
|
25470
25470
|
/** Email */
|
|
25471
25471
|
email: string | null;
|
|
25472
25472
|
type: components["schemas"]["TypeOfCustomer"];
|
|
25473
|
-
/**
|
|
25474
|
-
|
|
25473
|
+
/** Phone1 */
|
|
25474
|
+
phone1?: string | null;
|
|
25475
|
+
/** Phone2 */
|
|
25476
|
+
phone2?: string | null;
|
|
25475
25477
|
group: components["schemas"]["CustomerGroupInfoSchema"];
|
|
25476
25478
|
/**
|
|
25477
25479
|
* Attachments
|
|
@@ -27218,8 +27220,10 @@ export interface components {
|
|
|
27218
27220
|
lastName?: string | null;
|
|
27219
27221
|
/** Company */
|
|
27220
27222
|
company?: string | null;
|
|
27221
|
-
/**
|
|
27222
|
-
|
|
27223
|
+
/** Phone1 */
|
|
27224
|
+
phone1?: string | null;
|
|
27225
|
+
/** Phone2 */
|
|
27226
|
+
phone2?: string | null;
|
|
27223
27227
|
};
|
|
27224
27228
|
/** InvoiceSchema */
|
|
27225
27229
|
InvoiceSchema: {
|
|
@@ -27555,7 +27559,7 @@ export interface components {
|
|
|
27555
27559
|
/**
|
|
27556
27560
|
* Id
|
|
27557
27561
|
* Format: uuid
|
|
27558
|
-
* @example
|
|
27562
|
+
* @example fe95b1cb-9921-4463-8738-ff753ad6ac49
|
|
27559
27563
|
*/
|
|
27560
27564
|
id: string;
|
|
27561
27565
|
/**
|
|
@@ -42674,8 +42678,6 @@ export interface components {
|
|
|
42674
42678
|
* Format: uuid
|
|
42675
42679
|
* @description
|
|
42676
42680
|
* - sales invoice id ,
|
|
42677
|
-
* Visibility and Requirement:
|
|
42678
|
-
* - Required and visible if payment method is Bank Transfer
|
|
42679
42681
|
* API Endpoints for Sales Invoice Retrieval:
|
|
42680
42682
|
* - Use the API: /api/v1/sales/invoices/?type=receiptVoucher&customer={customer-id}
|
|
42681
42683
|
*/
|
|
@@ -42957,8 +42959,6 @@ export interface components {
|
|
|
42957
42959
|
* Format: uuid
|
|
42958
42960
|
* @description
|
|
42959
42961
|
* - sales invoice id ,
|
|
42960
|
-
* Visibility and Requirement:
|
|
42961
|
-
* - Required and visible if payment method is Bank Transfer
|
|
42962
42962
|
* API Endpoints for Sales Invoice Retrieval:
|
|
42963
42963
|
* - Use the API: /api/v1/sales/invoices/?type=receiptVoucher&customer={customer-id}
|
|
42964
42964
|
*/
|
|
@@ -43113,8 +43113,6 @@ export interface components {
|
|
|
43113
43113
|
* Format: uuid
|
|
43114
43114
|
* @description
|
|
43115
43115
|
* - sales invoice id ,
|
|
43116
|
-
* Visibility and Requirement:
|
|
43117
|
-
* - Required and visible if payment method is Bank Transfer
|
|
43118
43116
|
* API Endpoints for Sales Invoice Retrieval:
|
|
43119
43117
|
* - Use the API: /api/v1/sales/invoices/?type=receiptVoucher&customer={customer-id}
|
|
43120
43118
|
*/
|