@erp-galoper/types 1.0.48 → 1.0.50
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
|
@@ -10632,6 +10632,33 @@ export interface paths {
|
|
|
10632
10632
|
patch?: never;
|
|
10633
10633
|
trace?: never;
|
|
10634
10634
|
};
|
|
10635
|
+
"/api/v1/purchase/return-orders/{id}/export-pdf/": {
|
|
10636
|
+
parameters: {
|
|
10637
|
+
query?: never;
|
|
10638
|
+
header?: never;
|
|
10639
|
+
path?: never;
|
|
10640
|
+
cookie?: never;
|
|
10641
|
+
};
|
|
10642
|
+
/**
|
|
10643
|
+
* Export Purchase Return Order Pdf
|
|
10644
|
+
* @description Endpoint for exporting a purchase return order to PDF
|
|
10645
|
+
* Responses:
|
|
10646
|
+
* - 200: purchaseReturnOrderExported
|
|
10647
|
+
* - 403: permissionDenied
|
|
10648
|
+
* - 404: purchaseReturnOrderDoesNotExist
|
|
10649
|
+
* - 500: internalServerError
|
|
10650
|
+
* - Permission Key :
|
|
10651
|
+
* - purchasereturnorder : [export]
|
|
10652
|
+
*/
|
|
10653
|
+
get: operations["purchase_return_order_views_export_purchase_return_order_pdf"];
|
|
10654
|
+
put?: never;
|
|
10655
|
+
post?: never;
|
|
10656
|
+
delete?: never;
|
|
10657
|
+
options?: never;
|
|
10658
|
+
head?: never;
|
|
10659
|
+
patch?: never;
|
|
10660
|
+
trace?: never;
|
|
10661
|
+
};
|
|
10635
10662
|
"/api/v1/purchase/invoices/calculate-totals/": {
|
|
10636
10663
|
parameters: {
|
|
10637
10664
|
query?: never;
|
|
@@ -10926,6 +10953,33 @@ export interface paths {
|
|
|
10926
10953
|
patch?: never;
|
|
10927
10954
|
trace?: never;
|
|
10928
10955
|
};
|
|
10956
|
+
"/api/v1/purchase/invoices/{id}/export-pdf/": {
|
|
10957
|
+
parameters: {
|
|
10958
|
+
query?: never;
|
|
10959
|
+
header?: never;
|
|
10960
|
+
path?: never;
|
|
10961
|
+
cookie?: never;
|
|
10962
|
+
};
|
|
10963
|
+
/**
|
|
10964
|
+
* Export Purchase Invoice Pdf
|
|
10965
|
+
* @description Endpoint for exporting a purchase invoice to PDF
|
|
10966
|
+
* Responses:
|
|
10967
|
+
* - 200: purchaseInvoiceExported
|
|
10968
|
+
* - 403: permissionDenied
|
|
10969
|
+
* - 404: purchaseInvoiceDoesNotExist
|
|
10970
|
+
* - 500: internalServerError
|
|
10971
|
+
* - Permission Key :
|
|
10972
|
+
* - purchaseinvoice : [export]
|
|
10973
|
+
*/
|
|
10974
|
+
get: operations["purchase_purchase_invoice_views_export_purchase_invoice_pdf"];
|
|
10975
|
+
put?: never;
|
|
10976
|
+
post?: never;
|
|
10977
|
+
delete?: never;
|
|
10978
|
+
options?: never;
|
|
10979
|
+
head?: never;
|
|
10980
|
+
patch?: never;
|
|
10981
|
+
trace?: never;
|
|
10982
|
+
};
|
|
10929
10983
|
"/api/v1/purchase/payment-vouchers/calculate-equivalents/": {
|
|
10930
10984
|
parameters: {
|
|
10931
10985
|
query?: never;
|
|
@@ -26200,7 +26254,7 @@ export interface components {
|
|
|
26200
26254
|
/**
|
|
26201
26255
|
* Id
|
|
26202
26256
|
* Format: uuid
|
|
26203
|
-
* @example
|
|
26257
|
+
* @example b851b1fa-fa4f-4646-9a2b-49703417a5c7
|
|
26204
26258
|
*/
|
|
26205
26259
|
id: string;
|
|
26206
26260
|
/**
|
|
@@ -65066,6 +65120,64 @@ export interface operations {
|
|
|
65066
65120
|
};
|
|
65067
65121
|
};
|
|
65068
65122
|
};
|
|
65123
|
+
purchase_return_order_views_export_purchase_return_order_pdf: {
|
|
65124
|
+
parameters: {
|
|
65125
|
+
query?: never;
|
|
65126
|
+
header?: never;
|
|
65127
|
+
path: {
|
|
65128
|
+
id: string;
|
|
65129
|
+
};
|
|
65130
|
+
cookie?: never;
|
|
65131
|
+
};
|
|
65132
|
+
requestBody?: never;
|
|
65133
|
+
responses: {
|
|
65134
|
+
/** @description OK */
|
|
65135
|
+
200: {
|
|
65136
|
+
headers: {
|
|
65137
|
+
[name: string]: unknown;
|
|
65138
|
+
};
|
|
65139
|
+
content: {
|
|
65140
|
+
"application/json": string;
|
|
65141
|
+
};
|
|
65142
|
+
};
|
|
65143
|
+
/** @description Bad Request */
|
|
65144
|
+
400: {
|
|
65145
|
+
headers: {
|
|
65146
|
+
[name: string]: unknown;
|
|
65147
|
+
};
|
|
65148
|
+
content: {
|
|
65149
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
65150
|
+
};
|
|
65151
|
+
};
|
|
65152
|
+
/** @description Forbidden */
|
|
65153
|
+
403: {
|
|
65154
|
+
headers: {
|
|
65155
|
+
[name: string]: unknown;
|
|
65156
|
+
};
|
|
65157
|
+
content: {
|
|
65158
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65159
|
+
};
|
|
65160
|
+
};
|
|
65161
|
+
/** @description Not Found */
|
|
65162
|
+
404: {
|
|
65163
|
+
headers: {
|
|
65164
|
+
[name: string]: unknown;
|
|
65165
|
+
};
|
|
65166
|
+
content: {
|
|
65167
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65168
|
+
};
|
|
65169
|
+
};
|
|
65170
|
+
/** @description Internal Server Error */
|
|
65171
|
+
500: {
|
|
65172
|
+
headers: {
|
|
65173
|
+
[name: string]: unknown;
|
|
65174
|
+
};
|
|
65175
|
+
content: {
|
|
65176
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65177
|
+
};
|
|
65178
|
+
};
|
|
65179
|
+
};
|
|
65180
|
+
};
|
|
65069
65181
|
purchase_purchase_invoice_views_calculate_totals_endpoint: {
|
|
65070
65182
|
parameters: {
|
|
65071
65183
|
query?: never;
|
|
@@ -65701,6 +65813,64 @@ export interface operations {
|
|
|
65701
65813
|
};
|
|
65702
65814
|
};
|
|
65703
65815
|
};
|
|
65816
|
+
purchase_purchase_invoice_views_export_purchase_invoice_pdf: {
|
|
65817
|
+
parameters: {
|
|
65818
|
+
query?: never;
|
|
65819
|
+
header?: never;
|
|
65820
|
+
path: {
|
|
65821
|
+
id: string;
|
|
65822
|
+
};
|
|
65823
|
+
cookie?: never;
|
|
65824
|
+
};
|
|
65825
|
+
requestBody?: never;
|
|
65826
|
+
responses: {
|
|
65827
|
+
/** @description OK */
|
|
65828
|
+
200: {
|
|
65829
|
+
headers: {
|
|
65830
|
+
[name: string]: unknown;
|
|
65831
|
+
};
|
|
65832
|
+
content: {
|
|
65833
|
+
"application/json": string;
|
|
65834
|
+
};
|
|
65835
|
+
};
|
|
65836
|
+
/** @description Bad Request */
|
|
65837
|
+
400: {
|
|
65838
|
+
headers: {
|
|
65839
|
+
[name: string]: unknown;
|
|
65840
|
+
};
|
|
65841
|
+
content: {
|
|
65842
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
65843
|
+
};
|
|
65844
|
+
};
|
|
65845
|
+
/** @description Forbidden */
|
|
65846
|
+
403: {
|
|
65847
|
+
headers: {
|
|
65848
|
+
[name: string]: unknown;
|
|
65849
|
+
};
|
|
65850
|
+
content: {
|
|
65851
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65852
|
+
};
|
|
65853
|
+
};
|
|
65854
|
+
/** @description Not Found */
|
|
65855
|
+
404: {
|
|
65856
|
+
headers: {
|
|
65857
|
+
[name: string]: unknown;
|
|
65858
|
+
};
|
|
65859
|
+
content: {
|
|
65860
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65861
|
+
};
|
|
65862
|
+
};
|
|
65863
|
+
/** @description Internal Server Error */
|
|
65864
|
+
500: {
|
|
65865
|
+
headers: {
|
|
65866
|
+
[name: string]: unknown;
|
|
65867
|
+
};
|
|
65868
|
+
content: {
|
|
65869
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65870
|
+
};
|
|
65871
|
+
};
|
|
65872
|
+
};
|
|
65873
|
+
};
|
|
65704
65874
|
purchase_payment_voucher_views_calculate_equivalents: {
|
|
65705
65875
|
parameters: {
|
|
65706
65876
|
query?: never;
|