@erp-galoper/types 1.0.44 → 1.0.45
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 +50 -9
- 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 5431474b-0eed-4c5e-b60e-6ddd0171b983
|
|
26119
26119
|
*/
|
|
26120
26120
|
id: string;
|
|
26121
26121
|
/**
|
|
@@ -40850,12 +40850,42 @@ export interface components {
|
|
|
40850
40850
|
*/
|
|
40851
40851
|
remaining: string;
|
|
40852
40852
|
};
|
|
40853
|
+
/** RefundableReturnPackagesWithRemaining */
|
|
40854
|
+
RefundableReturnPackagesWithRemaining: {
|
|
40855
|
+
/**
|
|
40856
|
+
* Id
|
|
40857
|
+
* Format: uuid
|
|
40858
|
+
*/
|
|
40859
|
+
id: string;
|
|
40860
|
+
/**
|
|
40861
|
+
* Total
|
|
40862
|
+
* @description field is number
|
|
40863
|
+
*/
|
|
40864
|
+
total: string;
|
|
40865
|
+
/**
|
|
40866
|
+
* Companytotal
|
|
40867
|
+
* @description field is number
|
|
40868
|
+
*/
|
|
40869
|
+
companyTotal: string;
|
|
40870
|
+
/**
|
|
40871
|
+
* Secondarytotal
|
|
40872
|
+
* @description field is number
|
|
40873
|
+
*/
|
|
40874
|
+
secondaryTotal: string;
|
|
40875
|
+
/**
|
|
40876
|
+
* Remaining
|
|
40877
|
+
* @description field is number
|
|
40878
|
+
*/
|
|
40879
|
+
remaining: string;
|
|
40880
|
+
};
|
|
40853
40881
|
/** SalesRefundableDocumentsResponse */
|
|
40854
40882
|
SalesRefundableDocumentsResponse: {
|
|
40855
40883
|
/** Downpayments */
|
|
40856
40884
|
downPayments: components["schemas"]["RefundableDownPaymentWithRemaining"][];
|
|
40857
40885
|
/** Returninvoices */
|
|
40858
40886
|
returnInvoices: components["schemas"]["SalesRefundableReturnInvoiceWithRemaining"][];
|
|
40887
|
+
/** Returnreturnablepackages */
|
|
40888
|
+
returnReturnablePackages: components["schemas"]["RefundableReturnPackagesWithRemaining"][];
|
|
40859
40889
|
};
|
|
40860
40890
|
/** SalesRefundableReturnInvoiceWithRemaining */
|
|
40861
40891
|
SalesRefundableReturnInvoiceWithRemaining: {
|
|
@@ -41098,6 +41128,7 @@ export interface components {
|
|
|
41098
41128
|
secondaryRate: string;
|
|
41099
41129
|
downPayment: components["schemas"]["DocumentCommonSchema"] | null;
|
|
41100
41130
|
refundReturnInvoice: components["schemas"]["DocumentCommonSchema"] | null;
|
|
41131
|
+
returnReturnablePackage: components["schemas"]["DocumentCommonSchema"] | null;
|
|
41101
41132
|
};
|
|
41102
41133
|
/** SalesRefundVoucherResponse */
|
|
41103
41134
|
SalesRefundVoucherResponse: {
|
|
@@ -41249,6 +41280,11 @@ export interface components {
|
|
|
41249
41280
|
* @description get return invoices from /v1/sales/refund-vouchers/refundable-documents/?customer={customer-id}
|
|
41250
41281
|
*/
|
|
41251
41282
|
returnInvoice?: string;
|
|
41283
|
+
/**
|
|
41284
|
+
* Returnreturnablepackage
|
|
41285
|
+
* Format: uuid
|
|
41286
|
+
*/
|
|
41287
|
+
returnReturnablePackage: string;
|
|
41252
41288
|
};
|
|
41253
41289
|
/** SalesRefundVoucherDetailSchema */
|
|
41254
41290
|
SalesRefundVoucherDetailSchema: {
|
|
@@ -41407,6 +41443,11 @@ export interface components {
|
|
|
41407
41443
|
* @description get return invoices from /v1/sales/refund-vouchers/refundable-documents/?customer={customer-id}
|
|
41408
41444
|
*/
|
|
41409
41445
|
returnInvoice?: string;
|
|
41446
|
+
/**
|
|
41447
|
+
* Returnreturnablepackage
|
|
41448
|
+
* Format: uuid
|
|
41449
|
+
*/
|
|
41450
|
+
returnReturnablePackage: string;
|
|
41410
41451
|
/**
|
|
41411
41452
|
* Id
|
|
41412
41453
|
* Format: uuid
|
|
@@ -53886,7 +53927,7 @@ export interface operations {
|
|
|
53886
53927
|
/** @description Page size */
|
|
53887
53928
|
pageSize?: number;
|
|
53888
53929
|
/** @description currencies ids, if user selected accountCurrency then you should send accountCurrency in list */
|
|
53889
|
-
currencies: (
|
|
53930
|
+
currencies: (string | number)[];
|
|
53890
53931
|
/** @description filter by account number or name */
|
|
53891
53932
|
filter_by_account_number_or_name?: string;
|
|
53892
53933
|
};
|
|
@@ -53953,7 +53994,7 @@ export interface operations {
|
|
|
53953
53994
|
/** @description Page size */
|
|
53954
53995
|
pageSize?: number;
|
|
53955
53996
|
/** @description currencies ids, if user selected accountCurrency then you should send accountCurrency in list */
|
|
53956
|
-
currencies: (
|
|
53997
|
+
currencies: (string | number)[];
|
|
53957
53998
|
/** @description filter by account number or name */
|
|
53958
53999
|
filter_by_account_number_or_name?: string;
|
|
53959
54000
|
};
|
|
@@ -54021,7 +54062,7 @@ export interface operations {
|
|
|
54021
54062
|
/** @description Page size */
|
|
54022
54063
|
pageSize?: number;
|
|
54023
54064
|
/** @description currencies ids,if user selected accountCurrency then you should send accountCurrency in list */
|
|
54024
|
-
currencies: (
|
|
54065
|
+
currencies: (string | number)[];
|
|
54025
54066
|
};
|
|
54026
54067
|
header?: never;
|
|
54027
54068
|
path?: never;
|
|
@@ -54085,7 +54126,7 @@ export interface operations {
|
|
|
54085
54126
|
/** @description Page size */
|
|
54086
54127
|
pageSize?: number;
|
|
54087
54128
|
/** @description currencies ids,if user selected accountCurrency then you should send accountCurrency in list */
|
|
54088
|
-
currencies: (
|
|
54129
|
+
currencies: (string | number)[];
|
|
54089
54130
|
/** @description filter by account number or name */
|
|
54090
54131
|
filter_by_account_number_or_name?: string;
|
|
54091
54132
|
};
|
|
@@ -54144,7 +54185,7 @@ export interface operations {
|
|
|
54144
54185
|
accountLevel: ("General" | "Detail")[];
|
|
54145
54186
|
mergeLedger?: boolean;
|
|
54146
54187
|
/** @description currencies ids,if user selected accountCurrency then you should send accountCurrency in list */
|
|
54147
|
-
currencies: (
|
|
54188
|
+
currencies: (string | number)[];
|
|
54148
54189
|
/** @description filter by account number or name */
|
|
54149
54190
|
filterByAccountNumberOrName?: string;
|
|
54150
54191
|
};
|
|
@@ -54185,7 +54226,7 @@ export interface operations {
|
|
|
54185
54226
|
accountLevel?: ("General" | "Detail")[];
|
|
54186
54227
|
mergeLedger?: boolean;
|
|
54187
54228
|
/** @description currencies ids,if user selected accountCurrency then you should send accountCurrency in list */
|
|
54188
|
-
currencies: (
|
|
54229
|
+
currencies: (string | number)[];
|
|
54189
54230
|
/** @description filter by account number or name */
|
|
54190
54231
|
filter_by_account_number_or_name?: string;
|
|
54191
54232
|
};
|
|
@@ -54244,7 +54285,7 @@ export interface operations {
|
|
|
54244
54285
|
/** @description Page size */
|
|
54245
54286
|
pageSize?: number;
|
|
54246
54287
|
/** @description currencies ids,if user selected accountCurrency then you should send accountCurrency in list */
|
|
54247
|
-
currencies: (
|
|
54288
|
+
currencies: (string | number)[];
|
|
54248
54289
|
};
|
|
54249
54290
|
header?: never;
|
|
54250
54291
|
path?: never;
|
|
@@ -54308,7 +54349,7 @@ export interface operations {
|
|
|
54308
54349
|
/** @description Page size */
|
|
54309
54350
|
pageSize?: number;
|
|
54310
54351
|
/** @description currencies ids,if user selected accountCurrency then you should send accountCurrency in list */
|
|
54311
|
-
currencies: (
|
|
54352
|
+
currencies: (string | number)[];
|
|
54312
54353
|
/** @description filter by account number or name */
|
|
54313
54354
|
filter_by_account_number_or_name?: string;
|
|
54314
54355
|
};
|