@erp-galoper/types 1.0.51 → 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 +86 -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;
|
|
@@ -26281,7 +26308,7 @@ export interface components {
|
|
|
26281
26308
|
/**
|
|
26282
26309
|
* Id
|
|
26283
26310
|
* Format: uuid
|
|
26284
|
-
* @example
|
|
26311
|
+
* @example 43f7edb2-fc8e-4666-bf7e-7a5536863eca
|
|
26285
26312
|
*/
|
|
26286
26313
|
id: string;
|
|
26287
26314
|
/**
|
|
@@ -72097,6 +72124,64 @@ export interface operations {
|
|
|
72097
72124
|
};
|
|
72098
72125
|
};
|
|
72099
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
|
+
};
|
|
72100
72185
|
common_contact_segmentation_views_list_contact_segmentation: {
|
|
72101
72186
|
parameters: {
|
|
72102
72187
|
query?: {
|