@erp-galoper/types 1.0.53 → 1.0.55
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 +171 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -16499,6 +16499,33 @@ export interface paths {
|
|
|
16499
16499
|
patch?: never;
|
|
16500
16500
|
trace?: never;
|
|
16501
16501
|
};
|
|
16502
|
+
"/api/v1/sales/return-orders/{id}/export-pdf/": {
|
|
16503
|
+
parameters: {
|
|
16504
|
+
query?: never;
|
|
16505
|
+
header?: never;
|
|
16506
|
+
path?: never;
|
|
16507
|
+
cookie?: never;
|
|
16508
|
+
};
|
|
16509
|
+
/**
|
|
16510
|
+
* Export Sales Return Order Pdf
|
|
16511
|
+
* @description Endpoint for exporting a sales return order to PDF
|
|
16512
|
+
* Responses:
|
|
16513
|
+
* - 200: salesReturnOrderExported
|
|
16514
|
+
* - 403: permissionDenied
|
|
16515
|
+
* - 404: salesReturnOrderDoesNotExist
|
|
16516
|
+
* - 500: internalServerError
|
|
16517
|
+
* - Permission Key :
|
|
16518
|
+
* - salesreturnorder : [export]
|
|
16519
|
+
*/
|
|
16520
|
+
get: operations["sales_return_order_views_export_sales_return_order_pdf"];
|
|
16521
|
+
put?: never;
|
|
16522
|
+
post?: never;
|
|
16523
|
+
delete?: never;
|
|
16524
|
+
options?: never;
|
|
16525
|
+
head?: never;
|
|
16526
|
+
patch?: never;
|
|
16527
|
+
trace?: never;
|
|
16528
|
+
};
|
|
16502
16529
|
"/api/v1/sales/return-invoices/": {
|
|
16503
16530
|
parameters: {
|
|
16504
16531
|
query?: never;
|
|
@@ -16705,6 +16732,33 @@ export interface paths {
|
|
|
16705
16732
|
patch?: never;
|
|
16706
16733
|
trace?: never;
|
|
16707
16734
|
};
|
|
16735
|
+
"/api/v1/sales/return-invoices/{id}/export-pdf/": {
|
|
16736
|
+
parameters: {
|
|
16737
|
+
query?: never;
|
|
16738
|
+
header?: never;
|
|
16739
|
+
path?: never;
|
|
16740
|
+
cookie?: never;
|
|
16741
|
+
};
|
|
16742
|
+
/**
|
|
16743
|
+
* Export Sales Return Invoice Pdf
|
|
16744
|
+
* @description Endpoint for exporting a sales return invoice to PDF
|
|
16745
|
+
* Responses:
|
|
16746
|
+
* - 200: salesReturnInvoiceExported
|
|
16747
|
+
* - 403: permissionDenied
|
|
16748
|
+
* - 404: salesReturnInvoiceDoesNotExist
|
|
16749
|
+
* - 500: internalServerError
|
|
16750
|
+
* - Permission Key :
|
|
16751
|
+
* - salesreturninvoice : [export]
|
|
16752
|
+
*/
|
|
16753
|
+
get: operations["sales_return_invoice_views_export_sales_return_invoice_pdf"];
|
|
16754
|
+
put?: never;
|
|
16755
|
+
post?: never;
|
|
16756
|
+
delete?: never;
|
|
16757
|
+
options?: never;
|
|
16758
|
+
head?: never;
|
|
16759
|
+
patch?: never;
|
|
16760
|
+
trace?: never;
|
|
16761
|
+
};
|
|
16708
16762
|
"/api/v1/sales/refund-vouchers/refundable-documents/": {
|
|
16709
16763
|
parameters: {
|
|
16710
16764
|
query?: never;
|
|
@@ -26335,7 +26389,7 @@ export interface components {
|
|
|
26335
26389
|
/**
|
|
26336
26390
|
* Id
|
|
26337
26391
|
* Format: uuid
|
|
26338
|
-
* @example
|
|
26392
|
+
* @example 8bcbb8e4-90c2-4df3-8128-329f23c70c03
|
|
26339
26393
|
*/
|
|
26340
26394
|
id: string;
|
|
26341
26395
|
/**
|
|
@@ -76596,6 +76650,64 @@ export interface operations {
|
|
|
76596
76650
|
};
|
|
76597
76651
|
};
|
|
76598
76652
|
};
|
|
76653
|
+
sales_return_order_views_export_sales_return_order_pdf: {
|
|
76654
|
+
parameters: {
|
|
76655
|
+
query?: never;
|
|
76656
|
+
header?: never;
|
|
76657
|
+
path: {
|
|
76658
|
+
id: string;
|
|
76659
|
+
};
|
|
76660
|
+
cookie?: never;
|
|
76661
|
+
};
|
|
76662
|
+
requestBody?: never;
|
|
76663
|
+
responses: {
|
|
76664
|
+
/** @description OK */
|
|
76665
|
+
200: {
|
|
76666
|
+
headers: {
|
|
76667
|
+
[name: string]: unknown;
|
|
76668
|
+
};
|
|
76669
|
+
content: {
|
|
76670
|
+
"application/json": string;
|
|
76671
|
+
};
|
|
76672
|
+
};
|
|
76673
|
+
/** @description Bad Request */
|
|
76674
|
+
400: {
|
|
76675
|
+
headers: {
|
|
76676
|
+
[name: string]: unknown;
|
|
76677
|
+
};
|
|
76678
|
+
content: {
|
|
76679
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
76680
|
+
};
|
|
76681
|
+
};
|
|
76682
|
+
/** @description Forbidden */
|
|
76683
|
+
403: {
|
|
76684
|
+
headers: {
|
|
76685
|
+
[name: string]: unknown;
|
|
76686
|
+
};
|
|
76687
|
+
content: {
|
|
76688
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
76689
|
+
};
|
|
76690
|
+
};
|
|
76691
|
+
/** @description Not Found */
|
|
76692
|
+
404: {
|
|
76693
|
+
headers: {
|
|
76694
|
+
[name: string]: unknown;
|
|
76695
|
+
};
|
|
76696
|
+
content: {
|
|
76697
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
76698
|
+
};
|
|
76699
|
+
};
|
|
76700
|
+
/** @description Internal Server Error */
|
|
76701
|
+
500: {
|
|
76702
|
+
headers: {
|
|
76703
|
+
[name: string]: unknown;
|
|
76704
|
+
};
|
|
76705
|
+
content: {
|
|
76706
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
76707
|
+
};
|
|
76708
|
+
};
|
|
76709
|
+
};
|
|
76710
|
+
};
|
|
76599
76711
|
sales_return_invoice_views_list_return_sales_invoices: {
|
|
76600
76712
|
parameters: {
|
|
76601
76713
|
query?: {
|
|
@@ -77044,6 +77156,64 @@ export interface operations {
|
|
|
77044
77156
|
};
|
|
77045
77157
|
};
|
|
77046
77158
|
};
|
|
77159
|
+
sales_return_invoice_views_export_sales_return_invoice_pdf: {
|
|
77160
|
+
parameters: {
|
|
77161
|
+
query?: never;
|
|
77162
|
+
header?: never;
|
|
77163
|
+
path: {
|
|
77164
|
+
id: string;
|
|
77165
|
+
};
|
|
77166
|
+
cookie?: never;
|
|
77167
|
+
};
|
|
77168
|
+
requestBody?: never;
|
|
77169
|
+
responses: {
|
|
77170
|
+
/** @description OK */
|
|
77171
|
+
200: {
|
|
77172
|
+
headers: {
|
|
77173
|
+
[name: string]: unknown;
|
|
77174
|
+
};
|
|
77175
|
+
content: {
|
|
77176
|
+
"application/json": string;
|
|
77177
|
+
};
|
|
77178
|
+
};
|
|
77179
|
+
/** @description Bad Request */
|
|
77180
|
+
400: {
|
|
77181
|
+
headers: {
|
|
77182
|
+
[name: string]: unknown;
|
|
77183
|
+
};
|
|
77184
|
+
content: {
|
|
77185
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
77186
|
+
};
|
|
77187
|
+
};
|
|
77188
|
+
/** @description Forbidden */
|
|
77189
|
+
403: {
|
|
77190
|
+
headers: {
|
|
77191
|
+
[name: string]: unknown;
|
|
77192
|
+
};
|
|
77193
|
+
content: {
|
|
77194
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
77195
|
+
};
|
|
77196
|
+
};
|
|
77197
|
+
/** @description Not Found */
|
|
77198
|
+
404: {
|
|
77199
|
+
headers: {
|
|
77200
|
+
[name: string]: unknown;
|
|
77201
|
+
};
|
|
77202
|
+
content: {
|
|
77203
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
77204
|
+
};
|
|
77205
|
+
};
|
|
77206
|
+
/** @description Internal Server Error */
|
|
77207
|
+
500: {
|
|
77208
|
+
headers: {
|
|
77209
|
+
[name: string]: unknown;
|
|
77210
|
+
};
|
|
77211
|
+
content: {
|
|
77212
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
77213
|
+
};
|
|
77214
|
+
};
|
|
77215
|
+
};
|
|
77216
|
+
};
|
|
77047
77217
|
sales_refund_voucher_views_get_sales_refundable_documents: {
|
|
77048
77218
|
parameters: {
|
|
77049
77219
|
query: {
|