@erp-galoper/types 1.0.1256 → 1.0.1258
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 +1714 -623
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -15152,6 +15152,66 @@ export interface paths {
|
|
|
15152
15152
|
patch?: never;
|
|
15153
15153
|
trace?: never;
|
|
15154
15154
|
};
|
|
15155
|
+
"/api/v1/sales/quotations/{id}/send-whatsapp/": {
|
|
15156
|
+
parameters: {
|
|
15157
|
+
query?: never;
|
|
15158
|
+
header?: never;
|
|
15159
|
+
path?: never;
|
|
15160
|
+
cookie?: never;
|
|
15161
|
+
};
|
|
15162
|
+
get?: never;
|
|
15163
|
+
put?: never;
|
|
15164
|
+
/**
|
|
15165
|
+
* Send Sales Quotation Whatsapp
|
|
15166
|
+
* @description Endpoint for sending a sales quotation via WhatsApp with PDF attachment
|
|
15167
|
+
*
|
|
15168
|
+
* Args:
|
|
15169
|
+
* id: Sales quotation UUID
|
|
15170
|
+
* template_id: Optional WhatsApp template UUID. If not provided, uses the first active template linked to sales quotations.
|
|
15171
|
+
* Note: Only active templates with entity_type='salesQuotation' will be used when template_id is not specified.
|
|
15172
|
+
*
|
|
15173
|
+
* To get available templates for sales quotations:
|
|
15174
|
+
* GET /api/v1/integration/whatsapp/templates/?entityType=salesQuotation
|
|
15175
|
+
*
|
|
15176
|
+
* Template Validation:
|
|
15177
|
+
* - If template_id is provided, the template must have entity_type='salesQuotation', and active.
|
|
15178
|
+
* - If validation fails, returns 400 error with code 'templateEntityTypeMismatch'
|
|
15179
|
+
*
|
|
15180
|
+
* Responses:
|
|
15181
|
+
* - 200: whatsappMessageSent
|
|
15182
|
+
* - 400: whatsappIntegrationNotConfigured
|
|
15183
|
+
* - whatsappTemplateNotFound
|
|
15184
|
+
* - templateEntityTypeMismatch
|
|
15185
|
+
* - customerPhoneNumberMissing
|
|
15186
|
+
* - pdfGenerationFailed
|
|
15187
|
+
* - invalidPhoneNumber
|
|
15188
|
+
* - numberNotOnWhatsApp
|
|
15189
|
+
* - invalidSenderNumber
|
|
15190
|
+
* - mediaNotAccessible
|
|
15191
|
+
* - mediaTooLarge
|
|
15192
|
+
* - unsupportedMediaType
|
|
15193
|
+
* - templateNotApproved
|
|
15194
|
+
* - templateVariableMismatch
|
|
15195
|
+
* - rateLimitExceeded
|
|
15196
|
+
* - authenticationFailed
|
|
15197
|
+
* - insufficientBalance
|
|
15198
|
+
* - templateError
|
|
15199
|
+
* - recipientOptedOut
|
|
15200
|
+
* - twilioApiError
|
|
15201
|
+
* - 403: permissionDenied
|
|
15202
|
+
* - noModuleAccess
|
|
15203
|
+
* - 404: salesQuotationDoesNotExist
|
|
15204
|
+
* - 500: serverError
|
|
15205
|
+
*
|
|
15206
|
+
* Permission key: salesquotation: ["send"]
|
|
15207
|
+
*/
|
|
15208
|
+
post: operations["sales_quotation_views_send_sales_quotation_whatsapp"];
|
|
15209
|
+
delete?: never;
|
|
15210
|
+
options?: never;
|
|
15211
|
+
head?: never;
|
|
15212
|
+
patch?: never;
|
|
15213
|
+
trace?: never;
|
|
15214
|
+
};
|
|
15155
15215
|
"/api/v1/common/contact-segmentation/": {
|
|
15156
15216
|
parameters: {
|
|
15157
15217
|
query?: never;
|
|
@@ -16340,6 +16400,66 @@ export interface paths {
|
|
|
16340
16400
|
patch?: never;
|
|
16341
16401
|
trace?: never;
|
|
16342
16402
|
};
|
|
16403
|
+
"/api/v1/sales/orders/{id}/send-whatsapp/": {
|
|
16404
|
+
parameters: {
|
|
16405
|
+
query?: never;
|
|
16406
|
+
header?: never;
|
|
16407
|
+
path?: never;
|
|
16408
|
+
cookie?: never;
|
|
16409
|
+
};
|
|
16410
|
+
get?: never;
|
|
16411
|
+
put?: never;
|
|
16412
|
+
/**
|
|
16413
|
+
* Send Sales Order Whatsapp
|
|
16414
|
+
* @description Endpoint for sending a sales order via WhatsApp with PDF attachment
|
|
16415
|
+
*
|
|
16416
|
+
* Args:
|
|
16417
|
+
* id: Sales order UUID
|
|
16418
|
+
* template_id: Optional WhatsApp template UUID. If not provided, uses the first active template linked to sales orders.
|
|
16419
|
+
* Note: Only active templates with entity_type='salesOrder' will be used when template_id is not specified.
|
|
16420
|
+
*
|
|
16421
|
+
* To get available templates for sales orders:
|
|
16422
|
+
* GET /api/v1/integration/whatsapp/templates/?entityType=salesOrder
|
|
16423
|
+
*
|
|
16424
|
+
* Template Validation:
|
|
16425
|
+
* - If template_id is provided, the template must have entity_type='salesOrder', and active.
|
|
16426
|
+
* - If validation fails, returns 400 error with code 'templateEntityTypeMismatch'
|
|
16427
|
+
*
|
|
16428
|
+
* Responses:
|
|
16429
|
+
* - 200: whatsappMessageSent
|
|
16430
|
+
* - 400: whatsappIntegrationNotConfigured
|
|
16431
|
+
* - whatsappTemplateNotFound
|
|
16432
|
+
* - templateEntityTypeMismatch
|
|
16433
|
+
* - customerPhoneNumberMissing
|
|
16434
|
+
* - pdfGenerationFailed
|
|
16435
|
+
* - invalidPhoneNumber
|
|
16436
|
+
* - numberNotOnWhatsApp
|
|
16437
|
+
* - invalidSenderNumber
|
|
16438
|
+
* - mediaNotAccessible
|
|
16439
|
+
* - mediaTooLarge
|
|
16440
|
+
* - unsupportedMediaType
|
|
16441
|
+
* - templateNotApproved
|
|
16442
|
+
* - templateVariableMismatch
|
|
16443
|
+
* - rateLimitExceeded
|
|
16444
|
+
* - authenticationFailed
|
|
16445
|
+
* - insufficientBalance
|
|
16446
|
+
* - templateError
|
|
16447
|
+
* - recipientOptedOut
|
|
16448
|
+
* - twilioApiError
|
|
16449
|
+
* - 403: permissionDenied
|
|
16450
|
+
* - noModuleAccess
|
|
16451
|
+
* - 404: salesOrderDoesNotExist
|
|
16452
|
+
* - 500: serverError
|
|
16453
|
+
*
|
|
16454
|
+
* Permission key: salesorder: ["send"]
|
|
16455
|
+
*/
|
|
16456
|
+
post: operations["sales_order_views_send_sales_order_whatsapp"];
|
|
16457
|
+
delete?: never;
|
|
16458
|
+
options?: never;
|
|
16459
|
+
head?: never;
|
|
16460
|
+
patch?: never;
|
|
16461
|
+
trace?: never;
|
|
16462
|
+
};
|
|
16343
16463
|
"/api/v1/purchase/credit-notes/": {
|
|
16344
16464
|
parameters: {
|
|
16345
16465
|
query?: never;
|
|
@@ -17256,6 +17376,66 @@ export interface paths {
|
|
|
17256
17376
|
patch?: never;
|
|
17257
17377
|
trace?: never;
|
|
17258
17378
|
};
|
|
17379
|
+
"/api/v1/sales/invoices/{id}/send-whatsapp/": {
|
|
17380
|
+
parameters: {
|
|
17381
|
+
query?: never;
|
|
17382
|
+
header?: never;
|
|
17383
|
+
path?: never;
|
|
17384
|
+
cookie?: never;
|
|
17385
|
+
};
|
|
17386
|
+
get?: never;
|
|
17387
|
+
put?: never;
|
|
17388
|
+
/**
|
|
17389
|
+
* Send Sales Invoice Whatsapp
|
|
17390
|
+
* @description Endpoint for sending a sales invoice via WhatsApp with PDF attachment
|
|
17391
|
+
*
|
|
17392
|
+
* Args:
|
|
17393
|
+
* id: Sales invoice UUID
|
|
17394
|
+
* template_id: Optional WhatsApp template UUID. If not provided, uses the first active template linked to sales invoices.
|
|
17395
|
+
* Note: Only active templates with entity_type='salesInvoice' will be used when template_id is not specified.
|
|
17396
|
+
*
|
|
17397
|
+
* To get available templates for sales invoices:
|
|
17398
|
+
* GET /api/v1/integration/whatsapp/templates/?entityType=salesInvoice
|
|
17399
|
+
*
|
|
17400
|
+
* Template Validation:
|
|
17401
|
+
* - If template_id is provided, the template must have entity_type='salesInvoice', and active.
|
|
17402
|
+
* - If validation fails, returns 400 error with code 'templateEntityTypeMismatch'
|
|
17403
|
+
*
|
|
17404
|
+
* Responses:
|
|
17405
|
+
* - 200: whatsappMessageSent
|
|
17406
|
+
* - 400: whatsappIntegrationNotConfigured
|
|
17407
|
+
* - whatsappTemplateNotFound
|
|
17408
|
+
* - templateEntityTypeMismatch
|
|
17409
|
+
* - customerPhoneNumberMissing
|
|
17410
|
+
* - pdfGenerationFailed
|
|
17411
|
+
* - invalidPhoneNumber
|
|
17412
|
+
* - numberNotOnWhatsApp
|
|
17413
|
+
* - invalidSenderNumber
|
|
17414
|
+
* - mediaNotAccessible
|
|
17415
|
+
* - mediaTooLarge
|
|
17416
|
+
* - unsupportedMediaType
|
|
17417
|
+
* - templateNotApproved
|
|
17418
|
+
* - templateVariableMismatch
|
|
17419
|
+
* - rateLimitExceeded
|
|
17420
|
+
* - authenticationFailed
|
|
17421
|
+
* - insufficientBalance
|
|
17422
|
+
* - templateError
|
|
17423
|
+
* - recipientOptedOut
|
|
17424
|
+
* - twilioApiError
|
|
17425
|
+
* - 403: permissionDenied
|
|
17426
|
+
* - noModuleAccess
|
|
17427
|
+
* - 404: salesInvoiceDoesNotExist
|
|
17428
|
+
* - 500: serverError
|
|
17429
|
+
*
|
|
17430
|
+
* Permission key: salesinvoice: ["send"]
|
|
17431
|
+
*/
|
|
17432
|
+
post: operations["sales_invoice_views_send_sales_invoice_whatsapp"];
|
|
17433
|
+
delete?: never;
|
|
17434
|
+
options?: never;
|
|
17435
|
+
head?: never;
|
|
17436
|
+
patch?: never;
|
|
17437
|
+
trace?: never;
|
|
17438
|
+
};
|
|
17259
17439
|
"/api/v1/sales/return-orders/": {
|
|
17260
17440
|
parameters: {
|
|
17261
17441
|
query?: never;
|
|
@@ -18373,6 +18553,66 @@ export interface paths {
|
|
|
18373
18553
|
patch?: never;
|
|
18374
18554
|
trace?: never;
|
|
18375
18555
|
};
|
|
18556
|
+
"/api/v1/inventory/goods-delivery-note/{id}/send-whatsapp/": {
|
|
18557
|
+
parameters: {
|
|
18558
|
+
query?: never;
|
|
18559
|
+
header?: never;
|
|
18560
|
+
path?: never;
|
|
18561
|
+
cookie?: never;
|
|
18562
|
+
};
|
|
18563
|
+
get?: never;
|
|
18564
|
+
put?: never;
|
|
18565
|
+
/**
|
|
18566
|
+
* Send Delivery Note Whatsapp
|
|
18567
|
+
* @description Endpoint for sending a delivery note via WhatsApp with PDF attachment
|
|
18568
|
+
*
|
|
18569
|
+
* Args:
|
|
18570
|
+
* id: Delivery note UUID
|
|
18571
|
+
* template_id: Optional WhatsApp template UUID. If not provided, uses the first active template linked to delivery notes.
|
|
18572
|
+
* Note: Only active templates with entity_type='goodsDeliveryNote' will be used when template_id is not specified.
|
|
18573
|
+
*
|
|
18574
|
+
* To get available templates for delivery notes:
|
|
18575
|
+
* GET /api/v1/integration/whatsapp/templates/?entityType=goodsDeliveryNote
|
|
18576
|
+
*
|
|
18577
|
+
* Template Validation:
|
|
18578
|
+
* - If template_id is provided, the template must have entity_type='goodsDeliveryNote', and active.
|
|
18579
|
+
* - If validation fails, returns 400 error with code 'templateEntityTypeMismatch'
|
|
18580
|
+
*
|
|
18581
|
+
* Responses:
|
|
18582
|
+
* - 200: whatsappMessageSent
|
|
18583
|
+
* - 400: whatsappIntegrationNotConfigured
|
|
18584
|
+
* - whatsappTemplateNotFound
|
|
18585
|
+
* - templateEntityTypeMismatch
|
|
18586
|
+
* - customerPhoneNumberMissing
|
|
18587
|
+
* - pdfGenerationFailed
|
|
18588
|
+
* - invalidPhoneNumber
|
|
18589
|
+
* - numberNotOnWhatsApp
|
|
18590
|
+
* - invalidSenderNumber
|
|
18591
|
+
* - mediaNotAccessible
|
|
18592
|
+
* - mediaTooLarge
|
|
18593
|
+
* - unsupportedMediaType
|
|
18594
|
+
* - templateNotApproved
|
|
18595
|
+
* - templateVariableMismatch
|
|
18596
|
+
* - rateLimitExceeded
|
|
18597
|
+
* - authenticationFailed
|
|
18598
|
+
* - insufficientBalance
|
|
18599
|
+
* - templateError
|
|
18600
|
+
* - recipientOptedOut
|
|
18601
|
+
* - twilioApiError
|
|
18602
|
+
* - 403: permissionDenied
|
|
18603
|
+
* - noModuleAccess
|
|
18604
|
+
* - 404: deliveryNoteDoesNotExist
|
|
18605
|
+
* - 500: serverError
|
|
18606
|
+
*
|
|
18607
|
+
* Permission key: goodsdeliverynote: ["send"]
|
|
18608
|
+
*/
|
|
18609
|
+
post: operations["inventory_delivery_note_views_send_delivery_note_whatsapp"];
|
|
18610
|
+
delete?: never;
|
|
18611
|
+
options?: never;
|
|
18612
|
+
head?: never;
|
|
18613
|
+
patch?: never;
|
|
18614
|
+
trace?: never;
|
|
18615
|
+
};
|
|
18376
18616
|
"/api/v1/settings/accounting/default-subsidiary-accounts/": {
|
|
18377
18617
|
parameters: {
|
|
18378
18618
|
query?: never;
|
|
@@ -20749,6 +20989,94 @@ export interface paths {
|
|
|
20749
20989
|
patch?: never;
|
|
20750
20990
|
trace?: never;
|
|
20751
20991
|
};
|
|
20992
|
+
"/api/v1/integrations/whatsapp/setup/": {
|
|
20993
|
+
parameters: {
|
|
20994
|
+
query?: never;
|
|
20995
|
+
header?: never;
|
|
20996
|
+
path?: never;
|
|
20997
|
+
cookie?: never;
|
|
20998
|
+
};
|
|
20999
|
+
get?: never;
|
|
21000
|
+
put?: never;
|
|
21001
|
+
/**
|
|
21002
|
+
* Setup WhatsApp Integration
|
|
21003
|
+
* @description Setup WhatsApp integration with your Twilio credentials.
|
|
21004
|
+
*/
|
|
21005
|
+
post: operations["integration_whatsapp_views_setup_whatsapp"];
|
|
21006
|
+
delete?: never;
|
|
21007
|
+
options?: never;
|
|
21008
|
+
head?: never;
|
|
21009
|
+
patch?: never;
|
|
21010
|
+
trace?: never;
|
|
21011
|
+
};
|
|
21012
|
+
"/api/v1/integrations/whatsapp/templates/sync-approval-statuses/": {
|
|
21013
|
+
parameters: {
|
|
21014
|
+
query?: never;
|
|
21015
|
+
header?: never;
|
|
21016
|
+
path?: never;
|
|
21017
|
+
cookie?: never;
|
|
21018
|
+
};
|
|
21019
|
+
get?: never;
|
|
21020
|
+
put?: never;
|
|
21021
|
+
/**
|
|
21022
|
+
* Sync WhatsApp Approval Statuses
|
|
21023
|
+
* @description Sync WhatsApp approval statuses for all templates from Twilio and update database.
|
|
21024
|
+
*/
|
|
21025
|
+
post: operations["integration_whatsapp_views_sync_approval_statuses"];
|
|
21026
|
+
delete?: never;
|
|
21027
|
+
options?: never;
|
|
21028
|
+
head?: never;
|
|
21029
|
+
patch?: never;
|
|
21030
|
+
trace?: never;
|
|
21031
|
+
};
|
|
21032
|
+
"/api/v1/integrations/whatsapp/templates/": {
|
|
21033
|
+
parameters: {
|
|
21034
|
+
query?: never;
|
|
21035
|
+
header?: never;
|
|
21036
|
+
path?: never;
|
|
21037
|
+
cookie?: never;
|
|
21038
|
+
};
|
|
21039
|
+
/**
|
|
21040
|
+
* Get WhatsApp Templates
|
|
21041
|
+
* @description Get WhatsApp content templates stored in the database with pagination.
|
|
21042
|
+
*/
|
|
21043
|
+
get: operations["integration_whatsapp_views_get_templates"];
|
|
21044
|
+
put?: never;
|
|
21045
|
+
/**
|
|
21046
|
+
* Register New WhatsApp Template
|
|
21047
|
+
* @description Create a new WhatsApp content template in Twilio.
|
|
21048
|
+
*/
|
|
21049
|
+
post: operations["integration_whatsapp_views_register_template"];
|
|
21050
|
+
delete?: never;
|
|
21051
|
+
options?: never;
|
|
21052
|
+
head?: never;
|
|
21053
|
+
patch?: never;
|
|
21054
|
+
trace?: never;
|
|
21055
|
+
};
|
|
21056
|
+
"/api/v1/integrations/whatsapp/templates/{id}/": {
|
|
21057
|
+
parameters: {
|
|
21058
|
+
query?: never;
|
|
21059
|
+
header?: never;
|
|
21060
|
+
path?: never;
|
|
21061
|
+
cookie?: never;
|
|
21062
|
+
};
|
|
21063
|
+
/**
|
|
21064
|
+
* Get Single WhatsApp Template
|
|
21065
|
+
* @description Get a single WhatsApp template by ID.
|
|
21066
|
+
*/
|
|
21067
|
+
get: operations["integration_whatsapp_views_get_template"];
|
|
21068
|
+
put?: never;
|
|
21069
|
+
post?: never;
|
|
21070
|
+
/**
|
|
21071
|
+
* Delete WhatsApp Template
|
|
21072
|
+
* @description Delete a WhatsApp template from database and Twilio.
|
|
21073
|
+
*/
|
|
21074
|
+
delete: operations["integration_whatsapp_views_delete_template"];
|
|
21075
|
+
options?: never;
|
|
21076
|
+
head?: never;
|
|
21077
|
+
patch?: never;
|
|
21078
|
+
trace?: never;
|
|
21079
|
+
};
|
|
20752
21080
|
"/api/v1/setting/notification/{id}/": {
|
|
20753
21081
|
parameters: {
|
|
20754
21082
|
query?: never;
|
|
@@ -20775,9 +21103,6 @@ export interface paths {
|
|
|
20775
21103
|
* Possible Responses:
|
|
20776
21104
|
* - 200:
|
|
20777
21105
|
* - RetrieveNotificationSetting
|
|
20778
|
-
* - 403:
|
|
20779
|
-
* - permissionDenied
|
|
20780
|
-
* - noModuleAccess
|
|
20781
21106
|
* - 400:
|
|
20782
21107
|
* - ValidationError
|
|
20783
21108
|
* - 404:
|
|
@@ -20815,21 +21140,7 @@ export interface paths {
|
|
|
20815
21140
|
*/
|
|
20816
21141
|
get: operations["erp_settings_notificationsettings_views_list_notification_settings"];
|
|
20817
21142
|
put?: never;
|
|
20818
|
-
|
|
20819
|
-
* Create Notification Setting
|
|
20820
|
-
* @description Endpoint for create comment
|
|
20821
|
-
* Possible Responses:
|
|
20822
|
-
* - 201:
|
|
20823
|
-
* - RetrieveNotificationSetting
|
|
20824
|
-
* - 400:
|
|
20825
|
-
* - ValidationError
|
|
20826
|
-
* - contentTypeDoesNotExist
|
|
20827
|
-
* - 409:
|
|
20828
|
-
* - DuplicateNotificationSetting
|
|
20829
|
-
* - 500:
|
|
20830
|
-
* - internalServerError
|
|
20831
|
-
*/
|
|
20832
|
-
post: operations["erp_settings_notificationsettings_views_create_notification_setting"];
|
|
21143
|
+
post?: never;
|
|
20833
21144
|
delete?: never;
|
|
20834
21145
|
options?: never;
|
|
20835
21146
|
head?: never;
|
|
@@ -23071,6 +23382,42 @@ export interface components {
|
|
|
23071
23382
|
* @default []
|
|
23072
23383
|
*/
|
|
23073
23384
|
salesrefundvoucher: components["schemas"]["BasePermissionsSchema_Sales_SalesrefundvoucherEnum"][];
|
|
23385
|
+
/**
|
|
23386
|
+
* Salesbybrandreport
|
|
23387
|
+
* @description salesbybrandreport actions
|
|
23388
|
+
* @default []
|
|
23389
|
+
*/
|
|
23390
|
+
salesbybrandreport: components["schemas"]["BasePermissionsSchema_Sales_SalesbybrandreportEnum"][];
|
|
23391
|
+
/**
|
|
23392
|
+
* Salesbycategoryreport
|
|
23393
|
+
* @description salesbycategoryreport actions
|
|
23394
|
+
* @default []
|
|
23395
|
+
*/
|
|
23396
|
+
salesbycategoryreport: components["schemas"]["BasePermissionsSchema_Sales_SalesbycategoryreportEnum"][];
|
|
23397
|
+
/**
|
|
23398
|
+
* Salesbycustomerreport
|
|
23399
|
+
* @description salesbycustomerreport actions
|
|
23400
|
+
* @default []
|
|
23401
|
+
*/
|
|
23402
|
+
salesbycustomerreport: components["schemas"]["BasePermissionsSchema_Sales_SalesbycustomerreportEnum"][];
|
|
23403
|
+
/**
|
|
23404
|
+
* Salesbyitemreport
|
|
23405
|
+
* @description salesbyitemreport actions
|
|
23406
|
+
* @default []
|
|
23407
|
+
*/
|
|
23408
|
+
salesbyitemreport: components["schemas"]["BasePermissionsSchema_Sales_SalesbyitemreportEnum"][];
|
|
23409
|
+
/**
|
|
23410
|
+
* Salesbysalespersonreport
|
|
23411
|
+
* @description salesbysalespersonreport actions
|
|
23412
|
+
* @default []
|
|
23413
|
+
*/
|
|
23414
|
+
salesbysalespersonreport: components["schemas"]["BasePermissionsSchema_Sales_SalesbysalespersonreportEnum"][];
|
|
23415
|
+
/**
|
|
23416
|
+
* Salesbywarehousereport
|
|
23417
|
+
* @description salesbywarehousereport actions
|
|
23418
|
+
* @default []
|
|
23419
|
+
*/
|
|
23420
|
+
salesbywarehousereport: components["schemas"]["BasePermissionsSchema_Sales_SalesbywarehousereportEnum"][];
|
|
23074
23421
|
/**
|
|
23075
23422
|
* Cost
|
|
23076
23423
|
* @description cost actions
|
|
@@ -23095,6 +23442,18 @@ export interface components {
|
|
|
23095
23442
|
* @default []
|
|
23096
23443
|
*/
|
|
23097
23444
|
profit: components["schemas"]["BasePermissionsSchema_Sales_ProfitEnum"][];
|
|
23445
|
+
/**
|
|
23446
|
+
* Salessummaryreport
|
|
23447
|
+
* @description salessummaryreport actions
|
|
23448
|
+
* @default []
|
|
23449
|
+
*/
|
|
23450
|
+
salessummaryreport: components["schemas"]["BasePermissionsSchema_Sales_SalessummaryreportEnum"][];
|
|
23451
|
+
/**
|
|
23452
|
+
* Salestrendreport
|
|
23453
|
+
* @description salestrendreport actions
|
|
23454
|
+
* @default []
|
|
23455
|
+
*/
|
|
23456
|
+
salestrendreport: components["schemas"]["BasePermissionsSchema_Sales_SalestrendreportEnum"][];
|
|
23098
23457
|
};
|
|
23099
23458
|
/**
|
|
23100
23459
|
* BasePermissionsSchema_Sales_CostEnum
|
|
@@ -23131,6 +23490,36 @@ export interface components {
|
|
|
23131
23490
|
* @enum {string}
|
|
23132
23491
|
*/
|
|
23133
23492
|
BasePermissionsSchema_Sales_ReceiptvoucherEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "send" | "view";
|
|
23493
|
+
/**
|
|
23494
|
+
* BasePermissionsSchema_Sales_SalesbybrandreportEnum
|
|
23495
|
+
* @constant
|
|
23496
|
+
*/
|
|
23497
|
+
BasePermissionsSchema_Sales_SalesbybrandreportEnum: "view";
|
|
23498
|
+
/**
|
|
23499
|
+
* BasePermissionsSchema_Sales_SalesbycategoryreportEnum
|
|
23500
|
+
* @constant
|
|
23501
|
+
*/
|
|
23502
|
+
BasePermissionsSchema_Sales_SalesbycategoryreportEnum: "view";
|
|
23503
|
+
/**
|
|
23504
|
+
* BasePermissionsSchema_Sales_SalesbycustomerreportEnum
|
|
23505
|
+
* @constant
|
|
23506
|
+
*/
|
|
23507
|
+
BasePermissionsSchema_Sales_SalesbycustomerreportEnum: "view";
|
|
23508
|
+
/**
|
|
23509
|
+
* BasePermissionsSchema_Sales_SalesbyitemreportEnum
|
|
23510
|
+
* @constant
|
|
23511
|
+
*/
|
|
23512
|
+
BasePermissionsSchema_Sales_SalesbyitemreportEnum: "view";
|
|
23513
|
+
/**
|
|
23514
|
+
* BasePermissionsSchema_Sales_SalesbysalespersonreportEnum
|
|
23515
|
+
* @constant
|
|
23516
|
+
*/
|
|
23517
|
+
BasePermissionsSchema_Sales_SalesbysalespersonreportEnum: "view";
|
|
23518
|
+
/**
|
|
23519
|
+
* BasePermissionsSchema_Sales_SalesbywarehousereportEnum
|
|
23520
|
+
* @constant
|
|
23521
|
+
*/
|
|
23522
|
+
BasePermissionsSchema_Sales_SalesbywarehousereportEnum: "view";
|
|
23134
23523
|
/**
|
|
23135
23524
|
* BasePermissionsSchema_Sales_SalescreditnoteEnum
|
|
23136
23525
|
* @enum {string}
|
|
@@ -23171,6 +23560,16 @@ export interface components {
|
|
|
23171
23560
|
* @enum {string}
|
|
23172
23561
|
*/
|
|
23173
23562
|
BasePermissionsSchema_Sales_SalesreturnorderEnum: "add" | "approve" | "cancel" | "change" | "delete" | "export" | "resettodraft" | "view";
|
|
23563
|
+
/**
|
|
23564
|
+
* BasePermissionsSchema_Sales_SalessummaryreportEnum
|
|
23565
|
+
* @constant
|
|
23566
|
+
*/
|
|
23567
|
+
BasePermissionsSchema_Sales_SalessummaryreportEnum: "view";
|
|
23568
|
+
/**
|
|
23569
|
+
* BasePermissionsSchema_Sales_SalestrendreportEnum
|
|
23570
|
+
* @constant
|
|
23571
|
+
*/
|
|
23572
|
+
BasePermissionsSchema_Sales_SalestrendreportEnum: "view";
|
|
23174
23573
|
/** BasePermissionsSchema_Settings */
|
|
23175
23574
|
BasePermissionsSchema_Settings: {
|
|
23176
23575
|
/**
|
|
@@ -54018,6 +54417,201 @@ export interface components {
|
|
|
54018
54417
|
* @enum {string}
|
|
54019
54418
|
*/
|
|
54020
54419
|
PaymentMethodType: "credit_card" | "debit_card" | "cash_on_delivery" | "bank_transfer" | "paypal" | "apple_pay" | "google_pay" | "shopify_payments" | "manual" | "other";
|
|
54420
|
+
/**
|
|
54421
|
+
* WhatsAppIntegrationResponseSchema
|
|
54422
|
+
* @description Schema for returning WhatsApp integration information.
|
|
54423
|
+
*/
|
|
54424
|
+
WhatsAppIntegrationResponseSchema: {
|
|
54425
|
+
/** Message */
|
|
54426
|
+
message: string;
|
|
54427
|
+
/** Accountsid */
|
|
54428
|
+
accountSid: string;
|
|
54429
|
+
/** Whatsappnumber */
|
|
54430
|
+
whatsappNumber: string;
|
|
54431
|
+
};
|
|
54432
|
+
/**
|
|
54433
|
+
* CreateWhatsAppIntegrationSchema
|
|
54434
|
+
* @description Schema for setting up WhatsApp integration with Twilio credentials.
|
|
54435
|
+
*/
|
|
54436
|
+
CreateWhatsAppIntegrationSchema: {
|
|
54437
|
+
/**
|
|
54438
|
+
* Accountsid
|
|
54439
|
+
* @description Your Twilio Account SID (starts with AC...)
|
|
54440
|
+
*/
|
|
54441
|
+
accountSid: string;
|
|
54442
|
+
/**
|
|
54443
|
+
* Authtoken
|
|
54444
|
+
* @description Your Twilio Auth Token
|
|
54445
|
+
*/
|
|
54446
|
+
authToken: string;
|
|
54447
|
+
/**
|
|
54448
|
+
* Whatsappnumber
|
|
54449
|
+
* @description WhatsApp-enabled phone number (E.164 format). If not provided, will use the first available number from your Twilio account.
|
|
54450
|
+
*/
|
|
54451
|
+
whatsappNumber?: string | null;
|
|
54452
|
+
};
|
|
54453
|
+
/**
|
|
54454
|
+
* SyncApprovalStatusesResponseSchema
|
|
54455
|
+
* @description Schema for sync approval statuses response.
|
|
54456
|
+
*/
|
|
54457
|
+
SyncApprovalStatusesResponseSchema: {
|
|
54458
|
+
/**
|
|
54459
|
+
* Message
|
|
54460
|
+
* @description Success message
|
|
54461
|
+
*/
|
|
54462
|
+
message: string;
|
|
54463
|
+
/**
|
|
54464
|
+
* Updated
|
|
54465
|
+
* @description Number of templates updated
|
|
54466
|
+
*/
|
|
54467
|
+
updated: number;
|
|
54468
|
+
/**
|
|
54469
|
+
* Approved
|
|
54470
|
+
* @description Number of approved templates
|
|
54471
|
+
*/
|
|
54472
|
+
approved: number;
|
|
54473
|
+
/**
|
|
54474
|
+
* Pending
|
|
54475
|
+
* @description Number of pending templates
|
|
54476
|
+
*/
|
|
54477
|
+
pending: number;
|
|
54478
|
+
/**
|
|
54479
|
+
* Rejected
|
|
54480
|
+
* @description Number of rejected templates
|
|
54481
|
+
*/
|
|
54482
|
+
rejected: number;
|
|
54483
|
+
/**
|
|
54484
|
+
* Total
|
|
54485
|
+
* @description Total templates checked
|
|
54486
|
+
*/
|
|
54487
|
+
total: number;
|
|
54488
|
+
/**
|
|
54489
|
+
* Errors
|
|
54490
|
+
* @description List of errors if any occurred
|
|
54491
|
+
*/
|
|
54492
|
+
errors?: unknown[] | null;
|
|
54493
|
+
};
|
|
54494
|
+
/**
|
|
54495
|
+
* EntityType
|
|
54496
|
+
* @description Enum for entity types that can be linked to WhatsApp templates
|
|
54497
|
+
* @enum {string}
|
|
54498
|
+
*/
|
|
54499
|
+
EntityType: "salesOrder" | "salesInvoice" | "salesQuotation" | "goodsDeliveryNote";
|
|
54500
|
+
/**
|
|
54501
|
+
* GetTemplatesResponseSchema
|
|
54502
|
+
* @description Schema for getting paginated templates from database.
|
|
54503
|
+
*/
|
|
54504
|
+
GetTemplatesResponseSchema: {
|
|
54505
|
+
info: components["schemas"]["PageInfoSchema"];
|
|
54506
|
+
/** Results */
|
|
54507
|
+
results: components["schemas"]["TemplateSchema"][];
|
|
54508
|
+
};
|
|
54509
|
+
/**
|
|
54510
|
+
* TemplateSchema
|
|
54511
|
+
* @description Schema for a template from database.
|
|
54512
|
+
*/
|
|
54513
|
+
TemplateSchema: {
|
|
54514
|
+
/**
|
|
54515
|
+
* Id
|
|
54516
|
+
* Format: uuid
|
|
54517
|
+
*/
|
|
54518
|
+
id: string;
|
|
54519
|
+
/** Contentsid */
|
|
54520
|
+
contentSid: string;
|
|
54521
|
+
/** Friendlyname */
|
|
54522
|
+
friendlyName: string;
|
|
54523
|
+
language: components["schemas"]["WhatsAppLanguage"];
|
|
54524
|
+
entityType?: components["schemas"]["EntityType"] | null;
|
|
54525
|
+
templateContentType: components["schemas"]["TwilioContentType"];
|
|
54526
|
+
/** Body */
|
|
54527
|
+
body: string;
|
|
54528
|
+
/** Variablescount */
|
|
54529
|
+
variablesCount: number;
|
|
54530
|
+
/** Variablemappings */
|
|
54531
|
+
variableMappings?: Record<string, never> | null;
|
|
54532
|
+
/**
|
|
54533
|
+
* Mediaurl
|
|
54534
|
+
* @description Static media URL if template uses static media, null if dynamic
|
|
54535
|
+
*/
|
|
54536
|
+
mediaUrl?: string | null;
|
|
54537
|
+
whatsappApprovalStatus: components["schemas"]["WhatsAppTemplateStatus"];
|
|
54538
|
+
/** Whatsapprejectionreason */
|
|
54539
|
+
whatsappRejectionReason?: string | null;
|
|
54540
|
+
};
|
|
54541
|
+
/**
|
|
54542
|
+
* TwilioContentType
|
|
54543
|
+
* @description Enum for Twilio content types
|
|
54544
|
+
* @enum {string}
|
|
54545
|
+
*/
|
|
54546
|
+
TwilioContentType: "twilio/text" | "twilio/media";
|
|
54547
|
+
/**
|
|
54548
|
+
* WhatsAppLanguage
|
|
54549
|
+
* @description Enum for WhatsApp template supported languages
|
|
54550
|
+
* @enum {string}
|
|
54551
|
+
*/
|
|
54552
|
+
WhatsAppLanguage: "en" | "en_US" | "en_GB" | "ar" | "es" | "es_ES" | "es_MX" | "es_AR" | "fr" | "de" | "it" | "pt_BR" | "pt_PT" | "ru" | "zh_CN" | "zh_HK" | "zh_TW" | "ja" | "ko" | "hi" | "af" | "sq" | "az" | "bg" | "ca" | "hr" | "cs" | "da" | "nl" | "et" | "fi" | "el" | "hu" | "ga" | "lv" | "lt" | "mk" | "nb" | "pl" | "ro" | "sr" | "sk" | "sl" | "sv" | "tr" | "uk" | "bn" | "fil" | "gu" | "he" | "id" | "kn" | "kk" | "lo" | "ms" | "ml" | "mr" | "fa" | "pa" | "ta" | "te" | "th" | "ur" | "uz" | "vi" | "ha" | "sw" | "zu";
|
|
54553
|
+
/**
|
|
54554
|
+
* WhatsAppTemplateStatus
|
|
54555
|
+
* @description Enum for WhatsApp template approval statuses
|
|
54556
|
+
* @enum {string}
|
|
54557
|
+
*/
|
|
54558
|
+
WhatsAppTemplateStatus: "pending" | "approved" | "rejected" | "paused" | "disabled" | "unsubmitted";
|
|
54559
|
+
/**
|
|
54560
|
+
* RegisterTemplateSchema
|
|
54561
|
+
* @description Schema for registering a new WhatsApp template with variable mappings.
|
|
54562
|
+
*/
|
|
54563
|
+
RegisterTemplateSchema: {
|
|
54564
|
+
/**
|
|
54565
|
+
* Friendlyname
|
|
54566
|
+
* @description Template friendly name (e.g., 'order_confirmation'). Can only contain lowercase alphanumeric characters and underscores.
|
|
54567
|
+
*/
|
|
54568
|
+
friendlyName: string;
|
|
54569
|
+
/** @description Template language code (e.g., 'en', 'ar', 'es') */
|
|
54570
|
+
language: components["schemas"]["WhatsAppLanguage"];
|
|
54571
|
+
/** @description Entity type that this template is linked to. Optional - templates can be created without entity linkage. Get available fields from /api/v1/common/get_direct_model_fields/{modelName}/ */
|
|
54572
|
+
entityType?: components["schemas"]["EntityType"] | null;
|
|
54573
|
+
/**
|
|
54574
|
+
* @description Template content type (default: twilio/text for text-only templates, or twilio/media for templates with media)
|
|
54575
|
+
* @default twilio/text
|
|
54576
|
+
*/
|
|
54577
|
+
templateContentType: components["schemas"]["TwilioContentType"];
|
|
54578
|
+
/**
|
|
54579
|
+
* Body
|
|
54580
|
+
* @description Template body with placeholders using {{1}}, {{2}}, etc. Max 1600 characters.
|
|
54581
|
+
*/
|
|
54582
|
+
body: string;
|
|
54583
|
+
/**
|
|
54584
|
+
* Variablemappings
|
|
54585
|
+
* @description List of variable mappings to entity fields. Required only if entity_type is specified. Get available fields from /api/v1/common/get_direct_model_fields/{modelName}/
|
|
54586
|
+
*/
|
|
54587
|
+
variableMappings?: components["schemas"]["VariableMappingSchema"][] | null;
|
|
54588
|
+
/**
|
|
54589
|
+
* Mediaurl
|
|
54590
|
+
* @description Media URL for twilio/media templates. If provided: static media (same for all messages). If null/empty: dynamic media using variable placeholder (different per message).
|
|
54591
|
+
*/
|
|
54592
|
+
mediaUrl?: string | null;
|
|
54593
|
+
};
|
|
54594
|
+
/**
|
|
54595
|
+
* VariableMappingSchema
|
|
54596
|
+
* @description Schema for variable mapping definition.
|
|
54597
|
+
*/
|
|
54598
|
+
VariableMappingSchema: {
|
|
54599
|
+
/**
|
|
54600
|
+
* Position
|
|
54601
|
+
* @description Variable position (e.g., '1', '2', '3')
|
|
54602
|
+
*/
|
|
54603
|
+
position: string;
|
|
54604
|
+
/**
|
|
54605
|
+
* Fieldpath
|
|
54606
|
+
* @description Field path (e.g., 'customer.name', 'number', 'total'). Get available model fields from /api/v1/common/get_direct_model_fields/{modelName}/
|
|
54607
|
+
*/
|
|
54608
|
+
fieldPath: string;
|
|
54609
|
+
/**
|
|
54610
|
+
* Label
|
|
54611
|
+
* @description Human-readable label for the variable
|
|
54612
|
+
*/
|
|
54613
|
+
label?: string | null;
|
|
54614
|
+
};
|
|
54021
54615
|
/**
|
|
54022
54616
|
* NotificationType
|
|
54023
54617
|
* @enum {string}
|
|
@@ -54041,11 +54635,20 @@ export interface components {
|
|
|
54041
54635
|
};
|
|
54042
54636
|
/** UpdateNotificationSetting */
|
|
54043
54637
|
UpdateNotificationSetting: {
|
|
54044
|
-
/**
|
|
54638
|
+
/**
|
|
54639
|
+
* Whatsappenabled
|
|
54640
|
+
* @default false
|
|
54641
|
+
*/
|
|
54045
54642
|
whatsappEnabled: boolean | null;
|
|
54046
|
-
/**
|
|
54643
|
+
/**
|
|
54644
|
+
* Emailenabled
|
|
54645
|
+
* @default false
|
|
54646
|
+
*/
|
|
54047
54647
|
emailEnabled: boolean | null;
|
|
54048
|
-
/**
|
|
54648
|
+
/**
|
|
54649
|
+
* Ingaloperenabled
|
|
54650
|
+
* @default false
|
|
54651
|
+
*/
|
|
54049
54652
|
inGaloperEnabled: boolean | null;
|
|
54050
54653
|
};
|
|
54051
54654
|
/** NotificationSettingList */
|
|
@@ -54054,17 +54657,6 @@ export interface components {
|
|
|
54054
54657
|
/** Results */
|
|
54055
54658
|
results: components["schemas"]["RetrieveNotificationSetting"][];
|
|
54056
54659
|
};
|
|
54057
|
-
/** CreateNotificationSetting */
|
|
54058
|
-
CreateNotificationSetting: {
|
|
54059
|
-
notificationType: components["schemas"]["NotificationType"];
|
|
54060
|
-
/** Whatsappenabled */
|
|
54061
|
-
whatsappEnabled: boolean | null;
|
|
54062
|
-
/** Emailenabled */
|
|
54063
|
-
emailEnabled: boolean | null;
|
|
54064
|
-
/** Ingaloperenabled */
|
|
54065
|
-
inGaloperEnabled: boolean | null;
|
|
54066
|
-
documentContentType: components["schemas"]["CombinedModelName"];
|
|
54067
|
-
};
|
|
54068
54660
|
/** NotificationsList */
|
|
54069
54661
|
NotificationsList: {
|
|
54070
54662
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -85662,6 +86254,66 @@ export interface operations {
|
|
|
85662
86254
|
};
|
|
85663
86255
|
};
|
|
85664
86256
|
};
|
|
86257
|
+
sales_quotation_views_send_sales_quotation_whatsapp: {
|
|
86258
|
+
parameters: {
|
|
86259
|
+
query?: {
|
|
86260
|
+
templateId?: string | null;
|
|
86261
|
+
};
|
|
86262
|
+
header?: never;
|
|
86263
|
+
path: {
|
|
86264
|
+
id: string;
|
|
86265
|
+
};
|
|
86266
|
+
cookie?: never;
|
|
86267
|
+
};
|
|
86268
|
+
requestBody?: never;
|
|
86269
|
+
responses: {
|
|
86270
|
+
/** @description OK */
|
|
86271
|
+
200: {
|
|
86272
|
+
headers: {
|
|
86273
|
+
[name: string]: unknown;
|
|
86274
|
+
};
|
|
86275
|
+
content: {
|
|
86276
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
86277
|
+
};
|
|
86278
|
+
};
|
|
86279
|
+
/** @description Bad Request */
|
|
86280
|
+
400: {
|
|
86281
|
+
headers: {
|
|
86282
|
+
[name: string]: unknown;
|
|
86283
|
+
};
|
|
86284
|
+
content: {
|
|
86285
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
86286
|
+
};
|
|
86287
|
+
};
|
|
86288
|
+
/** @description Forbidden */
|
|
86289
|
+
403: {
|
|
86290
|
+
headers: {
|
|
86291
|
+
[name: string]: unknown;
|
|
86292
|
+
};
|
|
86293
|
+
content: {
|
|
86294
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
86295
|
+
};
|
|
86296
|
+
};
|
|
86297
|
+
/** @description Not Found */
|
|
86298
|
+
404: {
|
|
86299
|
+
headers: {
|
|
86300
|
+
[name: string]: unknown;
|
|
86301
|
+
};
|
|
86302
|
+
content: {
|
|
86303
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
86304
|
+
};
|
|
86305
|
+
};
|
|
86306
|
+
/** @description Internal Server Error */
|
|
86307
|
+
500: {
|
|
86308
|
+
headers: {
|
|
86309
|
+
[name: string]: unknown;
|
|
86310
|
+
};
|
|
86311
|
+
content: {
|
|
86312
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
86313
|
+
};
|
|
86314
|
+
};
|
|
86315
|
+
};
|
|
86316
|
+
};
|
|
85665
86317
|
common_contact_segmentation_views_list_contact_segmentation: {
|
|
85666
86318
|
parameters: {
|
|
85667
86319
|
query?: {
|
|
@@ -87999,6 +88651,66 @@ export interface operations {
|
|
|
87999
88651
|
};
|
|
88000
88652
|
};
|
|
88001
88653
|
};
|
|
88654
|
+
sales_order_views_send_sales_order_whatsapp: {
|
|
88655
|
+
parameters: {
|
|
88656
|
+
query?: {
|
|
88657
|
+
templateId?: string | null;
|
|
88658
|
+
};
|
|
88659
|
+
header?: never;
|
|
88660
|
+
path: {
|
|
88661
|
+
id: string;
|
|
88662
|
+
};
|
|
88663
|
+
cookie?: never;
|
|
88664
|
+
};
|
|
88665
|
+
requestBody?: never;
|
|
88666
|
+
responses: {
|
|
88667
|
+
/** @description OK */
|
|
88668
|
+
200: {
|
|
88669
|
+
headers: {
|
|
88670
|
+
[name: string]: unknown;
|
|
88671
|
+
};
|
|
88672
|
+
content: {
|
|
88673
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
88674
|
+
};
|
|
88675
|
+
};
|
|
88676
|
+
/** @description Bad Request */
|
|
88677
|
+
400: {
|
|
88678
|
+
headers: {
|
|
88679
|
+
[name: string]: unknown;
|
|
88680
|
+
};
|
|
88681
|
+
content: {
|
|
88682
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
88683
|
+
};
|
|
88684
|
+
};
|
|
88685
|
+
/** @description Forbidden */
|
|
88686
|
+
403: {
|
|
88687
|
+
headers: {
|
|
88688
|
+
[name: string]: unknown;
|
|
88689
|
+
};
|
|
88690
|
+
content: {
|
|
88691
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
88692
|
+
};
|
|
88693
|
+
};
|
|
88694
|
+
/** @description Not Found */
|
|
88695
|
+
404: {
|
|
88696
|
+
headers: {
|
|
88697
|
+
[name: string]: unknown;
|
|
88698
|
+
};
|
|
88699
|
+
content: {
|
|
88700
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
88701
|
+
};
|
|
88702
|
+
};
|
|
88703
|
+
/** @description Internal Server Error */
|
|
88704
|
+
500: {
|
|
88705
|
+
headers: {
|
|
88706
|
+
[name: string]: unknown;
|
|
88707
|
+
};
|
|
88708
|
+
content: {
|
|
88709
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
88710
|
+
};
|
|
88711
|
+
};
|
|
88712
|
+
};
|
|
88713
|
+
};
|
|
88002
88714
|
purchase_credit_note_views_list_purchase_credit_notes: {
|
|
88003
88715
|
parameters: {
|
|
88004
88716
|
query?: {
|
|
@@ -89615,6 +90327,66 @@ export interface operations {
|
|
|
89615
90327
|
};
|
|
89616
90328
|
};
|
|
89617
90329
|
};
|
|
90330
|
+
sales_invoice_views_send_sales_invoice_whatsapp: {
|
|
90331
|
+
parameters: {
|
|
90332
|
+
query?: {
|
|
90333
|
+
templateId?: string | null;
|
|
90334
|
+
};
|
|
90335
|
+
header?: never;
|
|
90336
|
+
path: {
|
|
90337
|
+
id: string;
|
|
90338
|
+
};
|
|
90339
|
+
cookie?: never;
|
|
90340
|
+
};
|
|
90341
|
+
requestBody?: never;
|
|
90342
|
+
responses: {
|
|
90343
|
+
/** @description OK */
|
|
90344
|
+
200: {
|
|
90345
|
+
headers: {
|
|
90346
|
+
[name: string]: unknown;
|
|
90347
|
+
};
|
|
90348
|
+
content: {
|
|
90349
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
90350
|
+
};
|
|
90351
|
+
};
|
|
90352
|
+
/** @description Bad Request */
|
|
90353
|
+
400: {
|
|
90354
|
+
headers: {
|
|
90355
|
+
[name: string]: unknown;
|
|
90356
|
+
};
|
|
90357
|
+
content: {
|
|
90358
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
90359
|
+
};
|
|
90360
|
+
};
|
|
90361
|
+
/** @description Forbidden */
|
|
90362
|
+
403: {
|
|
90363
|
+
headers: {
|
|
90364
|
+
[name: string]: unknown;
|
|
90365
|
+
};
|
|
90366
|
+
content: {
|
|
90367
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
90368
|
+
};
|
|
90369
|
+
};
|
|
90370
|
+
/** @description Not Found */
|
|
90371
|
+
404: {
|
|
90372
|
+
headers: {
|
|
90373
|
+
[name: string]: unknown;
|
|
90374
|
+
};
|
|
90375
|
+
content: {
|
|
90376
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
90377
|
+
};
|
|
90378
|
+
};
|
|
90379
|
+
/** @description Internal Server Error */
|
|
90380
|
+
500: {
|
|
90381
|
+
headers: {
|
|
90382
|
+
[name: string]: unknown;
|
|
90383
|
+
};
|
|
90384
|
+
content: {
|
|
90385
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
90386
|
+
};
|
|
90387
|
+
};
|
|
90388
|
+
};
|
|
90389
|
+
};
|
|
89618
90390
|
sales_return_order_views_list_sales_return_orders: {
|
|
89619
90391
|
parameters: {
|
|
89620
90392
|
query?: {
|
|
@@ -91730,11 +92502,15 @@ export interface operations {
|
|
|
91730
92502
|
};
|
|
91731
92503
|
};
|
|
91732
92504
|
};
|
|
91733
|
-
|
|
92505
|
+
inventory_delivery_note_views_send_delivery_note_whatsapp: {
|
|
91734
92506
|
parameters: {
|
|
91735
|
-
query?:
|
|
92507
|
+
query?: {
|
|
92508
|
+
templateId?: string | null;
|
|
92509
|
+
};
|
|
91736
92510
|
header?: never;
|
|
91737
|
-
path
|
|
92511
|
+
path: {
|
|
92512
|
+
id: string;
|
|
92513
|
+
};
|
|
91738
92514
|
cookie?: never;
|
|
91739
92515
|
};
|
|
91740
92516
|
requestBody?: never;
|
|
@@ -91745,7 +92521,7 @@ export interface operations {
|
|
|
91745
92521
|
[name: string]: unknown;
|
|
91746
92522
|
};
|
|
91747
92523
|
content: {
|
|
91748
|
-
"application/json": components["schemas"]["
|
|
92524
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
91749
92525
|
};
|
|
91750
92526
|
};
|
|
91751
92527
|
/** @description Bad Request */
|
|
@@ -91763,7 +92539,7 @@ export interface operations {
|
|
|
91763
92539
|
[name: string]: unknown;
|
|
91764
92540
|
};
|
|
91765
92541
|
content: {
|
|
91766
|
-
"application/json": components["schemas"]["
|
|
92542
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
91767
92543
|
};
|
|
91768
92544
|
};
|
|
91769
92545
|
/** @description Not Found */
|
|
@@ -91772,7 +92548,7 @@ export interface operations {
|
|
|
91772
92548
|
[name: string]: unknown;
|
|
91773
92549
|
};
|
|
91774
92550
|
content: {
|
|
91775
|
-
"application/json": components["schemas"]["
|
|
92551
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
91776
92552
|
};
|
|
91777
92553
|
};
|
|
91778
92554
|
/** @description Internal Server Error */
|
|
@@ -91781,23 +92557,19 @@ export interface operations {
|
|
|
91781
92557
|
[name: string]: unknown;
|
|
91782
92558
|
};
|
|
91783
92559
|
content: {
|
|
91784
|
-
"application/json": components["schemas"]["
|
|
92560
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
91785
92561
|
};
|
|
91786
92562
|
};
|
|
91787
92563
|
};
|
|
91788
92564
|
};
|
|
91789
|
-
|
|
92565
|
+
erp_settings_accountingsetting_views_get_default_subsidiary_account: {
|
|
91790
92566
|
parameters: {
|
|
91791
92567
|
query?: never;
|
|
91792
92568
|
header?: never;
|
|
91793
92569
|
path?: never;
|
|
91794
92570
|
cookie?: never;
|
|
91795
92571
|
};
|
|
91796
|
-
requestBody
|
|
91797
|
-
content: {
|
|
91798
|
-
"application/json": components["schemas"]["DefaultSubsidiaryAccountSchema"];
|
|
91799
|
-
};
|
|
91800
|
-
};
|
|
92572
|
+
requestBody?: never;
|
|
91801
92573
|
responses: {
|
|
91802
92574
|
/** @description OK */
|
|
91803
92575
|
200: {
|
|
@@ -91805,7 +92577,7 @@ export interface operations {
|
|
|
91805
92577
|
[name: string]: unknown;
|
|
91806
92578
|
};
|
|
91807
92579
|
content: {
|
|
91808
|
-
"application/json": components["schemas"]["
|
|
92580
|
+
"application/json": components["schemas"]["DefaultSubsidiaryAccountDetailSchema"];
|
|
91809
92581
|
};
|
|
91810
92582
|
};
|
|
91811
92583
|
/** @description Bad Request */
|
|
@@ -91846,7 +92618,7 @@ export interface operations {
|
|
|
91846
92618
|
};
|
|
91847
92619
|
};
|
|
91848
92620
|
};
|
|
91849
|
-
|
|
92621
|
+
erp_settings_accountingsetting_views_edit_default_subsidiary_account: {
|
|
91850
92622
|
parameters: {
|
|
91851
92623
|
query?: never;
|
|
91852
92624
|
header?: never;
|
|
@@ -91859,8 +92631,8 @@ export interface operations {
|
|
|
91859
92631
|
};
|
|
91860
92632
|
};
|
|
91861
92633
|
responses: {
|
|
91862
|
-
/** @description
|
|
91863
|
-
|
|
92634
|
+
/** @description OK */
|
|
92635
|
+
200: {
|
|
91864
92636
|
headers: {
|
|
91865
92637
|
[name: string]: unknown;
|
|
91866
92638
|
};
|
|
@@ -91886,6 +92658,15 @@ export interface operations {
|
|
|
91886
92658
|
"application/json": components["schemas"]["MessageResponse"];
|
|
91887
92659
|
};
|
|
91888
92660
|
};
|
|
92661
|
+
/** @description Not Found */
|
|
92662
|
+
404: {
|
|
92663
|
+
headers: {
|
|
92664
|
+
[name: string]: unknown;
|
|
92665
|
+
};
|
|
92666
|
+
content: {
|
|
92667
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
92668
|
+
};
|
|
92669
|
+
};
|
|
91889
92670
|
/** @description Internal Server Error */
|
|
91890
92671
|
500: {
|
|
91891
92672
|
headers: {
|
|
@@ -91897,31 +92678,82 @@ export interface operations {
|
|
|
91897
92678
|
};
|
|
91898
92679
|
};
|
|
91899
92680
|
};
|
|
91900
|
-
|
|
92681
|
+
erp_settings_accountingsetting_views_create_default_subsidiary_account: {
|
|
91901
92682
|
parameters: {
|
|
91902
|
-
query?:
|
|
91903
|
-
/** @description Period type: thisMonth, thisYear, lastMonth, custom, ..., if no value is provided, the default date filtration for user will be used */
|
|
91904
|
-
periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
|
|
91905
|
-
/** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
91906
|
-
startDate?: string | null;
|
|
91907
|
-
/** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
91908
|
-
endDate?: string | null;
|
|
91909
|
-
/** @description search by credit note number, description, customer name or account number, invoice number */
|
|
91910
|
-
search?: string;
|
|
91911
|
-
};
|
|
92683
|
+
query?: never;
|
|
91912
92684
|
header?: never;
|
|
91913
92685
|
path?: never;
|
|
91914
92686
|
cookie?: never;
|
|
91915
92687
|
};
|
|
91916
|
-
requestBody
|
|
92688
|
+
requestBody: {
|
|
92689
|
+
content: {
|
|
92690
|
+
"application/json": components["schemas"]["DefaultSubsidiaryAccountSchema"];
|
|
92691
|
+
};
|
|
92692
|
+
};
|
|
91917
92693
|
responses: {
|
|
91918
|
-
/** @description
|
|
91919
|
-
|
|
92694
|
+
/** @description Created */
|
|
92695
|
+
201: {
|
|
91920
92696
|
headers: {
|
|
91921
92697
|
[name: string]: unknown;
|
|
91922
92698
|
};
|
|
91923
92699
|
content: {
|
|
91924
|
-
"application/json": components["schemas"]["
|
|
92700
|
+
"application/json": components["schemas"]["DefaultSubsidiaryAccountResponse"];
|
|
92701
|
+
};
|
|
92702
|
+
};
|
|
92703
|
+
/** @description Bad Request */
|
|
92704
|
+
400: {
|
|
92705
|
+
headers: {
|
|
92706
|
+
[name: string]: unknown;
|
|
92707
|
+
};
|
|
92708
|
+
content: {
|
|
92709
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
92710
|
+
};
|
|
92711
|
+
};
|
|
92712
|
+
/** @description Forbidden */
|
|
92713
|
+
403: {
|
|
92714
|
+
headers: {
|
|
92715
|
+
[name: string]: unknown;
|
|
92716
|
+
};
|
|
92717
|
+
content: {
|
|
92718
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
92719
|
+
};
|
|
92720
|
+
};
|
|
92721
|
+
/** @description Internal Server Error */
|
|
92722
|
+
500: {
|
|
92723
|
+
headers: {
|
|
92724
|
+
[name: string]: unknown;
|
|
92725
|
+
};
|
|
92726
|
+
content: {
|
|
92727
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
92728
|
+
};
|
|
92729
|
+
};
|
|
92730
|
+
};
|
|
92731
|
+
};
|
|
92732
|
+
sales_credit_note_views_list_sales_credit_notes: {
|
|
92733
|
+
parameters: {
|
|
92734
|
+
query?: {
|
|
92735
|
+
/** @description Period type: thisMonth, thisYear, lastMonth, custom, ..., if no value is provided, the default date filtration for user will be used */
|
|
92736
|
+
periodType?: "thisMonth" | "lastMonth" | "thisQuarter" | "lastQuarter" | "thisFiscalYear" | "lastFiscalYear" | "custom" | "today" | "all";
|
|
92737
|
+
/** @description Start date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
92738
|
+
startDate?: string | null;
|
|
92739
|
+
/** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
92740
|
+
endDate?: string | null;
|
|
92741
|
+
/** @description search by credit note number, description, customer name or account number, invoice number */
|
|
92742
|
+
search?: string;
|
|
92743
|
+
};
|
|
92744
|
+
header?: never;
|
|
92745
|
+
path?: never;
|
|
92746
|
+
cookie?: never;
|
|
92747
|
+
};
|
|
92748
|
+
requestBody?: never;
|
|
92749
|
+
responses: {
|
|
92750
|
+
/** @description OK */
|
|
92751
|
+
200: {
|
|
92752
|
+
headers: {
|
|
92753
|
+
[name: string]: unknown;
|
|
92754
|
+
};
|
|
92755
|
+
content: {
|
|
92756
|
+
"application/json": components["schemas"]["SalesCreditNoteListSchema"];
|
|
91925
92757
|
};
|
|
91926
92758
|
};
|
|
91927
92759
|
/** @description Bad Request */
|
|
@@ -94146,15 +94978,327 @@ export interface operations {
|
|
|
94146
94978
|
"application/json": components["schemas"]["MessageResponse"];
|
|
94147
94979
|
};
|
|
94148
94980
|
};
|
|
94149
|
-
/** @description Conflict */
|
|
94150
|
-
409: {
|
|
94151
|
-
headers: {
|
|
94152
|
-
[name: string]: unknown;
|
|
94153
|
-
};
|
|
94154
|
-
content: {
|
|
94155
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
94156
|
-
};
|
|
94157
|
-
};
|
|
94981
|
+
/** @description Conflict */
|
|
94982
|
+
409: {
|
|
94983
|
+
headers: {
|
|
94984
|
+
[name: string]: unknown;
|
|
94985
|
+
};
|
|
94986
|
+
content: {
|
|
94987
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
94988
|
+
};
|
|
94989
|
+
};
|
|
94990
|
+
/** @description Internal Server Error */
|
|
94991
|
+
500: {
|
|
94992
|
+
headers: {
|
|
94993
|
+
[name: string]: unknown;
|
|
94994
|
+
};
|
|
94995
|
+
content: {
|
|
94996
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
94997
|
+
};
|
|
94998
|
+
};
|
|
94999
|
+
};
|
|
95000
|
+
};
|
|
95001
|
+
task_views_reorder_statuses: {
|
|
95002
|
+
parameters: {
|
|
95003
|
+
query?: never;
|
|
95004
|
+
header?: never;
|
|
95005
|
+
path?: never;
|
|
95006
|
+
cookie?: never;
|
|
95007
|
+
};
|
|
95008
|
+
requestBody: {
|
|
95009
|
+
content: {
|
|
95010
|
+
"application/json": components["schemas"]["StatusReorder"][];
|
|
95011
|
+
};
|
|
95012
|
+
};
|
|
95013
|
+
responses: {
|
|
95014
|
+
/** @description OK */
|
|
95015
|
+
200: {
|
|
95016
|
+
headers: {
|
|
95017
|
+
[name: string]: unknown;
|
|
95018
|
+
};
|
|
95019
|
+
content: {
|
|
95020
|
+
"application/json": components["schemas"]["RetrieveStatus"][];
|
|
95021
|
+
};
|
|
95022
|
+
};
|
|
95023
|
+
/** @description Bad Request */
|
|
95024
|
+
400: {
|
|
95025
|
+
headers: {
|
|
95026
|
+
[name: string]: unknown;
|
|
95027
|
+
};
|
|
95028
|
+
content: {
|
|
95029
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95030
|
+
};
|
|
95031
|
+
};
|
|
95032
|
+
/** @description Forbidden */
|
|
95033
|
+
403: {
|
|
95034
|
+
headers: {
|
|
95035
|
+
[name: string]: unknown;
|
|
95036
|
+
};
|
|
95037
|
+
content: {
|
|
95038
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95039
|
+
};
|
|
95040
|
+
};
|
|
95041
|
+
/** @description Not Found */
|
|
95042
|
+
404: {
|
|
95043
|
+
headers: {
|
|
95044
|
+
[name: string]: unknown;
|
|
95045
|
+
};
|
|
95046
|
+
content: {
|
|
95047
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95048
|
+
};
|
|
95049
|
+
};
|
|
95050
|
+
/** @description Conflict */
|
|
95051
|
+
409: {
|
|
95052
|
+
headers: {
|
|
95053
|
+
[name: string]: unknown;
|
|
95054
|
+
};
|
|
95055
|
+
content: {
|
|
95056
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95057
|
+
};
|
|
95058
|
+
};
|
|
95059
|
+
/** @description Internal Server Error */
|
|
95060
|
+
500: {
|
|
95061
|
+
headers: {
|
|
95062
|
+
[name: string]: unknown;
|
|
95063
|
+
};
|
|
95064
|
+
content: {
|
|
95065
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95066
|
+
};
|
|
95067
|
+
};
|
|
95068
|
+
};
|
|
95069
|
+
};
|
|
95070
|
+
task_views_get_status: {
|
|
95071
|
+
parameters: {
|
|
95072
|
+
query?: never;
|
|
95073
|
+
header?: never;
|
|
95074
|
+
path: {
|
|
95075
|
+
id: string;
|
|
95076
|
+
};
|
|
95077
|
+
cookie?: never;
|
|
95078
|
+
};
|
|
95079
|
+
requestBody?: never;
|
|
95080
|
+
responses: {
|
|
95081
|
+
/** @description OK */
|
|
95082
|
+
200: {
|
|
95083
|
+
headers: {
|
|
95084
|
+
[name: string]: unknown;
|
|
95085
|
+
};
|
|
95086
|
+
content: {
|
|
95087
|
+
"application/json": components["schemas"]["RetrieveStatus"];
|
|
95088
|
+
};
|
|
95089
|
+
};
|
|
95090
|
+
/** @description Forbidden */
|
|
95091
|
+
403: {
|
|
95092
|
+
headers: {
|
|
95093
|
+
[name: string]: unknown;
|
|
95094
|
+
};
|
|
95095
|
+
content: {
|
|
95096
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95097
|
+
};
|
|
95098
|
+
};
|
|
95099
|
+
/** @description Not Found */
|
|
95100
|
+
404: {
|
|
95101
|
+
headers: {
|
|
95102
|
+
[name: string]: unknown;
|
|
95103
|
+
};
|
|
95104
|
+
content: {
|
|
95105
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95106
|
+
};
|
|
95107
|
+
};
|
|
95108
|
+
/** @description Internal Server Error */
|
|
95109
|
+
500: {
|
|
95110
|
+
headers: {
|
|
95111
|
+
[name: string]: unknown;
|
|
95112
|
+
};
|
|
95113
|
+
content: {
|
|
95114
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95115
|
+
};
|
|
95116
|
+
};
|
|
95117
|
+
};
|
|
95118
|
+
};
|
|
95119
|
+
task_views_edit_status: {
|
|
95120
|
+
parameters: {
|
|
95121
|
+
query?: never;
|
|
95122
|
+
header?: never;
|
|
95123
|
+
path: {
|
|
95124
|
+
id: string;
|
|
95125
|
+
};
|
|
95126
|
+
cookie?: never;
|
|
95127
|
+
};
|
|
95128
|
+
requestBody: {
|
|
95129
|
+
content: {
|
|
95130
|
+
"application/json": components["schemas"]["CreateUpdateStatus"];
|
|
95131
|
+
};
|
|
95132
|
+
};
|
|
95133
|
+
responses: {
|
|
95134
|
+
/** @description OK */
|
|
95135
|
+
200: {
|
|
95136
|
+
headers: {
|
|
95137
|
+
[name: string]: unknown;
|
|
95138
|
+
};
|
|
95139
|
+
content: {
|
|
95140
|
+
"application/json": components["schemas"]["RetrieveStatus"];
|
|
95141
|
+
};
|
|
95142
|
+
};
|
|
95143
|
+
/** @description Bad Request */
|
|
95144
|
+
400: {
|
|
95145
|
+
headers: {
|
|
95146
|
+
[name: string]: unknown;
|
|
95147
|
+
};
|
|
95148
|
+
content: {
|
|
95149
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95150
|
+
};
|
|
95151
|
+
};
|
|
95152
|
+
/** @description Forbidden */
|
|
95153
|
+
403: {
|
|
95154
|
+
headers: {
|
|
95155
|
+
[name: string]: unknown;
|
|
95156
|
+
};
|
|
95157
|
+
content: {
|
|
95158
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95159
|
+
};
|
|
95160
|
+
};
|
|
95161
|
+
/** @description Not Found */
|
|
95162
|
+
404: {
|
|
95163
|
+
headers: {
|
|
95164
|
+
[name: string]: unknown;
|
|
95165
|
+
};
|
|
95166
|
+
content: {
|
|
95167
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95168
|
+
};
|
|
95169
|
+
};
|
|
95170
|
+
/** @description Conflict */
|
|
95171
|
+
409: {
|
|
95172
|
+
headers: {
|
|
95173
|
+
[name: string]: unknown;
|
|
95174
|
+
};
|
|
95175
|
+
content: {
|
|
95176
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95177
|
+
};
|
|
95178
|
+
};
|
|
95179
|
+
/** @description Internal Server Error */
|
|
95180
|
+
500: {
|
|
95181
|
+
headers: {
|
|
95182
|
+
[name: string]: unknown;
|
|
95183
|
+
};
|
|
95184
|
+
content: {
|
|
95185
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95186
|
+
};
|
|
95187
|
+
};
|
|
95188
|
+
};
|
|
95189
|
+
};
|
|
95190
|
+
task_views_delete_status: {
|
|
95191
|
+
parameters: {
|
|
95192
|
+
query?: never;
|
|
95193
|
+
header?: never;
|
|
95194
|
+
path: {
|
|
95195
|
+
id: string;
|
|
95196
|
+
};
|
|
95197
|
+
cookie?: never;
|
|
95198
|
+
};
|
|
95199
|
+
requestBody?: never;
|
|
95200
|
+
responses: {
|
|
95201
|
+
/** @description No Content */
|
|
95202
|
+
204: {
|
|
95203
|
+
headers: {
|
|
95204
|
+
[name: string]: unknown;
|
|
95205
|
+
};
|
|
95206
|
+
content?: never;
|
|
95207
|
+
};
|
|
95208
|
+
/** @description Bad Request */
|
|
95209
|
+
400: {
|
|
95210
|
+
headers: {
|
|
95211
|
+
[name: string]: unknown;
|
|
95212
|
+
};
|
|
95213
|
+
content: {
|
|
95214
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95215
|
+
};
|
|
95216
|
+
};
|
|
95217
|
+
/** @description Forbidden */
|
|
95218
|
+
403: {
|
|
95219
|
+
headers: {
|
|
95220
|
+
[name: string]: unknown;
|
|
95221
|
+
};
|
|
95222
|
+
content: {
|
|
95223
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95224
|
+
};
|
|
95225
|
+
};
|
|
95226
|
+
/** @description Not Found */
|
|
95227
|
+
404: {
|
|
95228
|
+
headers: {
|
|
95229
|
+
[name: string]: unknown;
|
|
95230
|
+
};
|
|
95231
|
+
content: {
|
|
95232
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95233
|
+
};
|
|
95234
|
+
};
|
|
95235
|
+
/** @description Conflict */
|
|
95236
|
+
409: {
|
|
95237
|
+
headers: {
|
|
95238
|
+
[name: string]: unknown;
|
|
95239
|
+
};
|
|
95240
|
+
content: {
|
|
95241
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95242
|
+
};
|
|
95243
|
+
};
|
|
95244
|
+
/** @description Internal Server Error */
|
|
95245
|
+
500: {
|
|
95246
|
+
headers: {
|
|
95247
|
+
[name: string]: unknown;
|
|
95248
|
+
};
|
|
95249
|
+
content: {
|
|
95250
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95251
|
+
};
|
|
95252
|
+
};
|
|
95253
|
+
};
|
|
95254
|
+
};
|
|
95255
|
+
task_views_get_activity: {
|
|
95256
|
+
parameters: {
|
|
95257
|
+
query?: never;
|
|
95258
|
+
header?: never;
|
|
95259
|
+
path: {
|
|
95260
|
+
id: string;
|
|
95261
|
+
};
|
|
95262
|
+
cookie?: never;
|
|
95263
|
+
};
|
|
95264
|
+
requestBody?: never;
|
|
95265
|
+
responses: {
|
|
95266
|
+
/** @description OK */
|
|
95267
|
+
200: {
|
|
95268
|
+
headers: {
|
|
95269
|
+
[name: string]: unknown;
|
|
95270
|
+
};
|
|
95271
|
+
content: {
|
|
95272
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
95273
|
+
};
|
|
95274
|
+
};
|
|
95275
|
+
/** @description Bad Request */
|
|
95276
|
+
400: {
|
|
95277
|
+
headers: {
|
|
95278
|
+
[name: string]: unknown;
|
|
95279
|
+
};
|
|
95280
|
+
content: {
|
|
95281
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95282
|
+
};
|
|
95283
|
+
};
|
|
95284
|
+
/** @description Forbidden */
|
|
95285
|
+
403: {
|
|
95286
|
+
headers: {
|
|
95287
|
+
[name: string]: unknown;
|
|
95288
|
+
};
|
|
95289
|
+
content: {
|
|
95290
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95291
|
+
};
|
|
95292
|
+
};
|
|
95293
|
+
/** @description Not Found */
|
|
95294
|
+
404: {
|
|
95295
|
+
headers: {
|
|
95296
|
+
[name: string]: unknown;
|
|
95297
|
+
};
|
|
95298
|
+
content: {
|
|
95299
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95300
|
+
};
|
|
95301
|
+
};
|
|
94158
95302
|
/** @description Internal Server Error */
|
|
94159
95303
|
500: {
|
|
94160
95304
|
headers: {
|
|
@@ -94166,16 +95310,18 @@ export interface operations {
|
|
|
94166
95310
|
};
|
|
94167
95311
|
};
|
|
94168
95312
|
};
|
|
94169
|
-
|
|
95313
|
+
task_views_edit_activity: {
|
|
94170
95314
|
parameters: {
|
|
94171
95315
|
query?: never;
|
|
94172
95316
|
header?: never;
|
|
94173
|
-
path
|
|
95317
|
+
path: {
|
|
95318
|
+
id: string;
|
|
95319
|
+
};
|
|
94174
95320
|
cookie?: never;
|
|
94175
95321
|
};
|
|
94176
95322
|
requestBody: {
|
|
94177
95323
|
content: {
|
|
94178
|
-
"application/json": components["schemas"]["
|
|
95324
|
+
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
94179
95325
|
};
|
|
94180
95326
|
};
|
|
94181
95327
|
responses: {
|
|
@@ -94185,7 +95331,7 @@ export interface operations {
|
|
|
94185
95331
|
[name: string]: unknown;
|
|
94186
95332
|
};
|
|
94187
95333
|
content: {
|
|
94188
|
-
"application/json": components["schemas"]["
|
|
95334
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
94189
95335
|
};
|
|
94190
95336
|
};
|
|
94191
95337
|
/** @description Bad Request */
|
|
@@ -94212,7 +95358,7 @@ export interface operations {
|
|
|
94212
95358
|
[name: string]: unknown;
|
|
94213
95359
|
};
|
|
94214
95360
|
content: {
|
|
94215
|
-
"application/json": components["schemas"]["
|
|
95361
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
94216
95362
|
};
|
|
94217
95363
|
};
|
|
94218
95364
|
/** @description Conflict */
|
|
@@ -94235,7 +95381,7 @@ export interface operations {
|
|
|
94235
95381
|
};
|
|
94236
95382
|
};
|
|
94237
95383
|
};
|
|
94238
|
-
|
|
95384
|
+
task_views_delete_activity: {
|
|
94239
95385
|
parameters: {
|
|
94240
95386
|
query?: never;
|
|
94241
95387
|
header?: never;
|
|
@@ -94246,13 +95392,20 @@ export interface operations {
|
|
|
94246
95392
|
};
|
|
94247
95393
|
requestBody?: never;
|
|
94248
95394
|
responses: {
|
|
94249
|
-
/** @description
|
|
94250
|
-
|
|
95395
|
+
/** @description No Content */
|
|
95396
|
+
204: {
|
|
95397
|
+
headers: {
|
|
95398
|
+
[name: string]: unknown;
|
|
95399
|
+
};
|
|
95400
|
+
content?: never;
|
|
95401
|
+
};
|
|
95402
|
+
/** @description Bad Request */
|
|
95403
|
+
400: {
|
|
94251
95404
|
headers: {
|
|
94252
95405
|
[name: string]: unknown;
|
|
94253
95406
|
};
|
|
94254
95407
|
content: {
|
|
94255
|
-
"application/json": components["schemas"]["
|
|
95408
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
94256
95409
|
};
|
|
94257
95410
|
};
|
|
94258
95411
|
/** @description Forbidden */
|
|
@@ -94273,6 +95426,15 @@ export interface operations {
|
|
|
94273
95426
|
"application/json": components["schemas"]["MessageResponse"];
|
|
94274
95427
|
};
|
|
94275
95428
|
};
|
|
95429
|
+
/** @description Conflict */
|
|
95430
|
+
409: {
|
|
95431
|
+
headers: {
|
|
95432
|
+
[name: string]: unknown;
|
|
95433
|
+
};
|
|
95434
|
+
content: {
|
|
95435
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95436
|
+
};
|
|
95437
|
+
};
|
|
94276
95438
|
/** @description Internal Server Error */
|
|
94277
95439
|
500: {
|
|
94278
95440
|
headers: {
|
|
@@ -94284,20 +95446,17 @@ export interface operations {
|
|
|
94284
95446
|
};
|
|
94285
95447
|
};
|
|
94286
95448
|
};
|
|
94287
|
-
|
|
95449
|
+
task_views_list_activities: {
|
|
94288
95450
|
parameters: {
|
|
94289
|
-
query?:
|
|
94290
|
-
|
|
94291
|
-
|
|
94292
|
-
id: string;
|
|
95451
|
+
query?: {
|
|
95452
|
+
/** @description Search by activity name */
|
|
95453
|
+
search?: string | null;
|
|
94293
95454
|
};
|
|
95455
|
+
header?: never;
|
|
95456
|
+
path?: never;
|
|
94294
95457
|
cookie?: never;
|
|
94295
95458
|
};
|
|
94296
|
-
requestBody
|
|
94297
|
-
content: {
|
|
94298
|
-
"application/json": components["schemas"]["CreateUpdateStatus"];
|
|
94299
|
-
};
|
|
94300
|
-
};
|
|
95459
|
+
requestBody?: never;
|
|
94301
95460
|
responses: {
|
|
94302
95461
|
/** @description OK */
|
|
94303
95462
|
200: {
|
|
@@ -94305,7 +95464,7 @@ export interface operations {
|
|
|
94305
95464
|
[name: string]: unknown;
|
|
94306
95465
|
};
|
|
94307
95466
|
content: {
|
|
94308
|
-
"application/json": components["schemas"]["
|
|
95467
|
+
"application/json": components["schemas"]["ActivitiesListSchema"];
|
|
94309
95468
|
};
|
|
94310
95469
|
};
|
|
94311
95470
|
/** @description Bad Request */
|
|
@@ -94355,23 +95514,27 @@ export interface operations {
|
|
|
94355
95514
|
};
|
|
94356
95515
|
};
|
|
94357
95516
|
};
|
|
94358
|
-
|
|
95517
|
+
task_views_create_activity: {
|
|
94359
95518
|
parameters: {
|
|
94360
95519
|
query?: never;
|
|
94361
95520
|
header?: never;
|
|
94362
|
-
path
|
|
94363
|
-
id: string;
|
|
94364
|
-
};
|
|
95521
|
+
path?: never;
|
|
94365
95522
|
cookie?: never;
|
|
94366
95523
|
};
|
|
94367
|
-
requestBody
|
|
95524
|
+
requestBody: {
|
|
95525
|
+
content: {
|
|
95526
|
+
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
95527
|
+
};
|
|
95528
|
+
};
|
|
94368
95529
|
responses: {
|
|
94369
|
-
/** @description
|
|
94370
|
-
|
|
95530
|
+
/** @description Created */
|
|
95531
|
+
201: {
|
|
94371
95532
|
headers: {
|
|
94372
95533
|
[name: string]: unknown;
|
|
94373
95534
|
};
|
|
94374
|
-
content
|
|
95535
|
+
content: {
|
|
95536
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
95537
|
+
};
|
|
94375
95538
|
};
|
|
94376
95539
|
/** @description Bad Request */
|
|
94377
95540
|
400: {
|
|
@@ -94420,7 +95583,7 @@ export interface operations {
|
|
|
94420
95583
|
};
|
|
94421
95584
|
};
|
|
94422
95585
|
};
|
|
94423
|
-
|
|
95586
|
+
task_views_get_comment: {
|
|
94424
95587
|
parameters: {
|
|
94425
95588
|
query?: never;
|
|
94426
95589
|
header?: never;
|
|
@@ -94437,16 +95600,7 @@ export interface operations {
|
|
|
94437
95600
|
[name: string]: unknown;
|
|
94438
95601
|
};
|
|
94439
95602
|
content: {
|
|
94440
|
-
"application/json": components["schemas"]["
|
|
94441
|
-
};
|
|
94442
|
-
};
|
|
94443
|
-
/** @description Bad Request */
|
|
94444
|
-
400: {
|
|
94445
|
-
headers: {
|
|
94446
|
-
[name: string]: unknown;
|
|
94447
|
-
};
|
|
94448
|
-
content: {
|
|
94449
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
95603
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
94450
95604
|
};
|
|
94451
95605
|
};
|
|
94452
95606
|
/** @description Forbidden */
|
|
@@ -94478,7 +95632,7 @@ export interface operations {
|
|
|
94478
95632
|
};
|
|
94479
95633
|
};
|
|
94480
95634
|
};
|
|
94481
|
-
|
|
95635
|
+
task_views_edit_comment: {
|
|
94482
95636
|
parameters: {
|
|
94483
95637
|
query?: never;
|
|
94484
95638
|
header?: never;
|
|
@@ -94489,7 +95643,7 @@ export interface operations {
|
|
|
94489
95643
|
};
|
|
94490
95644
|
requestBody: {
|
|
94491
95645
|
content: {
|
|
94492
|
-
"application/json": components["schemas"]["
|
|
95646
|
+
"application/json": components["schemas"]["CreateUpdateComment"];
|
|
94493
95647
|
};
|
|
94494
95648
|
};
|
|
94495
95649
|
responses: {
|
|
@@ -94499,7 +95653,7 @@ export interface operations {
|
|
|
94499
95653
|
[name: string]: unknown;
|
|
94500
95654
|
};
|
|
94501
95655
|
content: {
|
|
94502
|
-
"application/json": components["schemas"]["
|
|
95656
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
94503
95657
|
};
|
|
94504
95658
|
};
|
|
94505
95659
|
/** @description Bad Request */
|
|
@@ -94549,7 +95703,7 @@ export interface operations {
|
|
|
94549
95703
|
};
|
|
94550
95704
|
};
|
|
94551
95705
|
};
|
|
94552
|
-
|
|
95706
|
+
task_views_delete_comment: {
|
|
94553
95707
|
parameters: {
|
|
94554
95708
|
query?: never;
|
|
94555
95709
|
header?: never;
|
|
@@ -94614,10 +95768,10 @@ export interface operations {
|
|
|
94614
95768
|
};
|
|
94615
95769
|
};
|
|
94616
95770
|
};
|
|
94617
|
-
|
|
95771
|
+
task_views_list_comments: {
|
|
94618
95772
|
parameters: {
|
|
94619
95773
|
query?: {
|
|
94620
|
-
/** @description Search by
|
|
95774
|
+
/** @description Search by comment by content */
|
|
94621
95775
|
search?: string | null;
|
|
94622
95776
|
};
|
|
94623
95777
|
header?: never;
|
|
@@ -94632,7 +95786,7 @@ export interface operations {
|
|
|
94632
95786
|
[name: string]: unknown;
|
|
94633
95787
|
};
|
|
94634
95788
|
content: {
|
|
94635
|
-
"application/json": components["schemas"]["
|
|
95789
|
+
"application/json": components["schemas"]["CommentsListSchema"];
|
|
94636
95790
|
};
|
|
94637
95791
|
};
|
|
94638
95792
|
/** @description Bad Request */
|
|
@@ -94682,7 +95836,7 @@ export interface operations {
|
|
|
94682
95836
|
};
|
|
94683
95837
|
};
|
|
94684
95838
|
};
|
|
94685
|
-
|
|
95839
|
+
task_views_create_comment: {
|
|
94686
95840
|
parameters: {
|
|
94687
95841
|
query?: never;
|
|
94688
95842
|
header?: never;
|
|
@@ -94691,7 +95845,7 @@ export interface operations {
|
|
|
94691
95845
|
};
|
|
94692
95846
|
requestBody: {
|
|
94693
95847
|
content: {
|
|
94694
|
-
"application/json": components["schemas"]["
|
|
95848
|
+
"application/json": components["schemas"]["CreateUpdateComment"];
|
|
94695
95849
|
};
|
|
94696
95850
|
};
|
|
94697
95851
|
responses: {
|
|
@@ -94701,7 +95855,7 @@ export interface operations {
|
|
|
94701
95855
|
[name: string]: unknown;
|
|
94702
95856
|
};
|
|
94703
95857
|
content: {
|
|
94704
|
-
"application/json": components["schemas"]["
|
|
95858
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
94705
95859
|
};
|
|
94706
95860
|
};
|
|
94707
95861
|
/** @description Bad Request */
|
|
@@ -94751,7 +95905,143 @@ export interface operations {
|
|
|
94751
95905
|
};
|
|
94752
95906
|
};
|
|
94753
95907
|
};
|
|
94754
|
-
|
|
95908
|
+
task_views_list_tasks_grouped_by_status: {
|
|
95909
|
+
parameters: {
|
|
95910
|
+
query?: {
|
|
95911
|
+
/** @description Search task by name */
|
|
95912
|
+
search?: string | null;
|
|
95913
|
+
};
|
|
95914
|
+
header?: never;
|
|
95915
|
+
path?: never;
|
|
95916
|
+
cookie?: never;
|
|
95917
|
+
};
|
|
95918
|
+
requestBody?: never;
|
|
95919
|
+
responses: {
|
|
95920
|
+
/** @description OK */
|
|
95921
|
+
200: {
|
|
95922
|
+
headers: {
|
|
95923
|
+
[name: string]: unknown;
|
|
95924
|
+
};
|
|
95925
|
+
content: {
|
|
95926
|
+
"application/json": components["schemas"]["GroupedTasksByStatusListSchema"];
|
|
95927
|
+
};
|
|
95928
|
+
};
|
|
95929
|
+
/** @description Bad Request */
|
|
95930
|
+
400: {
|
|
95931
|
+
headers: {
|
|
95932
|
+
[name: string]: unknown;
|
|
95933
|
+
};
|
|
95934
|
+
content: {
|
|
95935
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95936
|
+
};
|
|
95937
|
+
};
|
|
95938
|
+
/** @description Forbidden */
|
|
95939
|
+
403: {
|
|
95940
|
+
headers: {
|
|
95941
|
+
[name: string]: unknown;
|
|
95942
|
+
};
|
|
95943
|
+
content: {
|
|
95944
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95945
|
+
};
|
|
95946
|
+
};
|
|
95947
|
+
/** @description Not Found */
|
|
95948
|
+
404: {
|
|
95949
|
+
headers: {
|
|
95950
|
+
[name: string]: unknown;
|
|
95951
|
+
};
|
|
95952
|
+
content: {
|
|
95953
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95954
|
+
};
|
|
95955
|
+
};
|
|
95956
|
+
/** @description Conflict */
|
|
95957
|
+
409: {
|
|
95958
|
+
headers: {
|
|
95959
|
+
[name: string]: unknown;
|
|
95960
|
+
};
|
|
95961
|
+
content: {
|
|
95962
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95963
|
+
};
|
|
95964
|
+
};
|
|
95965
|
+
/** @description Internal Server Error */
|
|
95966
|
+
500: {
|
|
95967
|
+
headers: {
|
|
95968
|
+
[name: string]: unknown;
|
|
95969
|
+
};
|
|
95970
|
+
content: {
|
|
95971
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95972
|
+
};
|
|
95973
|
+
};
|
|
95974
|
+
};
|
|
95975
|
+
};
|
|
95976
|
+
task_views_list_tasks_flat: {
|
|
95977
|
+
parameters: {
|
|
95978
|
+
query?: {
|
|
95979
|
+
/** @description Search task by name */
|
|
95980
|
+
search?: string | null;
|
|
95981
|
+
};
|
|
95982
|
+
header?: never;
|
|
95983
|
+
path?: never;
|
|
95984
|
+
cookie?: never;
|
|
95985
|
+
};
|
|
95986
|
+
requestBody?: never;
|
|
95987
|
+
responses: {
|
|
95988
|
+
/** @description OK */
|
|
95989
|
+
200: {
|
|
95990
|
+
headers: {
|
|
95991
|
+
[name: string]: unknown;
|
|
95992
|
+
};
|
|
95993
|
+
content: {
|
|
95994
|
+
"application/json": components["schemas"]["TasksListSchema"];
|
|
95995
|
+
};
|
|
95996
|
+
};
|
|
95997
|
+
/** @description Bad Request */
|
|
95998
|
+
400: {
|
|
95999
|
+
headers: {
|
|
96000
|
+
[name: string]: unknown;
|
|
96001
|
+
};
|
|
96002
|
+
content: {
|
|
96003
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
96004
|
+
};
|
|
96005
|
+
};
|
|
96006
|
+
/** @description Forbidden */
|
|
96007
|
+
403: {
|
|
96008
|
+
headers: {
|
|
96009
|
+
[name: string]: unknown;
|
|
96010
|
+
};
|
|
96011
|
+
content: {
|
|
96012
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
96013
|
+
};
|
|
96014
|
+
};
|
|
96015
|
+
/** @description Not Found */
|
|
96016
|
+
404: {
|
|
96017
|
+
headers: {
|
|
96018
|
+
[name: string]: unknown;
|
|
96019
|
+
};
|
|
96020
|
+
content: {
|
|
96021
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
96022
|
+
};
|
|
96023
|
+
};
|
|
96024
|
+
/** @description Conflict */
|
|
96025
|
+
409: {
|
|
96026
|
+
headers: {
|
|
96027
|
+
[name: string]: unknown;
|
|
96028
|
+
};
|
|
96029
|
+
content: {
|
|
96030
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
96031
|
+
};
|
|
96032
|
+
};
|
|
96033
|
+
/** @description Internal Server Error */
|
|
96034
|
+
500: {
|
|
96035
|
+
headers: {
|
|
96036
|
+
[name: string]: unknown;
|
|
96037
|
+
};
|
|
96038
|
+
content: {
|
|
96039
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
96040
|
+
};
|
|
96041
|
+
};
|
|
96042
|
+
};
|
|
96043
|
+
};
|
|
96044
|
+
task_views_get_task: {
|
|
94755
96045
|
parameters: {
|
|
94756
96046
|
query?: never;
|
|
94757
96047
|
header?: never;
|
|
@@ -94768,7 +96058,7 @@ export interface operations {
|
|
|
94768
96058
|
[name: string]: unknown;
|
|
94769
96059
|
};
|
|
94770
96060
|
content: {
|
|
94771
|
-
"application/json": components["schemas"]["
|
|
96061
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
94772
96062
|
};
|
|
94773
96063
|
};
|
|
94774
96064
|
/** @description Forbidden */
|
|
@@ -94800,7 +96090,7 @@ export interface operations {
|
|
|
94800
96090
|
};
|
|
94801
96091
|
};
|
|
94802
96092
|
};
|
|
94803
|
-
|
|
96093
|
+
task_views_update_task: {
|
|
94804
96094
|
parameters: {
|
|
94805
96095
|
query?: never;
|
|
94806
96096
|
header?: never;
|
|
@@ -94811,7 +96101,7 @@ export interface operations {
|
|
|
94811
96101
|
};
|
|
94812
96102
|
requestBody: {
|
|
94813
96103
|
content: {
|
|
94814
|
-
"application/json": components["schemas"]["
|
|
96104
|
+
"application/json": components["schemas"]["CreateUpdateTask"];
|
|
94815
96105
|
};
|
|
94816
96106
|
};
|
|
94817
96107
|
responses: {
|
|
@@ -94821,7 +96111,7 @@ export interface operations {
|
|
|
94821
96111
|
[name: string]: unknown;
|
|
94822
96112
|
};
|
|
94823
96113
|
content: {
|
|
94824
|
-
"application/json": components["schemas"]["
|
|
96114
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
94825
96115
|
};
|
|
94826
96116
|
};
|
|
94827
96117
|
/** @description Bad Request */
|
|
@@ -94871,7 +96161,7 @@ export interface operations {
|
|
|
94871
96161
|
};
|
|
94872
96162
|
};
|
|
94873
96163
|
};
|
|
94874
|
-
|
|
96164
|
+
task_views_delete_task: {
|
|
94875
96165
|
parameters: {
|
|
94876
96166
|
query?: never;
|
|
94877
96167
|
header?: never;
|
|
@@ -94895,7 +96185,7 @@ export interface operations {
|
|
|
94895
96185
|
[name: string]: unknown;
|
|
94896
96186
|
};
|
|
94897
96187
|
content: {
|
|
94898
|
-
"application/json": components["schemas"]["
|
|
96188
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
94899
96189
|
};
|
|
94900
96190
|
};
|
|
94901
96191
|
/** @description Forbidden */
|
|
@@ -94916,15 +96206,6 @@ export interface operations {
|
|
|
94916
96206
|
"application/json": components["schemas"]["MessageResponse"];
|
|
94917
96207
|
};
|
|
94918
96208
|
};
|
|
94919
|
-
/** @description Conflict */
|
|
94920
|
-
409: {
|
|
94921
|
-
headers: {
|
|
94922
|
-
[name: string]: unknown;
|
|
94923
|
-
};
|
|
94924
|
-
content: {
|
|
94925
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
94926
|
-
};
|
|
94927
|
-
};
|
|
94928
96209
|
/** @description Internal Server Error */
|
|
94929
96210
|
500: {
|
|
94930
96211
|
headers: {
|
|
@@ -94936,17 +96217,20 @@ export interface operations {
|
|
|
94936
96217
|
};
|
|
94937
96218
|
};
|
|
94938
96219
|
};
|
|
94939
|
-
|
|
96220
|
+
task_views_update_task_archive: {
|
|
94940
96221
|
parameters: {
|
|
94941
|
-
query?:
|
|
94942
|
-
/** @description Search by comment by content */
|
|
94943
|
-
search?: string | null;
|
|
94944
|
-
};
|
|
96222
|
+
query?: never;
|
|
94945
96223
|
header?: never;
|
|
94946
|
-
path
|
|
96224
|
+
path: {
|
|
96225
|
+
id: string;
|
|
96226
|
+
};
|
|
94947
96227
|
cookie?: never;
|
|
94948
96228
|
};
|
|
94949
|
-
requestBody
|
|
96229
|
+
requestBody: {
|
|
96230
|
+
content: {
|
|
96231
|
+
"application/json": components["schemas"]["ArchiveTasks"];
|
|
96232
|
+
};
|
|
96233
|
+
};
|
|
94950
96234
|
responses: {
|
|
94951
96235
|
/** @description OK */
|
|
94952
96236
|
200: {
|
|
@@ -94954,7 +96238,7 @@ export interface operations {
|
|
|
94954
96238
|
[name: string]: unknown;
|
|
94955
96239
|
};
|
|
94956
96240
|
content: {
|
|
94957
|
-
"application/json": components["schemas"]["
|
|
96241
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
94958
96242
|
};
|
|
94959
96243
|
};
|
|
94960
96244
|
/** @description Bad Request */
|
|
@@ -95004,7 +96288,7 @@ export interface operations {
|
|
|
95004
96288
|
};
|
|
95005
96289
|
};
|
|
95006
96290
|
};
|
|
95007
|
-
|
|
96291
|
+
task_views_create_task: {
|
|
95008
96292
|
parameters: {
|
|
95009
96293
|
query?: never;
|
|
95010
96294
|
header?: never;
|
|
@@ -95013,7 +96297,7 @@ export interface operations {
|
|
|
95013
96297
|
};
|
|
95014
96298
|
requestBody: {
|
|
95015
96299
|
content: {
|
|
95016
|
-
"application/json": components["schemas"]["
|
|
96300
|
+
"application/json": components["schemas"]["CreateUpdateTask"];
|
|
95017
96301
|
};
|
|
95018
96302
|
};
|
|
95019
96303
|
responses: {
|
|
@@ -95023,7 +96307,7 @@ export interface operations {
|
|
|
95023
96307
|
[name: string]: unknown;
|
|
95024
96308
|
};
|
|
95025
96309
|
content: {
|
|
95026
|
-
"application/json": components["schemas"]["
|
|
96310
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
95027
96311
|
};
|
|
95028
96312
|
};
|
|
95029
96313
|
/** @description Bad Request */
|
|
@@ -95053,15 +96337,6 @@ export interface operations {
|
|
|
95053
96337
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95054
96338
|
};
|
|
95055
96339
|
};
|
|
95056
|
-
/** @description Conflict */
|
|
95057
|
-
409: {
|
|
95058
|
-
headers: {
|
|
95059
|
-
[name: string]: unknown;
|
|
95060
|
-
};
|
|
95061
|
-
content: {
|
|
95062
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95063
|
-
};
|
|
95064
|
-
};
|
|
95065
96340
|
/** @description Internal Server Error */
|
|
95066
96341
|
500: {
|
|
95067
96342
|
headers: {
|
|
@@ -95073,12 +96348,9 @@ export interface operations {
|
|
|
95073
96348
|
};
|
|
95074
96349
|
};
|
|
95075
96350
|
};
|
|
95076
|
-
|
|
96351
|
+
integration_settings_views_get_online_store_setting: {
|
|
95077
96352
|
parameters: {
|
|
95078
|
-
query?:
|
|
95079
|
-
/** @description Search task by name */
|
|
95080
|
-
search?: string | null;
|
|
95081
|
-
};
|
|
96353
|
+
query?: never;
|
|
95082
96354
|
header?: never;
|
|
95083
96355
|
path?: never;
|
|
95084
96356
|
cookie?: never;
|
|
@@ -95091,16 +96363,7 @@ export interface operations {
|
|
|
95091
96363
|
[name: string]: unknown;
|
|
95092
96364
|
};
|
|
95093
96365
|
content: {
|
|
95094
|
-
"application/json": components["schemas"]["
|
|
95095
|
-
};
|
|
95096
|
-
};
|
|
95097
|
-
/** @description Bad Request */
|
|
95098
|
-
400: {
|
|
95099
|
-
headers: {
|
|
95100
|
-
[name: string]: unknown;
|
|
95101
|
-
};
|
|
95102
|
-
content: {
|
|
95103
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
96366
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
95104
96367
|
};
|
|
95105
96368
|
};
|
|
95106
96369
|
/** @description Forbidden */
|
|
@@ -95112,24 +96375,6 @@ export interface operations {
|
|
|
95112
96375
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95113
96376
|
};
|
|
95114
96377
|
};
|
|
95115
|
-
/** @description Not Found */
|
|
95116
|
-
404: {
|
|
95117
|
-
headers: {
|
|
95118
|
-
[name: string]: unknown;
|
|
95119
|
-
};
|
|
95120
|
-
content: {
|
|
95121
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95122
|
-
};
|
|
95123
|
-
};
|
|
95124
|
-
/** @description Conflict */
|
|
95125
|
-
409: {
|
|
95126
|
-
headers: {
|
|
95127
|
-
[name: string]: unknown;
|
|
95128
|
-
};
|
|
95129
|
-
content: {
|
|
95130
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95131
|
-
};
|
|
95132
|
-
};
|
|
95133
96378
|
/** @description Internal Server Error */
|
|
95134
96379
|
500: {
|
|
95135
96380
|
headers: {
|
|
@@ -95141,17 +96386,18 @@ export interface operations {
|
|
|
95141
96386
|
};
|
|
95142
96387
|
};
|
|
95143
96388
|
};
|
|
95144
|
-
|
|
96389
|
+
integration_settings_views_update_online_store_setting: {
|
|
95145
96390
|
parameters: {
|
|
95146
|
-
query?:
|
|
95147
|
-
/** @description Search task by name */
|
|
95148
|
-
search?: string | null;
|
|
95149
|
-
};
|
|
96391
|
+
query?: never;
|
|
95150
96392
|
header?: never;
|
|
95151
96393
|
path?: never;
|
|
95152
96394
|
cookie?: never;
|
|
95153
96395
|
};
|
|
95154
|
-
requestBody
|
|
96396
|
+
requestBody: {
|
|
96397
|
+
content: {
|
|
96398
|
+
"application/json": components["schemas"]["OnlineStoreSettingCreateUpdateSchema"];
|
|
96399
|
+
};
|
|
96400
|
+
};
|
|
95155
96401
|
responses: {
|
|
95156
96402
|
/** @description OK */
|
|
95157
96403
|
200: {
|
|
@@ -95159,7 +96405,7 @@ export interface operations {
|
|
|
95159
96405
|
[name: string]: unknown;
|
|
95160
96406
|
};
|
|
95161
96407
|
content: {
|
|
95162
|
-
"application/json": components["schemas"]["
|
|
96408
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
95163
96409
|
};
|
|
95164
96410
|
};
|
|
95165
96411
|
/** @description Bad Request */
|
|
@@ -95189,64 +96435,6 @@ export interface operations {
|
|
|
95189
96435
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95190
96436
|
};
|
|
95191
96437
|
};
|
|
95192
|
-
/** @description Conflict */
|
|
95193
|
-
409: {
|
|
95194
|
-
headers: {
|
|
95195
|
-
[name: string]: unknown;
|
|
95196
|
-
};
|
|
95197
|
-
content: {
|
|
95198
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95199
|
-
};
|
|
95200
|
-
};
|
|
95201
|
-
/** @description Internal Server Error */
|
|
95202
|
-
500: {
|
|
95203
|
-
headers: {
|
|
95204
|
-
[name: string]: unknown;
|
|
95205
|
-
};
|
|
95206
|
-
content: {
|
|
95207
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95208
|
-
};
|
|
95209
|
-
};
|
|
95210
|
-
};
|
|
95211
|
-
};
|
|
95212
|
-
task_views_get_task: {
|
|
95213
|
-
parameters: {
|
|
95214
|
-
query?: never;
|
|
95215
|
-
header?: never;
|
|
95216
|
-
path: {
|
|
95217
|
-
id: string;
|
|
95218
|
-
};
|
|
95219
|
-
cookie?: never;
|
|
95220
|
-
};
|
|
95221
|
-
requestBody?: never;
|
|
95222
|
-
responses: {
|
|
95223
|
-
/** @description OK */
|
|
95224
|
-
200: {
|
|
95225
|
-
headers: {
|
|
95226
|
-
[name: string]: unknown;
|
|
95227
|
-
};
|
|
95228
|
-
content: {
|
|
95229
|
-
"application/json": components["schemas"]["RetrieveTask"];
|
|
95230
|
-
};
|
|
95231
|
-
};
|
|
95232
|
-
/** @description Forbidden */
|
|
95233
|
-
403: {
|
|
95234
|
-
headers: {
|
|
95235
|
-
[name: string]: unknown;
|
|
95236
|
-
};
|
|
95237
|
-
content: {
|
|
95238
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95239
|
-
};
|
|
95240
|
-
};
|
|
95241
|
-
/** @description Not Found */
|
|
95242
|
-
404: {
|
|
95243
|
-
headers: {
|
|
95244
|
-
[name: string]: unknown;
|
|
95245
|
-
};
|
|
95246
|
-
content: {
|
|
95247
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95248
|
-
};
|
|
95249
|
-
};
|
|
95250
96438
|
/** @description Internal Server Error */
|
|
95251
96439
|
500: {
|
|
95252
96440
|
headers: {
|
|
@@ -95258,18 +96446,16 @@ export interface operations {
|
|
|
95258
96446
|
};
|
|
95259
96447
|
};
|
|
95260
96448
|
};
|
|
95261
|
-
|
|
96449
|
+
integration_settings_views_toggle_online_store_integration: {
|
|
95262
96450
|
parameters: {
|
|
95263
96451
|
query?: never;
|
|
95264
96452
|
header?: never;
|
|
95265
|
-
path
|
|
95266
|
-
id: string;
|
|
95267
|
-
};
|
|
96453
|
+
path?: never;
|
|
95268
96454
|
cookie?: never;
|
|
95269
96455
|
};
|
|
95270
96456
|
requestBody: {
|
|
95271
96457
|
content: {
|
|
95272
|
-
"application/json": components["schemas"]["
|
|
96458
|
+
"application/json": components["schemas"]["ToggleOnlineStoreIntegrationSchema"];
|
|
95273
96459
|
};
|
|
95274
96460
|
};
|
|
95275
96461
|
responses: {
|
|
@@ -95279,7 +96465,7 @@ export interface operations {
|
|
|
95279
96465
|
[name: string]: unknown;
|
|
95280
96466
|
};
|
|
95281
96467
|
content: {
|
|
95282
|
-
"application/json": components["schemas"]["
|
|
96468
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
95283
96469
|
};
|
|
95284
96470
|
};
|
|
95285
96471
|
/** @description Bad Request */
|
|
@@ -95309,15 +96495,6 @@ export interface operations {
|
|
|
95309
96495
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95310
96496
|
};
|
|
95311
96497
|
};
|
|
95312
|
-
/** @description Conflict */
|
|
95313
|
-
409: {
|
|
95314
|
-
headers: {
|
|
95315
|
-
[name: string]: unknown;
|
|
95316
|
-
};
|
|
95317
|
-
content: {
|
|
95318
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95319
|
-
};
|
|
95320
|
-
};
|
|
95321
96498
|
/** @description Internal Server Error */
|
|
95322
96499
|
500: {
|
|
95323
96500
|
headers: {
|
|
@@ -95329,35 +96506,17 @@ export interface operations {
|
|
|
95329
96506
|
};
|
|
95330
96507
|
};
|
|
95331
96508
|
};
|
|
95332
|
-
|
|
96509
|
+
integration_sync_views_kill_all_syncs_endpoint: {
|
|
95333
96510
|
parameters: {
|
|
95334
96511
|
query?: never;
|
|
95335
96512
|
header?: never;
|
|
95336
|
-
path
|
|
95337
|
-
id: string;
|
|
95338
|
-
};
|
|
96513
|
+
path?: never;
|
|
95339
96514
|
cookie?: never;
|
|
95340
96515
|
};
|
|
95341
96516
|
requestBody?: never;
|
|
95342
96517
|
responses: {
|
|
95343
|
-
/** @description
|
|
95344
|
-
|
|
95345
|
-
headers: {
|
|
95346
|
-
[name: string]: unknown;
|
|
95347
|
-
};
|
|
95348
|
-
content?: never;
|
|
95349
|
-
};
|
|
95350
|
-
/** @description Bad Request */
|
|
95351
|
-
400: {
|
|
95352
|
-
headers: {
|
|
95353
|
-
[name: string]: unknown;
|
|
95354
|
-
};
|
|
95355
|
-
content: {
|
|
95356
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95357
|
-
};
|
|
95358
|
-
};
|
|
95359
|
-
/** @description Forbidden */
|
|
95360
|
-
403: {
|
|
96518
|
+
/** @description OK */
|
|
96519
|
+
200: {
|
|
95361
96520
|
headers: {
|
|
95362
96521
|
[name: string]: unknown;
|
|
95363
96522
|
};
|
|
@@ -95374,31 +96533,16 @@ export interface operations {
|
|
|
95374
96533
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95375
96534
|
};
|
|
95376
96535
|
};
|
|
95377
|
-
/** @description Internal Server Error */
|
|
95378
|
-
500: {
|
|
95379
|
-
headers: {
|
|
95380
|
-
[name: string]: unknown;
|
|
95381
|
-
};
|
|
95382
|
-
content: {
|
|
95383
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95384
|
-
};
|
|
95385
|
-
};
|
|
95386
96536
|
};
|
|
95387
96537
|
};
|
|
95388
|
-
|
|
96538
|
+
integration_sync_views_get_sync_store: {
|
|
95389
96539
|
parameters: {
|
|
95390
96540
|
query?: never;
|
|
95391
96541
|
header?: never;
|
|
95392
|
-
path
|
|
95393
|
-
id: string;
|
|
95394
|
-
};
|
|
96542
|
+
path?: never;
|
|
95395
96543
|
cookie?: never;
|
|
95396
96544
|
};
|
|
95397
|
-
requestBody
|
|
95398
|
-
content: {
|
|
95399
|
-
"application/json": components["schemas"]["ArchiveTasks"];
|
|
95400
|
-
};
|
|
95401
|
-
};
|
|
96545
|
+
requestBody?: never;
|
|
95402
96546
|
responses: {
|
|
95403
96547
|
/** @description OK */
|
|
95404
96548
|
200: {
|
|
@@ -95406,16 +96550,7 @@ export interface operations {
|
|
|
95406
96550
|
[name: string]: unknown;
|
|
95407
96551
|
};
|
|
95408
96552
|
content: {
|
|
95409
|
-
"application/json": components["schemas"]["
|
|
95410
|
-
};
|
|
95411
|
-
};
|
|
95412
|
-
/** @description Bad Request */
|
|
95413
|
-
400: {
|
|
95414
|
-
headers: {
|
|
95415
|
-
[name: string]: unknown;
|
|
95416
|
-
};
|
|
95417
|
-
content: {
|
|
95418
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
96553
|
+
"application/json": components["schemas"]["SyncStoreSchema"];
|
|
95419
96554
|
};
|
|
95420
96555
|
};
|
|
95421
96556
|
/** @description Forbidden */
|
|
@@ -95436,15 +96571,6 @@ export interface operations {
|
|
|
95436
96571
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95437
96572
|
};
|
|
95438
96573
|
};
|
|
95439
|
-
/** @description Conflict */
|
|
95440
|
-
409: {
|
|
95441
|
-
headers: {
|
|
95442
|
-
[name: string]: unknown;
|
|
95443
|
-
};
|
|
95444
|
-
content: {
|
|
95445
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95446
|
-
};
|
|
95447
|
-
};
|
|
95448
96574
|
/** @description Internal Server Error */
|
|
95449
96575
|
500: {
|
|
95450
96576
|
headers: {
|
|
@@ -95456,7 +96582,7 @@ export interface operations {
|
|
|
95456
96582
|
};
|
|
95457
96583
|
};
|
|
95458
96584
|
};
|
|
95459
|
-
|
|
96585
|
+
integration_sync_views_update_sync_store: {
|
|
95460
96586
|
parameters: {
|
|
95461
96587
|
query?: never;
|
|
95462
96588
|
header?: never;
|
|
@@ -95465,17 +96591,17 @@ export interface operations {
|
|
|
95465
96591
|
};
|
|
95466
96592
|
requestBody: {
|
|
95467
96593
|
content: {
|
|
95468
|
-
"application/json": components["schemas"]["
|
|
96594
|
+
"application/json": components["schemas"]["SyncStoreCreateSchema"];
|
|
95469
96595
|
};
|
|
95470
96596
|
};
|
|
95471
96597
|
responses: {
|
|
95472
|
-
/** @description
|
|
95473
|
-
|
|
96598
|
+
/** @description OK */
|
|
96599
|
+
200: {
|
|
95474
96600
|
headers: {
|
|
95475
96601
|
[name: string]: unknown;
|
|
95476
96602
|
};
|
|
95477
96603
|
content: {
|
|
95478
|
-
"application/json": components["schemas"]["
|
|
96604
|
+
"application/json": components["schemas"]["SyncStoreSchema"];
|
|
95479
96605
|
};
|
|
95480
96606
|
};
|
|
95481
96607
|
/** @description Bad Request */
|
|
@@ -95516,22 +96642,35 @@ export interface operations {
|
|
|
95516
96642
|
};
|
|
95517
96643
|
};
|
|
95518
96644
|
};
|
|
95519
|
-
|
|
96645
|
+
integration_sync_views_create_sync_store: {
|
|
95520
96646
|
parameters: {
|
|
95521
96647
|
query?: never;
|
|
95522
96648
|
header?: never;
|
|
95523
96649
|
path?: never;
|
|
95524
96650
|
cookie?: never;
|
|
95525
96651
|
};
|
|
95526
|
-
requestBody
|
|
96652
|
+
requestBody: {
|
|
96653
|
+
content: {
|
|
96654
|
+
"application/json": components["schemas"]["SyncStoreCreateSchema"];
|
|
96655
|
+
};
|
|
96656
|
+
};
|
|
95527
96657
|
responses: {
|
|
95528
|
-
/** @description
|
|
95529
|
-
|
|
96658
|
+
/** @description Created */
|
|
96659
|
+
201: {
|
|
95530
96660
|
headers: {
|
|
95531
96661
|
[name: string]: unknown;
|
|
95532
96662
|
};
|
|
95533
96663
|
content: {
|
|
95534
|
-
"application/json": components["schemas"]["
|
|
96664
|
+
"application/json": components["schemas"]["SyncStoreSchema"];
|
|
96665
|
+
};
|
|
96666
|
+
};
|
|
96667
|
+
/** @description Bad Request */
|
|
96668
|
+
400: {
|
|
96669
|
+
headers: {
|
|
96670
|
+
[name: string]: unknown;
|
|
96671
|
+
};
|
|
96672
|
+
content: {
|
|
96673
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95535
96674
|
};
|
|
95536
96675
|
};
|
|
95537
96676
|
/** @description Forbidden */
|
|
@@ -95554,18 +96693,14 @@ export interface operations {
|
|
|
95554
96693
|
};
|
|
95555
96694
|
};
|
|
95556
96695
|
};
|
|
95557
|
-
|
|
96696
|
+
integration_sync_views_test_sync_store_connection: {
|
|
95558
96697
|
parameters: {
|
|
95559
96698
|
query?: never;
|
|
95560
96699
|
header?: never;
|
|
95561
96700
|
path?: never;
|
|
95562
96701
|
cookie?: never;
|
|
95563
96702
|
};
|
|
95564
|
-
requestBody
|
|
95565
|
-
content: {
|
|
95566
|
-
"application/json": components["schemas"]["OnlineStoreSettingCreateUpdateSchema"];
|
|
95567
|
-
};
|
|
95568
|
-
};
|
|
96703
|
+
requestBody?: never;
|
|
95569
96704
|
responses: {
|
|
95570
96705
|
/** @description OK */
|
|
95571
96706
|
200: {
|
|
@@ -95573,7 +96708,7 @@ export interface operations {
|
|
|
95573
96708
|
[name: string]: unknown;
|
|
95574
96709
|
};
|
|
95575
96710
|
content: {
|
|
95576
|
-
"application/json":
|
|
96711
|
+
"application/json": Record<string, never>;
|
|
95577
96712
|
};
|
|
95578
96713
|
};
|
|
95579
96714
|
/** @description Bad Request */
|
|
@@ -95614,18 +96749,16 @@ export interface operations {
|
|
|
95614
96749
|
};
|
|
95615
96750
|
};
|
|
95616
96751
|
};
|
|
95617
|
-
|
|
96752
|
+
integration_sync_views_sync_all_items_endpoint: {
|
|
95618
96753
|
parameters: {
|
|
95619
|
-
query?:
|
|
96754
|
+
query?: {
|
|
96755
|
+
forceUpdate?: boolean;
|
|
96756
|
+
};
|
|
95620
96757
|
header?: never;
|
|
95621
96758
|
path?: never;
|
|
95622
96759
|
cookie?: never;
|
|
95623
96760
|
};
|
|
95624
|
-
requestBody
|
|
95625
|
-
content: {
|
|
95626
|
-
"application/json": components["schemas"]["ToggleOnlineStoreIntegrationSchema"];
|
|
95627
|
-
};
|
|
95628
|
-
};
|
|
96761
|
+
requestBody?: never;
|
|
95629
96762
|
responses: {
|
|
95630
96763
|
/** @description OK */
|
|
95631
96764
|
200: {
|
|
@@ -95633,25 +96766,25 @@ export interface operations {
|
|
|
95633
96766
|
[name: string]: unknown;
|
|
95634
96767
|
};
|
|
95635
96768
|
content: {
|
|
95636
|
-
"application/json": components["schemas"]["
|
|
96769
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95637
96770
|
};
|
|
95638
96771
|
};
|
|
95639
|
-
/** @description
|
|
95640
|
-
|
|
96772
|
+
/** @description Accepted */
|
|
96773
|
+
202: {
|
|
95641
96774
|
headers: {
|
|
95642
96775
|
[name: string]: unknown;
|
|
95643
96776
|
};
|
|
95644
96777
|
content: {
|
|
95645
|
-
"application/json": components["schemas"]["
|
|
96778
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95646
96779
|
};
|
|
95647
96780
|
};
|
|
95648
|
-
/** @description
|
|
95649
|
-
|
|
96781
|
+
/** @description Bad Request */
|
|
96782
|
+
400: {
|
|
95650
96783
|
headers: {
|
|
95651
96784
|
[name: string]: unknown;
|
|
95652
96785
|
};
|
|
95653
96786
|
content: {
|
|
95654
|
-
"application/json": components["schemas"]["
|
|
96787
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95655
96788
|
};
|
|
95656
96789
|
};
|
|
95657
96790
|
/** @description Not Found */
|
|
@@ -95663,8 +96796,8 @@ export interface operations {
|
|
|
95663
96796
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95664
96797
|
};
|
|
95665
96798
|
};
|
|
95666
|
-
/** @description
|
|
95667
|
-
|
|
96799
|
+
/** @description Conflict */
|
|
96800
|
+
409: {
|
|
95668
96801
|
headers: {
|
|
95669
96802
|
[name: string]: unknown;
|
|
95670
96803
|
};
|
|
@@ -95674,11 +96807,13 @@ export interface operations {
|
|
|
95674
96807
|
};
|
|
95675
96808
|
};
|
|
95676
96809
|
};
|
|
95677
|
-
|
|
96810
|
+
integration_sync_views_sync_single_item_endpoint: {
|
|
95678
96811
|
parameters: {
|
|
95679
96812
|
query?: never;
|
|
95680
96813
|
header?: never;
|
|
95681
|
-
path
|
|
96814
|
+
path: {
|
|
96815
|
+
id: number;
|
|
96816
|
+
};
|
|
95682
96817
|
cookie?: never;
|
|
95683
96818
|
};
|
|
95684
96819
|
requestBody?: never;
|
|
@@ -95692,8 +96827,8 @@ export interface operations {
|
|
|
95692
96827
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95693
96828
|
};
|
|
95694
96829
|
};
|
|
95695
|
-
/** @description
|
|
95696
|
-
|
|
96830
|
+
/** @description Accepted */
|
|
96831
|
+
202: {
|
|
95697
96832
|
headers: {
|
|
95698
96833
|
[name: string]: unknown;
|
|
95699
96834
|
};
|
|
@@ -95701,33 +96836,13 @@ export interface operations {
|
|
|
95701
96836
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95702
96837
|
};
|
|
95703
96838
|
};
|
|
95704
|
-
|
|
95705
|
-
|
|
95706
|
-
integration_sync_views_get_sync_store: {
|
|
95707
|
-
parameters: {
|
|
95708
|
-
query?: never;
|
|
95709
|
-
header?: never;
|
|
95710
|
-
path?: never;
|
|
95711
|
-
cookie?: never;
|
|
95712
|
-
};
|
|
95713
|
-
requestBody?: never;
|
|
95714
|
-
responses: {
|
|
95715
|
-
/** @description OK */
|
|
95716
|
-
200: {
|
|
95717
|
-
headers: {
|
|
95718
|
-
[name: string]: unknown;
|
|
95719
|
-
};
|
|
95720
|
-
content: {
|
|
95721
|
-
"application/json": components["schemas"]["SyncStoreSchema"];
|
|
95722
|
-
};
|
|
95723
|
-
};
|
|
95724
|
-
/** @description Forbidden */
|
|
95725
|
-
403: {
|
|
96839
|
+
/** @description Bad Request */
|
|
96840
|
+
400: {
|
|
95726
96841
|
headers: {
|
|
95727
96842
|
[name: string]: unknown;
|
|
95728
96843
|
};
|
|
95729
96844
|
content: {
|
|
95730
|
-
"application/json": components["schemas"]["
|
|
96845
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
95731
96846
|
};
|
|
95732
96847
|
};
|
|
95733
96848
|
/** @description Not Found */
|
|
@@ -95739,8 +96854,8 @@ export interface operations {
|
|
|
95739
96854
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95740
96855
|
};
|
|
95741
96856
|
};
|
|
95742
|
-
/** @description
|
|
95743
|
-
|
|
96857
|
+
/** @description Conflict */
|
|
96858
|
+
409: {
|
|
95744
96859
|
headers: {
|
|
95745
96860
|
[name: string]: unknown;
|
|
95746
96861
|
};
|
|
@@ -95750,18 +96865,16 @@ export interface operations {
|
|
|
95750
96865
|
};
|
|
95751
96866
|
};
|
|
95752
96867
|
};
|
|
95753
|
-
|
|
96868
|
+
integration_sync_views_sync_single_category_endpoint: {
|
|
95754
96869
|
parameters: {
|
|
95755
96870
|
query?: never;
|
|
95756
96871
|
header?: never;
|
|
95757
|
-
path
|
|
95758
|
-
|
|
95759
|
-
};
|
|
95760
|
-
requestBody: {
|
|
95761
|
-
content: {
|
|
95762
|
-
"application/json": components["schemas"]["SyncStoreCreateSchema"];
|
|
96872
|
+
path: {
|
|
96873
|
+
id: number;
|
|
95763
96874
|
};
|
|
96875
|
+
cookie?: never;
|
|
95764
96876
|
};
|
|
96877
|
+
requestBody?: never;
|
|
95765
96878
|
responses: {
|
|
95766
96879
|
/** @description OK */
|
|
95767
96880
|
200: {
|
|
@@ -95769,7 +96882,7 @@ export interface operations {
|
|
|
95769
96882
|
[name: string]: unknown;
|
|
95770
96883
|
};
|
|
95771
96884
|
content: {
|
|
95772
|
-
"application/json": components["schemas"]["
|
|
96885
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95773
96886
|
};
|
|
95774
96887
|
};
|
|
95775
96888
|
/** @description Bad Request */
|
|
@@ -95781,15 +96894,6 @@ export interface operations {
|
|
|
95781
96894
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
95782
96895
|
};
|
|
95783
96896
|
};
|
|
95784
|
-
/** @description Forbidden */
|
|
95785
|
-
403: {
|
|
95786
|
-
headers: {
|
|
95787
|
-
[name: string]: unknown;
|
|
95788
|
-
};
|
|
95789
|
-
content: {
|
|
95790
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95791
|
-
};
|
|
95792
|
-
};
|
|
95793
96897
|
/** @description Not Found */
|
|
95794
96898
|
404: {
|
|
95795
96899
|
headers: {
|
|
@@ -95799,8 +96903,8 @@ export interface operations {
|
|
|
95799
96903
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95800
96904
|
};
|
|
95801
96905
|
};
|
|
95802
|
-
/** @description
|
|
95803
|
-
|
|
96906
|
+
/** @description Conflict */
|
|
96907
|
+
409: {
|
|
95804
96908
|
headers: {
|
|
95805
96909
|
[name: string]: unknown;
|
|
95806
96910
|
};
|
|
@@ -95810,39 +96914,26 @@ export interface operations {
|
|
|
95810
96914
|
};
|
|
95811
96915
|
};
|
|
95812
96916
|
};
|
|
95813
|
-
|
|
96917
|
+
integration_sync_views_sync_all_categories_endpoint: {
|
|
95814
96918
|
parameters: {
|
|
95815
96919
|
query?: never;
|
|
95816
96920
|
header?: never;
|
|
95817
96921
|
path?: never;
|
|
95818
96922
|
cookie?: never;
|
|
95819
96923
|
};
|
|
95820
|
-
requestBody
|
|
95821
|
-
content: {
|
|
95822
|
-
"application/json": components["schemas"]["SyncStoreCreateSchema"];
|
|
95823
|
-
};
|
|
95824
|
-
};
|
|
96924
|
+
requestBody?: never;
|
|
95825
96925
|
responses: {
|
|
95826
|
-
/** @description
|
|
95827
|
-
|
|
95828
|
-
headers: {
|
|
95829
|
-
[name: string]: unknown;
|
|
95830
|
-
};
|
|
95831
|
-
content: {
|
|
95832
|
-
"application/json": components["schemas"]["SyncStoreSchema"];
|
|
95833
|
-
};
|
|
95834
|
-
};
|
|
95835
|
-
/** @description Bad Request */
|
|
95836
|
-
400: {
|
|
96926
|
+
/** @description OK */
|
|
96927
|
+
200: {
|
|
95837
96928
|
headers: {
|
|
95838
96929
|
[name: string]: unknown;
|
|
95839
96930
|
};
|
|
95840
96931
|
content: {
|
|
95841
|
-
"application/json": components["schemas"]["
|
|
96932
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95842
96933
|
};
|
|
95843
96934
|
};
|
|
95844
|
-
/** @description
|
|
95845
|
-
|
|
96935
|
+
/** @description Not Found */
|
|
96936
|
+
404: {
|
|
95846
96937
|
headers: {
|
|
95847
96938
|
[name: string]: unknown;
|
|
95848
96939
|
};
|
|
@@ -95850,8 +96941,8 @@ export interface operations {
|
|
|
95850
96941
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95851
96942
|
};
|
|
95852
96943
|
};
|
|
95853
|
-
/** @description
|
|
95854
|
-
|
|
96944
|
+
/** @description Conflict */
|
|
96945
|
+
409: {
|
|
95855
96946
|
headers: {
|
|
95856
96947
|
[name: string]: unknown;
|
|
95857
96948
|
};
|
|
@@ -95861,11 +96952,13 @@ export interface operations {
|
|
|
95861
96952
|
};
|
|
95862
96953
|
};
|
|
95863
96954
|
};
|
|
95864
|
-
|
|
96955
|
+
integration_sync_views_sync_single_brand_endpoint: {
|
|
95865
96956
|
parameters: {
|
|
95866
96957
|
query?: never;
|
|
95867
96958
|
header?: never;
|
|
95868
|
-
path
|
|
96959
|
+
path: {
|
|
96960
|
+
id: number;
|
|
96961
|
+
};
|
|
95869
96962
|
cookie?: never;
|
|
95870
96963
|
};
|
|
95871
96964
|
requestBody?: never;
|
|
@@ -95876,7 +96969,7 @@ export interface operations {
|
|
|
95876
96969
|
[name: string]: unknown;
|
|
95877
96970
|
};
|
|
95878
96971
|
content: {
|
|
95879
|
-
"application/json":
|
|
96972
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
95880
96973
|
};
|
|
95881
96974
|
};
|
|
95882
96975
|
/** @description Bad Request */
|
|
@@ -95888,15 +96981,6 @@ export interface operations {
|
|
|
95888
96981
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
95889
96982
|
};
|
|
95890
96983
|
};
|
|
95891
|
-
/** @description Forbidden */
|
|
95892
|
-
403: {
|
|
95893
|
-
headers: {
|
|
95894
|
-
[name: string]: unknown;
|
|
95895
|
-
};
|
|
95896
|
-
content: {
|
|
95897
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95898
|
-
};
|
|
95899
|
-
};
|
|
95900
96984
|
/** @description Not Found */
|
|
95901
96985
|
404: {
|
|
95902
96986
|
headers: {
|
|
@@ -95906,8 +96990,8 @@ export interface operations {
|
|
|
95906
96990
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95907
96991
|
};
|
|
95908
96992
|
};
|
|
95909
|
-
/** @description
|
|
95910
|
-
|
|
96993
|
+
/** @description Conflict */
|
|
96994
|
+
409: {
|
|
95911
96995
|
headers: {
|
|
95912
96996
|
[name: string]: unknown;
|
|
95913
96997
|
};
|
|
@@ -95917,11 +97001,9 @@ export interface operations {
|
|
|
95917
97001
|
};
|
|
95918
97002
|
};
|
|
95919
97003
|
};
|
|
95920
|
-
|
|
97004
|
+
integration_sync_views_sync_all_brands_endpoint: {
|
|
95921
97005
|
parameters: {
|
|
95922
|
-
query?:
|
|
95923
|
-
forceUpdate?: boolean;
|
|
95924
|
-
};
|
|
97006
|
+
query?: never;
|
|
95925
97007
|
header?: never;
|
|
95926
97008
|
path?: never;
|
|
95927
97009
|
cookie?: never;
|
|
@@ -95937,24 +97019,6 @@ export interface operations {
|
|
|
95937
97019
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95938
97020
|
};
|
|
95939
97021
|
};
|
|
95940
|
-
/** @description Accepted */
|
|
95941
|
-
202: {
|
|
95942
|
-
headers: {
|
|
95943
|
-
[name: string]: unknown;
|
|
95944
|
-
};
|
|
95945
|
-
content: {
|
|
95946
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
95947
|
-
};
|
|
95948
|
-
};
|
|
95949
|
-
/** @description Bad Request */
|
|
95950
|
-
400: {
|
|
95951
|
-
headers: {
|
|
95952
|
-
[name: string]: unknown;
|
|
95953
|
-
};
|
|
95954
|
-
content: {
|
|
95955
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
95956
|
-
};
|
|
95957
|
-
};
|
|
95958
97022
|
/** @description Not Found */
|
|
95959
97023
|
404: {
|
|
95960
97024
|
headers: {
|
|
@@ -95975,7 +97039,7 @@ export interface operations {
|
|
|
95975
97039
|
};
|
|
95976
97040
|
};
|
|
95977
97041
|
};
|
|
95978
|
-
|
|
97042
|
+
integration_sync_views_sync_single_tag_endpoint: {
|
|
95979
97043
|
parameters: {
|
|
95980
97044
|
query?: never;
|
|
95981
97045
|
header?: never;
|
|
@@ -95995,15 +97059,6 @@ export interface operations {
|
|
|
95995
97059
|
"application/json": components["schemas"]["MessageResponse"];
|
|
95996
97060
|
};
|
|
95997
97061
|
};
|
|
95998
|
-
/** @description Accepted */
|
|
95999
|
-
202: {
|
|
96000
|
-
headers: {
|
|
96001
|
-
[name: string]: unknown;
|
|
96002
|
-
};
|
|
96003
|
-
content: {
|
|
96004
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
96005
|
-
};
|
|
96006
|
-
};
|
|
96007
97062
|
/** @description Bad Request */
|
|
96008
97063
|
400: {
|
|
96009
97064
|
headers: {
|
|
@@ -96033,13 +97088,11 @@ export interface operations {
|
|
|
96033
97088
|
};
|
|
96034
97089
|
};
|
|
96035
97090
|
};
|
|
96036
|
-
|
|
97091
|
+
integration_sync_views_sync_all_tags_endpoint: {
|
|
96037
97092
|
parameters: {
|
|
96038
97093
|
query?: never;
|
|
96039
97094
|
header?: never;
|
|
96040
|
-
path
|
|
96041
|
-
id: number;
|
|
96042
|
-
};
|
|
97095
|
+
path?: never;
|
|
96043
97096
|
cookie?: never;
|
|
96044
97097
|
};
|
|
96045
97098
|
requestBody?: never;
|
|
@@ -96053,15 +97106,6 @@ export interface operations {
|
|
|
96053
97106
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96054
97107
|
};
|
|
96055
97108
|
};
|
|
96056
|
-
/** @description Bad Request */
|
|
96057
|
-
400: {
|
|
96058
|
-
headers: {
|
|
96059
|
-
[name: string]: unknown;
|
|
96060
|
-
};
|
|
96061
|
-
content: {
|
|
96062
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
96063
|
-
};
|
|
96064
|
-
};
|
|
96065
97109
|
/** @description Not Found */
|
|
96066
97110
|
404: {
|
|
96067
97111
|
headers: {
|
|
@@ -96082,7 +97126,7 @@ export interface operations {
|
|
|
96082
97126
|
};
|
|
96083
97127
|
};
|
|
96084
97128
|
};
|
|
96085
|
-
|
|
97129
|
+
integration_sync_views_sync_orders_endpoint: {
|
|
96086
97130
|
parameters: {
|
|
96087
97131
|
query?: never;
|
|
96088
97132
|
header?: never;
|
|
@@ -96100,6 +97144,15 @@ export interface operations {
|
|
|
96100
97144
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96101
97145
|
};
|
|
96102
97146
|
};
|
|
97147
|
+
/** @description Bad Request */
|
|
97148
|
+
400: {
|
|
97149
|
+
headers: {
|
|
97150
|
+
[name: string]: unknown;
|
|
97151
|
+
};
|
|
97152
|
+
content: {
|
|
97153
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
97154
|
+
};
|
|
97155
|
+
};
|
|
96103
97156
|
/** @description Not Found */
|
|
96104
97157
|
404: {
|
|
96105
97158
|
headers: {
|
|
@@ -96118,15 +97171,22 @@ export interface operations {
|
|
|
96118
97171
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96119
97172
|
};
|
|
96120
97173
|
};
|
|
97174
|
+
/** @description Internal Server Error */
|
|
97175
|
+
500: {
|
|
97176
|
+
headers: {
|
|
97177
|
+
[name: string]: unknown;
|
|
97178
|
+
};
|
|
97179
|
+
content: {
|
|
97180
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
97181
|
+
};
|
|
97182
|
+
};
|
|
96121
97183
|
};
|
|
96122
97184
|
};
|
|
96123
|
-
|
|
97185
|
+
integration_sync_views_sync_customers_endpoint: {
|
|
96124
97186
|
parameters: {
|
|
96125
97187
|
query?: never;
|
|
96126
97188
|
header?: never;
|
|
96127
|
-
path
|
|
96128
|
-
id: number;
|
|
96129
|
-
};
|
|
97189
|
+
path?: never;
|
|
96130
97190
|
cookie?: never;
|
|
96131
97191
|
};
|
|
96132
97192
|
requestBody?: never;
|
|
@@ -96167,11 +97227,27 @@ export interface operations {
|
|
|
96167
97227
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96168
97228
|
};
|
|
96169
97229
|
};
|
|
97230
|
+
/** @description Internal Server Error */
|
|
97231
|
+
500: {
|
|
97232
|
+
headers: {
|
|
97233
|
+
[name: string]: unknown;
|
|
97234
|
+
};
|
|
97235
|
+
content: {
|
|
97236
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
97237
|
+
};
|
|
97238
|
+
};
|
|
96170
97239
|
};
|
|
96171
97240
|
};
|
|
96172
|
-
|
|
97241
|
+
integration_sync_views_list_orders: {
|
|
96173
97242
|
parameters: {
|
|
96174
|
-
query?:
|
|
97243
|
+
query?: {
|
|
97244
|
+
/** @description Page number */
|
|
97245
|
+
page?: number;
|
|
97246
|
+
/** @description Page size */
|
|
97247
|
+
pageSize?: number;
|
|
97248
|
+
/** @description Search by order number, customer name, customer email, item name, item sku code, financial status, fulfillment status */
|
|
97249
|
+
search?: string | null;
|
|
97250
|
+
};
|
|
96175
97251
|
header?: never;
|
|
96176
97252
|
path?: never;
|
|
96177
97253
|
cookie?: never;
|
|
@@ -96184,7 +97260,16 @@ export interface operations {
|
|
|
96184
97260
|
[name: string]: unknown;
|
|
96185
97261
|
};
|
|
96186
97262
|
content: {
|
|
96187
|
-
"application/json": components["schemas"]["
|
|
97263
|
+
"application/json": components["schemas"]["OnlineOrderListSchema"];
|
|
97264
|
+
};
|
|
97265
|
+
};
|
|
97266
|
+
/** @description Bad Request */
|
|
97267
|
+
400: {
|
|
97268
|
+
headers: {
|
|
97269
|
+
[name: string]: unknown;
|
|
97270
|
+
};
|
|
97271
|
+
content: {
|
|
97272
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
96188
97273
|
};
|
|
96189
97274
|
};
|
|
96190
97275
|
/** @description Not Found */
|
|
@@ -96196,8 +97281,8 @@ export interface operations {
|
|
|
96196
97281
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96197
97282
|
};
|
|
96198
97283
|
};
|
|
96199
|
-
/** @description
|
|
96200
|
-
|
|
97284
|
+
/** @description Internal Server Error */
|
|
97285
|
+
500: {
|
|
96201
97286
|
headers: {
|
|
96202
97287
|
[name: string]: unknown;
|
|
96203
97288
|
};
|
|
@@ -96207,12 +97292,12 @@ export interface operations {
|
|
|
96207
97292
|
};
|
|
96208
97293
|
};
|
|
96209
97294
|
};
|
|
96210
|
-
|
|
97295
|
+
integration_sync_views_get_order: {
|
|
96211
97296
|
parameters: {
|
|
96212
97297
|
query?: never;
|
|
96213
97298
|
header?: never;
|
|
96214
97299
|
path: {
|
|
96215
|
-
|
|
97300
|
+
order_id: string;
|
|
96216
97301
|
};
|
|
96217
97302
|
cookie?: never;
|
|
96218
97303
|
};
|
|
@@ -96224,7 +97309,7 @@ export interface operations {
|
|
|
96224
97309
|
[name: string]: unknown;
|
|
96225
97310
|
};
|
|
96226
97311
|
content: {
|
|
96227
|
-
"application/json": components["schemas"]["
|
|
97312
|
+
"application/json": components["schemas"]["OnlineOrderSchema"];
|
|
96228
97313
|
};
|
|
96229
97314
|
};
|
|
96230
97315
|
/** @description Bad Request */
|
|
@@ -96245,8 +97330,8 @@ export interface operations {
|
|
|
96245
97330
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96246
97331
|
};
|
|
96247
97332
|
};
|
|
96248
|
-
/** @description
|
|
96249
|
-
|
|
97333
|
+
/** @description Internal Server Error */
|
|
97334
|
+
500: {
|
|
96250
97335
|
headers: {
|
|
96251
97336
|
[name: string]: unknown;
|
|
96252
97337
|
};
|
|
@@ -96256,11 +97341,13 @@ export interface operations {
|
|
|
96256
97341
|
};
|
|
96257
97342
|
};
|
|
96258
97343
|
};
|
|
96259
|
-
|
|
97344
|
+
integration_sync_views_sync_single_customer_endpoint: {
|
|
96260
97345
|
parameters: {
|
|
96261
97346
|
query?: never;
|
|
96262
97347
|
header?: never;
|
|
96263
|
-
path
|
|
97348
|
+
path: {
|
|
97349
|
+
customer_id: number;
|
|
97350
|
+
};
|
|
96264
97351
|
cookie?: never;
|
|
96265
97352
|
};
|
|
96266
97353
|
requestBody?: never;
|
|
@@ -96274,6 +97361,24 @@ export interface operations {
|
|
|
96274
97361
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96275
97362
|
};
|
|
96276
97363
|
};
|
|
97364
|
+
/** @description Accepted */
|
|
97365
|
+
202: {
|
|
97366
|
+
headers: {
|
|
97367
|
+
[name: string]: unknown;
|
|
97368
|
+
};
|
|
97369
|
+
content: {
|
|
97370
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
97371
|
+
};
|
|
97372
|
+
};
|
|
97373
|
+
/** @description Bad Request */
|
|
97374
|
+
400: {
|
|
97375
|
+
headers: {
|
|
97376
|
+
[name: string]: unknown;
|
|
97377
|
+
};
|
|
97378
|
+
content: {
|
|
97379
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
97380
|
+
};
|
|
97381
|
+
};
|
|
96277
97382
|
/** @description Not Found */
|
|
96278
97383
|
404: {
|
|
96279
97384
|
headers: {
|
|
@@ -96294,22 +97399,26 @@ export interface operations {
|
|
|
96294
97399
|
};
|
|
96295
97400
|
};
|
|
96296
97401
|
};
|
|
96297
|
-
|
|
97402
|
+
integration_whatsapp_views_setup_whatsapp: {
|
|
96298
97403
|
parameters: {
|
|
96299
97404
|
query?: never;
|
|
96300
97405
|
header?: never;
|
|
96301
97406
|
path?: never;
|
|
96302
97407
|
cookie?: never;
|
|
96303
97408
|
};
|
|
96304
|
-
requestBody
|
|
97409
|
+
requestBody: {
|
|
97410
|
+
content: {
|
|
97411
|
+
"application/json": components["schemas"]["CreateWhatsAppIntegrationSchema"];
|
|
97412
|
+
};
|
|
97413
|
+
};
|
|
96305
97414
|
responses: {
|
|
96306
|
-
/** @description
|
|
96307
|
-
|
|
97415
|
+
/** @description Created */
|
|
97416
|
+
201: {
|
|
96308
97417
|
headers: {
|
|
96309
97418
|
[name: string]: unknown;
|
|
96310
97419
|
};
|
|
96311
97420
|
content: {
|
|
96312
|
-
"application/json": components["schemas"]["
|
|
97421
|
+
"application/json": components["schemas"]["WhatsAppIntegrationResponseSchema"];
|
|
96313
97422
|
};
|
|
96314
97423
|
};
|
|
96315
97424
|
/** @description Bad Request */
|
|
@@ -96321,13 +97430,13 @@ export interface operations {
|
|
|
96321
97430
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
96322
97431
|
};
|
|
96323
97432
|
};
|
|
96324
|
-
/** @description
|
|
96325
|
-
|
|
97433
|
+
/** @description Forbidden */
|
|
97434
|
+
403: {
|
|
96326
97435
|
headers: {
|
|
96327
97436
|
[name: string]: unknown;
|
|
96328
97437
|
};
|
|
96329
97438
|
content: {
|
|
96330
|
-
"application/json": components["schemas"]["
|
|
97439
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96331
97440
|
};
|
|
96332
97441
|
};
|
|
96333
97442
|
/** @description Conflict */
|
|
@@ -96336,7 +97445,7 @@ export interface operations {
|
|
|
96336
97445
|
[name: string]: unknown;
|
|
96337
97446
|
};
|
|
96338
97447
|
content: {
|
|
96339
|
-
"application/json": components["schemas"]["
|
|
97448
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96340
97449
|
};
|
|
96341
97450
|
};
|
|
96342
97451
|
/** @description Internal Server Error */
|
|
@@ -96345,12 +97454,12 @@ export interface operations {
|
|
|
96345
97454
|
[name: string]: unknown;
|
|
96346
97455
|
};
|
|
96347
97456
|
content: {
|
|
96348
|
-
"application/json": components["schemas"]["
|
|
97457
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96349
97458
|
};
|
|
96350
97459
|
};
|
|
96351
97460
|
};
|
|
96352
97461
|
};
|
|
96353
|
-
|
|
97462
|
+
integration_whatsapp_views_sync_approval_statuses: {
|
|
96354
97463
|
parameters: {
|
|
96355
97464
|
query?: never;
|
|
96356
97465
|
header?: never;
|
|
@@ -96365,16 +97474,16 @@ export interface operations {
|
|
|
96365
97474
|
[name: string]: unknown;
|
|
96366
97475
|
};
|
|
96367
97476
|
content: {
|
|
96368
|
-
"application/json": components["schemas"]["
|
|
97477
|
+
"application/json": components["schemas"]["SyncApprovalStatusesResponseSchema"];
|
|
96369
97478
|
};
|
|
96370
97479
|
};
|
|
96371
|
-
/** @description
|
|
96372
|
-
|
|
97480
|
+
/** @description Forbidden */
|
|
97481
|
+
403: {
|
|
96373
97482
|
headers: {
|
|
96374
97483
|
[name: string]: unknown;
|
|
96375
97484
|
};
|
|
96376
97485
|
content: {
|
|
96377
|
-
"application/json": components["schemas"]["
|
|
97486
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96378
97487
|
};
|
|
96379
97488
|
};
|
|
96380
97489
|
/** @description Not Found */
|
|
@@ -96383,16 +97492,7 @@ export interface operations {
|
|
|
96383
97492
|
[name: string]: unknown;
|
|
96384
97493
|
};
|
|
96385
97494
|
content: {
|
|
96386
|
-
"application/json": components["schemas"]["
|
|
96387
|
-
};
|
|
96388
|
-
};
|
|
96389
|
-
/** @description Conflict */
|
|
96390
|
-
409: {
|
|
96391
|
-
headers: {
|
|
96392
|
-
[name: string]: unknown;
|
|
96393
|
-
};
|
|
96394
|
-
content: {
|
|
96395
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
97495
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96396
97496
|
};
|
|
96397
97497
|
};
|
|
96398
97498
|
/** @description Internal Server Error */
|
|
@@ -96401,20 +97501,22 @@ export interface operations {
|
|
|
96401
97501
|
[name: string]: unknown;
|
|
96402
97502
|
};
|
|
96403
97503
|
content: {
|
|
96404
|
-
"application/json": components["schemas"]["
|
|
97504
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96405
97505
|
};
|
|
96406
97506
|
};
|
|
96407
97507
|
};
|
|
96408
97508
|
};
|
|
96409
|
-
|
|
97509
|
+
integration_whatsapp_views_get_templates: {
|
|
96410
97510
|
parameters: {
|
|
96411
97511
|
query?: {
|
|
96412
97512
|
/** @description Page number */
|
|
96413
97513
|
page?: number;
|
|
96414
97514
|
/** @description Page size */
|
|
96415
97515
|
pageSize?: number;
|
|
96416
|
-
/** @description Search by
|
|
97516
|
+
/** @description Search by template name or language */
|
|
96417
97517
|
search?: string | null;
|
|
97518
|
+
/** @description Filter by entity type */
|
|
97519
|
+
entityType?: components["schemas"]["EntityType"] | null;
|
|
96418
97520
|
};
|
|
96419
97521
|
header?: never;
|
|
96420
97522
|
path?: never;
|
|
@@ -96428,16 +97530,16 @@ export interface operations {
|
|
|
96428
97530
|
[name: string]: unknown;
|
|
96429
97531
|
};
|
|
96430
97532
|
content: {
|
|
96431
|
-
"application/json": components["schemas"]["
|
|
97533
|
+
"application/json": components["schemas"]["GetTemplatesResponseSchema"];
|
|
96432
97534
|
};
|
|
96433
97535
|
};
|
|
96434
|
-
/** @description
|
|
96435
|
-
|
|
97536
|
+
/** @description Forbidden */
|
|
97537
|
+
403: {
|
|
96436
97538
|
headers: {
|
|
96437
97539
|
[name: string]: unknown;
|
|
96438
97540
|
};
|
|
96439
97541
|
content: {
|
|
96440
|
-
"application/json": components["schemas"]["
|
|
97542
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96441
97543
|
};
|
|
96442
97544
|
};
|
|
96443
97545
|
/** @description Not Found */
|
|
@@ -96446,7 +97548,7 @@ export interface operations {
|
|
|
96446
97548
|
[name: string]: unknown;
|
|
96447
97549
|
};
|
|
96448
97550
|
content: {
|
|
96449
|
-
"application/json": components["schemas"]["
|
|
97551
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96450
97552
|
};
|
|
96451
97553
|
};
|
|
96452
97554
|
/** @description Internal Server Error */
|
|
@@ -96455,29 +97557,31 @@ export interface operations {
|
|
|
96455
97557
|
[name: string]: unknown;
|
|
96456
97558
|
};
|
|
96457
97559
|
content: {
|
|
96458
|
-
"application/json": components["schemas"]["
|
|
97560
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96459
97561
|
};
|
|
96460
97562
|
};
|
|
96461
97563
|
};
|
|
96462
97564
|
};
|
|
96463
|
-
|
|
97565
|
+
integration_whatsapp_views_register_template: {
|
|
96464
97566
|
parameters: {
|
|
96465
97567
|
query?: never;
|
|
96466
97568
|
header?: never;
|
|
96467
|
-
path
|
|
96468
|
-
order_id: string;
|
|
96469
|
-
};
|
|
97569
|
+
path?: never;
|
|
96470
97570
|
cookie?: never;
|
|
96471
97571
|
};
|
|
96472
|
-
requestBody
|
|
97572
|
+
requestBody: {
|
|
97573
|
+
content: {
|
|
97574
|
+
"application/json": components["schemas"]["RegisterTemplateSchema"];
|
|
97575
|
+
};
|
|
97576
|
+
};
|
|
96473
97577
|
responses: {
|
|
96474
|
-
/** @description
|
|
96475
|
-
|
|
97578
|
+
/** @description Created */
|
|
97579
|
+
201: {
|
|
96476
97580
|
headers: {
|
|
96477
97581
|
[name: string]: unknown;
|
|
96478
97582
|
};
|
|
96479
97583
|
content: {
|
|
96480
|
-
"application/json": components["schemas"]["
|
|
97584
|
+
"application/json": components["schemas"]["TemplateSchema"];
|
|
96481
97585
|
};
|
|
96482
97586
|
};
|
|
96483
97587
|
/** @description Bad Request */
|
|
@@ -96489,13 +97593,22 @@ export interface operations {
|
|
|
96489
97593
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
96490
97594
|
};
|
|
96491
97595
|
};
|
|
97596
|
+
/** @description Forbidden */
|
|
97597
|
+
403: {
|
|
97598
|
+
headers: {
|
|
97599
|
+
[name: string]: unknown;
|
|
97600
|
+
};
|
|
97601
|
+
content: {
|
|
97602
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
97603
|
+
};
|
|
97604
|
+
};
|
|
96492
97605
|
/** @description Not Found */
|
|
96493
97606
|
404: {
|
|
96494
97607
|
headers: {
|
|
96495
97608
|
[name: string]: unknown;
|
|
96496
97609
|
};
|
|
96497
97610
|
content: {
|
|
96498
|
-
"application/json": components["schemas"]["
|
|
97611
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96499
97612
|
};
|
|
96500
97613
|
};
|
|
96501
97614
|
/** @description Internal Server Error */
|
|
@@ -96504,17 +97617,17 @@ export interface operations {
|
|
|
96504
97617
|
[name: string]: unknown;
|
|
96505
97618
|
};
|
|
96506
97619
|
content: {
|
|
96507
|
-
"application/json": components["schemas"]["
|
|
97620
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96508
97621
|
};
|
|
96509
97622
|
};
|
|
96510
97623
|
};
|
|
96511
97624
|
};
|
|
96512
|
-
|
|
97625
|
+
integration_whatsapp_views_get_template: {
|
|
96513
97626
|
parameters: {
|
|
96514
97627
|
query?: never;
|
|
96515
97628
|
header?: never;
|
|
96516
97629
|
path: {
|
|
96517
|
-
|
|
97630
|
+
id: string;
|
|
96518
97631
|
};
|
|
96519
97632
|
cookie?: never;
|
|
96520
97633
|
};
|
|
@@ -96526,25 +97639,16 @@ export interface operations {
|
|
|
96526
97639
|
[name: string]: unknown;
|
|
96527
97640
|
};
|
|
96528
97641
|
content: {
|
|
96529
|
-
"application/json": components["schemas"]["
|
|
96530
|
-
};
|
|
96531
|
-
};
|
|
96532
|
-
/** @description Accepted */
|
|
96533
|
-
202: {
|
|
96534
|
-
headers: {
|
|
96535
|
-
[name: string]: unknown;
|
|
96536
|
-
};
|
|
96537
|
-
content: {
|
|
96538
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
97642
|
+
"application/json": components["schemas"]["TemplateSchema"];
|
|
96539
97643
|
};
|
|
96540
97644
|
};
|
|
96541
|
-
/** @description
|
|
96542
|
-
|
|
97645
|
+
/** @description Forbidden */
|
|
97646
|
+
403: {
|
|
96543
97647
|
headers: {
|
|
96544
97648
|
[name: string]: unknown;
|
|
96545
97649
|
};
|
|
96546
97650
|
content: {
|
|
96547
|
-
"application/json": components["schemas"]["
|
|
97651
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96548
97652
|
};
|
|
96549
97653
|
};
|
|
96550
97654
|
/** @description Not Found */
|
|
@@ -96553,21 +97657,21 @@ export interface operations {
|
|
|
96553
97657
|
[name: string]: unknown;
|
|
96554
97658
|
};
|
|
96555
97659
|
content: {
|
|
96556
|
-
"application/json": components["schemas"]["
|
|
97660
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96557
97661
|
};
|
|
96558
97662
|
};
|
|
96559
|
-
/** @description
|
|
96560
|
-
|
|
97663
|
+
/** @description Internal Server Error */
|
|
97664
|
+
500: {
|
|
96561
97665
|
headers: {
|
|
96562
97666
|
[name: string]: unknown;
|
|
96563
97667
|
};
|
|
96564
97668
|
content: {
|
|
96565
|
-
"application/json": components["schemas"]["
|
|
97669
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96566
97670
|
};
|
|
96567
97671
|
};
|
|
96568
97672
|
};
|
|
96569
97673
|
};
|
|
96570
|
-
|
|
97674
|
+
integration_whatsapp_views_delete_template: {
|
|
96571
97675
|
parameters: {
|
|
96572
97676
|
query?: never;
|
|
96573
97677
|
header?: never;
|
|
@@ -96578,14 +97682,12 @@ export interface operations {
|
|
|
96578
97682
|
};
|
|
96579
97683
|
requestBody?: never;
|
|
96580
97684
|
responses: {
|
|
96581
|
-
/** @description
|
|
96582
|
-
|
|
97685
|
+
/** @description No Content */
|
|
97686
|
+
204: {
|
|
96583
97687
|
headers: {
|
|
96584
97688
|
[name: string]: unknown;
|
|
96585
97689
|
};
|
|
96586
|
-
content
|
|
96587
|
-
"application/json": components["schemas"]["RetrieveNotificationSetting"];
|
|
96588
|
-
};
|
|
97690
|
+
content?: never;
|
|
96589
97691
|
};
|
|
96590
97692
|
/** @description Bad Request */
|
|
96591
97693
|
400: {
|
|
@@ -96602,7 +97704,7 @@ export interface operations {
|
|
|
96602
97704
|
[name: string]: unknown;
|
|
96603
97705
|
};
|
|
96604
97706
|
content: {
|
|
96605
|
-
"application/json": components["schemas"]["
|
|
97707
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96606
97708
|
};
|
|
96607
97709
|
};
|
|
96608
97710
|
/** @description Not Found */
|
|
@@ -96611,7 +97713,7 @@ export interface operations {
|
|
|
96611
97713
|
[name: string]: unknown;
|
|
96612
97714
|
};
|
|
96613
97715
|
content: {
|
|
96614
|
-
"application/json": components["schemas"]["
|
|
97716
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96615
97717
|
};
|
|
96616
97718
|
};
|
|
96617
97719
|
/** @description Internal Server Error */
|
|
@@ -96620,12 +97722,12 @@ export interface operations {
|
|
|
96620
97722
|
[name: string]: unknown;
|
|
96621
97723
|
};
|
|
96622
97724
|
content: {
|
|
96623
|
-
"application/json": components["schemas"]["
|
|
97725
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
96624
97726
|
};
|
|
96625
97727
|
};
|
|
96626
97728
|
};
|
|
96627
97729
|
};
|
|
96628
|
-
|
|
97730
|
+
erp_settings_notificationsettings_views_get_notification_setting: {
|
|
96629
97731
|
parameters: {
|
|
96630
97732
|
query?: never;
|
|
96631
97733
|
header?: never;
|
|
@@ -96634,11 +97736,7 @@ export interface operations {
|
|
|
96634
97736
|
};
|
|
96635
97737
|
cookie?: never;
|
|
96636
97738
|
};
|
|
96637
|
-
requestBody
|
|
96638
|
-
content: {
|
|
96639
|
-
"application/json": components["schemas"]["UpdateNotificationSetting"];
|
|
96640
|
-
};
|
|
96641
|
-
};
|
|
97739
|
+
requestBody?: never;
|
|
96642
97740
|
responses: {
|
|
96643
97741
|
/** @description OK */
|
|
96644
97742
|
200: {
|
|
@@ -96676,15 +97774,6 @@ export interface operations {
|
|
|
96676
97774
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96677
97775
|
};
|
|
96678
97776
|
};
|
|
96679
|
-
/** @description Conflict */
|
|
96680
|
-
409: {
|
|
96681
|
-
headers: {
|
|
96682
|
-
[name: string]: unknown;
|
|
96683
|
-
};
|
|
96684
|
-
content: {
|
|
96685
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
96686
|
-
};
|
|
96687
|
-
};
|
|
96688
97777
|
/** @description Internal Server Error */
|
|
96689
97778
|
500: {
|
|
96690
97779
|
headers: {
|
|
@@ -96696,17 +97785,20 @@ export interface operations {
|
|
|
96696
97785
|
};
|
|
96697
97786
|
};
|
|
96698
97787
|
};
|
|
96699
|
-
|
|
97788
|
+
erp_settings_notificationsettings_views_edit_notification_setting: {
|
|
96700
97789
|
parameters: {
|
|
96701
|
-
query?:
|
|
96702
|
-
/** @description Search notification setting by notification type */
|
|
96703
|
-
search?: string | null;
|
|
96704
|
-
};
|
|
97790
|
+
query?: never;
|
|
96705
97791
|
header?: never;
|
|
96706
|
-
path
|
|
97792
|
+
path: {
|
|
97793
|
+
id: string;
|
|
97794
|
+
};
|
|
96707
97795
|
cookie?: never;
|
|
96708
97796
|
};
|
|
96709
|
-
requestBody
|
|
97797
|
+
requestBody: {
|
|
97798
|
+
content: {
|
|
97799
|
+
"application/json": components["schemas"]["UpdateNotificationSetting"];
|
|
97800
|
+
};
|
|
97801
|
+
};
|
|
96710
97802
|
responses: {
|
|
96711
97803
|
/** @description OK */
|
|
96712
97804
|
200: {
|
|
@@ -96714,7 +97806,7 @@ export interface operations {
|
|
|
96714
97806
|
[name: string]: unknown;
|
|
96715
97807
|
};
|
|
96716
97808
|
content: {
|
|
96717
|
-
"application/json": components["schemas"]["
|
|
97809
|
+
"application/json": components["schemas"]["RetrieveNotificationSetting"];
|
|
96718
97810
|
};
|
|
96719
97811
|
};
|
|
96720
97812
|
/** @description Bad Request */
|
|
@@ -96744,6 +97836,15 @@ export interface operations {
|
|
|
96744
97836
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96745
97837
|
};
|
|
96746
97838
|
};
|
|
97839
|
+
/** @description Conflict */
|
|
97840
|
+
409: {
|
|
97841
|
+
headers: {
|
|
97842
|
+
[name: string]: unknown;
|
|
97843
|
+
};
|
|
97844
|
+
content: {
|
|
97845
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
97846
|
+
};
|
|
97847
|
+
};
|
|
96747
97848
|
/** @description Internal Server Error */
|
|
96748
97849
|
500: {
|
|
96749
97850
|
headers: {
|
|
@@ -96755,26 +97856,25 @@ export interface operations {
|
|
|
96755
97856
|
};
|
|
96756
97857
|
};
|
|
96757
97858
|
};
|
|
96758
|
-
|
|
97859
|
+
erp_settings_notificationsettings_views_list_notification_settings: {
|
|
96759
97860
|
parameters: {
|
|
96760
|
-
query?:
|
|
97861
|
+
query?: {
|
|
97862
|
+
/** @description Search notification setting by notification type */
|
|
97863
|
+
search?: string | null;
|
|
97864
|
+
};
|
|
96761
97865
|
header?: never;
|
|
96762
97866
|
path?: never;
|
|
96763
97867
|
cookie?: never;
|
|
96764
97868
|
};
|
|
96765
|
-
requestBody
|
|
96766
|
-
content: {
|
|
96767
|
-
"application/json": components["schemas"]["CreateNotificationSetting"];
|
|
96768
|
-
};
|
|
96769
|
-
};
|
|
97869
|
+
requestBody?: never;
|
|
96770
97870
|
responses: {
|
|
96771
|
-
/** @description
|
|
96772
|
-
|
|
97871
|
+
/** @description OK */
|
|
97872
|
+
200: {
|
|
96773
97873
|
headers: {
|
|
96774
97874
|
[name: string]: unknown;
|
|
96775
97875
|
};
|
|
96776
97876
|
content: {
|
|
96777
|
-
"application/json": components["schemas"]["
|
|
97877
|
+
"application/json": components["schemas"]["NotificationSettingList"];
|
|
96778
97878
|
};
|
|
96779
97879
|
};
|
|
96780
97880
|
/** @description Bad Request */
|
|
@@ -96804,15 +97904,6 @@ export interface operations {
|
|
|
96804
97904
|
"application/json": components["schemas"]["MessageResponse"];
|
|
96805
97905
|
};
|
|
96806
97906
|
};
|
|
96807
|
-
/** @description Conflict */
|
|
96808
|
-
409: {
|
|
96809
|
-
headers: {
|
|
96810
|
-
[name: string]: unknown;
|
|
96811
|
-
};
|
|
96812
|
-
content: {
|
|
96813
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
96814
|
-
};
|
|
96815
|
-
};
|
|
96816
97907
|
/** @description Internal Server Error */
|
|
96817
97908
|
500: {
|
|
96818
97909
|
headers: {
|