@erp-galoper/types 1.0.662 → 1.0.664
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 +18 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -27544,7 +27544,7 @@ export interface components {
|
|
|
27544
27544
|
/**
|
|
27545
27545
|
* Id
|
|
27546
27546
|
* Format: uuid
|
|
27547
|
-
* @example
|
|
27547
|
+
* @example c7d28522-b02d-421a-b70e-e26c03c24072
|
|
27548
27548
|
*/
|
|
27549
27549
|
id: string;
|
|
27550
27550
|
/**
|
|
@@ -41056,7 +41056,7 @@ export interface components {
|
|
|
41056
41056
|
*/
|
|
41057
41057
|
id: string;
|
|
41058
41058
|
paymentMethod: components["schemas"]["PaymentMethodSharedSchema"];
|
|
41059
|
-
account: components["schemas"]["AccountSummaryInfo"];
|
|
41059
|
+
account: components["schemas"]["AccountSummaryInfo"] | null;
|
|
41060
41060
|
customerBankAccount: components["schemas"]["BankAccountsSharedSchema"] | null;
|
|
41061
41061
|
/** Duedate */
|
|
41062
41062
|
dueDate: string | null;
|
|
@@ -41117,6 +41117,8 @@ export interface components {
|
|
|
41117
41117
|
/** Serialnumber */
|
|
41118
41118
|
serialNumber: string;
|
|
41119
41119
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
41120
|
+
/** @description Details about the customer's branch. */
|
|
41121
|
+
customerBranch: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
41120
41122
|
branch: components["schemas"]["BranchSummaryInfo"];
|
|
41121
41123
|
/**
|
|
41122
41124
|
* Date
|
|
@@ -41164,6 +41166,11 @@ export interface components {
|
|
|
41164
41166
|
* - Use the API: /api/v1/customers/?documentType=downPayment
|
|
41165
41167
|
*/
|
|
41166
41168
|
customer: number;
|
|
41169
|
+
/**
|
|
41170
|
+
* Customerbranch
|
|
41171
|
+
* @description This field is required when the customer is a company, set default value from the data of selected customer and filter branches by default=True
|
|
41172
|
+
*/
|
|
41173
|
+
customerBranch?: number;
|
|
41167
41174
|
/**
|
|
41168
41175
|
* Date
|
|
41169
41176
|
* Format: date
|
|
@@ -41304,6 +41311,8 @@ export interface components {
|
|
|
41304
41311
|
/** Serialnumber */
|
|
41305
41312
|
serialNumber: string;
|
|
41306
41313
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
41314
|
+
/** @description Details about the customer's branch. */
|
|
41315
|
+
customerBranch: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
41307
41316
|
branch: components["schemas"]["BranchSummaryInfo"];
|
|
41308
41317
|
/**
|
|
41309
41318
|
* Date
|
|
@@ -41448,6 +41457,11 @@ export interface components {
|
|
|
41448
41457
|
* - Use the API: /api/v1/customers/?documentType=downPayment
|
|
41449
41458
|
*/
|
|
41450
41459
|
customer: number;
|
|
41460
|
+
/**
|
|
41461
|
+
* Customerbranch
|
|
41462
|
+
* @description This field is required when the customer is a company, set default value from the data of selected customer and filter branches by default=True
|
|
41463
|
+
*/
|
|
41464
|
+
customerBranch?: number;
|
|
41451
41465
|
/**
|
|
41452
41466
|
* Date
|
|
41453
41467
|
* Format: date
|
|
@@ -41495,6 +41509,8 @@ export interface components {
|
|
|
41495
41509
|
/** Serialnumber */
|
|
41496
41510
|
serialNumber: string;
|
|
41497
41511
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
41512
|
+
/** @description Details about the customer's branch. */
|
|
41513
|
+
customerBranch: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
41498
41514
|
branch: components["schemas"]["BranchSummaryInfo"];
|
|
41499
41515
|
/**
|
|
41500
41516
|
* Date
|