@erp-galoper/types 1.0.1118 → 1.0.1120
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 +1025 -264
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -19227,6 +19227,159 @@ export interface paths {
|
|
|
19227
19227
|
patch?: never;
|
|
19228
19228
|
trace?: never;
|
|
19229
19229
|
};
|
|
19230
|
+
"/api/v1/integrations/shopify/": {
|
|
19231
|
+
parameters: {
|
|
19232
|
+
query?: never;
|
|
19233
|
+
header?: never;
|
|
19234
|
+
path?: never;
|
|
19235
|
+
cookie?: never;
|
|
19236
|
+
};
|
|
19237
|
+
/**
|
|
19238
|
+
* Get Shopify Configuration
|
|
19239
|
+
* @description Endpoint for retrieving Shopify configuration
|
|
19240
|
+
* Possible Responses:
|
|
19241
|
+
* - 200:
|
|
19242
|
+
* - success
|
|
19243
|
+
* - 404:
|
|
19244
|
+
* - configurationDoesNotExist
|
|
19245
|
+
* - 403:
|
|
19246
|
+
* - permissionDenied
|
|
19247
|
+
*
|
|
19248
|
+
*
|
|
19249
|
+
* permission key: shopify: ["view"]
|
|
19250
|
+
*/
|
|
19251
|
+
get: operations["integration_shopify_views_get_shopify_configuration"];
|
|
19252
|
+
put?: never;
|
|
19253
|
+
/**
|
|
19254
|
+
* Create Shopify Configuration
|
|
19255
|
+
* @description Endpoint for creating Shopify configuration
|
|
19256
|
+
* Possible Responses:
|
|
19257
|
+
* - 201:
|
|
19258
|
+
* - shopifyConfigurationCreated
|
|
19259
|
+
* - 400:
|
|
19260
|
+
* - configurationAlreadyExists
|
|
19261
|
+
* - validationFailed
|
|
19262
|
+
* - onlineStoreSettingNotConfigured
|
|
19263
|
+
* - 403:
|
|
19264
|
+
* - permissionDenied
|
|
19265
|
+
* - 404:
|
|
19266
|
+
* - configurationDoesNotExist
|
|
19267
|
+
*
|
|
19268
|
+
* permission key: shopify: ["add"]
|
|
19269
|
+
*/
|
|
19270
|
+
post: operations["integration_shopify_views_create_shopify_configuration"];
|
|
19271
|
+
/**
|
|
19272
|
+
* Delete Shopify Configuration
|
|
19273
|
+
* @description Endpoint for deleting Shopify configuration
|
|
19274
|
+
* Possible Responses:
|
|
19275
|
+
* - 204:
|
|
19276
|
+
* - success (no content)
|
|
19277
|
+
* - 404:
|
|
19278
|
+
* - configurationDoesNotExist
|
|
19279
|
+
* - 403:
|
|
19280
|
+
* - permissionDenied
|
|
19281
|
+
*
|
|
19282
|
+
* permission key: shopify: ["delete"]
|
|
19283
|
+
*/
|
|
19284
|
+
delete: operations["integration_shopify_views_delete_shopify_configuration"];
|
|
19285
|
+
options?: never;
|
|
19286
|
+
head?: never;
|
|
19287
|
+
/**
|
|
19288
|
+
* Update Shopify Configuration
|
|
19289
|
+
* @description Endpoint for updating Shopify configuration
|
|
19290
|
+
* Possible Responses:
|
|
19291
|
+
* - 200:
|
|
19292
|
+
* - shopifyConfigurationUpdated
|
|
19293
|
+
* - 400:
|
|
19294
|
+
* - validationFailed
|
|
19295
|
+
* - onlineStoreSettingNotConfigured
|
|
19296
|
+
* - 404:
|
|
19297
|
+
* - configurationDoesNotExist
|
|
19298
|
+
* - 403:
|
|
19299
|
+
* - permissionDenied
|
|
19300
|
+
*
|
|
19301
|
+
* permission key: shopify: ["change"]
|
|
19302
|
+
*
|
|
19303
|
+
* # this endpoint will be patch exceptionally so user does not need to send all fields
|
|
19304
|
+
*/
|
|
19305
|
+
patch: operations["integration_shopify_views_update_shopify_configuration"];
|
|
19306
|
+
trace?: never;
|
|
19307
|
+
};
|
|
19308
|
+
"/api/v1/integrations/shopify/test-connection/": {
|
|
19309
|
+
parameters: {
|
|
19310
|
+
query?: never;
|
|
19311
|
+
header?: never;
|
|
19312
|
+
path?: never;
|
|
19313
|
+
cookie?: never;
|
|
19314
|
+
};
|
|
19315
|
+
get?: never;
|
|
19316
|
+
put?: never;
|
|
19317
|
+
/**
|
|
19318
|
+
* Test Shopify Connection
|
|
19319
|
+
* @description Endpoint for testing Shopify connection
|
|
19320
|
+
* Possible Responses:
|
|
19321
|
+
* - 200:
|
|
19322
|
+
* - success: true/false
|
|
19323
|
+
* - 404:
|
|
19324
|
+
* - configurationDoesNotExist
|
|
19325
|
+
* - 403:
|
|
19326
|
+
* - permissionDenied
|
|
19327
|
+
*
|
|
19328
|
+
* permission key: shopify: ["view"]
|
|
19329
|
+
*/
|
|
19330
|
+
post: operations["integration_shopify_views_test_shopify_connection"];
|
|
19331
|
+
delete?: never;
|
|
19332
|
+
options?: never;
|
|
19333
|
+
head?: never;
|
|
19334
|
+
patch?: never;
|
|
19335
|
+
trace?: never;
|
|
19336
|
+
};
|
|
19337
|
+
"/api/v1/integrations/settings/": {
|
|
19338
|
+
parameters: {
|
|
19339
|
+
query?: never;
|
|
19340
|
+
header?: never;
|
|
19341
|
+
path?: never;
|
|
19342
|
+
cookie?: never;
|
|
19343
|
+
};
|
|
19344
|
+
/**
|
|
19345
|
+
* Get Online Store Setting
|
|
19346
|
+
* @description Endpoint for retrieving online store settings
|
|
19347
|
+
* Possible Responses:
|
|
19348
|
+
* - 200: success
|
|
19349
|
+
* - 403: permissionDenied
|
|
19350
|
+
* - 404: settingDoesNotExist
|
|
19351
|
+
*
|
|
19352
|
+
* permission key: settings: ["view"]
|
|
19353
|
+
*/
|
|
19354
|
+
get: operations["integration_settings_views_get_online_store_setting"];
|
|
19355
|
+
/**
|
|
19356
|
+
* Update Online Store Setting
|
|
19357
|
+
* @description Endpoint for updating online store settings
|
|
19358
|
+
* Possible Responses:
|
|
19359
|
+
* - 200: onlineStoreSettingUpdated
|
|
19360
|
+
* - 400: validationFailed
|
|
19361
|
+
* - 403: permissionDenied
|
|
19362
|
+
* - 404: settingDoesNotExist
|
|
19363
|
+
*
|
|
19364
|
+
* permission key: settings: ["change"]
|
|
19365
|
+
*/
|
|
19366
|
+
put: operations["integration_settings_views_update_online_store_setting"];
|
|
19367
|
+
/**
|
|
19368
|
+
* Create Online Store Setting
|
|
19369
|
+
* @description Endpoint for creating online store settings
|
|
19370
|
+
* Possible Responses:
|
|
19371
|
+
* - 201: onlineStoreSettingCreated
|
|
19372
|
+
* - 400: settingAlreadyExists, validationFailed
|
|
19373
|
+
*
|
|
19374
|
+
* permission key: settings: ["add"]
|
|
19375
|
+
*/
|
|
19376
|
+
post: operations["integration_settings_views_create_online_store_setting"];
|
|
19377
|
+
delete?: never;
|
|
19378
|
+
options?: never;
|
|
19379
|
+
head?: never;
|
|
19380
|
+
patch?: never;
|
|
19381
|
+
trace?: never;
|
|
19382
|
+
};
|
|
19230
19383
|
}
|
|
19231
19384
|
export type webhooks = Record<string, never>;
|
|
19232
19385
|
export interface components {
|
|
@@ -20746,12 +20899,34 @@ export interface components {
|
|
|
20746
20899
|
* @default []
|
|
20747
20900
|
*/
|
|
20748
20901
|
emailsetting: components["schemas"]["BasePermissionsSchema_Settings_Integrations_EmailsettingEnum"][];
|
|
20902
|
+
/**
|
|
20903
|
+
* Onlinestoresetting
|
|
20904
|
+
* @description onlinestoresetting actions
|
|
20905
|
+
* @default []
|
|
20906
|
+
*/
|
|
20907
|
+
onlinestoresetting: components["schemas"]["BasePermissionsSchema_Settings_Integrations_OnlinestoresettingEnum"][];
|
|
20908
|
+
/**
|
|
20909
|
+
* Shopifyintegration
|
|
20910
|
+
* @description shopifyintegration actions
|
|
20911
|
+
* @default []
|
|
20912
|
+
*/
|
|
20913
|
+
shopifyintegration: components["schemas"]["BasePermissionsSchema_Settings_Integrations_ShopifyintegrationEnum"][];
|
|
20749
20914
|
};
|
|
20750
20915
|
/**
|
|
20751
20916
|
* BasePermissionsSchema_Settings_Integrations_EmailsettingEnum
|
|
20752
20917
|
* @enum {string}
|
|
20753
20918
|
*/
|
|
20754
20919
|
BasePermissionsSchema_Settings_Integrations_EmailsettingEnum: "add" | "change" | "view";
|
|
20920
|
+
/**
|
|
20921
|
+
* BasePermissionsSchema_Settings_Integrations_OnlinestoresettingEnum
|
|
20922
|
+
* @enum {string}
|
|
20923
|
+
*/
|
|
20924
|
+
BasePermissionsSchema_Settings_Integrations_OnlinestoresettingEnum: "add" | "change" | "view";
|
|
20925
|
+
/**
|
|
20926
|
+
* BasePermissionsSchema_Settings_Integrations_ShopifyintegrationEnum
|
|
20927
|
+
* @enum {string}
|
|
20928
|
+
*/
|
|
20929
|
+
BasePermissionsSchema_Settings_Integrations_ShopifyintegrationEnum: "add" | "change" | "delete" | "view";
|
|
20755
20930
|
/** BasePermissionsSchema_Settings_Inventory */
|
|
20756
20931
|
BasePermissionsSchema_Settings_Inventory: {
|
|
20757
20932
|
/**
|
|
@@ -49258,6 +49433,193 @@ export interface components {
|
|
|
49258
49433
|
/** Documentid */
|
|
49259
49434
|
documentId: string | null;
|
|
49260
49435
|
};
|
|
49436
|
+
/** ShopInfoSchema */
|
|
49437
|
+
ShopInfoSchema: {
|
|
49438
|
+
/** Success */
|
|
49439
|
+
success: boolean;
|
|
49440
|
+
/** Connectedat */
|
|
49441
|
+
connectedAt?: string | null;
|
|
49442
|
+
/** Shopid */
|
|
49443
|
+
shopId?: number | null;
|
|
49444
|
+
/** Shopname */
|
|
49445
|
+
shopName?: string | null;
|
|
49446
|
+
/** Shopdomain */
|
|
49447
|
+
shopDomain?: string | null;
|
|
49448
|
+
/** Shopemail */
|
|
49449
|
+
shopEmail?: string | null;
|
|
49450
|
+
/** Shopcurrency */
|
|
49451
|
+
shopCurrency?: string | null;
|
|
49452
|
+
/** Shoptimezone */
|
|
49453
|
+
shopTimezone?: string | null;
|
|
49454
|
+
/** Shopcountry */
|
|
49455
|
+
shopCountry?: string | null;
|
|
49456
|
+
/** Shopphone */
|
|
49457
|
+
shopPhone?: string | null;
|
|
49458
|
+
/** Shopaddress */
|
|
49459
|
+
shopAddress?: string | null;
|
|
49460
|
+
/** Shopcity */
|
|
49461
|
+
shopCity?: string | null;
|
|
49462
|
+
/** Shopprovince */
|
|
49463
|
+
shopProvince?: string | null;
|
|
49464
|
+
/** Shopzip */
|
|
49465
|
+
shopZip?: string | null;
|
|
49466
|
+
};
|
|
49467
|
+
/** ShopifyConfigurationSchema */
|
|
49468
|
+
ShopifyConfigurationSchema: {
|
|
49469
|
+
/**
|
|
49470
|
+
* Datecreated
|
|
49471
|
+
* Format: date-time
|
|
49472
|
+
*/
|
|
49473
|
+
dateCreated: string;
|
|
49474
|
+
/** Datemodified */
|
|
49475
|
+
dateModified: string | null;
|
|
49476
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
49477
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
49478
|
+
/**
|
|
49479
|
+
* Id
|
|
49480
|
+
* Format: uuid
|
|
49481
|
+
*/
|
|
49482
|
+
id: string;
|
|
49483
|
+
/** Storename */
|
|
49484
|
+
storeName: string;
|
|
49485
|
+
/** Storedomain */
|
|
49486
|
+
storeDomain: string;
|
|
49487
|
+
/** Apiversion */
|
|
49488
|
+
apiVersion: string;
|
|
49489
|
+
/** Isactive */
|
|
49490
|
+
isActive: boolean;
|
|
49491
|
+
/** Isconnected */
|
|
49492
|
+
isConnected: boolean;
|
|
49493
|
+
/** Lastconnectiontest */
|
|
49494
|
+
lastConnectionTest: string | null;
|
|
49495
|
+
/** Connectionerror */
|
|
49496
|
+
connectionError: string | null;
|
|
49497
|
+
shopInfo?: components["schemas"]["ShopInfoSchema"] | null;
|
|
49498
|
+
};
|
|
49499
|
+
/** ShopifyConfigurationCreateSchema */
|
|
49500
|
+
ShopifyConfigurationCreateSchema: {
|
|
49501
|
+
/**
|
|
49502
|
+
* Storename
|
|
49503
|
+
* @description Human-readable name for the Shopify store
|
|
49504
|
+
*/
|
|
49505
|
+
storeName: string;
|
|
49506
|
+
/**
|
|
49507
|
+
* Storedomain
|
|
49508
|
+
* @description Shopify store domain (e.g., mystore.myshopify.com)
|
|
49509
|
+
*/
|
|
49510
|
+
storeDomain: string;
|
|
49511
|
+
/**
|
|
49512
|
+
* Accesstoken
|
|
49513
|
+
* @description Shopify API access token
|
|
49514
|
+
*/
|
|
49515
|
+
accessToken: string;
|
|
49516
|
+
/**
|
|
49517
|
+
* Apiversion
|
|
49518
|
+
* @description Shopify API version to use
|
|
49519
|
+
* @default 2024-01
|
|
49520
|
+
*/
|
|
49521
|
+
apiVersion: string;
|
|
49522
|
+
};
|
|
49523
|
+
/** ShopifyConfigurationUpdateSchema */
|
|
49524
|
+
ShopifyConfigurationUpdateSchema: {
|
|
49525
|
+
/**
|
|
49526
|
+
* Storename
|
|
49527
|
+
* @description Human-readable name for the Shopify store
|
|
49528
|
+
*/
|
|
49529
|
+
storeName?: string | null;
|
|
49530
|
+
/**
|
|
49531
|
+
* Storedomain
|
|
49532
|
+
* @description Shopify store domain (e.g., mystore.myshopify.com)
|
|
49533
|
+
*/
|
|
49534
|
+
storeDomain?: string | null;
|
|
49535
|
+
/**
|
|
49536
|
+
* Accesstoken
|
|
49537
|
+
* @description Shopify API access token
|
|
49538
|
+
*/
|
|
49539
|
+
accessToken?: string | null;
|
|
49540
|
+
/**
|
|
49541
|
+
* Apiversion
|
|
49542
|
+
* @description Shopify API version to use
|
|
49543
|
+
*/
|
|
49544
|
+
apiVersion?: string | null;
|
|
49545
|
+
};
|
|
49546
|
+
/** OnlineStoreSettingSchema */
|
|
49547
|
+
OnlineStoreSettingSchema: {
|
|
49548
|
+
/**
|
|
49549
|
+
* Datecreated
|
|
49550
|
+
* Format: date-time
|
|
49551
|
+
*/
|
|
49552
|
+
dateCreated: string;
|
|
49553
|
+
/** Datemodified */
|
|
49554
|
+
dateModified: string | null;
|
|
49555
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
49556
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
49557
|
+
/**
|
|
49558
|
+
* Id
|
|
49559
|
+
* Format: uuid
|
|
49560
|
+
*/
|
|
49561
|
+
id: string;
|
|
49562
|
+
platform: components["schemas"]["PlatformSchema"];
|
|
49563
|
+
/** Useonlineshop */
|
|
49564
|
+
useOnlineShop: boolean;
|
|
49565
|
+
/** Autosyncorders */
|
|
49566
|
+
autoSyncOrders: boolean;
|
|
49567
|
+
/** Autosyncitems */
|
|
49568
|
+
autoSyncItems: boolean;
|
|
49569
|
+
/** Autosynccustomers */
|
|
49570
|
+
autoSyncCustomers: boolean;
|
|
49571
|
+
/** Autosyncinventory */
|
|
49572
|
+
autoSyncInventory: boolean;
|
|
49573
|
+
defaultWarehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
49574
|
+
};
|
|
49575
|
+
/**
|
|
49576
|
+
* PlatformSchema
|
|
49577
|
+
* @enum {string}
|
|
49578
|
+
*/
|
|
49579
|
+
PlatformSchema: "shopify" | "wooCommerce";
|
|
49580
|
+
/** OnlineStoreSettingCreateUpdateSchema */
|
|
49581
|
+
OnlineStoreSettingCreateUpdateSchema: {
|
|
49582
|
+
/**
|
|
49583
|
+
* @description E-commerce platform to integrate with
|
|
49584
|
+
* @default shopify
|
|
49585
|
+
*/
|
|
49586
|
+
platform: components["schemas"]["PlatformSchema"];
|
|
49587
|
+
/**
|
|
49588
|
+
* Useonlineshop
|
|
49589
|
+
* @description Enable/disable online shop integration
|
|
49590
|
+
* @default false
|
|
49591
|
+
*/
|
|
49592
|
+
useOnlineShop: boolean;
|
|
49593
|
+
/**
|
|
49594
|
+
* Autosyncorders
|
|
49595
|
+
* @description should be false if use_online_shop is false
|
|
49596
|
+
* @default false
|
|
49597
|
+
*/
|
|
49598
|
+
autoSyncOrders: boolean;
|
|
49599
|
+
/**
|
|
49600
|
+
* Autosyncitems
|
|
49601
|
+
* @description should be false if use_online_shop is false
|
|
49602
|
+
* @default false
|
|
49603
|
+
*/
|
|
49604
|
+
autoSyncItems: boolean;
|
|
49605
|
+
/**
|
|
49606
|
+
* Autosynccustomers
|
|
49607
|
+
* @description should be false if use_online_shop is false
|
|
49608
|
+
* @default false
|
|
49609
|
+
*/
|
|
49610
|
+
autoSyncCustomers: boolean;
|
|
49611
|
+
/**
|
|
49612
|
+
* Autosyncinventory
|
|
49613
|
+
* @description should be false if use_online_shop is false
|
|
49614
|
+
* @default false
|
|
49615
|
+
*/
|
|
49616
|
+
autoSyncInventory: boolean;
|
|
49617
|
+
/**
|
|
49618
|
+
* Defaultwarehouse
|
|
49619
|
+
* @description Default warehouse ID for online store inventory operations, required when use_online_shop is true, and should be null if use_online_shop is false
|
|
49620
|
+
*/
|
|
49621
|
+
defaultWarehouse?: number;
|
|
49622
|
+
};
|
|
49261
49623
|
};
|
|
49262
49624
|
responses: never;
|
|
49263
49625
|
parameters: never;
|
|
@@ -86582,13 +86944,393 @@ export interface operations {
|
|
|
86582
86944
|
};
|
|
86583
86945
|
};
|
|
86584
86946
|
};
|
|
86585
|
-
task_views_get_status: {
|
|
86947
|
+
task_views_get_status: {
|
|
86948
|
+
parameters: {
|
|
86949
|
+
query?: never;
|
|
86950
|
+
header?: never;
|
|
86951
|
+
path: {
|
|
86952
|
+
id: string;
|
|
86953
|
+
};
|
|
86954
|
+
cookie?: never;
|
|
86955
|
+
};
|
|
86956
|
+
requestBody?: never;
|
|
86957
|
+
responses: {
|
|
86958
|
+
/** @description OK */
|
|
86959
|
+
200: {
|
|
86960
|
+
headers: {
|
|
86961
|
+
[name: string]: unknown;
|
|
86962
|
+
};
|
|
86963
|
+
content: {
|
|
86964
|
+
"application/json": components["schemas"]["RetrieveStatus"];
|
|
86965
|
+
};
|
|
86966
|
+
};
|
|
86967
|
+
/** @description Forbidden */
|
|
86968
|
+
403: {
|
|
86969
|
+
headers: {
|
|
86970
|
+
[name: string]: unknown;
|
|
86971
|
+
};
|
|
86972
|
+
content: {
|
|
86973
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
86974
|
+
};
|
|
86975
|
+
};
|
|
86976
|
+
/** @description Not Found */
|
|
86977
|
+
404: {
|
|
86978
|
+
headers: {
|
|
86979
|
+
[name: string]: unknown;
|
|
86980
|
+
};
|
|
86981
|
+
content: {
|
|
86982
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
86983
|
+
};
|
|
86984
|
+
};
|
|
86985
|
+
/** @description Internal Server Error */
|
|
86986
|
+
500: {
|
|
86987
|
+
headers: {
|
|
86988
|
+
[name: string]: unknown;
|
|
86989
|
+
};
|
|
86990
|
+
content: {
|
|
86991
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
86992
|
+
};
|
|
86993
|
+
};
|
|
86994
|
+
};
|
|
86995
|
+
};
|
|
86996
|
+
task_views_edit_status: {
|
|
86997
|
+
parameters: {
|
|
86998
|
+
query?: never;
|
|
86999
|
+
header?: never;
|
|
87000
|
+
path: {
|
|
87001
|
+
id: string;
|
|
87002
|
+
};
|
|
87003
|
+
cookie?: never;
|
|
87004
|
+
};
|
|
87005
|
+
requestBody: {
|
|
87006
|
+
content: {
|
|
87007
|
+
"application/json": components["schemas"]["CreateUpdateStatus"];
|
|
87008
|
+
};
|
|
87009
|
+
};
|
|
87010
|
+
responses: {
|
|
87011
|
+
/** @description OK */
|
|
87012
|
+
200: {
|
|
87013
|
+
headers: {
|
|
87014
|
+
[name: string]: unknown;
|
|
87015
|
+
};
|
|
87016
|
+
content: {
|
|
87017
|
+
"application/json": components["schemas"]["RetrieveStatus"];
|
|
87018
|
+
};
|
|
87019
|
+
};
|
|
87020
|
+
/** @description Bad Request */
|
|
87021
|
+
400: {
|
|
87022
|
+
headers: {
|
|
87023
|
+
[name: string]: unknown;
|
|
87024
|
+
};
|
|
87025
|
+
content: {
|
|
87026
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87027
|
+
};
|
|
87028
|
+
};
|
|
87029
|
+
/** @description Forbidden */
|
|
87030
|
+
403: {
|
|
87031
|
+
headers: {
|
|
87032
|
+
[name: string]: unknown;
|
|
87033
|
+
};
|
|
87034
|
+
content: {
|
|
87035
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87036
|
+
};
|
|
87037
|
+
};
|
|
87038
|
+
/** @description Not Found */
|
|
87039
|
+
404: {
|
|
87040
|
+
headers: {
|
|
87041
|
+
[name: string]: unknown;
|
|
87042
|
+
};
|
|
87043
|
+
content: {
|
|
87044
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87045
|
+
};
|
|
87046
|
+
};
|
|
87047
|
+
/** @description Conflict */
|
|
87048
|
+
409: {
|
|
87049
|
+
headers: {
|
|
87050
|
+
[name: string]: unknown;
|
|
87051
|
+
};
|
|
87052
|
+
content: {
|
|
87053
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87054
|
+
};
|
|
87055
|
+
};
|
|
87056
|
+
/** @description Internal Server Error */
|
|
87057
|
+
500: {
|
|
87058
|
+
headers: {
|
|
87059
|
+
[name: string]: unknown;
|
|
87060
|
+
};
|
|
87061
|
+
content: {
|
|
87062
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87063
|
+
};
|
|
87064
|
+
};
|
|
87065
|
+
};
|
|
87066
|
+
};
|
|
87067
|
+
task_views_delete_status: {
|
|
87068
|
+
parameters: {
|
|
87069
|
+
query?: never;
|
|
87070
|
+
header?: never;
|
|
87071
|
+
path: {
|
|
87072
|
+
id: string;
|
|
87073
|
+
};
|
|
87074
|
+
cookie?: never;
|
|
87075
|
+
};
|
|
87076
|
+
requestBody?: never;
|
|
87077
|
+
responses: {
|
|
87078
|
+
/** @description No Content */
|
|
87079
|
+
204: {
|
|
87080
|
+
headers: {
|
|
87081
|
+
[name: string]: unknown;
|
|
87082
|
+
};
|
|
87083
|
+
content?: never;
|
|
87084
|
+
};
|
|
87085
|
+
/** @description Bad Request */
|
|
87086
|
+
400: {
|
|
87087
|
+
headers: {
|
|
87088
|
+
[name: string]: unknown;
|
|
87089
|
+
};
|
|
87090
|
+
content: {
|
|
87091
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87092
|
+
};
|
|
87093
|
+
};
|
|
87094
|
+
/** @description Forbidden */
|
|
87095
|
+
403: {
|
|
87096
|
+
headers: {
|
|
87097
|
+
[name: string]: unknown;
|
|
87098
|
+
};
|
|
87099
|
+
content: {
|
|
87100
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87101
|
+
};
|
|
87102
|
+
};
|
|
87103
|
+
/** @description Not Found */
|
|
87104
|
+
404: {
|
|
87105
|
+
headers: {
|
|
87106
|
+
[name: string]: unknown;
|
|
87107
|
+
};
|
|
87108
|
+
content: {
|
|
87109
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87110
|
+
};
|
|
87111
|
+
};
|
|
87112
|
+
/** @description Conflict */
|
|
87113
|
+
409: {
|
|
87114
|
+
headers: {
|
|
87115
|
+
[name: string]: unknown;
|
|
87116
|
+
};
|
|
87117
|
+
content: {
|
|
87118
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87119
|
+
};
|
|
87120
|
+
};
|
|
87121
|
+
/** @description Internal Server Error */
|
|
87122
|
+
500: {
|
|
87123
|
+
headers: {
|
|
87124
|
+
[name: string]: unknown;
|
|
87125
|
+
};
|
|
87126
|
+
content: {
|
|
87127
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87128
|
+
};
|
|
87129
|
+
};
|
|
87130
|
+
};
|
|
87131
|
+
};
|
|
87132
|
+
task_views_get_activity: {
|
|
87133
|
+
parameters: {
|
|
87134
|
+
query?: never;
|
|
87135
|
+
header?: never;
|
|
87136
|
+
path: {
|
|
87137
|
+
id: string;
|
|
87138
|
+
};
|
|
87139
|
+
cookie?: never;
|
|
87140
|
+
};
|
|
87141
|
+
requestBody?: never;
|
|
87142
|
+
responses: {
|
|
87143
|
+
/** @description OK */
|
|
87144
|
+
200: {
|
|
87145
|
+
headers: {
|
|
87146
|
+
[name: string]: unknown;
|
|
87147
|
+
};
|
|
87148
|
+
content: {
|
|
87149
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
87150
|
+
};
|
|
87151
|
+
};
|
|
87152
|
+
/** @description Bad Request */
|
|
87153
|
+
400: {
|
|
87154
|
+
headers: {
|
|
87155
|
+
[name: string]: unknown;
|
|
87156
|
+
};
|
|
87157
|
+
content: {
|
|
87158
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87159
|
+
};
|
|
87160
|
+
};
|
|
87161
|
+
/** @description Forbidden */
|
|
87162
|
+
403: {
|
|
87163
|
+
headers: {
|
|
87164
|
+
[name: string]: unknown;
|
|
87165
|
+
};
|
|
87166
|
+
content: {
|
|
87167
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87168
|
+
};
|
|
87169
|
+
};
|
|
87170
|
+
/** @description Not Found */
|
|
87171
|
+
404: {
|
|
87172
|
+
headers: {
|
|
87173
|
+
[name: string]: unknown;
|
|
87174
|
+
};
|
|
87175
|
+
content: {
|
|
87176
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87177
|
+
};
|
|
87178
|
+
};
|
|
87179
|
+
/** @description Internal Server Error */
|
|
87180
|
+
500: {
|
|
87181
|
+
headers: {
|
|
87182
|
+
[name: string]: unknown;
|
|
87183
|
+
};
|
|
87184
|
+
content: {
|
|
87185
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87186
|
+
};
|
|
87187
|
+
};
|
|
87188
|
+
};
|
|
87189
|
+
};
|
|
87190
|
+
task_views_edit_activity: {
|
|
87191
|
+
parameters: {
|
|
87192
|
+
query?: never;
|
|
87193
|
+
header?: never;
|
|
87194
|
+
path: {
|
|
87195
|
+
id: string;
|
|
87196
|
+
};
|
|
87197
|
+
cookie?: never;
|
|
87198
|
+
};
|
|
87199
|
+
requestBody: {
|
|
87200
|
+
content: {
|
|
87201
|
+
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
87202
|
+
};
|
|
87203
|
+
};
|
|
87204
|
+
responses: {
|
|
87205
|
+
/** @description OK */
|
|
87206
|
+
200: {
|
|
87207
|
+
headers: {
|
|
87208
|
+
[name: string]: unknown;
|
|
87209
|
+
};
|
|
87210
|
+
content: {
|
|
87211
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
87212
|
+
};
|
|
87213
|
+
};
|
|
87214
|
+
/** @description Bad Request */
|
|
87215
|
+
400: {
|
|
87216
|
+
headers: {
|
|
87217
|
+
[name: string]: unknown;
|
|
87218
|
+
};
|
|
87219
|
+
content: {
|
|
87220
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87221
|
+
};
|
|
87222
|
+
};
|
|
87223
|
+
/** @description Forbidden */
|
|
87224
|
+
403: {
|
|
87225
|
+
headers: {
|
|
87226
|
+
[name: string]: unknown;
|
|
87227
|
+
};
|
|
87228
|
+
content: {
|
|
87229
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87230
|
+
};
|
|
87231
|
+
};
|
|
87232
|
+
/** @description Not Found */
|
|
87233
|
+
404: {
|
|
87234
|
+
headers: {
|
|
87235
|
+
[name: string]: unknown;
|
|
87236
|
+
};
|
|
87237
|
+
content: {
|
|
87238
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87239
|
+
};
|
|
87240
|
+
};
|
|
87241
|
+
/** @description Conflict */
|
|
87242
|
+
409: {
|
|
87243
|
+
headers: {
|
|
87244
|
+
[name: string]: unknown;
|
|
87245
|
+
};
|
|
87246
|
+
content: {
|
|
87247
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87248
|
+
};
|
|
87249
|
+
};
|
|
87250
|
+
/** @description Internal Server Error */
|
|
87251
|
+
500: {
|
|
87252
|
+
headers: {
|
|
87253
|
+
[name: string]: unknown;
|
|
87254
|
+
};
|
|
87255
|
+
content: {
|
|
87256
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87257
|
+
};
|
|
87258
|
+
};
|
|
87259
|
+
};
|
|
87260
|
+
};
|
|
87261
|
+
task_views_delete_activity: {
|
|
87262
|
+
parameters: {
|
|
87263
|
+
query?: never;
|
|
87264
|
+
header?: never;
|
|
87265
|
+
path: {
|
|
87266
|
+
id: string;
|
|
87267
|
+
};
|
|
87268
|
+
cookie?: never;
|
|
87269
|
+
};
|
|
87270
|
+
requestBody?: never;
|
|
87271
|
+
responses: {
|
|
87272
|
+
/** @description No Content */
|
|
87273
|
+
204: {
|
|
87274
|
+
headers: {
|
|
87275
|
+
[name: string]: unknown;
|
|
87276
|
+
};
|
|
87277
|
+
content?: never;
|
|
87278
|
+
};
|
|
87279
|
+
/** @description Bad Request */
|
|
87280
|
+
400: {
|
|
87281
|
+
headers: {
|
|
87282
|
+
[name: string]: unknown;
|
|
87283
|
+
};
|
|
87284
|
+
content: {
|
|
87285
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87286
|
+
};
|
|
87287
|
+
};
|
|
87288
|
+
/** @description Forbidden */
|
|
87289
|
+
403: {
|
|
87290
|
+
headers: {
|
|
87291
|
+
[name: string]: unknown;
|
|
87292
|
+
};
|
|
87293
|
+
content: {
|
|
87294
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87295
|
+
};
|
|
87296
|
+
};
|
|
87297
|
+
/** @description Not Found */
|
|
87298
|
+
404: {
|
|
87299
|
+
headers: {
|
|
87300
|
+
[name: string]: unknown;
|
|
87301
|
+
};
|
|
87302
|
+
content: {
|
|
87303
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87304
|
+
};
|
|
87305
|
+
};
|
|
87306
|
+
/** @description Conflict */
|
|
87307
|
+
409: {
|
|
87308
|
+
headers: {
|
|
87309
|
+
[name: string]: unknown;
|
|
87310
|
+
};
|
|
87311
|
+
content: {
|
|
87312
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87313
|
+
};
|
|
87314
|
+
};
|
|
87315
|
+
/** @description Internal Server Error */
|
|
87316
|
+
500: {
|
|
87317
|
+
headers: {
|
|
87318
|
+
[name: string]: unknown;
|
|
87319
|
+
};
|
|
87320
|
+
content: {
|
|
87321
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87322
|
+
};
|
|
87323
|
+
};
|
|
87324
|
+
};
|
|
87325
|
+
};
|
|
87326
|
+
task_views_list_activities: {
|
|
86586
87327
|
parameters: {
|
|
86587
|
-
query?:
|
|
86588
|
-
|
|
86589
|
-
|
|
86590
|
-
id: string;
|
|
87328
|
+
query?: {
|
|
87329
|
+
/** @description Search by activity name, description, assigned to username, status name */
|
|
87330
|
+
search?: string | null;
|
|
86591
87331
|
};
|
|
87332
|
+
header?: never;
|
|
87333
|
+
path?: never;
|
|
86592
87334
|
cookie?: never;
|
|
86593
87335
|
};
|
|
86594
87336
|
requestBody?: never;
|
|
@@ -86599,7 +87341,16 @@ export interface operations {
|
|
|
86599
87341
|
[name: string]: unknown;
|
|
86600
87342
|
};
|
|
86601
87343
|
content: {
|
|
86602
|
-
"application/json": components["schemas"]["
|
|
87344
|
+
"application/json": components["schemas"]["ActivitiesListSchema"];
|
|
87345
|
+
};
|
|
87346
|
+
};
|
|
87347
|
+
/** @description Bad Request */
|
|
87348
|
+
400: {
|
|
87349
|
+
headers: {
|
|
87350
|
+
[name: string]: unknown;
|
|
87351
|
+
};
|
|
87352
|
+
content: {
|
|
87353
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
86603
87354
|
};
|
|
86604
87355
|
};
|
|
86605
87356
|
/** @description Forbidden */
|
|
@@ -86620,6 +87371,15 @@ export interface operations {
|
|
|
86620
87371
|
"application/json": components["schemas"]["MessageResponse"];
|
|
86621
87372
|
};
|
|
86622
87373
|
};
|
|
87374
|
+
/** @description Conflict */
|
|
87375
|
+
409: {
|
|
87376
|
+
headers: {
|
|
87377
|
+
[name: string]: unknown;
|
|
87378
|
+
};
|
|
87379
|
+
content: {
|
|
87380
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87381
|
+
};
|
|
87382
|
+
};
|
|
86623
87383
|
/** @description Internal Server Error */
|
|
86624
87384
|
500: {
|
|
86625
87385
|
headers: {
|
|
@@ -86631,28 +87391,26 @@ export interface operations {
|
|
|
86631
87391
|
};
|
|
86632
87392
|
};
|
|
86633
87393
|
};
|
|
86634
|
-
|
|
87394
|
+
task_views_create_activity: {
|
|
86635
87395
|
parameters: {
|
|
86636
87396
|
query?: never;
|
|
86637
87397
|
header?: never;
|
|
86638
|
-
path
|
|
86639
|
-
id: string;
|
|
86640
|
-
};
|
|
87398
|
+
path?: never;
|
|
86641
87399
|
cookie?: never;
|
|
86642
87400
|
};
|
|
86643
87401
|
requestBody: {
|
|
86644
87402
|
content: {
|
|
86645
|
-
"application/json": components["schemas"]["
|
|
87403
|
+
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
86646
87404
|
};
|
|
86647
87405
|
};
|
|
86648
87406
|
responses: {
|
|
86649
|
-
/** @description
|
|
86650
|
-
|
|
87407
|
+
/** @description Created */
|
|
87408
|
+
201: {
|
|
86651
87409
|
headers: {
|
|
86652
87410
|
[name: string]: unknown;
|
|
86653
87411
|
};
|
|
86654
87412
|
content: {
|
|
86655
|
-
"application/json": components["schemas"]["
|
|
87413
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
86656
87414
|
};
|
|
86657
87415
|
};
|
|
86658
87416
|
/** @description Bad Request */
|
|
@@ -86702,7 +87460,7 @@ export interface operations {
|
|
|
86702
87460
|
};
|
|
86703
87461
|
};
|
|
86704
87462
|
};
|
|
86705
|
-
|
|
87463
|
+
task_views_get_comment: {
|
|
86706
87464
|
parameters: {
|
|
86707
87465
|
query?: never;
|
|
86708
87466
|
header?: never;
|
|
@@ -86713,12 +87471,67 @@ export interface operations {
|
|
|
86713
87471
|
};
|
|
86714
87472
|
requestBody?: never;
|
|
86715
87473
|
responses: {
|
|
86716
|
-
/** @description
|
|
86717
|
-
|
|
87474
|
+
/** @description OK */
|
|
87475
|
+
200: {
|
|
86718
87476
|
headers: {
|
|
86719
87477
|
[name: string]: unknown;
|
|
86720
87478
|
};
|
|
86721
|
-
content
|
|
87479
|
+
content: {
|
|
87480
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
87481
|
+
};
|
|
87482
|
+
};
|
|
87483
|
+
/** @description Forbidden */
|
|
87484
|
+
403: {
|
|
87485
|
+
headers: {
|
|
87486
|
+
[name: string]: unknown;
|
|
87487
|
+
};
|
|
87488
|
+
content: {
|
|
87489
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87490
|
+
};
|
|
87491
|
+
};
|
|
87492
|
+
/** @description Not Found */
|
|
87493
|
+
404: {
|
|
87494
|
+
headers: {
|
|
87495
|
+
[name: string]: unknown;
|
|
87496
|
+
};
|
|
87497
|
+
content: {
|
|
87498
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87499
|
+
};
|
|
87500
|
+
};
|
|
87501
|
+
/** @description Internal Server Error */
|
|
87502
|
+
500: {
|
|
87503
|
+
headers: {
|
|
87504
|
+
[name: string]: unknown;
|
|
87505
|
+
};
|
|
87506
|
+
content: {
|
|
87507
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87508
|
+
};
|
|
87509
|
+
};
|
|
87510
|
+
};
|
|
87511
|
+
};
|
|
87512
|
+
task_views_edit_comment: {
|
|
87513
|
+
parameters: {
|
|
87514
|
+
query?: never;
|
|
87515
|
+
header?: never;
|
|
87516
|
+
path: {
|
|
87517
|
+
id: string;
|
|
87518
|
+
};
|
|
87519
|
+
cookie?: never;
|
|
87520
|
+
};
|
|
87521
|
+
requestBody: {
|
|
87522
|
+
content: {
|
|
87523
|
+
"application/json": components["schemas"]["CreateUpdateComment"];
|
|
87524
|
+
};
|
|
87525
|
+
};
|
|
87526
|
+
responses: {
|
|
87527
|
+
/** @description OK */
|
|
87528
|
+
200: {
|
|
87529
|
+
headers: {
|
|
87530
|
+
[name: string]: unknown;
|
|
87531
|
+
};
|
|
87532
|
+
content: {
|
|
87533
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
87534
|
+
};
|
|
86722
87535
|
};
|
|
86723
87536
|
/** @description Bad Request */
|
|
86724
87537
|
400: {
|
|
@@ -86767,7 +87580,7 @@ export interface operations {
|
|
|
86767
87580
|
};
|
|
86768
87581
|
};
|
|
86769
87582
|
};
|
|
86770
|
-
|
|
87583
|
+
task_views_delete_comment: {
|
|
86771
87584
|
parameters: {
|
|
86772
87585
|
query?: never;
|
|
86773
87586
|
header?: never;
|
|
@@ -86778,14 +87591,12 @@ export interface operations {
|
|
|
86778
87591
|
};
|
|
86779
87592
|
requestBody?: never;
|
|
86780
87593
|
responses: {
|
|
86781
|
-
/** @description
|
|
86782
|
-
|
|
87594
|
+
/** @description No Content */
|
|
87595
|
+
204: {
|
|
86783
87596
|
headers: {
|
|
86784
87597
|
[name: string]: unknown;
|
|
86785
87598
|
};
|
|
86786
|
-
content
|
|
86787
|
-
"application/json": components["schemas"]["RetrieveActivity"];
|
|
86788
|
-
};
|
|
87599
|
+
content?: never;
|
|
86789
87600
|
};
|
|
86790
87601
|
/** @description Bad Request */
|
|
86791
87602
|
400: {
|
|
@@ -86814,6 +87625,15 @@ export interface operations {
|
|
|
86814
87625
|
"application/json": components["schemas"]["MessageResponse"];
|
|
86815
87626
|
};
|
|
86816
87627
|
};
|
|
87628
|
+
/** @description Conflict */
|
|
87629
|
+
409: {
|
|
87630
|
+
headers: {
|
|
87631
|
+
[name: string]: unknown;
|
|
87632
|
+
};
|
|
87633
|
+
content: {
|
|
87634
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87635
|
+
};
|
|
87636
|
+
};
|
|
86817
87637
|
/** @description Internal Server Error */
|
|
86818
87638
|
500: {
|
|
86819
87639
|
headers: {
|
|
@@ -86825,20 +87645,17 @@ export interface operations {
|
|
|
86825
87645
|
};
|
|
86826
87646
|
};
|
|
86827
87647
|
};
|
|
86828
|
-
|
|
87648
|
+
task_views_list_comments: {
|
|
86829
87649
|
parameters: {
|
|
86830
|
-
query?:
|
|
86831
|
-
|
|
86832
|
-
|
|
86833
|
-
id: string;
|
|
87650
|
+
query?: {
|
|
87651
|
+
/** @description Search by comment by content, commenter username */
|
|
87652
|
+
search?: string | null;
|
|
86834
87653
|
};
|
|
87654
|
+
header?: never;
|
|
87655
|
+
path?: never;
|
|
86835
87656
|
cookie?: never;
|
|
86836
87657
|
};
|
|
86837
|
-
requestBody
|
|
86838
|
-
content: {
|
|
86839
|
-
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
86840
|
-
};
|
|
86841
|
-
};
|
|
87658
|
+
requestBody?: never;
|
|
86842
87659
|
responses: {
|
|
86843
87660
|
/** @description OK */
|
|
86844
87661
|
200: {
|
|
@@ -86846,7 +87663,7 @@ export interface operations {
|
|
|
86846
87663
|
[name: string]: unknown;
|
|
86847
87664
|
};
|
|
86848
87665
|
content: {
|
|
86849
|
-
"application/json": components["schemas"]["
|
|
87666
|
+
"application/json": components["schemas"]["CommentsListSchema"];
|
|
86850
87667
|
};
|
|
86851
87668
|
};
|
|
86852
87669
|
/** @description Bad Request */
|
|
@@ -86896,23 +87713,27 @@ export interface operations {
|
|
|
86896
87713
|
};
|
|
86897
87714
|
};
|
|
86898
87715
|
};
|
|
86899
|
-
|
|
87716
|
+
task_views_create_comment: {
|
|
86900
87717
|
parameters: {
|
|
86901
87718
|
query?: never;
|
|
86902
87719
|
header?: never;
|
|
86903
|
-
path
|
|
86904
|
-
id: string;
|
|
86905
|
-
};
|
|
87720
|
+
path?: never;
|
|
86906
87721
|
cookie?: never;
|
|
86907
87722
|
};
|
|
86908
|
-
requestBody
|
|
87723
|
+
requestBody: {
|
|
87724
|
+
content: {
|
|
87725
|
+
"application/json": components["schemas"]["CreateUpdateComment"];
|
|
87726
|
+
};
|
|
87727
|
+
};
|
|
86909
87728
|
responses: {
|
|
86910
|
-
/** @description
|
|
86911
|
-
|
|
87729
|
+
/** @description Created */
|
|
87730
|
+
201: {
|
|
86912
87731
|
headers: {
|
|
86913
87732
|
[name: string]: unknown;
|
|
86914
87733
|
};
|
|
86915
|
-
content
|
|
87734
|
+
content: {
|
|
87735
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
87736
|
+
};
|
|
86916
87737
|
};
|
|
86917
87738
|
/** @description Bad Request */
|
|
86918
87739
|
400: {
|
|
@@ -86961,10 +87782,10 @@ export interface operations {
|
|
|
86961
87782
|
};
|
|
86962
87783
|
};
|
|
86963
87784
|
};
|
|
86964
|
-
|
|
87785
|
+
task_views_list_tasks_grouped_by_status: {
|
|
86965
87786
|
parameters: {
|
|
86966
87787
|
query?: {
|
|
86967
|
-
/** @description Search by
|
|
87788
|
+
/** @description Search task by name, description, due date, assigned to name, priority, status name */
|
|
86968
87789
|
search?: string | null;
|
|
86969
87790
|
};
|
|
86970
87791
|
header?: never;
|
|
@@ -86979,7 +87800,7 @@ export interface operations {
|
|
|
86979
87800
|
[name: string]: unknown;
|
|
86980
87801
|
};
|
|
86981
87802
|
content: {
|
|
86982
|
-
"application/json": components["schemas"]["
|
|
87803
|
+
"application/json": components["schemas"]["GroupedTasksByStatusListSchema"];
|
|
86983
87804
|
};
|
|
86984
87805
|
};
|
|
86985
87806
|
/** @description Bad Request */
|
|
@@ -87029,26 +87850,25 @@ export interface operations {
|
|
|
87029
87850
|
};
|
|
87030
87851
|
};
|
|
87031
87852
|
};
|
|
87032
|
-
|
|
87853
|
+
task_views_list_tasks_flat: {
|
|
87033
87854
|
parameters: {
|
|
87034
|
-
query?:
|
|
87855
|
+
query?: {
|
|
87856
|
+
/** @description Search task by name, description, due date, assigned to name, priority, status name */
|
|
87857
|
+
search?: string | null;
|
|
87858
|
+
};
|
|
87035
87859
|
header?: never;
|
|
87036
87860
|
path?: never;
|
|
87037
87861
|
cookie?: never;
|
|
87038
87862
|
};
|
|
87039
|
-
requestBody
|
|
87040
|
-
content: {
|
|
87041
|
-
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
87042
|
-
};
|
|
87043
|
-
};
|
|
87863
|
+
requestBody?: never;
|
|
87044
87864
|
responses: {
|
|
87045
|
-
/** @description
|
|
87046
|
-
|
|
87865
|
+
/** @description OK */
|
|
87866
|
+
200: {
|
|
87047
87867
|
headers: {
|
|
87048
87868
|
[name: string]: unknown;
|
|
87049
87869
|
};
|
|
87050
87870
|
content: {
|
|
87051
|
-
"application/json": components["schemas"]["
|
|
87871
|
+
"application/json": components["schemas"]["TasksListSchema"];
|
|
87052
87872
|
};
|
|
87053
87873
|
};
|
|
87054
87874
|
/** @description Bad Request */
|
|
@@ -87098,7 +87918,7 @@ export interface operations {
|
|
|
87098
87918
|
};
|
|
87099
87919
|
};
|
|
87100
87920
|
};
|
|
87101
|
-
|
|
87921
|
+
task_views_get_task: {
|
|
87102
87922
|
parameters: {
|
|
87103
87923
|
query?: never;
|
|
87104
87924
|
header?: never;
|
|
@@ -87115,7 +87935,7 @@ export interface operations {
|
|
|
87115
87935
|
[name: string]: unknown;
|
|
87116
87936
|
};
|
|
87117
87937
|
content: {
|
|
87118
|
-
"application/json": components["schemas"]["
|
|
87938
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
87119
87939
|
};
|
|
87120
87940
|
};
|
|
87121
87941
|
/** @description Forbidden */
|
|
@@ -87147,7 +87967,7 @@ export interface operations {
|
|
|
87147
87967
|
};
|
|
87148
87968
|
};
|
|
87149
87969
|
};
|
|
87150
|
-
|
|
87970
|
+
task_views_update_task: {
|
|
87151
87971
|
parameters: {
|
|
87152
87972
|
query?: never;
|
|
87153
87973
|
header?: never;
|
|
@@ -87158,7 +87978,7 @@ export interface operations {
|
|
|
87158
87978
|
};
|
|
87159
87979
|
requestBody: {
|
|
87160
87980
|
content: {
|
|
87161
|
-
"application/json": components["schemas"]["
|
|
87981
|
+
"application/json": components["schemas"]["CreateUpdateTask"];
|
|
87162
87982
|
};
|
|
87163
87983
|
};
|
|
87164
87984
|
responses: {
|
|
@@ -87168,7 +87988,78 @@ export interface operations {
|
|
|
87168
87988
|
[name: string]: unknown;
|
|
87169
87989
|
};
|
|
87170
87990
|
content: {
|
|
87171
|
-
"application/json": components["schemas"]["
|
|
87991
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
87992
|
+
};
|
|
87993
|
+
};
|
|
87994
|
+
/** @description Bad Request */
|
|
87995
|
+
400: {
|
|
87996
|
+
headers: {
|
|
87997
|
+
[name: string]: unknown;
|
|
87998
|
+
};
|
|
87999
|
+
content: {
|
|
88000
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
88001
|
+
};
|
|
88002
|
+
};
|
|
88003
|
+
/** @description Forbidden */
|
|
88004
|
+
403: {
|
|
88005
|
+
headers: {
|
|
88006
|
+
[name: string]: unknown;
|
|
88007
|
+
};
|
|
88008
|
+
content: {
|
|
88009
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
88010
|
+
};
|
|
88011
|
+
};
|
|
88012
|
+
/** @description Not Found */
|
|
88013
|
+
404: {
|
|
88014
|
+
headers: {
|
|
88015
|
+
[name: string]: unknown;
|
|
88016
|
+
};
|
|
88017
|
+
content: {
|
|
88018
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
88019
|
+
};
|
|
88020
|
+
};
|
|
88021
|
+
/** @description Conflict */
|
|
88022
|
+
409: {
|
|
88023
|
+
headers: {
|
|
88024
|
+
[name: string]: unknown;
|
|
88025
|
+
};
|
|
88026
|
+
content: {
|
|
88027
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
88028
|
+
};
|
|
88029
|
+
};
|
|
88030
|
+
/** @description Internal Server Error */
|
|
88031
|
+
500: {
|
|
88032
|
+
headers: {
|
|
88033
|
+
[name: string]: unknown;
|
|
88034
|
+
};
|
|
88035
|
+
content: {
|
|
88036
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
88037
|
+
};
|
|
88038
|
+
};
|
|
88039
|
+
};
|
|
88040
|
+
};
|
|
88041
|
+
task_views_update_task_archive: {
|
|
88042
|
+
parameters: {
|
|
88043
|
+
query?: never;
|
|
88044
|
+
header?: never;
|
|
88045
|
+
path: {
|
|
88046
|
+
id: string;
|
|
88047
|
+
};
|
|
88048
|
+
cookie?: never;
|
|
88049
|
+
};
|
|
88050
|
+
requestBody: {
|
|
88051
|
+
content: {
|
|
88052
|
+
"application/json": components["schemas"]["ArchiveTasks"];
|
|
88053
|
+
};
|
|
88054
|
+
};
|
|
88055
|
+
responses: {
|
|
88056
|
+
/** @description OK */
|
|
88057
|
+
200: {
|
|
88058
|
+
headers: {
|
|
88059
|
+
[name: string]: unknown;
|
|
88060
|
+
};
|
|
88061
|
+
content: {
|
|
88062
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87172
88063
|
};
|
|
87173
88064
|
};
|
|
87174
88065
|
/** @description Bad Request */
|
|
@@ -87218,7 +88109,7 @@ export interface operations {
|
|
|
87218
88109
|
};
|
|
87219
88110
|
};
|
|
87220
88111
|
};
|
|
87221
|
-
|
|
88112
|
+
task_views_delete_task: {
|
|
87222
88113
|
parameters: {
|
|
87223
88114
|
query?: never;
|
|
87224
88115
|
header?: never;
|
|
@@ -87242,7 +88133,7 @@ export interface operations {
|
|
|
87242
88133
|
[name: string]: unknown;
|
|
87243
88134
|
};
|
|
87244
88135
|
content: {
|
|
87245
|
-
"application/json": components["schemas"]["
|
|
88136
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87246
88137
|
};
|
|
87247
88138
|
};
|
|
87248
88139
|
/** @description Forbidden */
|
|
@@ -87263,15 +88154,6 @@ export interface operations {
|
|
|
87263
88154
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87264
88155
|
};
|
|
87265
88156
|
};
|
|
87266
|
-
/** @description Conflict */
|
|
87267
|
-
409: {
|
|
87268
|
-
headers: {
|
|
87269
|
-
[name: string]: unknown;
|
|
87270
|
-
};
|
|
87271
|
-
content: {
|
|
87272
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87273
|
-
};
|
|
87274
|
-
};
|
|
87275
88157
|
/** @description Internal Server Error */
|
|
87276
88158
|
500: {
|
|
87277
88159
|
headers: {
|
|
@@ -87283,25 +88165,26 @@ export interface operations {
|
|
|
87283
88165
|
};
|
|
87284
88166
|
};
|
|
87285
88167
|
};
|
|
87286
|
-
|
|
88168
|
+
task_views_create_task: {
|
|
87287
88169
|
parameters: {
|
|
87288
|
-
query?:
|
|
87289
|
-
/** @description Search by comment by content, commenter username */
|
|
87290
|
-
search?: string | null;
|
|
87291
|
-
};
|
|
88170
|
+
query?: never;
|
|
87292
88171
|
header?: never;
|
|
87293
88172
|
path?: never;
|
|
87294
88173
|
cookie?: never;
|
|
87295
88174
|
};
|
|
87296
|
-
requestBody
|
|
88175
|
+
requestBody: {
|
|
88176
|
+
content: {
|
|
88177
|
+
"application/json": components["schemas"]["CreateUpdateTask"];
|
|
88178
|
+
};
|
|
88179
|
+
};
|
|
87297
88180
|
responses: {
|
|
87298
|
-
/** @description
|
|
87299
|
-
|
|
88181
|
+
/** @description Created */
|
|
88182
|
+
201: {
|
|
87300
88183
|
headers: {
|
|
87301
88184
|
[name: string]: unknown;
|
|
87302
88185
|
};
|
|
87303
88186
|
content: {
|
|
87304
|
-
"application/json": components["schemas"]["
|
|
88187
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
87305
88188
|
};
|
|
87306
88189
|
};
|
|
87307
88190
|
/** @description Bad Request */
|
|
@@ -87331,15 +88214,6 @@ export interface operations {
|
|
|
87331
88214
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87332
88215
|
};
|
|
87333
88216
|
};
|
|
87334
|
-
/** @description Conflict */
|
|
87335
|
-
409: {
|
|
87336
|
-
headers: {
|
|
87337
|
-
[name: string]: unknown;
|
|
87338
|
-
};
|
|
87339
|
-
content: {
|
|
87340
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87341
|
-
};
|
|
87342
|
-
};
|
|
87343
88217
|
/** @description Internal Server Error */
|
|
87344
88218
|
500: {
|
|
87345
88219
|
headers: {
|
|
@@ -87351,35 +88225,22 @@ export interface operations {
|
|
|
87351
88225
|
};
|
|
87352
88226
|
};
|
|
87353
88227
|
};
|
|
87354
|
-
|
|
88228
|
+
integration_shopify_views_get_shopify_configuration: {
|
|
87355
88229
|
parameters: {
|
|
87356
88230
|
query?: never;
|
|
87357
88231
|
header?: never;
|
|
87358
88232
|
path?: never;
|
|
87359
88233
|
cookie?: never;
|
|
87360
88234
|
};
|
|
87361
|
-
requestBody
|
|
87362
|
-
content: {
|
|
87363
|
-
"application/json": components["schemas"]["CreateUpdateComment"];
|
|
87364
|
-
};
|
|
87365
|
-
};
|
|
88235
|
+
requestBody?: never;
|
|
87366
88236
|
responses: {
|
|
87367
|
-
/** @description
|
|
87368
|
-
|
|
87369
|
-
headers: {
|
|
87370
|
-
[name: string]: unknown;
|
|
87371
|
-
};
|
|
87372
|
-
content: {
|
|
87373
|
-
"application/json": components["schemas"]["RetrieveComment"];
|
|
87374
|
-
};
|
|
87375
|
-
};
|
|
87376
|
-
/** @description Bad Request */
|
|
87377
|
-
400: {
|
|
88237
|
+
/** @description OK */
|
|
88238
|
+
200: {
|
|
87378
88239
|
headers: {
|
|
87379
88240
|
[name: string]: unknown;
|
|
87380
88241
|
};
|
|
87381
88242
|
content: {
|
|
87382
|
-
"application/json": components["schemas"]["
|
|
88243
|
+
"application/json": components["schemas"]["ShopifyConfigurationSchema"];
|
|
87383
88244
|
};
|
|
87384
88245
|
};
|
|
87385
88246
|
/** @description Forbidden */
|
|
@@ -87400,15 +88261,6 @@ export interface operations {
|
|
|
87400
88261
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87401
88262
|
};
|
|
87402
88263
|
};
|
|
87403
|
-
/** @description Conflict */
|
|
87404
|
-
409: {
|
|
87405
|
-
headers: {
|
|
87406
|
-
[name: string]: unknown;
|
|
87407
|
-
};
|
|
87408
|
-
content: {
|
|
87409
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87410
|
-
};
|
|
87411
|
-
};
|
|
87412
88264
|
/** @description Internal Server Error */
|
|
87413
88265
|
500: {
|
|
87414
88266
|
headers: {
|
|
@@ -87420,25 +88272,26 @@ export interface operations {
|
|
|
87420
88272
|
};
|
|
87421
88273
|
};
|
|
87422
88274
|
};
|
|
87423
|
-
|
|
88275
|
+
integration_shopify_views_create_shopify_configuration: {
|
|
87424
88276
|
parameters: {
|
|
87425
|
-
query?:
|
|
87426
|
-
/** @description Search task by name, description, due date, assigned to name, priority, status name */
|
|
87427
|
-
search?: string | null;
|
|
87428
|
-
};
|
|
88277
|
+
query?: never;
|
|
87429
88278
|
header?: never;
|
|
87430
88279
|
path?: never;
|
|
87431
88280
|
cookie?: never;
|
|
87432
88281
|
};
|
|
87433
|
-
requestBody
|
|
88282
|
+
requestBody: {
|
|
88283
|
+
content: {
|
|
88284
|
+
"application/json": components["schemas"]["ShopifyConfigurationCreateSchema"];
|
|
88285
|
+
};
|
|
88286
|
+
};
|
|
87434
88287
|
responses: {
|
|
87435
|
-
/** @description
|
|
87436
|
-
|
|
88288
|
+
/** @description Created */
|
|
88289
|
+
201: {
|
|
87437
88290
|
headers: {
|
|
87438
88291
|
[name: string]: unknown;
|
|
87439
88292
|
};
|
|
87440
88293
|
content: {
|
|
87441
|
-
"application/json": components["schemas"]["
|
|
88294
|
+
"application/json": components["schemas"]["ShopifyConfigurationSchema"];
|
|
87442
88295
|
};
|
|
87443
88296
|
};
|
|
87444
88297
|
/** @description Bad Request */
|
|
@@ -87459,24 +88312,6 @@ export interface operations {
|
|
|
87459
88312
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87460
88313
|
};
|
|
87461
88314
|
};
|
|
87462
|
-
/** @description Not Found */
|
|
87463
|
-
404: {
|
|
87464
|
-
headers: {
|
|
87465
|
-
[name: string]: unknown;
|
|
87466
|
-
};
|
|
87467
|
-
content: {
|
|
87468
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87469
|
-
};
|
|
87470
|
-
};
|
|
87471
|
-
/** @description Conflict */
|
|
87472
|
-
409: {
|
|
87473
|
-
headers: {
|
|
87474
|
-
[name: string]: unknown;
|
|
87475
|
-
};
|
|
87476
|
-
content: {
|
|
87477
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87478
|
-
};
|
|
87479
|
-
};
|
|
87480
88315
|
/** @description Internal Server Error */
|
|
87481
88316
|
500: {
|
|
87482
88317
|
headers: {
|
|
@@ -87488,35 +88323,21 @@ export interface operations {
|
|
|
87488
88323
|
};
|
|
87489
88324
|
};
|
|
87490
88325
|
};
|
|
87491
|
-
|
|
88326
|
+
integration_shopify_views_delete_shopify_configuration: {
|
|
87492
88327
|
parameters: {
|
|
87493
|
-
query?:
|
|
87494
|
-
/** @description Search task by name, description, due date, assigned to name, priority, status name */
|
|
87495
|
-
search?: string | null;
|
|
87496
|
-
};
|
|
88328
|
+
query?: never;
|
|
87497
88329
|
header?: never;
|
|
87498
88330
|
path?: never;
|
|
87499
88331
|
cookie?: never;
|
|
87500
88332
|
};
|
|
87501
88333
|
requestBody?: never;
|
|
87502
88334
|
responses: {
|
|
87503
|
-
/** @description
|
|
87504
|
-
|
|
87505
|
-
headers: {
|
|
87506
|
-
[name: string]: unknown;
|
|
87507
|
-
};
|
|
87508
|
-
content: {
|
|
87509
|
-
"application/json": components["schemas"]["TasksListSchema"];
|
|
87510
|
-
};
|
|
87511
|
-
};
|
|
87512
|
-
/** @description Bad Request */
|
|
87513
|
-
400: {
|
|
88335
|
+
/** @description No Content */
|
|
88336
|
+
204: {
|
|
87514
88337
|
headers: {
|
|
87515
88338
|
[name: string]: unknown;
|
|
87516
88339
|
};
|
|
87517
|
-
content
|
|
87518
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
87519
|
-
};
|
|
88340
|
+
content?: never;
|
|
87520
88341
|
};
|
|
87521
88342
|
/** @description Forbidden */
|
|
87522
88343
|
403: {
|
|
@@ -87536,15 +88357,6 @@ export interface operations {
|
|
|
87536
88357
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87537
88358
|
};
|
|
87538
88359
|
};
|
|
87539
|
-
/** @description Conflict */
|
|
87540
|
-
409: {
|
|
87541
|
-
headers: {
|
|
87542
|
-
[name: string]: unknown;
|
|
87543
|
-
};
|
|
87544
|
-
content: {
|
|
87545
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87546
|
-
};
|
|
87547
|
-
};
|
|
87548
88360
|
/** @description Internal Server Error */
|
|
87549
88361
|
500: {
|
|
87550
88362
|
headers: {
|
|
@@ -87556,16 +88368,18 @@ export interface operations {
|
|
|
87556
88368
|
};
|
|
87557
88369
|
};
|
|
87558
88370
|
};
|
|
87559
|
-
|
|
88371
|
+
integration_shopify_views_update_shopify_configuration: {
|
|
87560
88372
|
parameters: {
|
|
87561
88373
|
query?: never;
|
|
87562
88374
|
header?: never;
|
|
87563
|
-
path
|
|
87564
|
-
id: string;
|
|
87565
|
-
};
|
|
88375
|
+
path?: never;
|
|
87566
88376
|
cookie?: never;
|
|
87567
88377
|
};
|
|
87568
|
-
requestBody
|
|
88378
|
+
requestBody: {
|
|
88379
|
+
content: {
|
|
88380
|
+
"application/json": components["schemas"]["ShopifyConfigurationUpdateSchema"];
|
|
88381
|
+
};
|
|
88382
|
+
};
|
|
87569
88383
|
responses: {
|
|
87570
88384
|
/** @description OK */
|
|
87571
88385
|
200: {
|
|
@@ -87573,7 +88387,16 @@ export interface operations {
|
|
|
87573
88387
|
[name: string]: unknown;
|
|
87574
88388
|
};
|
|
87575
88389
|
content: {
|
|
87576
|
-
"application/json": components["schemas"]["
|
|
88390
|
+
"application/json": components["schemas"]["ShopifyConfigurationSchema"];
|
|
88391
|
+
};
|
|
88392
|
+
};
|
|
88393
|
+
/** @description Bad Request */
|
|
88394
|
+
400: {
|
|
88395
|
+
headers: {
|
|
88396
|
+
[name: string]: unknown;
|
|
88397
|
+
};
|
|
88398
|
+
content: {
|
|
88399
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87577
88400
|
};
|
|
87578
88401
|
};
|
|
87579
88402
|
/** @description Forbidden */
|
|
@@ -87605,20 +88428,14 @@ export interface operations {
|
|
|
87605
88428
|
};
|
|
87606
88429
|
};
|
|
87607
88430
|
};
|
|
87608
|
-
|
|
88431
|
+
integration_shopify_views_test_shopify_connection: {
|
|
87609
88432
|
parameters: {
|
|
87610
88433
|
query?: never;
|
|
87611
88434
|
header?: never;
|
|
87612
|
-
path
|
|
87613
|
-
id: string;
|
|
87614
|
-
};
|
|
88435
|
+
path?: never;
|
|
87615
88436
|
cookie?: never;
|
|
87616
88437
|
};
|
|
87617
|
-
requestBody
|
|
87618
|
-
content: {
|
|
87619
|
-
"application/json": components["schemas"]["CreateUpdateTask"];
|
|
87620
|
-
};
|
|
87621
|
-
};
|
|
88438
|
+
requestBody?: never;
|
|
87622
88439
|
responses: {
|
|
87623
88440
|
/** @description OK */
|
|
87624
88441
|
200: {
|
|
@@ -87626,16 +88443,7 @@ export interface operations {
|
|
|
87626
88443
|
[name: string]: unknown;
|
|
87627
88444
|
};
|
|
87628
88445
|
content: {
|
|
87629
|
-
"application/json":
|
|
87630
|
-
};
|
|
87631
|
-
};
|
|
87632
|
-
/** @description Bad Request */
|
|
87633
|
-
400: {
|
|
87634
|
-
headers: {
|
|
87635
|
-
[name: string]: unknown;
|
|
87636
|
-
};
|
|
87637
|
-
content: {
|
|
87638
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
88446
|
+
"application/json": Record<string, never>;
|
|
87639
88447
|
};
|
|
87640
88448
|
};
|
|
87641
88449
|
/** @description Forbidden */
|
|
@@ -87656,15 +88464,6 @@ export interface operations {
|
|
|
87656
88464
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87657
88465
|
};
|
|
87658
88466
|
};
|
|
87659
|
-
/** @description Conflict */
|
|
87660
|
-
409: {
|
|
87661
|
-
headers: {
|
|
87662
|
-
[name: string]: unknown;
|
|
87663
|
-
};
|
|
87664
|
-
content: {
|
|
87665
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87666
|
-
};
|
|
87667
|
-
};
|
|
87668
88467
|
/** @description Internal Server Error */
|
|
87669
88468
|
500: {
|
|
87670
88469
|
headers: {
|
|
@@ -87676,20 +88475,14 @@ export interface operations {
|
|
|
87676
88475
|
};
|
|
87677
88476
|
};
|
|
87678
88477
|
};
|
|
87679
|
-
|
|
88478
|
+
integration_settings_views_get_online_store_setting: {
|
|
87680
88479
|
parameters: {
|
|
87681
88480
|
query?: never;
|
|
87682
88481
|
header?: never;
|
|
87683
|
-
path
|
|
87684
|
-
id: string;
|
|
87685
|
-
};
|
|
88482
|
+
path?: never;
|
|
87686
88483
|
cookie?: never;
|
|
87687
88484
|
};
|
|
87688
|
-
requestBody
|
|
87689
|
-
content: {
|
|
87690
|
-
"application/json": components["schemas"]["ArchiveTasks"];
|
|
87691
|
-
};
|
|
87692
|
-
};
|
|
88485
|
+
requestBody?: never;
|
|
87693
88486
|
responses: {
|
|
87694
88487
|
/** @description OK */
|
|
87695
88488
|
200: {
|
|
@@ -87697,16 +88490,7 @@ export interface operations {
|
|
|
87697
88490
|
[name: string]: unknown;
|
|
87698
88491
|
};
|
|
87699
88492
|
content: {
|
|
87700
|
-
"application/json": components["schemas"]["
|
|
87701
|
-
};
|
|
87702
|
-
};
|
|
87703
|
-
/** @description Bad Request */
|
|
87704
|
-
400: {
|
|
87705
|
-
headers: {
|
|
87706
|
-
[name: string]: unknown;
|
|
87707
|
-
};
|
|
87708
|
-
content: {
|
|
87709
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
88493
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
87710
88494
|
};
|
|
87711
88495
|
};
|
|
87712
88496
|
/** @description Forbidden */
|
|
@@ -87727,15 +88511,6 @@ export interface operations {
|
|
|
87727
88511
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87728
88512
|
};
|
|
87729
88513
|
};
|
|
87730
|
-
/** @description Conflict */
|
|
87731
|
-
409: {
|
|
87732
|
-
headers: {
|
|
87733
|
-
[name: string]: unknown;
|
|
87734
|
-
};
|
|
87735
|
-
content: {
|
|
87736
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87737
|
-
};
|
|
87738
|
-
};
|
|
87739
88514
|
/** @description Internal Server Error */
|
|
87740
88515
|
500: {
|
|
87741
88516
|
headers: {
|
|
@@ -87747,23 +88522,27 @@ export interface operations {
|
|
|
87747
88522
|
};
|
|
87748
88523
|
};
|
|
87749
88524
|
};
|
|
87750
|
-
|
|
88525
|
+
integration_settings_views_update_online_store_setting: {
|
|
87751
88526
|
parameters: {
|
|
87752
88527
|
query?: never;
|
|
87753
88528
|
header?: never;
|
|
87754
|
-
path
|
|
87755
|
-
id: string;
|
|
87756
|
-
};
|
|
88529
|
+
path?: never;
|
|
87757
88530
|
cookie?: never;
|
|
87758
88531
|
};
|
|
87759
|
-
requestBody
|
|
88532
|
+
requestBody: {
|
|
88533
|
+
content: {
|
|
88534
|
+
"application/json": components["schemas"]["OnlineStoreSettingCreateUpdateSchema"];
|
|
88535
|
+
};
|
|
88536
|
+
};
|
|
87760
88537
|
responses: {
|
|
87761
|
-
/** @description
|
|
87762
|
-
|
|
88538
|
+
/** @description OK */
|
|
88539
|
+
200: {
|
|
87763
88540
|
headers: {
|
|
87764
88541
|
[name: string]: unknown;
|
|
87765
88542
|
};
|
|
87766
|
-
content
|
|
88543
|
+
content: {
|
|
88544
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
88545
|
+
};
|
|
87767
88546
|
};
|
|
87768
88547
|
/** @description Bad Request */
|
|
87769
88548
|
400: {
|
|
@@ -87771,7 +88550,7 @@ export interface operations {
|
|
|
87771
88550
|
[name: string]: unknown;
|
|
87772
88551
|
};
|
|
87773
88552
|
content: {
|
|
87774
|
-
"application/json": components["schemas"]["
|
|
88553
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87775
88554
|
};
|
|
87776
88555
|
};
|
|
87777
88556
|
/** @description Forbidden */
|
|
@@ -87803,7 +88582,7 @@ export interface operations {
|
|
|
87803
88582
|
};
|
|
87804
88583
|
};
|
|
87805
88584
|
};
|
|
87806
|
-
|
|
88585
|
+
integration_settings_views_create_online_store_setting: {
|
|
87807
88586
|
parameters: {
|
|
87808
88587
|
query?: never;
|
|
87809
88588
|
header?: never;
|
|
@@ -87812,7 +88591,7 @@ export interface operations {
|
|
|
87812
88591
|
};
|
|
87813
88592
|
requestBody: {
|
|
87814
88593
|
content: {
|
|
87815
|
-
"application/json": components["schemas"]["
|
|
88594
|
+
"application/json": components["schemas"]["OnlineStoreSettingCreateUpdateSchema"];
|
|
87816
88595
|
};
|
|
87817
88596
|
};
|
|
87818
88597
|
responses: {
|
|
@@ -87822,7 +88601,7 @@ export interface operations {
|
|
|
87822
88601
|
[name: string]: unknown;
|
|
87823
88602
|
};
|
|
87824
88603
|
content: {
|
|
87825
|
-
"application/json": components["schemas"]["
|
|
88604
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
87826
88605
|
};
|
|
87827
88606
|
};
|
|
87828
88607
|
/** @description Bad Request */
|
|
@@ -87834,24 +88613,6 @@ export interface operations {
|
|
|
87834
88613
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
87835
88614
|
};
|
|
87836
88615
|
};
|
|
87837
|
-
/** @description Forbidden */
|
|
87838
|
-
403: {
|
|
87839
|
-
headers: {
|
|
87840
|
-
[name: string]: unknown;
|
|
87841
|
-
};
|
|
87842
|
-
content: {
|
|
87843
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87844
|
-
};
|
|
87845
|
-
};
|
|
87846
|
-
/** @description Not Found */
|
|
87847
|
-
404: {
|
|
87848
|
-
headers: {
|
|
87849
|
-
[name: string]: unknown;
|
|
87850
|
-
};
|
|
87851
|
-
content: {
|
|
87852
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87853
|
-
};
|
|
87854
|
-
};
|
|
87855
88616
|
/** @description Internal Server Error */
|
|
87856
88617
|
500: {
|
|
87857
88618
|
headers: {
|