@erp-galoper/types 1.0.54 → 1.0.56
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
|
@@ -13607,6 +13607,33 @@ export interface paths {
|
|
|
13607
13607
|
patch?: never;
|
|
13608
13608
|
trace?: never;
|
|
13609
13609
|
};
|
|
13610
|
+
"/api/v1/sales/price-list/{id}/export-pdf/": {
|
|
13611
|
+
parameters: {
|
|
13612
|
+
query?: never;
|
|
13613
|
+
header?: never;
|
|
13614
|
+
path?: never;
|
|
13615
|
+
cookie?: never;
|
|
13616
|
+
};
|
|
13617
|
+
/**
|
|
13618
|
+
* Export Sales Price List Pdf
|
|
13619
|
+
* @description Endpoint for exporting a sales price list to PDF
|
|
13620
|
+
* Responses:
|
|
13621
|
+
* - 200: salesPriceListExported
|
|
13622
|
+
* - 403: permissionDenied
|
|
13623
|
+
* - 404: salesPriceListDoesNotExist
|
|
13624
|
+
* - 500: internalServerError
|
|
13625
|
+
* - Permission Key :
|
|
13626
|
+
* - salespricelist : [export]
|
|
13627
|
+
*/
|
|
13628
|
+
get: operations["sales_price_list_views_export_sales_price_list_pdf"];
|
|
13629
|
+
put?: never;
|
|
13630
|
+
post?: never;
|
|
13631
|
+
delete?: never;
|
|
13632
|
+
options?: never;
|
|
13633
|
+
head?: never;
|
|
13634
|
+
patch?: never;
|
|
13635
|
+
trace?: never;
|
|
13636
|
+
};
|
|
13610
13637
|
"/api/v1/inventory/package-types/": {
|
|
13611
13638
|
parameters: {
|
|
13612
13639
|
query?: never;
|
|
@@ -16732,6 +16759,33 @@ export interface paths {
|
|
|
16732
16759
|
patch?: never;
|
|
16733
16760
|
trace?: never;
|
|
16734
16761
|
};
|
|
16762
|
+
"/api/v1/sales/return-invoices/{id}/export-pdf/": {
|
|
16763
|
+
parameters: {
|
|
16764
|
+
query?: never;
|
|
16765
|
+
header?: never;
|
|
16766
|
+
path?: never;
|
|
16767
|
+
cookie?: never;
|
|
16768
|
+
};
|
|
16769
|
+
/**
|
|
16770
|
+
* Export Sales Return Invoice Pdf
|
|
16771
|
+
* @description Endpoint for exporting a sales return invoice to PDF
|
|
16772
|
+
* Responses:
|
|
16773
|
+
* - 200: salesReturnInvoiceExported
|
|
16774
|
+
* - 403: permissionDenied
|
|
16775
|
+
* - 404: salesReturnInvoiceDoesNotExist
|
|
16776
|
+
* - 500: internalServerError
|
|
16777
|
+
* - Permission Key :
|
|
16778
|
+
* - salesreturninvoice : [export]
|
|
16779
|
+
*/
|
|
16780
|
+
get: operations["sales_return_invoice_views_export_sales_return_invoice_pdf"];
|
|
16781
|
+
put?: never;
|
|
16782
|
+
post?: never;
|
|
16783
|
+
delete?: never;
|
|
16784
|
+
options?: never;
|
|
16785
|
+
head?: never;
|
|
16786
|
+
patch?: never;
|
|
16787
|
+
trace?: never;
|
|
16788
|
+
};
|
|
16735
16789
|
"/api/v1/sales/refund-vouchers/refundable-documents/": {
|
|
16736
16790
|
parameters: {
|
|
16737
16791
|
query?: never;
|
|
@@ -26362,7 +26416,7 @@ export interface components {
|
|
|
26362
26416
|
/**
|
|
26363
26417
|
* Id
|
|
26364
26418
|
* Format: uuid
|
|
26365
|
-
* @example
|
|
26419
|
+
* @example 7cce4491-978d-4873-9c10-d89f19e59cd8
|
|
26366
26420
|
*/
|
|
26367
26421
|
id: string;
|
|
26368
26422
|
/**
|
|
@@ -70875,6 +70929,64 @@ export interface operations {
|
|
|
70875
70929
|
};
|
|
70876
70930
|
};
|
|
70877
70931
|
};
|
|
70932
|
+
sales_price_list_views_export_sales_price_list_pdf: {
|
|
70933
|
+
parameters: {
|
|
70934
|
+
query?: never;
|
|
70935
|
+
header?: never;
|
|
70936
|
+
path: {
|
|
70937
|
+
id: string;
|
|
70938
|
+
};
|
|
70939
|
+
cookie?: never;
|
|
70940
|
+
};
|
|
70941
|
+
requestBody?: never;
|
|
70942
|
+
responses: {
|
|
70943
|
+
/** @description OK */
|
|
70944
|
+
200: {
|
|
70945
|
+
headers: {
|
|
70946
|
+
[name: string]: unknown;
|
|
70947
|
+
};
|
|
70948
|
+
content: {
|
|
70949
|
+
"application/json": string;
|
|
70950
|
+
};
|
|
70951
|
+
};
|
|
70952
|
+
/** @description Bad Request */
|
|
70953
|
+
400: {
|
|
70954
|
+
headers: {
|
|
70955
|
+
[name: string]: unknown;
|
|
70956
|
+
};
|
|
70957
|
+
content: {
|
|
70958
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
70959
|
+
};
|
|
70960
|
+
};
|
|
70961
|
+
/** @description Forbidden */
|
|
70962
|
+
403: {
|
|
70963
|
+
headers: {
|
|
70964
|
+
[name: string]: unknown;
|
|
70965
|
+
};
|
|
70966
|
+
content: {
|
|
70967
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
70968
|
+
};
|
|
70969
|
+
};
|
|
70970
|
+
/** @description Not Found */
|
|
70971
|
+
404: {
|
|
70972
|
+
headers: {
|
|
70973
|
+
[name: string]: unknown;
|
|
70974
|
+
};
|
|
70975
|
+
content: {
|
|
70976
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
70977
|
+
};
|
|
70978
|
+
};
|
|
70979
|
+
/** @description Internal Server Error */
|
|
70980
|
+
500: {
|
|
70981
|
+
headers: {
|
|
70982
|
+
[name: string]: unknown;
|
|
70983
|
+
};
|
|
70984
|
+
content: {
|
|
70985
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
70986
|
+
};
|
|
70987
|
+
};
|
|
70988
|
+
};
|
|
70989
|
+
};
|
|
70878
70990
|
inventory_package_views_list_package_types: {
|
|
70879
70991
|
parameters: {
|
|
70880
70992
|
query?: {
|
|
@@ -77129,6 +77241,64 @@ export interface operations {
|
|
|
77129
77241
|
};
|
|
77130
77242
|
};
|
|
77131
77243
|
};
|
|
77244
|
+
sales_return_invoice_views_export_sales_return_invoice_pdf: {
|
|
77245
|
+
parameters: {
|
|
77246
|
+
query?: never;
|
|
77247
|
+
header?: never;
|
|
77248
|
+
path: {
|
|
77249
|
+
id: string;
|
|
77250
|
+
};
|
|
77251
|
+
cookie?: never;
|
|
77252
|
+
};
|
|
77253
|
+
requestBody?: never;
|
|
77254
|
+
responses: {
|
|
77255
|
+
/** @description OK */
|
|
77256
|
+
200: {
|
|
77257
|
+
headers: {
|
|
77258
|
+
[name: string]: unknown;
|
|
77259
|
+
};
|
|
77260
|
+
content: {
|
|
77261
|
+
"application/json": string;
|
|
77262
|
+
};
|
|
77263
|
+
};
|
|
77264
|
+
/** @description Bad Request */
|
|
77265
|
+
400: {
|
|
77266
|
+
headers: {
|
|
77267
|
+
[name: string]: unknown;
|
|
77268
|
+
};
|
|
77269
|
+
content: {
|
|
77270
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
77271
|
+
};
|
|
77272
|
+
};
|
|
77273
|
+
/** @description Forbidden */
|
|
77274
|
+
403: {
|
|
77275
|
+
headers: {
|
|
77276
|
+
[name: string]: unknown;
|
|
77277
|
+
};
|
|
77278
|
+
content: {
|
|
77279
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
77280
|
+
};
|
|
77281
|
+
};
|
|
77282
|
+
/** @description Not Found */
|
|
77283
|
+
404: {
|
|
77284
|
+
headers: {
|
|
77285
|
+
[name: string]: unknown;
|
|
77286
|
+
};
|
|
77287
|
+
content: {
|
|
77288
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
77289
|
+
};
|
|
77290
|
+
};
|
|
77291
|
+
/** @description Internal Server Error */
|
|
77292
|
+
500: {
|
|
77293
|
+
headers: {
|
|
77294
|
+
[name: string]: unknown;
|
|
77295
|
+
};
|
|
77296
|
+
content: {
|
|
77297
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
77298
|
+
};
|
|
77299
|
+
};
|
|
77300
|
+
};
|
|
77301
|
+
};
|
|
77132
77302
|
sales_refund_voucher_views_get_sales_refundable_documents: {
|
|
77133
77303
|
parameters: {
|
|
77134
77304
|
query: {
|