@erp-galoper/types 1.0.51 → 1.0.53
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
|
@@ -14182,6 +14182,33 @@ export interface paths {
|
|
|
14182
14182
|
patch?: never;
|
|
14183
14183
|
trace?: never;
|
|
14184
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
|
+
};
|
|
14185
14212
|
"/api/v1/common/contact-segmentation/": {
|
|
14186
14213
|
parameters: {
|
|
14187
14214
|
query?: never;
|
|
@@ -15334,6 +15361,33 @@ export interface paths {
|
|
|
15334
15361
|
patch?: never;
|
|
15335
15362
|
trace?: never;
|
|
15336
15363
|
};
|
|
15364
|
+
"/api/v1/sales/orders/{id}/export-pdf/": {
|
|
15365
|
+
parameters: {
|
|
15366
|
+
query?: never;
|
|
15367
|
+
header?: never;
|
|
15368
|
+
path?: never;
|
|
15369
|
+
cookie?: never;
|
|
15370
|
+
};
|
|
15371
|
+
/**
|
|
15372
|
+
* Export Sales Order Pdf
|
|
15373
|
+
* @description Endpoint for exporting a sales order to PDF
|
|
15374
|
+
* Responses:
|
|
15375
|
+
* - 200: salesOrderExported
|
|
15376
|
+
* - 403: permissionDenied
|
|
15377
|
+
* - 404: salesOrderDoesNotExist
|
|
15378
|
+
* - 500: internalServerError
|
|
15379
|
+
* - Permission Key :
|
|
15380
|
+
* - salesorder : [export]
|
|
15381
|
+
*/
|
|
15382
|
+
get: operations["sales_order_views_export_sales_order_pdf"];
|
|
15383
|
+
put?: never;
|
|
15384
|
+
post?: never;
|
|
15385
|
+
delete?: never;
|
|
15386
|
+
options?: never;
|
|
15387
|
+
head?: never;
|
|
15388
|
+
patch?: never;
|
|
15389
|
+
trace?: never;
|
|
15390
|
+
};
|
|
15337
15391
|
"/api/v1/purchase/credit-notes/": {
|
|
15338
15392
|
parameters: {
|
|
15339
15393
|
query?: never;
|
|
@@ -26281,7 +26335,7 @@ export interface components {
|
|
|
26281
26335
|
/**
|
|
26282
26336
|
* Id
|
|
26283
26337
|
* Format: uuid
|
|
26284
|
-
* @example
|
|
26338
|
+
* @example 311d5481-934d-4b5a-befb-8a9b5c07b052
|
|
26285
26339
|
*/
|
|
26286
26340
|
id: string;
|
|
26287
26341
|
/**
|
|
@@ -72097,6 +72151,64 @@ export interface operations {
|
|
|
72097
72151
|
};
|
|
72098
72152
|
};
|
|
72099
72153
|
};
|
|
72154
|
+
sales_quotation_views_export_sales_quotation_pdf: {
|
|
72155
|
+
parameters: {
|
|
72156
|
+
query?: never;
|
|
72157
|
+
header?: never;
|
|
72158
|
+
path: {
|
|
72159
|
+
id: string;
|
|
72160
|
+
};
|
|
72161
|
+
cookie?: never;
|
|
72162
|
+
};
|
|
72163
|
+
requestBody?: never;
|
|
72164
|
+
responses: {
|
|
72165
|
+
/** @description OK */
|
|
72166
|
+
200: {
|
|
72167
|
+
headers: {
|
|
72168
|
+
[name: string]: unknown;
|
|
72169
|
+
};
|
|
72170
|
+
content: {
|
|
72171
|
+
"application/json": string;
|
|
72172
|
+
};
|
|
72173
|
+
};
|
|
72174
|
+
/** @description Bad Request */
|
|
72175
|
+
400: {
|
|
72176
|
+
headers: {
|
|
72177
|
+
[name: string]: unknown;
|
|
72178
|
+
};
|
|
72179
|
+
content: {
|
|
72180
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
72181
|
+
};
|
|
72182
|
+
};
|
|
72183
|
+
/** @description Forbidden */
|
|
72184
|
+
403: {
|
|
72185
|
+
headers: {
|
|
72186
|
+
[name: string]: unknown;
|
|
72187
|
+
};
|
|
72188
|
+
content: {
|
|
72189
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
72190
|
+
};
|
|
72191
|
+
};
|
|
72192
|
+
/** @description Not Found */
|
|
72193
|
+
404: {
|
|
72194
|
+
headers: {
|
|
72195
|
+
[name: string]: unknown;
|
|
72196
|
+
};
|
|
72197
|
+
content: {
|
|
72198
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
72199
|
+
};
|
|
72200
|
+
};
|
|
72201
|
+
/** @description Internal Server Error */
|
|
72202
|
+
500: {
|
|
72203
|
+
headers: {
|
|
72204
|
+
[name: string]: unknown;
|
|
72205
|
+
};
|
|
72206
|
+
content: {
|
|
72207
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
72208
|
+
};
|
|
72209
|
+
};
|
|
72210
|
+
};
|
|
72211
|
+
};
|
|
72100
72212
|
common_contact_segmentation_views_list_contact_segmentation: {
|
|
72101
72213
|
parameters: {
|
|
72102
72214
|
query?: {
|
|
@@ -74373,6 +74485,64 @@ export interface operations {
|
|
|
74373
74485
|
};
|
|
74374
74486
|
};
|
|
74375
74487
|
};
|
|
74488
|
+
sales_order_views_export_sales_order_pdf: {
|
|
74489
|
+
parameters: {
|
|
74490
|
+
query?: never;
|
|
74491
|
+
header?: never;
|
|
74492
|
+
path: {
|
|
74493
|
+
id: string;
|
|
74494
|
+
};
|
|
74495
|
+
cookie?: never;
|
|
74496
|
+
};
|
|
74497
|
+
requestBody?: never;
|
|
74498
|
+
responses: {
|
|
74499
|
+
/** @description OK */
|
|
74500
|
+
200: {
|
|
74501
|
+
headers: {
|
|
74502
|
+
[name: string]: unknown;
|
|
74503
|
+
};
|
|
74504
|
+
content: {
|
|
74505
|
+
"application/json": string;
|
|
74506
|
+
};
|
|
74507
|
+
};
|
|
74508
|
+
/** @description Bad Request */
|
|
74509
|
+
400: {
|
|
74510
|
+
headers: {
|
|
74511
|
+
[name: string]: unknown;
|
|
74512
|
+
};
|
|
74513
|
+
content: {
|
|
74514
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
74515
|
+
};
|
|
74516
|
+
};
|
|
74517
|
+
/** @description Forbidden */
|
|
74518
|
+
403: {
|
|
74519
|
+
headers: {
|
|
74520
|
+
[name: string]: unknown;
|
|
74521
|
+
};
|
|
74522
|
+
content: {
|
|
74523
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
74524
|
+
};
|
|
74525
|
+
};
|
|
74526
|
+
/** @description Not Found */
|
|
74527
|
+
404: {
|
|
74528
|
+
headers: {
|
|
74529
|
+
[name: string]: unknown;
|
|
74530
|
+
};
|
|
74531
|
+
content: {
|
|
74532
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
74533
|
+
};
|
|
74534
|
+
};
|
|
74535
|
+
/** @description Internal Server Error */
|
|
74536
|
+
500: {
|
|
74537
|
+
headers: {
|
|
74538
|
+
[name: string]: unknown;
|
|
74539
|
+
};
|
|
74540
|
+
content: {
|
|
74541
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
74542
|
+
};
|
|
74543
|
+
};
|
|
74544
|
+
};
|
|
74545
|
+
};
|
|
74376
74546
|
purchase_credit_note_views_list_purchase_credit_notes: {
|
|
74377
74547
|
parameters: {
|
|
74378
74548
|
query?: {
|