@erp-galoper/types 1.0.1118 → 1.0.1119
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 +1003 -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 {
|
|
@@ -49258,6 +49411,193 @@ export interface components {
|
|
|
49258
49411
|
/** Documentid */
|
|
49259
49412
|
documentId: string | null;
|
|
49260
49413
|
};
|
|
49414
|
+
/** ShopInfoSchema */
|
|
49415
|
+
ShopInfoSchema: {
|
|
49416
|
+
/** Success */
|
|
49417
|
+
success: boolean;
|
|
49418
|
+
/** Connectedat */
|
|
49419
|
+
connectedAt?: string | null;
|
|
49420
|
+
/** Shopid */
|
|
49421
|
+
shopId?: number | null;
|
|
49422
|
+
/** Shopname */
|
|
49423
|
+
shopName?: string | null;
|
|
49424
|
+
/** Shopdomain */
|
|
49425
|
+
shopDomain?: string | null;
|
|
49426
|
+
/** Shopemail */
|
|
49427
|
+
shopEmail?: string | null;
|
|
49428
|
+
/** Shopcurrency */
|
|
49429
|
+
shopCurrency?: string | null;
|
|
49430
|
+
/** Shoptimezone */
|
|
49431
|
+
shopTimezone?: string | null;
|
|
49432
|
+
/** Shopcountry */
|
|
49433
|
+
shopCountry?: string | null;
|
|
49434
|
+
/** Shopphone */
|
|
49435
|
+
shopPhone?: string | null;
|
|
49436
|
+
/** Shopaddress */
|
|
49437
|
+
shopAddress?: string | null;
|
|
49438
|
+
/** Shopcity */
|
|
49439
|
+
shopCity?: string | null;
|
|
49440
|
+
/** Shopprovince */
|
|
49441
|
+
shopProvince?: string | null;
|
|
49442
|
+
/** Shopzip */
|
|
49443
|
+
shopZip?: string | null;
|
|
49444
|
+
};
|
|
49445
|
+
/** ShopifyConfigurationSchema */
|
|
49446
|
+
ShopifyConfigurationSchema: {
|
|
49447
|
+
/**
|
|
49448
|
+
* Datecreated
|
|
49449
|
+
* Format: date-time
|
|
49450
|
+
*/
|
|
49451
|
+
dateCreated: string;
|
|
49452
|
+
/** Datemodified */
|
|
49453
|
+
dateModified: string | null;
|
|
49454
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
49455
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
49456
|
+
/**
|
|
49457
|
+
* Id
|
|
49458
|
+
* Format: uuid
|
|
49459
|
+
*/
|
|
49460
|
+
id: string;
|
|
49461
|
+
/** Storename */
|
|
49462
|
+
storeName: string;
|
|
49463
|
+
/** Storedomain */
|
|
49464
|
+
storeDomain: string;
|
|
49465
|
+
/** Apiversion */
|
|
49466
|
+
apiVersion: string;
|
|
49467
|
+
/** Isactive */
|
|
49468
|
+
isActive: boolean;
|
|
49469
|
+
/** Isconnected */
|
|
49470
|
+
isConnected: boolean;
|
|
49471
|
+
/** Lastconnectiontest */
|
|
49472
|
+
lastConnectionTest: string | null;
|
|
49473
|
+
/** Connectionerror */
|
|
49474
|
+
connectionError: string | null;
|
|
49475
|
+
shopInfo?: components["schemas"]["ShopInfoSchema"] | null;
|
|
49476
|
+
};
|
|
49477
|
+
/** ShopifyConfigurationCreateSchema */
|
|
49478
|
+
ShopifyConfigurationCreateSchema: {
|
|
49479
|
+
/**
|
|
49480
|
+
* Storename
|
|
49481
|
+
* @description Human-readable name for the Shopify store
|
|
49482
|
+
*/
|
|
49483
|
+
storeName: string;
|
|
49484
|
+
/**
|
|
49485
|
+
* Storedomain
|
|
49486
|
+
* @description Shopify store domain (e.g., mystore.myshopify.com)
|
|
49487
|
+
*/
|
|
49488
|
+
storeDomain: string;
|
|
49489
|
+
/**
|
|
49490
|
+
* Accesstoken
|
|
49491
|
+
* @description Shopify API access token
|
|
49492
|
+
*/
|
|
49493
|
+
accessToken: string;
|
|
49494
|
+
/**
|
|
49495
|
+
* Apiversion
|
|
49496
|
+
* @description Shopify API version to use
|
|
49497
|
+
* @default 2024-01
|
|
49498
|
+
*/
|
|
49499
|
+
apiVersion: string;
|
|
49500
|
+
};
|
|
49501
|
+
/** ShopifyConfigurationUpdateSchema */
|
|
49502
|
+
ShopifyConfigurationUpdateSchema: {
|
|
49503
|
+
/**
|
|
49504
|
+
* Storename
|
|
49505
|
+
* @description Human-readable name for the Shopify store
|
|
49506
|
+
*/
|
|
49507
|
+
storeName?: string | null;
|
|
49508
|
+
/**
|
|
49509
|
+
* Storedomain
|
|
49510
|
+
* @description Shopify store domain (e.g., mystore.myshopify.com)
|
|
49511
|
+
*/
|
|
49512
|
+
storeDomain?: string | null;
|
|
49513
|
+
/**
|
|
49514
|
+
* Accesstoken
|
|
49515
|
+
* @description Shopify API access token
|
|
49516
|
+
*/
|
|
49517
|
+
accessToken?: string | null;
|
|
49518
|
+
/**
|
|
49519
|
+
* Apiversion
|
|
49520
|
+
* @description Shopify API version to use
|
|
49521
|
+
*/
|
|
49522
|
+
apiVersion?: string | null;
|
|
49523
|
+
};
|
|
49524
|
+
/** OnlineStoreSettingSchema */
|
|
49525
|
+
OnlineStoreSettingSchema: {
|
|
49526
|
+
/**
|
|
49527
|
+
* Datecreated
|
|
49528
|
+
* Format: date-time
|
|
49529
|
+
*/
|
|
49530
|
+
dateCreated: string;
|
|
49531
|
+
/** Datemodified */
|
|
49532
|
+
dateModified: string | null;
|
|
49533
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
49534
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
49535
|
+
/**
|
|
49536
|
+
* Id
|
|
49537
|
+
* Format: uuid
|
|
49538
|
+
*/
|
|
49539
|
+
id: string;
|
|
49540
|
+
platform: components["schemas"]["PlatformSchema"];
|
|
49541
|
+
/** Useonlineshop */
|
|
49542
|
+
useOnlineShop: boolean;
|
|
49543
|
+
/** Autosyncorders */
|
|
49544
|
+
autoSyncOrders: boolean;
|
|
49545
|
+
/** Autosyncitems */
|
|
49546
|
+
autoSyncItems: boolean;
|
|
49547
|
+
/** Autosynccustomers */
|
|
49548
|
+
autoSyncCustomers: boolean;
|
|
49549
|
+
/** Autosyncinventory */
|
|
49550
|
+
autoSyncInventory: boolean;
|
|
49551
|
+
defaultWarehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
49552
|
+
};
|
|
49553
|
+
/**
|
|
49554
|
+
* PlatformSchema
|
|
49555
|
+
* @enum {string}
|
|
49556
|
+
*/
|
|
49557
|
+
PlatformSchema: "shopify" | "wooCommerce";
|
|
49558
|
+
/** OnlineStoreSettingCreateUpdateSchema */
|
|
49559
|
+
OnlineStoreSettingCreateUpdateSchema: {
|
|
49560
|
+
/**
|
|
49561
|
+
* @description E-commerce platform to integrate with
|
|
49562
|
+
* @default shopify
|
|
49563
|
+
*/
|
|
49564
|
+
platform: components["schemas"]["PlatformSchema"];
|
|
49565
|
+
/**
|
|
49566
|
+
* Useonlineshop
|
|
49567
|
+
* @description Enable/disable online shop integration
|
|
49568
|
+
* @default false
|
|
49569
|
+
*/
|
|
49570
|
+
useOnlineShop: boolean;
|
|
49571
|
+
/**
|
|
49572
|
+
* Autosyncorders
|
|
49573
|
+
* @description should be false if use_online_shop is false
|
|
49574
|
+
* @default false
|
|
49575
|
+
*/
|
|
49576
|
+
autoSyncOrders: boolean;
|
|
49577
|
+
/**
|
|
49578
|
+
* Autosyncitems
|
|
49579
|
+
* @description should be false if use_online_shop is false
|
|
49580
|
+
* @default false
|
|
49581
|
+
*/
|
|
49582
|
+
autoSyncItems: boolean;
|
|
49583
|
+
/**
|
|
49584
|
+
* Autosynccustomers
|
|
49585
|
+
* @description should be false if use_online_shop is false
|
|
49586
|
+
* @default false
|
|
49587
|
+
*/
|
|
49588
|
+
autoSyncCustomers: boolean;
|
|
49589
|
+
/**
|
|
49590
|
+
* Autosyncinventory
|
|
49591
|
+
* @description should be false if use_online_shop is false
|
|
49592
|
+
* @default false
|
|
49593
|
+
*/
|
|
49594
|
+
autoSyncInventory: boolean;
|
|
49595
|
+
/**
|
|
49596
|
+
* Defaultwarehouse
|
|
49597
|
+
* @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
|
|
49598
|
+
*/
|
|
49599
|
+
defaultWarehouse?: number;
|
|
49600
|
+
};
|
|
49261
49601
|
};
|
|
49262
49602
|
responses: never;
|
|
49263
49603
|
parameters: never;
|
|
@@ -86582,13 +86922,393 @@ export interface operations {
|
|
|
86582
86922
|
};
|
|
86583
86923
|
};
|
|
86584
86924
|
};
|
|
86585
|
-
task_views_get_status: {
|
|
86925
|
+
task_views_get_status: {
|
|
86926
|
+
parameters: {
|
|
86927
|
+
query?: never;
|
|
86928
|
+
header?: never;
|
|
86929
|
+
path: {
|
|
86930
|
+
id: string;
|
|
86931
|
+
};
|
|
86932
|
+
cookie?: never;
|
|
86933
|
+
};
|
|
86934
|
+
requestBody?: never;
|
|
86935
|
+
responses: {
|
|
86936
|
+
/** @description OK */
|
|
86937
|
+
200: {
|
|
86938
|
+
headers: {
|
|
86939
|
+
[name: string]: unknown;
|
|
86940
|
+
};
|
|
86941
|
+
content: {
|
|
86942
|
+
"application/json": components["schemas"]["RetrieveStatus"];
|
|
86943
|
+
};
|
|
86944
|
+
};
|
|
86945
|
+
/** @description Forbidden */
|
|
86946
|
+
403: {
|
|
86947
|
+
headers: {
|
|
86948
|
+
[name: string]: unknown;
|
|
86949
|
+
};
|
|
86950
|
+
content: {
|
|
86951
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
86952
|
+
};
|
|
86953
|
+
};
|
|
86954
|
+
/** @description Not Found */
|
|
86955
|
+
404: {
|
|
86956
|
+
headers: {
|
|
86957
|
+
[name: string]: unknown;
|
|
86958
|
+
};
|
|
86959
|
+
content: {
|
|
86960
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
86961
|
+
};
|
|
86962
|
+
};
|
|
86963
|
+
/** @description Internal Server Error */
|
|
86964
|
+
500: {
|
|
86965
|
+
headers: {
|
|
86966
|
+
[name: string]: unknown;
|
|
86967
|
+
};
|
|
86968
|
+
content: {
|
|
86969
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
86970
|
+
};
|
|
86971
|
+
};
|
|
86972
|
+
};
|
|
86973
|
+
};
|
|
86974
|
+
task_views_edit_status: {
|
|
86975
|
+
parameters: {
|
|
86976
|
+
query?: never;
|
|
86977
|
+
header?: never;
|
|
86978
|
+
path: {
|
|
86979
|
+
id: string;
|
|
86980
|
+
};
|
|
86981
|
+
cookie?: never;
|
|
86982
|
+
};
|
|
86983
|
+
requestBody: {
|
|
86984
|
+
content: {
|
|
86985
|
+
"application/json": components["schemas"]["CreateUpdateStatus"];
|
|
86986
|
+
};
|
|
86987
|
+
};
|
|
86988
|
+
responses: {
|
|
86989
|
+
/** @description OK */
|
|
86990
|
+
200: {
|
|
86991
|
+
headers: {
|
|
86992
|
+
[name: string]: unknown;
|
|
86993
|
+
};
|
|
86994
|
+
content: {
|
|
86995
|
+
"application/json": components["schemas"]["RetrieveStatus"];
|
|
86996
|
+
};
|
|
86997
|
+
};
|
|
86998
|
+
/** @description Bad Request */
|
|
86999
|
+
400: {
|
|
87000
|
+
headers: {
|
|
87001
|
+
[name: string]: unknown;
|
|
87002
|
+
};
|
|
87003
|
+
content: {
|
|
87004
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87005
|
+
};
|
|
87006
|
+
};
|
|
87007
|
+
/** @description Forbidden */
|
|
87008
|
+
403: {
|
|
87009
|
+
headers: {
|
|
87010
|
+
[name: string]: unknown;
|
|
87011
|
+
};
|
|
87012
|
+
content: {
|
|
87013
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87014
|
+
};
|
|
87015
|
+
};
|
|
87016
|
+
/** @description Not Found */
|
|
87017
|
+
404: {
|
|
87018
|
+
headers: {
|
|
87019
|
+
[name: string]: unknown;
|
|
87020
|
+
};
|
|
87021
|
+
content: {
|
|
87022
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87023
|
+
};
|
|
87024
|
+
};
|
|
87025
|
+
/** @description Conflict */
|
|
87026
|
+
409: {
|
|
87027
|
+
headers: {
|
|
87028
|
+
[name: string]: unknown;
|
|
87029
|
+
};
|
|
87030
|
+
content: {
|
|
87031
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87032
|
+
};
|
|
87033
|
+
};
|
|
87034
|
+
/** @description Internal Server Error */
|
|
87035
|
+
500: {
|
|
87036
|
+
headers: {
|
|
87037
|
+
[name: string]: unknown;
|
|
87038
|
+
};
|
|
87039
|
+
content: {
|
|
87040
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87041
|
+
};
|
|
87042
|
+
};
|
|
87043
|
+
};
|
|
87044
|
+
};
|
|
87045
|
+
task_views_delete_status: {
|
|
87046
|
+
parameters: {
|
|
87047
|
+
query?: never;
|
|
87048
|
+
header?: never;
|
|
87049
|
+
path: {
|
|
87050
|
+
id: string;
|
|
87051
|
+
};
|
|
87052
|
+
cookie?: never;
|
|
87053
|
+
};
|
|
87054
|
+
requestBody?: never;
|
|
87055
|
+
responses: {
|
|
87056
|
+
/** @description No Content */
|
|
87057
|
+
204: {
|
|
87058
|
+
headers: {
|
|
87059
|
+
[name: string]: unknown;
|
|
87060
|
+
};
|
|
87061
|
+
content?: never;
|
|
87062
|
+
};
|
|
87063
|
+
/** @description Bad Request */
|
|
87064
|
+
400: {
|
|
87065
|
+
headers: {
|
|
87066
|
+
[name: string]: unknown;
|
|
87067
|
+
};
|
|
87068
|
+
content: {
|
|
87069
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87070
|
+
};
|
|
87071
|
+
};
|
|
87072
|
+
/** @description Forbidden */
|
|
87073
|
+
403: {
|
|
87074
|
+
headers: {
|
|
87075
|
+
[name: string]: unknown;
|
|
87076
|
+
};
|
|
87077
|
+
content: {
|
|
87078
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87079
|
+
};
|
|
87080
|
+
};
|
|
87081
|
+
/** @description Not Found */
|
|
87082
|
+
404: {
|
|
87083
|
+
headers: {
|
|
87084
|
+
[name: string]: unknown;
|
|
87085
|
+
};
|
|
87086
|
+
content: {
|
|
87087
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87088
|
+
};
|
|
87089
|
+
};
|
|
87090
|
+
/** @description Conflict */
|
|
87091
|
+
409: {
|
|
87092
|
+
headers: {
|
|
87093
|
+
[name: string]: unknown;
|
|
87094
|
+
};
|
|
87095
|
+
content: {
|
|
87096
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87097
|
+
};
|
|
87098
|
+
};
|
|
87099
|
+
/** @description Internal Server Error */
|
|
87100
|
+
500: {
|
|
87101
|
+
headers: {
|
|
87102
|
+
[name: string]: unknown;
|
|
87103
|
+
};
|
|
87104
|
+
content: {
|
|
87105
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87106
|
+
};
|
|
87107
|
+
};
|
|
87108
|
+
};
|
|
87109
|
+
};
|
|
87110
|
+
task_views_get_activity: {
|
|
87111
|
+
parameters: {
|
|
87112
|
+
query?: never;
|
|
87113
|
+
header?: never;
|
|
87114
|
+
path: {
|
|
87115
|
+
id: string;
|
|
87116
|
+
};
|
|
87117
|
+
cookie?: never;
|
|
87118
|
+
};
|
|
87119
|
+
requestBody?: never;
|
|
87120
|
+
responses: {
|
|
87121
|
+
/** @description OK */
|
|
87122
|
+
200: {
|
|
87123
|
+
headers: {
|
|
87124
|
+
[name: string]: unknown;
|
|
87125
|
+
};
|
|
87126
|
+
content: {
|
|
87127
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
87128
|
+
};
|
|
87129
|
+
};
|
|
87130
|
+
/** @description Bad Request */
|
|
87131
|
+
400: {
|
|
87132
|
+
headers: {
|
|
87133
|
+
[name: string]: unknown;
|
|
87134
|
+
};
|
|
87135
|
+
content: {
|
|
87136
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87137
|
+
};
|
|
87138
|
+
};
|
|
87139
|
+
/** @description Forbidden */
|
|
87140
|
+
403: {
|
|
87141
|
+
headers: {
|
|
87142
|
+
[name: string]: unknown;
|
|
87143
|
+
};
|
|
87144
|
+
content: {
|
|
87145
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87146
|
+
};
|
|
87147
|
+
};
|
|
87148
|
+
/** @description Not Found */
|
|
87149
|
+
404: {
|
|
87150
|
+
headers: {
|
|
87151
|
+
[name: string]: unknown;
|
|
87152
|
+
};
|
|
87153
|
+
content: {
|
|
87154
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87155
|
+
};
|
|
87156
|
+
};
|
|
87157
|
+
/** @description Internal Server Error */
|
|
87158
|
+
500: {
|
|
87159
|
+
headers: {
|
|
87160
|
+
[name: string]: unknown;
|
|
87161
|
+
};
|
|
87162
|
+
content: {
|
|
87163
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87164
|
+
};
|
|
87165
|
+
};
|
|
87166
|
+
};
|
|
87167
|
+
};
|
|
87168
|
+
task_views_edit_activity: {
|
|
87169
|
+
parameters: {
|
|
87170
|
+
query?: never;
|
|
87171
|
+
header?: never;
|
|
87172
|
+
path: {
|
|
87173
|
+
id: string;
|
|
87174
|
+
};
|
|
87175
|
+
cookie?: never;
|
|
87176
|
+
};
|
|
87177
|
+
requestBody: {
|
|
87178
|
+
content: {
|
|
87179
|
+
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
87180
|
+
};
|
|
87181
|
+
};
|
|
87182
|
+
responses: {
|
|
87183
|
+
/** @description OK */
|
|
87184
|
+
200: {
|
|
87185
|
+
headers: {
|
|
87186
|
+
[name: string]: unknown;
|
|
87187
|
+
};
|
|
87188
|
+
content: {
|
|
87189
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
87190
|
+
};
|
|
87191
|
+
};
|
|
87192
|
+
/** @description Bad Request */
|
|
87193
|
+
400: {
|
|
87194
|
+
headers: {
|
|
87195
|
+
[name: string]: unknown;
|
|
87196
|
+
};
|
|
87197
|
+
content: {
|
|
87198
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87199
|
+
};
|
|
87200
|
+
};
|
|
87201
|
+
/** @description Forbidden */
|
|
87202
|
+
403: {
|
|
87203
|
+
headers: {
|
|
87204
|
+
[name: string]: unknown;
|
|
87205
|
+
};
|
|
87206
|
+
content: {
|
|
87207
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87208
|
+
};
|
|
87209
|
+
};
|
|
87210
|
+
/** @description Not Found */
|
|
87211
|
+
404: {
|
|
87212
|
+
headers: {
|
|
87213
|
+
[name: string]: unknown;
|
|
87214
|
+
};
|
|
87215
|
+
content: {
|
|
87216
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87217
|
+
};
|
|
87218
|
+
};
|
|
87219
|
+
/** @description Conflict */
|
|
87220
|
+
409: {
|
|
87221
|
+
headers: {
|
|
87222
|
+
[name: string]: unknown;
|
|
87223
|
+
};
|
|
87224
|
+
content: {
|
|
87225
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87226
|
+
};
|
|
87227
|
+
};
|
|
87228
|
+
/** @description Internal Server Error */
|
|
87229
|
+
500: {
|
|
87230
|
+
headers: {
|
|
87231
|
+
[name: string]: unknown;
|
|
87232
|
+
};
|
|
87233
|
+
content: {
|
|
87234
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87235
|
+
};
|
|
87236
|
+
};
|
|
87237
|
+
};
|
|
87238
|
+
};
|
|
87239
|
+
task_views_delete_activity: {
|
|
87240
|
+
parameters: {
|
|
87241
|
+
query?: never;
|
|
87242
|
+
header?: never;
|
|
87243
|
+
path: {
|
|
87244
|
+
id: string;
|
|
87245
|
+
};
|
|
87246
|
+
cookie?: never;
|
|
87247
|
+
};
|
|
87248
|
+
requestBody?: never;
|
|
87249
|
+
responses: {
|
|
87250
|
+
/** @description No Content */
|
|
87251
|
+
204: {
|
|
87252
|
+
headers: {
|
|
87253
|
+
[name: string]: unknown;
|
|
87254
|
+
};
|
|
87255
|
+
content?: never;
|
|
87256
|
+
};
|
|
87257
|
+
/** @description Bad Request */
|
|
87258
|
+
400: {
|
|
87259
|
+
headers: {
|
|
87260
|
+
[name: string]: unknown;
|
|
87261
|
+
};
|
|
87262
|
+
content: {
|
|
87263
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87264
|
+
};
|
|
87265
|
+
};
|
|
87266
|
+
/** @description Forbidden */
|
|
87267
|
+
403: {
|
|
87268
|
+
headers: {
|
|
87269
|
+
[name: string]: unknown;
|
|
87270
|
+
};
|
|
87271
|
+
content: {
|
|
87272
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87273
|
+
};
|
|
87274
|
+
};
|
|
87275
|
+
/** @description Not Found */
|
|
87276
|
+
404: {
|
|
87277
|
+
headers: {
|
|
87278
|
+
[name: string]: unknown;
|
|
87279
|
+
};
|
|
87280
|
+
content: {
|
|
87281
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87282
|
+
};
|
|
87283
|
+
};
|
|
87284
|
+
/** @description Conflict */
|
|
87285
|
+
409: {
|
|
87286
|
+
headers: {
|
|
87287
|
+
[name: string]: unknown;
|
|
87288
|
+
};
|
|
87289
|
+
content: {
|
|
87290
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87291
|
+
};
|
|
87292
|
+
};
|
|
87293
|
+
/** @description Internal Server Error */
|
|
87294
|
+
500: {
|
|
87295
|
+
headers: {
|
|
87296
|
+
[name: string]: unknown;
|
|
87297
|
+
};
|
|
87298
|
+
content: {
|
|
87299
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87300
|
+
};
|
|
87301
|
+
};
|
|
87302
|
+
};
|
|
87303
|
+
};
|
|
87304
|
+
task_views_list_activities: {
|
|
86586
87305
|
parameters: {
|
|
86587
|
-
query?:
|
|
86588
|
-
|
|
86589
|
-
|
|
86590
|
-
id: string;
|
|
87306
|
+
query?: {
|
|
87307
|
+
/** @description Search by activity name, description, assigned to username, status name */
|
|
87308
|
+
search?: string | null;
|
|
86591
87309
|
};
|
|
87310
|
+
header?: never;
|
|
87311
|
+
path?: never;
|
|
86592
87312
|
cookie?: never;
|
|
86593
87313
|
};
|
|
86594
87314
|
requestBody?: never;
|
|
@@ -86599,7 +87319,16 @@ export interface operations {
|
|
|
86599
87319
|
[name: string]: unknown;
|
|
86600
87320
|
};
|
|
86601
87321
|
content: {
|
|
86602
|
-
"application/json": components["schemas"]["
|
|
87322
|
+
"application/json": components["schemas"]["ActivitiesListSchema"];
|
|
87323
|
+
};
|
|
87324
|
+
};
|
|
87325
|
+
/** @description Bad Request */
|
|
87326
|
+
400: {
|
|
87327
|
+
headers: {
|
|
87328
|
+
[name: string]: unknown;
|
|
87329
|
+
};
|
|
87330
|
+
content: {
|
|
87331
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
86603
87332
|
};
|
|
86604
87333
|
};
|
|
86605
87334
|
/** @description Forbidden */
|
|
@@ -86620,6 +87349,15 @@ export interface operations {
|
|
|
86620
87349
|
"application/json": components["schemas"]["MessageResponse"];
|
|
86621
87350
|
};
|
|
86622
87351
|
};
|
|
87352
|
+
/** @description Conflict */
|
|
87353
|
+
409: {
|
|
87354
|
+
headers: {
|
|
87355
|
+
[name: string]: unknown;
|
|
87356
|
+
};
|
|
87357
|
+
content: {
|
|
87358
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87359
|
+
};
|
|
87360
|
+
};
|
|
86623
87361
|
/** @description Internal Server Error */
|
|
86624
87362
|
500: {
|
|
86625
87363
|
headers: {
|
|
@@ -86631,28 +87369,26 @@ export interface operations {
|
|
|
86631
87369
|
};
|
|
86632
87370
|
};
|
|
86633
87371
|
};
|
|
86634
|
-
|
|
87372
|
+
task_views_create_activity: {
|
|
86635
87373
|
parameters: {
|
|
86636
87374
|
query?: never;
|
|
86637
87375
|
header?: never;
|
|
86638
|
-
path
|
|
86639
|
-
id: string;
|
|
86640
|
-
};
|
|
87376
|
+
path?: never;
|
|
86641
87377
|
cookie?: never;
|
|
86642
87378
|
};
|
|
86643
87379
|
requestBody: {
|
|
86644
87380
|
content: {
|
|
86645
|
-
"application/json": components["schemas"]["
|
|
87381
|
+
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
86646
87382
|
};
|
|
86647
87383
|
};
|
|
86648
87384
|
responses: {
|
|
86649
|
-
/** @description
|
|
86650
|
-
|
|
87385
|
+
/** @description Created */
|
|
87386
|
+
201: {
|
|
86651
87387
|
headers: {
|
|
86652
87388
|
[name: string]: unknown;
|
|
86653
87389
|
};
|
|
86654
87390
|
content: {
|
|
86655
|
-
"application/json": components["schemas"]["
|
|
87391
|
+
"application/json": components["schemas"]["RetrieveActivity"];
|
|
86656
87392
|
};
|
|
86657
87393
|
};
|
|
86658
87394
|
/** @description Bad Request */
|
|
@@ -86702,7 +87438,7 @@ export interface operations {
|
|
|
86702
87438
|
};
|
|
86703
87439
|
};
|
|
86704
87440
|
};
|
|
86705
|
-
|
|
87441
|
+
task_views_get_comment: {
|
|
86706
87442
|
parameters: {
|
|
86707
87443
|
query?: never;
|
|
86708
87444
|
header?: never;
|
|
@@ -86713,12 +87449,67 @@ export interface operations {
|
|
|
86713
87449
|
};
|
|
86714
87450
|
requestBody?: never;
|
|
86715
87451
|
responses: {
|
|
86716
|
-
/** @description
|
|
86717
|
-
|
|
87452
|
+
/** @description OK */
|
|
87453
|
+
200: {
|
|
86718
87454
|
headers: {
|
|
86719
87455
|
[name: string]: unknown;
|
|
86720
87456
|
};
|
|
86721
|
-
content
|
|
87457
|
+
content: {
|
|
87458
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
87459
|
+
};
|
|
87460
|
+
};
|
|
87461
|
+
/** @description Forbidden */
|
|
87462
|
+
403: {
|
|
87463
|
+
headers: {
|
|
87464
|
+
[name: string]: unknown;
|
|
87465
|
+
};
|
|
87466
|
+
content: {
|
|
87467
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87468
|
+
};
|
|
87469
|
+
};
|
|
87470
|
+
/** @description Not Found */
|
|
87471
|
+
404: {
|
|
87472
|
+
headers: {
|
|
87473
|
+
[name: string]: unknown;
|
|
87474
|
+
};
|
|
87475
|
+
content: {
|
|
87476
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87477
|
+
};
|
|
87478
|
+
};
|
|
87479
|
+
/** @description Internal Server Error */
|
|
87480
|
+
500: {
|
|
87481
|
+
headers: {
|
|
87482
|
+
[name: string]: unknown;
|
|
87483
|
+
};
|
|
87484
|
+
content: {
|
|
87485
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87486
|
+
};
|
|
87487
|
+
};
|
|
87488
|
+
};
|
|
87489
|
+
};
|
|
87490
|
+
task_views_edit_comment: {
|
|
87491
|
+
parameters: {
|
|
87492
|
+
query?: never;
|
|
87493
|
+
header?: never;
|
|
87494
|
+
path: {
|
|
87495
|
+
id: string;
|
|
87496
|
+
};
|
|
87497
|
+
cookie?: never;
|
|
87498
|
+
};
|
|
87499
|
+
requestBody: {
|
|
87500
|
+
content: {
|
|
87501
|
+
"application/json": components["schemas"]["CreateUpdateComment"];
|
|
87502
|
+
};
|
|
87503
|
+
};
|
|
87504
|
+
responses: {
|
|
87505
|
+
/** @description OK */
|
|
87506
|
+
200: {
|
|
87507
|
+
headers: {
|
|
87508
|
+
[name: string]: unknown;
|
|
87509
|
+
};
|
|
87510
|
+
content: {
|
|
87511
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
87512
|
+
};
|
|
86722
87513
|
};
|
|
86723
87514
|
/** @description Bad Request */
|
|
86724
87515
|
400: {
|
|
@@ -86767,7 +87558,7 @@ export interface operations {
|
|
|
86767
87558
|
};
|
|
86768
87559
|
};
|
|
86769
87560
|
};
|
|
86770
|
-
|
|
87561
|
+
task_views_delete_comment: {
|
|
86771
87562
|
parameters: {
|
|
86772
87563
|
query?: never;
|
|
86773
87564
|
header?: never;
|
|
@@ -86778,14 +87569,12 @@ export interface operations {
|
|
|
86778
87569
|
};
|
|
86779
87570
|
requestBody?: never;
|
|
86780
87571
|
responses: {
|
|
86781
|
-
/** @description
|
|
86782
|
-
|
|
87572
|
+
/** @description No Content */
|
|
87573
|
+
204: {
|
|
86783
87574
|
headers: {
|
|
86784
87575
|
[name: string]: unknown;
|
|
86785
87576
|
};
|
|
86786
|
-
content
|
|
86787
|
-
"application/json": components["schemas"]["RetrieveActivity"];
|
|
86788
|
-
};
|
|
87577
|
+
content?: never;
|
|
86789
87578
|
};
|
|
86790
87579
|
/** @description Bad Request */
|
|
86791
87580
|
400: {
|
|
@@ -86814,6 +87603,15 @@ export interface operations {
|
|
|
86814
87603
|
"application/json": components["schemas"]["MessageResponse"];
|
|
86815
87604
|
};
|
|
86816
87605
|
};
|
|
87606
|
+
/** @description Conflict */
|
|
87607
|
+
409: {
|
|
87608
|
+
headers: {
|
|
87609
|
+
[name: string]: unknown;
|
|
87610
|
+
};
|
|
87611
|
+
content: {
|
|
87612
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87613
|
+
};
|
|
87614
|
+
};
|
|
86817
87615
|
/** @description Internal Server Error */
|
|
86818
87616
|
500: {
|
|
86819
87617
|
headers: {
|
|
@@ -86825,20 +87623,17 @@ export interface operations {
|
|
|
86825
87623
|
};
|
|
86826
87624
|
};
|
|
86827
87625
|
};
|
|
86828
|
-
|
|
87626
|
+
task_views_list_comments: {
|
|
86829
87627
|
parameters: {
|
|
86830
|
-
query?:
|
|
86831
|
-
|
|
86832
|
-
|
|
86833
|
-
id: string;
|
|
87628
|
+
query?: {
|
|
87629
|
+
/** @description Search by comment by content, commenter username */
|
|
87630
|
+
search?: string | null;
|
|
86834
87631
|
};
|
|
87632
|
+
header?: never;
|
|
87633
|
+
path?: never;
|
|
86835
87634
|
cookie?: never;
|
|
86836
87635
|
};
|
|
86837
|
-
requestBody
|
|
86838
|
-
content: {
|
|
86839
|
-
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
86840
|
-
};
|
|
86841
|
-
};
|
|
87636
|
+
requestBody?: never;
|
|
86842
87637
|
responses: {
|
|
86843
87638
|
/** @description OK */
|
|
86844
87639
|
200: {
|
|
@@ -86846,7 +87641,7 @@ export interface operations {
|
|
|
86846
87641
|
[name: string]: unknown;
|
|
86847
87642
|
};
|
|
86848
87643
|
content: {
|
|
86849
|
-
"application/json": components["schemas"]["
|
|
87644
|
+
"application/json": components["schemas"]["CommentsListSchema"];
|
|
86850
87645
|
};
|
|
86851
87646
|
};
|
|
86852
87647
|
/** @description Bad Request */
|
|
@@ -86896,23 +87691,27 @@ export interface operations {
|
|
|
86896
87691
|
};
|
|
86897
87692
|
};
|
|
86898
87693
|
};
|
|
86899
|
-
|
|
87694
|
+
task_views_create_comment: {
|
|
86900
87695
|
parameters: {
|
|
86901
87696
|
query?: never;
|
|
86902
87697
|
header?: never;
|
|
86903
|
-
path
|
|
86904
|
-
id: string;
|
|
86905
|
-
};
|
|
87698
|
+
path?: never;
|
|
86906
87699
|
cookie?: never;
|
|
86907
87700
|
};
|
|
86908
|
-
requestBody
|
|
87701
|
+
requestBody: {
|
|
87702
|
+
content: {
|
|
87703
|
+
"application/json": components["schemas"]["CreateUpdateComment"];
|
|
87704
|
+
};
|
|
87705
|
+
};
|
|
86909
87706
|
responses: {
|
|
86910
|
-
/** @description
|
|
86911
|
-
|
|
87707
|
+
/** @description Created */
|
|
87708
|
+
201: {
|
|
86912
87709
|
headers: {
|
|
86913
87710
|
[name: string]: unknown;
|
|
86914
87711
|
};
|
|
86915
|
-
content
|
|
87712
|
+
content: {
|
|
87713
|
+
"application/json": components["schemas"]["RetrieveComment"];
|
|
87714
|
+
};
|
|
86916
87715
|
};
|
|
86917
87716
|
/** @description Bad Request */
|
|
86918
87717
|
400: {
|
|
@@ -86961,10 +87760,10 @@ export interface operations {
|
|
|
86961
87760
|
};
|
|
86962
87761
|
};
|
|
86963
87762
|
};
|
|
86964
|
-
|
|
87763
|
+
task_views_list_tasks_grouped_by_status: {
|
|
86965
87764
|
parameters: {
|
|
86966
87765
|
query?: {
|
|
86967
|
-
/** @description Search by
|
|
87766
|
+
/** @description Search task by name, description, due date, assigned to name, priority, status name */
|
|
86968
87767
|
search?: string | null;
|
|
86969
87768
|
};
|
|
86970
87769
|
header?: never;
|
|
@@ -86979,7 +87778,7 @@ export interface operations {
|
|
|
86979
87778
|
[name: string]: unknown;
|
|
86980
87779
|
};
|
|
86981
87780
|
content: {
|
|
86982
|
-
"application/json": components["schemas"]["
|
|
87781
|
+
"application/json": components["schemas"]["GroupedTasksByStatusListSchema"];
|
|
86983
87782
|
};
|
|
86984
87783
|
};
|
|
86985
87784
|
/** @description Bad Request */
|
|
@@ -87029,26 +87828,25 @@ export interface operations {
|
|
|
87029
87828
|
};
|
|
87030
87829
|
};
|
|
87031
87830
|
};
|
|
87032
|
-
|
|
87831
|
+
task_views_list_tasks_flat: {
|
|
87033
87832
|
parameters: {
|
|
87034
|
-
query?:
|
|
87833
|
+
query?: {
|
|
87834
|
+
/** @description Search task by name, description, due date, assigned to name, priority, status name */
|
|
87835
|
+
search?: string | null;
|
|
87836
|
+
};
|
|
87035
87837
|
header?: never;
|
|
87036
87838
|
path?: never;
|
|
87037
87839
|
cookie?: never;
|
|
87038
87840
|
};
|
|
87039
|
-
requestBody
|
|
87040
|
-
content: {
|
|
87041
|
-
"application/json": components["schemas"]["CreateUpdateActivity"];
|
|
87042
|
-
};
|
|
87043
|
-
};
|
|
87841
|
+
requestBody?: never;
|
|
87044
87842
|
responses: {
|
|
87045
|
-
/** @description
|
|
87046
|
-
|
|
87843
|
+
/** @description OK */
|
|
87844
|
+
200: {
|
|
87047
87845
|
headers: {
|
|
87048
87846
|
[name: string]: unknown;
|
|
87049
87847
|
};
|
|
87050
87848
|
content: {
|
|
87051
|
-
"application/json": components["schemas"]["
|
|
87849
|
+
"application/json": components["schemas"]["TasksListSchema"];
|
|
87052
87850
|
};
|
|
87053
87851
|
};
|
|
87054
87852
|
/** @description Bad Request */
|
|
@@ -87098,7 +87896,7 @@ export interface operations {
|
|
|
87098
87896
|
};
|
|
87099
87897
|
};
|
|
87100
87898
|
};
|
|
87101
|
-
|
|
87899
|
+
task_views_get_task: {
|
|
87102
87900
|
parameters: {
|
|
87103
87901
|
query?: never;
|
|
87104
87902
|
header?: never;
|
|
@@ -87115,7 +87913,7 @@ export interface operations {
|
|
|
87115
87913
|
[name: string]: unknown;
|
|
87116
87914
|
};
|
|
87117
87915
|
content: {
|
|
87118
|
-
"application/json": components["schemas"]["
|
|
87916
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
87119
87917
|
};
|
|
87120
87918
|
};
|
|
87121
87919
|
/** @description Forbidden */
|
|
@@ -87147,7 +87945,7 @@ export interface operations {
|
|
|
87147
87945
|
};
|
|
87148
87946
|
};
|
|
87149
87947
|
};
|
|
87150
|
-
|
|
87948
|
+
task_views_update_task: {
|
|
87151
87949
|
parameters: {
|
|
87152
87950
|
query?: never;
|
|
87153
87951
|
header?: never;
|
|
@@ -87158,7 +87956,7 @@ export interface operations {
|
|
|
87158
87956
|
};
|
|
87159
87957
|
requestBody: {
|
|
87160
87958
|
content: {
|
|
87161
|
-
"application/json": components["schemas"]["
|
|
87959
|
+
"application/json": components["schemas"]["CreateUpdateTask"];
|
|
87162
87960
|
};
|
|
87163
87961
|
};
|
|
87164
87962
|
responses: {
|
|
@@ -87168,7 +87966,78 @@ export interface operations {
|
|
|
87168
87966
|
[name: string]: unknown;
|
|
87169
87967
|
};
|
|
87170
87968
|
content: {
|
|
87171
|
-
"application/json": components["schemas"]["
|
|
87969
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
87970
|
+
};
|
|
87971
|
+
};
|
|
87972
|
+
/** @description Bad Request */
|
|
87973
|
+
400: {
|
|
87974
|
+
headers: {
|
|
87975
|
+
[name: string]: unknown;
|
|
87976
|
+
};
|
|
87977
|
+
content: {
|
|
87978
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87979
|
+
};
|
|
87980
|
+
};
|
|
87981
|
+
/** @description Forbidden */
|
|
87982
|
+
403: {
|
|
87983
|
+
headers: {
|
|
87984
|
+
[name: string]: unknown;
|
|
87985
|
+
};
|
|
87986
|
+
content: {
|
|
87987
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87988
|
+
};
|
|
87989
|
+
};
|
|
87990
|
+
/** @description Not Found */
|
|
87991
|
+
404: {
|
|
87992
|
+
headers: {
|
|
87993
|
+
[name: string]: unknown;
|
|
87994
|
+
};
|
|
87995
|
+
content: {
|
|
87996
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87997
|
+
};
|
|
87998
|
+
};
|
|
87999
|
+
/** @description Conflict */
|
|
88000
|
+
409: {
|
|
88001
|
+
headers: {
|
|
88002
|
+
[name: string]: unknown;
|
|
88003
|
+
};
|
|
88004
|
+
content: {
|
|
88005
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
88006
|
+
};
|
|
88007
|
+
};
|
|
88008
|
+
/** @description Internal Server Error */
|
|
88009
|
+
500: {
|
|
88010
|
+
headers: {
|
|
88011
|
+
[name: string]: unknown;
|
|
88012
|
+
};
|
|
88013
|
+
content: {
|
|
88014
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
88015
|
+
};
|
|
88016
|
+
};
|
|
88017
|
+
};
|
|
88018
|
+
};
|
|
88019
|
+
task_views_update_task_archive: {
|
|
88020
|
+
parameters: {
|
|
88021
|
+
query?: never;
|
|
88022
|
+
header?: never;
|
|
88023
|
+
path: {
|
|
88024
|
+
id: string;
|
|
88025
|
+
};
|
|
88026
|
+
cookie?: never;
|
|
88027
|
+
};
|
|
88028
|
+
requestBody: {
|
|
88029
|
+
content: {
|
|
88030
|
+
"application/json": components["schemas"]["ArchiveTasks"];
|
|
88031
|
+
};
|
|
88032
|
+
};
|
|
88033
|
+
responses: {
|
|
88034
|
+
/** @description OK */
|
|
88035
|
+
200: {
|
|
88036
|
+
headers: {
|
|
88037
|
+
[name: string]: unknown;
|
|
88038
|
+
};
|
|
88039
|
+
content: {
|
|
88040
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87172
88041
|
};
|
|
87173
88042
|
};
|
|
87174
88043
|
/** @description Bad Request */
|
|
@@ -87218,7 +88087,7 @@ export interface operations {
|
|
|
87218
88087
|
};
|
|
87219
88088
|
};
|
|
87220
88089
|
};
|
|
87221
|
-
|
|
88090
|
+
task_views_delete_task: {
|
|
87222
88091
|
parameters: {
|
|
87223
88092
|
query?: never;
|
|
87224
88093
|
header?: never;
|
|
@@ -87242,7 +88111,7 @@ export interface operations {
|
|
|
87242
88111
|
[name: string]: unknown;
|
|
87243
88112
|
};
|
|
87244
88113
|
content: {
|
|
87245
|
-
"application/json": components["schemas"]["
|
|
88114
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
87246
88115
|
};
|
|
87247
88116
|
};
|
|
87248
88117
|
/** @description Forbidden */
|
|
@@ -87263,15 +88132,6 @@ export interface operations {
|
|
|
87263
88132
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87264
88133
|
};
|
|
87265
88134
|
};
|
|
87266
|
-
/** @description Conflict */
|
|
87267
|
-
409: {
|
|
87268
|
-
headers: {
|
|
87269
|
-
[name: string]: unknown;
|
|
87270
|
-
};
|
|
87271
|
-
content: {
|
|
87272
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87273
|
-
};
|
|
87274
|
-
};
|
|
87275
88135
|
/** @description Internal Server Error */
|
|
87276
88136
|
500: {
|
|
87277
88137
|
headers: {
|
|
@@ -87283,25 +88143,26 @@ export interface operations {
|
|
|
87283
88143
|
};
|
|
87284
88144
|
};
|
|
87285
88145
|
};
|
|
87286
|
-
|
|
88146
|
+
task_views_create_task: {
|
|
87287
88147
|
parameters: {
|
|
87288
|
-
query?:
|
|
87289
|
-
/** @description Search by comment by content, commenter username */
|
|
87290
|
-
search?: string | null;
|
|
87291
|
-
};
|
|
88148
|
+
query?: never;
|
|
87292
88149
|
header?: never;
|
|
87293
88150
|
path?: never;
|
|
87294
88151
|
cookie?: never;
|
|
87295
88152
|
};
|
|
87296
|
-
requestBody
|
|
88153
|
+
requestBody: {
|
|
88154
|
+
content: {
|
|
88155
|
+
"application/json": components["schemas"]["CreateUpdateTask"];
|
|
88156
|
+
};
|
|
88157
|
+
};
|
|
87297
88158
|
responses: {
|
|
87298
|
-
/** @description
|
|
87299
|
-
|
|
88159
|
+
/** @description Created */
|
|
88160
|
+
201: {
|
|
87300
88161
|
headers: {
|
|
87301
88162
|
[name: string]: unknown;
|
|
87302
88163
|
};
|
|
87303
88164
|
content: {
|
|
87304
|
-
"application/json": components["schemas"]["
|
|
88165
|
+
"application/json": components["schemas"]["RetrieveTask"];
|
|
87305
88166
|
};
|
|
87306
88167
|
};
|
|
87307
88168
|
/** @description Bad Request */
|
|
@@ -87331,15 +88192,6 @@ export interface operations {
|
|
|
87331
88192
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87332
88193
|
};
|
|
87333
88194
|
};
|
|
87334
|
-
/** @description Conflict */
|
|
87335
|
-
409: {
|
|
87336
|
-
headers: {
|
|
87337
|
-
[name: string]: unknown;
|
|
87338
|
-
};
|
|
87339
|
-
content: {
|
|
87340
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87341
|
-
};
|
|
87342
|
-
};
|
|
87343
88195
|
/** @description Internal Server Error */
|
|
87344
88196
|
500: {
|
|
87345
88197
|
headers: {
|
|
@@ -87351,35 +88203,22 @@ export interface operations {
|
|
|
87351
88203
|
};
|
|
87352
88204
|
};
|
|
87353
88205
|
};
|
|
87354
|
-
|
|
88206
|
+
integration_shopify_views_get_shopify_configuration: {
|
|
87355
88207
|
parameters: {
|
|
87356
88208
|
query?: never;
|
|
87357
88209
|
header?: never;
|
|
87358
88210
|
path?: never;
|
|
87359
88211
|
cookie?: never;
|
|
87360
88212
|
};
|
|
87361
|
-
requestBody
|
|
87362
|
-
content: {
|
|
87363
|
-
"application/json": components["schemas"]["CreateUpdateComment"];
|
|
87364
|
-
};
|
|
87365
|
-
};
|
|
88213
|
+
requestBody?: never;
|
|
87366
88214
|
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: {
|
|
88215
|
+
/** @description OK */
|
|
88216
|
+
200: {
|
|
87378
88217
|
headers: {
|
|
87379
88218
|
[name: string]: unknown;
|
|
87380
88219
|
};
|
|
87381
88220
|
content: {
|
|
87382
|
-
"application/json": components["schemas"]["
|
|
88221
|
+
"application/json": components["schemas"]["ShopifyConfigurationSchema"];
|
|
87383
88222
|
};
|
|
87384
88223
|
};
|
|
87385
88224
|
/** @description Forbidden */
|
|
@@ -87400,15 +88239,6 @@ export interface operations {
|
|
|
87400
88239
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87401
88240
|
};
|
|
87402
88241
|
};
|
|
87403
|
-
/** @description Conflict */
|
|
87404
|
-
409: {
|
|
87405
|
-
headers: {
|
|
87406
|
-
[name: string]: unknown;
|
|
87407
|
-
};
|
|
87408
|
-
content: {
|
|
87409
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87410
|
-
};
|
|
87411
|
-
};
|
|
87412
88242
|
/** @description Internal Server Error */
|
|
87413
88243
|
500: {
|
|
87414
88244
|
headers: {
|
|
@@ -87420,25 +88250,26 @@ export interface operations {
|
|
|
87420
88250
|
};
|
|
87421
88251
|
};
|
|
87422
88252
|
};
|
|
87423
|
-
|
|
88253
|
+
integration_shopify_views_create_shopify_configuration: {
|
|
87424
88254
|
parameters: {
|
|
87425
|
-
query?:
|
|
87426
|
-
/** @description Search task by name, description, due date, assigned to name, priority, status name */
|
|
87427
|
-
search?: string | null;
|
|
87428
|
-
};
|
|
88255
|
+
query?: never;
|
|
87429
88256
|
header?: never;
|
|
87430
88257
|
path?: never;
|
|
87431
88258
|
cookie?: never;
|
|
87432
88259
|
};
|
|
87433
|
-
requestBody
|
|
88260
|
+
requestBody: {
|
|
88261
|
+
content: {
|
|
88262
|
+
"application/json": components["schemas"]["ShopifyConfigurationCreateSchema"];
|
|
88263
|
+
};
|
|
88264
|
+
};
|
|
87434
88265
|
responses: {
|
|
87435
|
-
/** @description
|
|
87436
|
-
|
|
88266
|
+
/** @description Created */
|
|
88267
|
+
201: {
|
|
87437
88268
|
headers: {
|
|
87438
88269
|
[name: string]: unknown;
|
|
87439
88270
|
};
|
|
87440
88271
|
content: {
|
|
87441
|
-
"application/json": components["schemas"]["
|
|
88272
|
+
"application/json": components["schemas"]["ShopifyConfigurationSchema"];
|
|
87442
88273
|
};
|
|
87443
88274
|
};
|
|
87444
88275
|
/** @description Bad Request */
|
|
@@ -87459,24 +88290,6 @@ export interface operations {
|
|
|
87459
88290
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87460
88291
|
};
|
|
87461
88292
|
};
|
|
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
88293
|
/** @description Internal Server Error */
|
|
87481
88294
|
500: {
|
|
87482
88295
|
headers: {
|
|
@@ -87488,35 +88301,21 @@ export interface operations {
|
|
|
87488
88301
|
};
|
|
87489
88302
|
};
|
|
87490
88303
|
};
|
|
87491
|
-
|
|
88304
|
+
integration_shopify_views_delete_shopify_configuration: {
|
|
87492
88305
|
parameters: {
|
|
87493
|
-
query?:
|
|
87494
|
-
/** @description Search task by name, description, due date, assigned to name, priority, status name */
|
|
87495
|
-
search?: string | null;
|
|
87496
|
-
};
|
|
88306
|
+
query?: never;
|
|
87497
88307
|
header?: never;
|
|
87498
88308
|
path?: never;
|
|
87499
88309
|
cookie?: never;
|
|
87500
88310
|
};
|
|
87501
88311
|
requestBody?: never;
|
|
87502
88312
|
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: {
|
|
88313
|
+
/** @description No Content */
|
|
88314
|
+
204: {
|
|
87514
88315
|
headers: {
|
|
87515
88316
|
[name: string]: unknown;
|
|
87516
88317
|
};
|
|
87517
|
-
content
|
|
87518
|
-
"application/json": components["schemas"]["ErrorMessages"];
|
|
87519
|
-
};
|
|
88318
|
+
content?: never;
|
|
87520
88319
|
};
|
|
87521
88320
|
/** @description Forbidden */
|
|
87522
88321
|
403: {
|
|
@@ -87536,15 +88335,6 @@ export interface operations {
|
|
|
87536
88335
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87537
88336
|
};
|
|
87538
88337
|
};
|
|
87539
|
-
/** @description Conflict */
|
|
87540
|
-
409: {
|
|
87541
|
-
headers: {
|
|
87542
|
-
[name: string]: unknown;
|
|
87543
|
-
};
|
|
87544
|
-
content: {
|
|
87545
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87546
|
-
};
|
|
87547
|
-
};
|
|
87548
88338
|
/** @description Internal Server Error */
|
|
87549
88339
|
500: {
|
|
87550
88340
|
headers: {
|
|
@@ -87556,16 +88346,18 @@ export interface operations {
|
|
|
87556
88346
|
};
|
|
87557
88347
|
};
|
|
87558
88348
|
};
|
|
87559
|
-
|
|
88349
|
+
integration_shopify_views_update_shopify_configuration: {
|
|
87560
88350
|
parameters: {
|
|
87561
88351
|
query?: never;
|
|
87562
88352
|
header?: never;
|
|
87563
|
-
path
|
|
87564
|
-
id: string;
|
|
87565
|
-
};
|
|
88353
|
+
path?: never;
|
|
87566
88354
|
cookie?: never;
|
|
87567
88355
|
};
|
|
87568
|
-
requestBody
|
|
88356
|
+
requestBody: {
|
|
88357
|
+
content: {
|
|
88358
|
+
"application/json": components["schemas"]["ShopifyConfigurationUpdateSchema"];
|
|
88359
|
+
};
|
|
88360
|
+
};
|
|
87569
88361
|
responses: {
|
|
87570
88362
|
/** @description OK */
|
|
87571
88363
|
200: {
|
|
@@ -87573,7 +88365,16 @@ export interface operations {
|
|
|
87573
88365
|
[name: string]: unknown;
|
|
87574
88366
|
};
|
|
87575
88367
|
content: {
|
|
87576
|
-
"application/json": components["schemas"]["
|
|
88368
|
+
"application/json": components["schemas"]["ShopifyConfigurationSchema"];
|
|
88369
|
+
};
|
|
88370
|
+
};
|
|
88371
|
+
/** @description Bad Request */
|
|
88372
|
+
400: {
|
|
88373
|
+
headers: {
|
|
88374
|
+
[name: string]: unknown;
|
|
88375
|
+
};
|
|
88376
|
+
content: {
|
|
88377
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87577
88378
|
};
|
|
87578
88379
|
};
|
|
87579
88380
|
/** @description Forbidden */
|
|
@@ -87605,20 +88406,14 @@ export interface operations {
|
|
|
87605
88406
|
};
|
|
87606
88407
|
};
|
|
87607
88408
|
};
|
|
87608
|
-
|
|
88409
|
+
integration_shopify_views_test_shopify_connection: {
|
|
87609
88410
|
parameters: {
|
|
87610
88411
|
query?: never;
|
|
87611
88412
|
header?: never;
|
|
87612
|
-
path
|
|
87613
|
-
id: string;
|
|
87614
|
-
};
|
|
88413
|
+
path?: never;
|
|
87615
88414
|
cookie?: never;
|
|
87616
88415
|
};
|
|
87617
|
-
requestBody
|
|
87618
|
-
content: {
|
|
87619
|
-
"application/json": components["schemas"]["CreateUpdateTask"];
|
|
87620
|
-
};
|
|
87621
|
-
};
|
|
88416
|
+
requestBody?: never;
|
|
87622
88417
|
responses: {
|
|
87623
88418
|
/** @description OK */
|
|
87624
88419
|
200: {
|
|
@@ -87626,16 +88421,7 @@ export interface operations {
|
|
|
87626
88421
|
[name: string]: unknown;
|
|
87627
88422
|
};
|
|
87628
88423
|
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"];
|
|
88424
|
+
"application/json": Record<string, never>;
|
|
87639
88425
|
};
|
|
87640
88426
|
};
|
|
87641
88427
|
/** @description Forbidden */
|
|
@@ -87656,15 +88442,6 @@ export interface operations {
|
|
|
87656
88442
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87657
88443
|
};
|
|
87658
88444
|
};
|
|
87659
|
-
/** @description Conflict */
|
|
87660
|
-
409: {
|
|
87661
|
-
headers: {
|
|
87662
|
-
[name: string]: unknown;
|
|
87663
|
-
};
|
|
87664
|
-
content: {
|
|
87665
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87666
|
-
};
|
|
87667
|
-
};
|
|
87668
88445
|
/** @description Internal Server Error */
|
|
87669
88446
|
500: {
|
|
87670
88447
|
headers: {
|
|
@@ -87676,20 +88453,14 @@ export interface operations {
|
|
|
87676
88453
|
};
|
|
87677
88454
|
};
|
|
87678
88455
|
};
|
|
87679
|
-
|
|
88456
|
+
integration_settings_views_get_online_store_setting: {
|
|
87680
88457
|
parameters: {
|
|
87681
88458
|
query?: never;
|
|
87682
88459
|
header?: never;
|
|
87683
|
-
path
|
|
87684
|
-
id: string;
|
|
87685
|
-
};
|
|
88460
|
+
path?: never;
|
|
87686
88461
|
cookie?: never;
|
|
87687
88462
|
};
|
|
87688
|
-
requestBody
|
|
87689
|
-
content: {
|
|
87690
|
-
"application/json": components["schemas"]["ArchiveTasks"];
|
|
87691
|
-
};
|
|
87692
|
-
};
|
|
88463
|
+
requestBody?: never;
|
|
87693
88464
|
responses: {
|
|
87694
88465
|
/** @description OK */
|
|
87695
88466
|
200: {
|
|
@@ -87697,16 +88468,7 @@ export interface operations {
|
|
|
87697
88468
|
[name: string]: unknown;
|
|
87698
88469
|
};
|
|
87699
88470
|
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"];
|
|
88471
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
87710
88472
|
};
|
|
87711
88473
|
};
|
|
87712
88474
|
/** @description Forbidden */
|
|
@@ -87727,15 +88489,6 @@ export interface operations {
|
|
|
87727
88489
|
"application/json": components["schemas"]["MessageResponse"];
|
|
87728
88490
|
};
|
|
87729
88491
|
};
|
|
87730
|
-
/** @description Conflict */
|
|
87731
|
-
409: {
|
|
87732
|
-
headers: {
|
|
87733
|
-
[name: string]: unknown;
|
|
87734
|
-
};
|
|
87735
|
-
content: {
|
|
87736
|
-
"application/json": components["schemas"]["MessageResponse"];
|
|
87737
|
-
};
|
|
87738
|
-
};
|
|
87739
88492
|
/** @description Internal Server Error */
|
|
87740
88493
|
500: {
|
|
87741
88494
|
headers: {
|
|
@@ -87747,23 +88500,27 @@ export interface operations {
|
|
|
87747
88500
|
};
|
|
87748
88501
|
};
|
|
87749
88502
|
};
|
|
87750
|
-
|
|
88503
|
+
integration_settings_views_update_online_store_setting: {
|
|
87751
88504
|
parameters: {
|
|
87752
88505
|
query?: never;
|
|
87753
88506
|
header?: never;
|
|
87754
|
-
path
|
|
87755
|
-
id: string;
|
|
87756
|
-
};
|
|
88507
|
+
path?: never;
|
|
87757
88508
|
cookie?: never;
|
|
87758
88509
|
};
|
|
87759
|
-
requestBody
|
|
88510
|
+
requestBody: {
|
|
88511
|
+
content: {
|
|
88512
|
+
"application/json": components["schemas"]["OnlineStoreSettingCreateUpdateSchema"];
|
|
88513
|
+
};
|
|
88514
|
+
};
|
|
87760
88515
|
responses: {
|
|
87761
|
-
/** @description
|
|
87762
|
-
|
|
88516
|
+
/** @description OK */
|
|
88517
|
+
200: {
|
|
87763
88518
|
headers: {
|
|
87764
88519
|
[name: string]: unknown;
|
|
87765
88520
|
};
|
|
87766
|
-
content
|
|
88521
|
+
content: {
|
|
88522
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
88523
|
+
};
|
|
87767
88524
|
};
|
|
87768
88525
|
/** @description Bad Request */
|
|
87769
88526
|
400: {
|
|
@@ -87771,7 +88528,7 @@ export interface operations {
|
|
|
87771
88528
|
[name: string]: unknown;
|
|
87772
88529
|
};
|
|
87773
88530
|
content: {
|
|
87774
|
-
"application/json": components["schemas"]["
|
|
88531
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
87775
88532
|
};
|
|
87776
88533
|
};
|
|
87777
88534
|
/** @description Forbidden */
|
|
@@ -87803,7 +88560,7 @@ export interface operations {
|
|
|
87803
88560
|
};
|
|
87804
88561
|
};
|
|
87805
88562
|
};
|
|
87806
|
-
|
|
88563
|
+
integration_settings_views_create_online_store_setting: {
|
|
87807
88564
|
parameters: {
|
|
87808
88565
|
query?: never;
|
|
87809
88566
|
header?: never;
|
|
@@ -87812,7 +88569,7 @@ export interface operations {
|
|
|
87812
88569
|
};
|
|
87813
88570
|
requestBody: {
|
|
87814
88571
|
content: {
|
|
87815
|
-
"application/json": components["schemas"]["
|
|
88572
|
+
"application/json": components["schemas"]["OnlineStoreSettingCreateUpdateSchema"];
|
|
87816
88573
|
};
|
|
87817
88574
|
};
|
|
87818
88575
|
responses: {
|
|
@@ -87822,7 +88579,7 @@ export interface operations {
|
|
|
87822
88579
|
[name: string]: unknown;
|
|
87823
88580
|
};
|
|
87824
88581
|
content: {
|
|
87825
|
-
"application/json": components["schemas"]["
|
|
88582
|
+
"application/json": components["schemas"]["OnlineStoreSettingSchema"];
|
|
87826
88583
|
};
|
|
87827
88584
|
};
|
|
87828
88585
|
/** @description Bad Request */
|
|
@@ -87834,24 +88591,6 @@ export interface operations {
|
|
|
87834
88591
|
"application/json": components["schemas"]["ErrorMessages"];
|
|
87835
88592
|
};
|
|
87836
88593
|
};
|
|
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
88594
|
/** @description Internal Server Error */
|
|
87856
88595
|
500: {
|
|
87857
88596
|
headers: {
|