@erp-galoper/types 1.0.50 → 1.0.52
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
|
@@ -11652,6 +11652,33 @@ export interface paths {
|
|
|
11652
11652
|
patch?: never;
|
|
11653
11653
|
trace?: never;
|
|
11654
11654
|
};
|
|
11655
|
+
"/api/v1/purchase/return-invoices/{id}/export-pdf/": {
|
|
11656
|
+
parameters: {
|
|
11657
|
+
query?: never;
|
|
11658
|
+
header?: never;
|
|
11659
|
+
path?: never;
|
|
11660
|
+
cookie?: never;
|
|
11661
|
+
};
|
|
11662
|
+
/**
|
|
11663
|
+
* Export Purchase Return Invoice Pdf
|
|
11664
|
+
* @description Endpoint for exporting a purchase return invoice to PDF
|
|
11665
|
+
* Responses:
|
|
11666
|
+
* - 200: purchaseReturnInvoiceExported
|
|
11667
|
+
* - 403: permissionDenied
|
|
11668
|
+
* - 404: purchaseReturnInvoiceDoesNotExist
|
|
11669
|
+
* - 500: internalServerError
|
|
11670
|
+
* - Permission Key :
|
|
11671
|
+
* - purchasereturninvoice : [export]
|
|
11672
|
+
*/
|
|
11673
|
+
get: operations["purchase_return_invoice_views_export_purchase_return_invoice_pdf"];
|
|
11674
|
+
put?: never;
|
|
11675
|
+
post?: never;
|
|
11676
|
+
delete?: never;
|
|
11677
|
+
options?: never;
|
|
11678
|
+
head?: never;
|
|
11679
|
+
patch?: never;
|
|
11680
|
+
trace?: never;
|
|
11681
|
+
};
|
|
11655
11682
|
"/api/v1/inventory/goods-receipt-note/": {
|
|
11656
11683
|
parameters: {
|
|
11657
11684
|
query?: never;
|
|
@@ -14155,6 +14182,33 @@ export interface paths {
|
|
|
14155
14182
|
patch?: never;
|
|
14156
14183
|
trace?: never;
|
|
14157
14184
|
};
|
|
14185
|
+
"/api/v1/sales/quotations/{id}/export-pdf/": {
|
|
14186
|
+
parameters: {
|
|
14187
|
+
query?: never;
|
|
14188
|
+
header?: never;
|
|
14189
|
+
path?: never;
|
|
14190
|
+
cookie?: never;
|
|
14191
|
+
};
|
|
14192
|
+
/**
|
|
14193
|
+
* Export Sales Quotation Pdf
|
|
14194
|
+
* @description Endpoint for exporting a sales quotation to PDF
|
|
14195
|
+
* Responses:
|
|
14196
|
+
* - 200: salesQuotationExported
|
|
14197
|
+
* - 403: permissionDenied
|
|
14198
|
+
* - 404: salesQuotationDoesNotExist
|
|
14199
|
+
* - 500: internalServerError
|
|
14200
|
+
* - Permission Key :
|
|
14201
|
+
* - salesquotation : [export]
|
|
14202
|
+
*/
|
|
14203
|
+
get: operations["sales_quotation_views_export_sales_quotation_pdf"];
|
|
14204
|
+
put?: never;
|
|
14205
|
+
post?: never;
|
|
14206
|
+
delete?: never;
|
|
14207
|
+
options?: never;
|
|
14208
|
+
head?: never;
|
|
14209
|
+
patch?: never;
|
|
14210
|
+
trace?: never;
|
|
14211
|
+
};
|
|
14158
14212
|
"/api/v1/common/contact-segmentation/": {
|
|
14159
14213
|
parameters: {
|
|
14160
14214
|
query?: never;
|
|
@@ -26254,7 +26308,7 @@ export interface components {
|
|
|
26254
26308
|
/**
|
|
26255
26309
|
* Id
|
|
26256
26310
|
* Format: uuid
|
|
26257
|
-
* @example
|
|
26311
|
+
* @example 43f7edb2-fc8e-4666-bf7e-7a5536863eca
|
|
26258
26312
|
*/
|
|
26259
26313
|
id: string;
|
|
26260
26314
|
/**
|
|
@@ -67078,6 +67132,64 @@ export interface operations {
|
|
|
67078
67132
|
};
|
|
67079
67133
|
};
|
|
67080
67134
|
};
|
|
67135
|
+
purchase_return_invoice_views_export_purchase_return_invoice_pdf: {
|
|
67136
|
+
parameters: {
|
|
67137
|
+
query?: never;
|
|
67138
|
+
header?: never;
|
|
67139
|
+
path: {
|
|
67140
|
+
id: string;
|
|
67141
|
+
};
|
|
67142
|
+
cookie?: never;
|
|
67143
|
+
};
|
|
67144
|
+
requestBody?: never;
|
|
67145
|
+
responses: {
|
|
67146
|
+
/** @description OK */
|
|
67147
|
+
200: {
|
|
67148
|
+
headers: {
|
|
67149
|
+
[name: string]: unknown;
|
|
67150
|
+
};
|
|
67151
|
+
content: {
|
|
67152
|
+
"application/json": string;
|
|
67153
|
+
};
|
|
67154
|
+
};
|
|
67155
|
+
/** @description Bad Request */
|
|
67156
|
+
400: {
|
|
67157
|
+
headers: {
|
|
67158
|
+
[name: string]: unknown;
|
|
67159
|
+
};
|
|
67160
|
+
content: {
|
|
67161
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
67162
|
+
};
|
|
67163
|
+
};
|
|
67164
|
+
/** @description Forbidden */
|
|
67165
|
+
403: {
|
|
67166
|
+
headers: {
|
|
67167
|
+
[name: string]: unknown;
|
|
67168
|
+
};
|
|
67169
|
+
content: {
|
|
67170
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
67171
|
+
};
|
|
67172
|
+
};
|
|
67173
|
+
/** @description Not Found */
|
|
67174
|
+
404: {
|
|
67175
|
+
headers: {
|
|
67176
|
+
[name: string]: unknown;
|
|
67177
|
+
};
|
|
67178
|
+
content: {
|
|
67179
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
67180
|
+
};
|
|
67181
|
+
};
|
|
67182
|
+
/** @description Internal Server Error */
|
|
67183
|
+
500: {
|
|
67184
|
+
headers: {
|
|
67185
|
+
[name: string]: unknown;
|
|
67186
|
+
};
|
|
67187
|
+
content: {
|
|
67188
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
67189
|
+
};
|
|
67190
|
+
};
|
|
67191
|
+
};
|
|
67192
|
+
};
|
|
67081
67193
|
inventory_receipt_note_views_list_goods_receipt_notes: {
|
|
67082
67194
|
parameters: {
|
|
67083
67195
|
query: {
|
|
@@ -72012,6 +72124,64 @@ export interface operations {
|
|
|
72012
72124
|
};
|
|
72013
72125
|
};
|
|
72014
72126
|
};
|
|
72127
|
+
sales_quotation_views_export_sales_quotation_pdf: {
|
|
72128
|
+
parameters: {
|
|
72129
|
+
query?: never;
|
|
72130
|
+
header?: never;
|
|
72131
|
+
path: {
|
|
72132
|
+
id: string;
|
|
72133
|
+
};
|
|
72134
|
+
cookie?: never;
|
|
72135
|
+
};
|
|
72136
|
+
requestBody?: never;
|
|
72137
|
+
responses: {
|
|
72138
|
+
/** @description OK */
|
|
72139
|
+
200: {
|
|
72140
|
+
headers: {
|
|
72141
|
+
[name: string]: unknown;
|
|
72142
|
+
};
|
|
72143
|
+
content: {
|
|
72144
|
+
"application/json": string;
|
|
72145
|
+
};
|
|
72146
|
+
};
|
|
72147
|
+
/** @description Bad Request */
|
|
72148
|
+
400: {
|
|
72149
|
+
headers: {
|
|
72150
|
+
[name: string]: unknown;
|
|
72151
|
+
};
|
|
72152
|
+
content: {
|
|
72153
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
72154
|
+
};
|
|
72155
|
+
};
|
|
72156
|
+
/** @description Forbidden */
|
|
72157
|
+
403: {
|
|
72158
|
+
headers: {
|
|
72159
|
+
[name: string]: unknown;
|
|
72160
|
+
};
|
|
72161
|
+
content: {
|
|
72162
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
72163
|
+
};
|
|
72164
|
+
};
|
|
72165
|
+
/** @description Not Found */
|
|
72166
|
+
404: {
|
|
72167
|
+
headers: {
|
|
72168
|
+
[name: string]: unknown;
|
|
72169
|
+
};
|
|
72170
|
+
content: {
|
|
72171
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
72172
|
+
};
|
|
72173
|
+
};
|
|
72174
|
+
/** @description Internal Server Error */
|
|
72175
|
+
500: {
|
|
72176
|
+
headers: {
|
|
72177
|
+
[name: string]: unknown;
|
|
72178
|
+
};
|
|
72179
|
+
content: {
|
|
72180
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
72181
|
+
};
|
|
72182
|
+
};
|
|
72183
|
+
};
|
|
72184
|
+
};
|
|
72015
72185
|
common_contact_segmentation_views_list_contact_segmentation: {
|
|
72016
72186
|
parameters: {
|
|
72017
72187
|
query?: {
|