@erp-galoper/types 1.0.15 → 1.0.17
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 +14 -68
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26115,7 +26115,7 @@ export interface components {
|
|
|
26115
26115
|
/**
|
|
26116
26116
|
* Id
|
|
26117
26117
|
* Format: uuid
|
|
26118
|
-
* @example
|
|
26118
|
+
* @example 408d3ac8-110e-4821-af2d-76cedce94db1
|
|
26119
26119
|
*/
|
|
26120
26120
|
id: string;
|
|
26121
26121
|
/**
|
|
@@ -32021,11 +32021,6 @@ export interface components {
|
|
|
32021
32021
|
* Format: uuid
|
|
32022
32022
|
*/
|
|
32023
32023
|
salesInvoice?: string;
|
|
32024
|
-
/**
|
|
32025
|
-
* Tax
|
|
32026
|
-
* @description tax id
|
|
32027
|
-
*/
|
|
32028
|
-
tax?: number | null;
|
|
32029
32024
|
/**
|
|
32030
32025
|
* Amount
|
|
32031
32026
|
* @description field is number
|
|
@@ -39043,16 +39038,6 @@ export interface components {
|
|
|
39043
39038
|
* - Use the API: /v1/sales/receipt-vouchers/unpaid-partial-invoices-with-remaining/?customer={customer-id}
|
|
39044
39039
|
*/
|
|
39045
39040
|
salesInvoice?: string;
|
|
39046
|
-
/**
|
|
39047
|
-
* Tax
|
|
39048
|
-
* @description
|
|
39049
|
-
* Visibility and Requirement:
|
|
39050
|
-
* - Required and visible if payment method is Bank Transfer
|
|
39051
|
-
* API Endpoints for Sales Invoice Tax Retrieval:
|
|
39052
|
-
* - Use the API: /v1/sales/receipt-vouchers/unpaid-partial-invoices-with-remaining/?customer={customer-id} where field is taxes
|
|
39053
|
-
*
|
|
39054
|
-
*/
|
|
39055
|
-
tax?: number;
|
|
39056
39041
|
/**
|
|
39057
39042
|
* Amount
|
|
39058
39043
|
* @description field is number
|
|
@@ -39130,7 +39115,6 @@ export interface components {
|
|
|
39130
39115
|
/** Bankname */
|
|
39131
39116
|
bankName: string | null;
|
|
39132
39117
|
salesInvoice: components["schemas"]["DocumentCommonSchema"];
|
|
39133
|
-
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
39134
39118
|
/**
|
|
39135
39119
|
* Amount
|
|
39136
39120
|
* @description field is number
|
|
@@ -39356,16 +39340,6 @@ export interface components {
|
|
|
39356
39340
|
* - Use the API: /v1/sales/receipt-vouchers/unpaid-partial-invoices-with-remaining/?customer={customer-id}
|
|
39357
39341
|
*/
|
|
39358
39342
|
salesInvoice?: string;
|
|
39359
|
-
/**
|
|
39360
|
-
* Tax
|
|
39361
|
-
* @description
|
|
39362
|
-
* Visibility and Requirement:
|
|
39363
|
-
* - Required and visible if payment method is Bank Transfer
|
|
39364
|
-
* API Endpoints for Sales Invoice Tax Retrieval:
|
|
39365
|
-
* - Use the API: /v1/sales/receipt-vouchers/unpaid-partial-invoices-with-remaining/?customer={customer-id} where field is taxes
|
|
39366
|
-
*
|
|
39367
|
-
*/
|
|
39368
|
-
tax?: number;
|
|
39369
39343
|
};
|
|
39370
39344
|
/** ReceiptVoucherDetailSchema */
|
|
39371
39345
|
ReceiptVoucherDetailSchema: {
|
|
@@ -39522,16 +39496,6 @@ export interface components {
|
|
|
39522
39496
|
* - Use the API: /v1/sales/receipt-vouchers/unpaid-partial-invoices-with-remaining/?customer={customer-id}
|
|
39523
39497
|
*/
|
|
39524
39498
|
salesInvoice?: string;
|
|
39525
|
-
/**
|
|
39526
|
-
* Tax
|
|
39527
|
-
* @description
|
|
39528
|
-
* Visibility and Requirement:
|
|
39529
|
-
* - Required and visible if payment method is Bank Transfer
|
|
39530
|
-
* API Endpoints for Sales Invoice Tax Retrieval:
|
|
39531
|
-
* - Use the API: /v1/sales/receipt-vouchers/unpaid-partial-invoices-with-remaining/?customer={customer-id} where field is taxes
|
|
39532
|
-
*
|
|
39533
|
-
*/
|
|
39534
|
-
tax?: number;
|
|
39535
39499
|
/**
|
|
39536
39500
|
* Id
|
|
39537
39501
|
* Format: uuid
|
|
@@ -40654,6 +40618,8 @@ export interface components {
|
|
|
40654
40618
|
secondaryTotal: string;
|
|
40655
40619
|
/** Companytotal */
|
|
40656
40620
|
companyTotal: string;
|
|
40621
|
+
/** Candelete */
|
|
40622
|
+
canDelete: boolean;
|
|
40657
40623
|
/**
|
|
40658
40624
|
* Items
|
|
40659
40625
|
* @default []
|
|
@@ -40806,6 +40772,8 @@ export interface components {
|
|
|
40806
40772
|
secondaryTotal: string;
|
|
40807
40773
|
/** Companytotal */
|
|
40808
40774
|
companyTotal: string;
|
|
40775
|
+
/** Candelete */
|
|
40776
|
+
canDelete: boolean;
|
|
40809
40777
|
};
|
|
40810
40778
|
/** SalesReturnInvoiceItemTotalCalculated */
|
|
40811
40779
|
SalesReturnInvoiceItemTotalCalculated: {
|
|
@@ -40958,11 +40926,6 @@ export interface components {
|
|
|
40958
40926
|
returnInvoice: string | null;
|
|
40959
40927
|
/** Downpayment */
|
|
40960
40928
|
downPayment: string | null;
|
|
40961
|
-
/**
|
|
40962
|
-
* Tax
|
|
40963
|
-
* @description tax id
|
|
40964
|
-
*/
|
|
40965
|
-
tax: number | null;
|
|
40966
40929
|
/** Amount */
|
|
40967
40930
|
amount: string;
|
|
40968
40931
|
/**
|
|
@@ -41046,11 +41009,6 @@ export interface components {
|
|
|
41046
41009
|
* @description down payment id, if down payment is undefined then return invoice should be required
|
|
41047
41010
|
*/
|
|
41048
41011
|
downPayment?: string;
|
|
41049
|
-
/**
|
|
41050
|
-
* Tax
|
|
41051
|
-
* @description tax id
|
|
41052
|
-
*/
|
|
41053
|
-
tax?: number;
|
|
41054
41012
|
};
|
|
41055
41013
|
/** SalesRefundVoucherDetailWithItemSchema */
|
|
41056
41014
|
SalesRefundVoucherDetailWithItemSchema: {
|
|
@@ -41148,7 +41106,6 @@ export interface components {
|
|
|
41148
41106
|
secondaryRate: string;
|
|
41149
41107
|
downPayment: components["schemas"]["DocumentCommonSchema"] | null;
|
|
41150
41108
|
refundReturnInvoice: components["schemas"]["DocumentCommonSchema"] | null;
|
|
41151
|
-
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
41152
41109
|
};
|
|
41153
41110
|
/** SalesRefundVoucherResponse */
|
|
41154
41111
|
SalesRefundVoucherResponse: {
|
|
@@ -41300,16 +41257,6 @@ export interface components {
|
|
|
41300
41257
|
* @description get return invoices from /v1/sales/refund-vouchers/refundable-documents/?customer={customer-id}
|
|
41301
41258
|
*/
|
|
41302
41259
|
returnInvoice?: string;
|
|
41303
|
-
/**
|
|
41304
|
-
* Tax
|
|
41305
|
-
* @description
|
|
41306
|
-
* - tax id
|
|
41307
|
-
* API Endpoints for Tax Retrieval:
|
|
41308
|
-
* Use the API: /v1/sales/refund-vouchers/refundable-documents/?customer={customer-id}
|
|
41309
|
-
* - the user should select first return invoice , then retrieve taxes from field taxes
|
|
41310
|
-
*
|
|
41311
|
-
*/
|
|
41312
|
-
tax?: number;
|
|
41313
41260
|
};
|
|
41314
41261
|
/** SalesRefundVoucherDetailSchema */
|
|
41315
41262
|
SalesRefundVoucherDetailSchema: {
|
|
@@ -41468,16 +41415,6 @@ export interface components {
|
|
|
41468
41415
|
* @description get return invoices from /v1/sales/refund-vouchers/refundable-documents/?customer={customer-id}
|
|
41469
41416
|
*/
|
|
41470
41417
|
returnInvoice?: string;
|
|
41471
|
-
/**
|
|
41472
|
-
* Tax
|
|
41473
|
-
* @description
|
|
41474
|
-
* - tax id
|
|
41475
|
-
* API Endpoints for Tax Retrieval:
|
|
41476
|
-
* Use the API: /v1/sales/refund-vouchers/refundable-documents/?customer={customer-id}
|
|
41477
|
-
* - the user should select first return invoice , then retrieve taxes from field taxes
|
|
41478
|
-
*
|
|
41479
|
-
*/
|
|
41480
|
-
tax?: number;
|
|
41481
41418
|
/**
|
|
41482
41419
|
* Id
|
|
41483
41420
|
* Format: uuid
|
|
@@ -76237,6 +76174,15 @@ export interface operations {
|
|
|
76237
76174
|
};
|
|
76238
76175
|
content?: never;
|
|
76239
76176
|
};
|
|
76177
|
+
/** @description Bad Request */
|
|
76178
|
+
400: {
|
|
76179
|
+
headers: {
|
|
76180
|
+
[name: string]: unknown;
|
|
76181
|
+
};
|
|
76182
|
+
content: {
|
|
76183
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
76184
|
+
};
|
|
76185
|
+
};
|
|
76240
76186
|
/** @description Forbidden */
|
|
76241
76187
|
403: {
|
|
76242
76188
|
headers: {
|