@erp-galoper/types 1.0.56 → 1.0.58
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 +90 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -16319,6 +16319,37 @@ export interface paths {
|
|
|
16319
16319
|
patch?: never;
|
|
16320
16320
|
trace?: never;
|
|
16321
16321
|
};
|
|
16322
|
+
"/api/v1/sales/invoices/{id}/export-pdf/": {
|
|
16323
|
+
parameters: {
|
|
16324
|
+
query?: never;
|
|
16325
|
+
header?: never;
|
|
16326
|
+
path?: never;
|
|
16327
|
+
cookie?: never;
|
|
16328
|
+
};
|
|
16329
|
+
/**
|
|
16330
|
+
* Export Sales Invoice Pdf
|
|
16331
|
+
* @description Endpoint for exporting a sales order to PDF
|
|
16332
|
+
* Responses:
|
|
16333
|
+
* - 200:
|
|
16334
|
+
* - salesInvoiceExported
|
|
16335
|
+
* - 403:
|
|
16336
|
+
* - permissionDenied
|
|
16337
|
+
* - 404:
|
|
16338
|
+
* - salesInvoiceDoesNotExist
|
|
16339
|
+
* - 500:
|
|
16340
|
+
* - internalServerError
|
|
16341
|
+
* - Permission Key :
|
|
16342
|
+
* - salesinvoice : [export]
|
|
16343
|
+
*/
|
|
16344
|
+
get: operations["sales_invoice_views_export_sales_invoice_pdf"];
|
|
16345
|
+
put?: never;
|
|
16346
|
+
post?: never;
|
|
16347
|
+
delete?: never;
|
|
16348
|
+
options?: never;
|
|
16349
|
+
head?: never;
|
|
16350
|
+
patch?: never;
|
|
16351
|
+
trace?: never;
|
|
16352
|
+
};
|
|
16322
16353
|
"/api/v1/sales/return-orders/": {
|
|
16323
16354
|
parameters: {
|
|
16324
16355
|
query?: never;
|
|
@@ -26416,7 +26447,7 @@ export interface components {
|
|
|
26416
26447
|
/**
|
|
26417
26448
|
* Id
|
|
26418
26449
|
* Format: uuid
|
|
26419
|
-
* @example
|
|
26450
|
+
* @example 5bb3af86-244e-4879-a557-099a393ceda4
|
|
26420
26451
|
*/
|
|
26421
26452
|
id: string;
|
|
26422
26453
|
/**
|
|
@@ -76287,6 +76318,64 @@ export interface operations {
|
|
|
76287
76318
|
};
|
|
76288
76319
|
};
|
|
76289
76320
|
};
|
|
76321
|
+
sales_invoice_views_export_sales_invoice_pdf: {
|
|
76322
|
+
parameters: {
|
|
76323
|
+
query?: never;
|
|
76324
|
+
header?: never;
|
|
76325
|
+
path: {
|
|
76326
|
+
id: string;
|
|
76327
|
+
};
|
|
76328
|
+
cookie?: never;
|
|
76329
|
+
};
|
|
76330
|
+
requestBody?: never;
|
|
76331
|
+
responses: {
|
|
76332
|
+
/** @description OK */
|
|
76333
|
+
200: {
|
|
76334
|
+
headers: {
|
|
76335
|
+
[name: string]: unknown;
|
|
76336
|
+
};
|
|
76337
|
+
content: {
|
|
76338
|
+
"application/json": string;
|
|
76339
|
+
};
|
|
76340
|
+
};
|
|
76341
|
+
/** @description Bad Request */
|
|
76342
|
+
400: {
|
|
76343
|
+
headers: {
|
|
76344
|
+
[name: string]: unknown;
|
|
76345
|
+
};
|
|
76346
|
+
content: {
|
|
76347
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
76348
|
+
};
|
|
76349
|
+
};
|
|
76350
|
+
/** @description Forbidden */
|
|
76351
|
+
403: {
|
|
76352
|
+
headers: {
|
|
76353
|
+
[name: string]: unknown;
|
|
76354
|
+
};
|
|
76355
|
+
content: {
|
|
76356
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
76357
|
+
};
|
|
76358
|
+
};
|
|
76359
|
+
/** @description Not Found */
|
|
76360
|
+
404: {
|
|
76361
|
+
headers: {
|
|
76362
|
+
[name: string]: unknown;
|
|
76363
|
+
};
|
|
76364
|
+
content: {
|
|
76365
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
76366
|
+
};
|
|
76367
|
+
};
|
|
76368
|
+
/** @description Internal Server Error */
|
|
76369
|
+
500: {
|
|
76370
|
+
headers: {
|
|
76371
|
+
[name: string]: unknown;
|
|
76372
|
+
};
|
|
76373
|
+
content: {
|
|
76374
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
76375
|
+
};
|
|
76376
|
+
};
|
|
76377
|
+
};
|
|
76378
|
+
};
|
|
76290
76379
|
sales_return_order_views_list_sales_return_orders: {
|
|
76291
76380
|
parameters: {
|
|
76292
76381
|
query?: {
|