@seekora-ai/admin-api 1.0.46 → 1.0.48
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/README.md +20 -3
- package/api.ts +1247 -105
- package/dist/api.d.ts +1109 -280
- package/dist/api.js +644 -48
- package/dist/esm/api.d.ts +1109 -280
- package/dist/esm/api.js +636 -44
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.48.tgz +0 -0
- package/seekora-ai-admin-api-1.0.46.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -2485,6 +2485,49 @@ export interface AnalyticsKPIPointExtended {
|
|
|
2485
2485
|
*/
|
|
2486
2486
|
'unique_users'?: number;
|
|
2487
2487
|
}
|
|
2488
|
+
/**
|
|
2489
|
+
*
|
|
2490
|
+
* @export
|
|
2491
|
+
* @interface AnalyticsPaginationMeta
|
|
2492
|
+
*/
|
|
2493
|
+
export interface AnalyticsPaginationMeta {
|
|
2494
|
+
/**
|
|
2495
|
+
*
|
|
2496
|
+
* @type {boolean}
|
|
2497
|
+
* @memberof AnalyticsPaginationMeta
|
|
2498
|
+
*/
|
|
2499
|
+
'has_next'?: boolean;
|
|
2500
|
+
/**
|
|
2501
|
+
*
|
|
2502
|
+
* @type {boolean}
|
|
2503
|
+
* @memberof AnalyticsPaginationMeta
|
|
2504
|
+
*/
|
|
2505
|
+
'has_previous'?: boolean;
|
|
2506
|
+
/**
|
|
2507
|
+
*
|
|
2508
|
+
* @type {number}
|
|
2509
|
+
* @memberof AnalyticsPaginationMeta
|
|
2510
|
+
*/
|
|
2511
|
+
'page'?: number;
|
|
2512
|
+
/**
|
|
2513
|
+
*
|
|
2514
|
+
* @type {number}
|
|
2515
|
+
* @memberof AnalyticsPaginationMeta
|
|
2516
|
+
*/
|
|
2517
|
+
'page_size'?: number;
|
|
2518
|
+
/**
|
|
2519
|
+
*
|
|
2520
|
+
* @type {number}
|
|
2521
|
+
* @memberof AnalyticsPaginationMeta
|
|
2522
|
+
*/
|
|
2523
|
+
'total_items'?: number;
|
|
2524
|
+
/**
|
|
2525
|
+
*
|
|
2526
|
+
* @type {number}
|
|
2527
|
+
* @memberof AnalyticsPaginationMeta
|
|
2528
|
+
*/
|
|
2529
|
+
'total_pages'?: number;
|
|
2530
|
+
}
|
|
2488
2531
|
/**
|
|
2489
2532
|
*
|
|
2490
2533
|
* @export
|
|
@@ -2805,16 +2848,16 @@ export interface AnalyticsQueryInsights {
|
|
|
2805
2848
|
'no_results_rate'?: number;
|
|
2806
2849
|
/**
|
|
2807
2850
|
*
|
|
2808
|
-
* @type {
|
|
2851
|
+
* @type {AnalyticsQueryPopularFiltersSection}
|
|
2809
2852
|
* @memberof AnalyticsQueryInsights
|
|
2810
2853
|
*/
|
|
2811
|
-
'popular_filters'?:
|
|
2854
|
+
'popular_filters'?: AnalyticsQueryPopularFiltersSection;
|
|
2812
2855
|
/**
|
|
2813
2856
|
*
|
|
2814
|
-
* @type {
|
|
2857
|
+
* @type {AnalyticsQueryPopularResultsSection}
|
|
2815
2858
|
* @memberof AnalyticsQueryInsights
|
|
2816
2859
|
*/
|
|
2817
|
-
'popular_results'?:
|
|
2860
|
+
'popular_results'?: AnalyticsQueryPopularResultsSection;
|
|
2818
2861
|
/**
|
|
2819
2862
|
*
|
|
2820
2863
|
* @type {string}
|
|
@@ -2965,51 +3008,95 @@ export interface AnalyticsQueryPopularFilter {
|
|
|
2965
3008
|
/**
|
|
2966
3009
|
*
|
|
2967
3010
|
* @export
|
|
2968
|
-
* @interface
|
|
3011
|
+
* @interface AnalyticsQueryPopularFiltersSection
|
|
3012
|
+
*/
|
|
3013
|
+
export interface AnalyticsQueryPopularFiltersSection {
|
|
3014
|
+
/**
|
|
3015
|
+
*
|
|
3016
|
+
* @type {Array<AnalyticsQueryPopularFilter>}
|
|
3017
|
+
* @memberof AnalyticsQueryPopularFiltersSection
|
|
3018
|
+
*/
|
|
3019
|
+
'items'?: Array<AnalyticsQueryPopularFilter>;
|
|
3020
|
+
/**
|
|
3021
|
+
*
|
|
3022
|
+
* @type {AnalyticsPaginationMeta}
|
|
3023
|
+
* @memberof AnalyticsQueryPopularFiltersSection
|
|
3024
|
+
*/
|
|
3025
|
+
'meta'?: AnalyticsPaginationMeta;
|
|
3026
|
+
}
|
|
3027
|
+
/**
|
|
3028
|
+
*
|
|
3029
|
+
* @export
|
|
3030
|
+
* @interface AnalyticsQueryPopularResultWithWidget
|
|
2969
3031
|
*/
|
|
2970
|
-
export interface
|
|
3032
|
+
export interface AnalyticsQueryPopularResultWithWidget {
|
|
2971
3033
|
/**
|
|
2972
3034
|
*
|
|
2973
3035
|
* @type {number}
|
|
2974
|
-
* @memberof
|
|
3036
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2975
3037
|
*/
|
|
2976
3038
|
'avg_position'?: number;
|
|
2977
3039
|
/**
|
|
2978
3040
|
*
|
|
2979
3041
|
* @type {number}
|
|
2980
|
-
* @memberof
|
|
3042
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2981
3043
|
*/
|
|
2982
3044
|
'click_through_rate'?: number;
|
|
2983
3045
|
/**
|
|
2984
3046
|
*
|
|
2985
3047
|
* @type {number}
|
|
2986
|
-
* @memberof
|
|
3048
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2987
3049
|
*/
|
|
2988
3050
|
'clicks'?: number;
|
|
2989
3051
|
/**
|
|
2990
3052
|
*
|
|
2991
3053
|
* @type {number}
|
|
2992
|
-
* @memberof
|
|
3054
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2993
3055
|
*/
|
|
2994
3056
|
'impressions'?: number;
|
|
2995
3057
|
/**
|
|
2996
3058
|
*
|
|
2997
3059
|
* @type {string}
|
|
2998
|
-
* @memberof
|
|
3060
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
2999
3061
|
*/
|
|
3000
3062
|
'item_id'?: string;
|
|
3001
3063
|
/**
|
|
3002
3064
|
*
|
|
3003
3065
|
* @type {string}
|
|
3004
|
-
* @memberof
|
|
3066
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3005
3067
|
*/
|
|
3006
3068
|
'item_name'?: string;
|
|
3007
3069
|
/**
|
|
3008
3070
|
* percentage of total impressions for this query
|
|
3009
3071
|
* @type {number}
|
|
3010
|
-
* @memberof
|
|
3072
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3011
3073
|
*/
|
|
3012
3074
|
'share'?: number;
|
|
3075
|
+
/**
|
|
3076
|
+
* Widget display fields
|
|
3077
|
+
* @type {AnalyticsWidgetData}
|
|
3078
|
+
* @memberof AnalyticsQueryPopularResultWithWidget
|
|
3079
|
+
*/
|
|
3080
|
+
'widget'?: AnalyticsWidgetData;
|
|
3081
|
+
}
|
|
3082
|
+
/**
|
|
3083
|
+
*
|
|
3084
|
+
* @export
|
|
3085
|
+
* @interface AnalyticsQueryPopularResultsSection
|
|
3086
|
+
*/
|
|
3087
|
+
export interface AnalyticsQueryPopularResultsSection {
|
|
3088
|
+
/**
|
|
3089
|
+
*
|
|
3090
|
+
* @type {Array<AnalyticsQueryPopularResultWithWidget>}
|
|
3091
|
+
* @memberof AnalyticsQueryPopularResultsSection
|
|
3092
|
+
*/
|
|
3093
|
+
'items'?: Array<AnalyticsQueryPopularResultWithWidget>;
|
|
3094
|
+
/**
|
|
3095
|
+
*
|
|
3096
|
+
* @type {AnalyticsPaginationMeta}
|
|
3097
|
+
* @memberof AnalyticsQueryPopularResultsSection
|
|
3098
|
+
*/
|
|
3099
|
+
'meta'?: AnalyticsPaginationMeta;
|
|
3013
3100
|
}
|
|
3014
3101
|
/**
|
|
3015
3102
|
*
|
|
@@ -4227,6 +4314,174 @@ export interface DataTypesCreateOrganizationRequest {
|
|
|
4227
4314
|
*/
|
|
4228
4315
|
'ZipCode'?: string;
|
|
4229
4316
|
}
|
|
4317
|
+
/**
|
|
4318
|
+
*
|
|
4319
|
+
* @export
|
|
4320
|
+
* @interface DataTypesCreatePaymentOrderRequest
|
|
4321
|
+
*/
|
|
4322
|
+
export interface DataTypesCreatePaymentOrderRequest {
|
|
4323
|
+
/**
|
|
4324
|
+
* Optional for subscription/credit (uses plan price)
|
|
4325
|
+
* @type {number}
|
|
4326
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4327
|
+
*/
|
|
4328
|
+
'amount'?: number;
|
|
4329
|
+
/**
|
|
4330
|
+
*
|
|
4331
|
+
* @type {boolean}
|
|
4332
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4333
|
+
*/
|
|
4334
|
+
'auto_renewal'?: boolean;
|
|
4335
|
+
/**
|
|
4336
|
+
* Fields for credit top-up
|
|
4337
|
+
* @type {number}
|
|
4338
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4339
|
+
*/
|
|
4340
|
+
'credit_plan_id'?: number;
|
|
4341
|
+
/**
|
|
4342
|
+
*
|
|
4343
|
+
* @type {string}
|
|
4344
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4345
|
+
*/
|
|
4346
|
+
'currency': string;
|
|
4347
|
+
/**
|
|
4348
|
+
*
|
|
4349
|
+
* @type {DataTypesCustomerInfoDto}
|
|
4350
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4351
|
+
*/
|
|
4352
|
+
'customer_info': DataTypesCustomerInfoDto;
|
|
4353
|
+
/**
|
|
4354
|
+
* Optional, auto-generated if not provided
|
|
4355
|
+
* @type {string}
|
|
4356
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4357
|
+
*/
|
|
4358
|
+
'description'?: string;
|
|
4359
|
+
/**
|
|
4360
|
+
* Optional, uses default if not specified
|
|
4361
|
+
* @type {string}
|
|
4362
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4363
|
+
*/
|
|
4364
|
+
'gateway'?: string;
|
|
4365
|
+
/**
|
|
4366
|
+
*
|
|
4367
|
+
* @type {{ [key: string]: any; }}
|
|
4368
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4369
|
+
*/
|
|
4370
|
+
'metadata'?: {
|
|
4371
|
+
[key: string]: any;
|
|
4372
|
+
};
|
|
4373
|
+
/**
|
|
4374
|
+
* Fields for subscription payments
|
|
4375
|
+
* @type {number}
|
|
4376
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4377
|
+
*/
|
|
4378
|
+
'org_id'?: number;
|
|
4379
|
+
/**
|
|
4380
|
+
*
|
|
4381
|
+
* @type {string}
|
|
4382
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4383
|
+
*/
|
|
4384
|
+
'payment_method'?: string;
|
|
4385
|
+
/**
|
|
4386
|
+
*
|
|
4387
|
+
* @type {string}
|
|
4388
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4389
|
+
*/
|
|
4390
|
+
'payment_type': DataTypesCreatePaymentOrderRequestPaymentTypeEnum;
|
|
4391
|
+
/**
|
|
4392
|
+
*
|
|
4393
|
+
* @type {number}
|
|
4394
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4395
|
+
*/
|
|
4396
|
+
'plan_id'?: number;
|
|
4397
|
+
/**
|
|
4398
|
+
*
|
|
4399
|
+
* @type {string}
|
|
4400
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4401
|
+
*/
|
|
4402
|
+
'return_url'?: string;
|
|
4403
|
+
/**
|
|
4404
|
+
* Required for generic payments
|
|
4405
|
+
* @type {number}
|
|
4406
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
4407
|
+
*/
|
|
4408
|
+
'subs_id'?: number;
|
|
4409
|
+
}
|
|
4410
|
+
export declare const DataTypesCreatePaymentOrderRequestPaymentTypeEnum: {
|
|
4411
|
+
readonly Generic: "generic";
|
|
4412
|
+
readonly Subscription: "subscription";
|
|
4413
|
+
readonly CreditTopup: "credit_topup";
|
|
4414
|
+
};
|
|
4415
|
+
export type DataTypesCreatePaymentOrderRequestPaymentTypeEnum = typeof DataTypesCreatePaymentOrderRequestPaymentTypeEnum[keyof typeof DataTypesCreatePaymentOrderRequestPaymentTypeEnum];
|
|
4416
|
+
/**
|
|
4417
|
+
*
|
|
4418
|
+
* @export
|
|
4419
|
+
* @interface DataTypesCreatePaymentOrderResponse
|
|
4420
|
+
*/
|
|
4421
|
+
export interface DataTypesCreatePaymentOrderResponse {
|
|
4422
|
+
/**
|
|
4423
|
+
*
|
|
4424
|
+
* @type {number}
|
|
4425
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4426
|
+
*/
|
|
4427
|
+
'amount'?: number;
|
|
4428
|
+
/**
|
|
4429
|
+
*
|
|
4430
|
+
* @type {string}
|
|
4431
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4432
|
+
*/
|
|
4433
|
+
'created_at'?: string;
|
|
4434
|
+
/**
|
|
4435
|
+
*
|
|
4436
|
+
* @type {string}
|
|
4437
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4438
|
+
*/
|
|
4439
|
+
'currency'?: string;
|
|
4440
|
+
/**
|
|
4441
|
+
*
|
|
4442
|
+
* @type {string}
|
|
4443
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4444
|
+
*/
|
|
4445
|
+
'expires_at'?: string;
|
|
4446
|
+
/**
|
|
4447
|
+
*
|
|
4448
|
+
* @type {string}
|
|
4449
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4450
|
+
*/
|
|
4451
|
+
'gateway'?: string;
|
|
4452
|
+
/**
|
|
4453
|
+
*
|
|
4454
|
+
* @type {{ [key: string]: any; }}
|
|
4455
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4456
|
+
*/
|
|
4457
|
+
'gateway_response'?: {
|
|
4458
|
+
[key: string]: any;
|
|
4459
|
+
};
|
|
4460
|
+
/**
|
|
4461
|
+
*
|
|
4462
|
+
* @type {string}
|
|
4463
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4464
|
+
*/
|
|
4465
|
+
'order_id'?: string;
|
|
4466
|
+
/**
|
|
4467
|
+
*
|
|
4468
|
+
* @type {string}
|
|
4469
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4470
|
+
*/
|
|
4471
|
+
'payment_id'?: string;
|
|
4472
|
+
/**
|
|
4473
|
+
*
|
|
4474
|
+
* @type {string}
|
|
4475
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4476
|
+
*/
|
|
4477
|
+
'payment_url'?: string;
|
|
4478
|
+
/**
|
|
4479
|
+
*
|
|
4480
|
+
* @type {string}
|
|
4481
|
+
* @memberof DataTypesCreatePaymentOrderResponse
|
|
4482
|
+
*/
|
|
4483
|
+
'status'?: string;
|
|
4484
|
+
}
|
|
4230
4485
|
/**
|
|
4231
4486
|
*
|
|
4232
4487
|
* @export
|
|
@@ -5360,6 +5615,37 @@ export interface DataTypesCustomWordWithStatus {
|
|
|
5360
5615
|
*/
|
|
5361
5616
|
'word'?: string;
|
|
5362
5617
|
}
|
|
5618
|
+
/**
|
|
5619
|
+
*
|
|
5620
|
+
* @export
|
|
5621
|
+
* @interface DataTypesCustomerInfoDto
|
|
5622
|
+
*/
|
|
5623
|
+
export interface DataTypesCustomerInfoDto {
|
|
5624
|
+
/**
|
|
5625
|
+
*
|
|
5626
|
+
* @type {string}
|
|
5627
|
+
* @memberof DataTypesCustomerInfoDto
|
|
5628
|
+
*/
|
|
5629
|
+
'address'?: string;
|
|
5630
|
+
/**
|
|
5631
|
+
*
|
|
5632
|
+
* @type {string}
|
|
5633
|
+
* @memberof DataTypesCustomerInfoDto
|
|
5634
|
+
*/
|
|
5635
|
+
'email': string;
|
|
5636
|
+
/**
|
|
5637
|
+
*
|
|
5638
|
+
* @type {string}
|
|
5639
|
+
* @memberof DataTypesCustomerInfoDto
|
|
5640
|
+
*/
|
|
5641
|
+
'name': string;
|
|
5642
|
+
/**
|
|
5643
|
+
*
|
|
5644
|
+
* @type {string}
|
|
5645
|
+
* @memberof DataTypesCustomerInfoDto
|
|
5646
|
+
*/
|
|
5647
|
+
'phone': string;
|
|
5648
|
+
}
|
|
5363
5649
|
/**
|
|
5364
5650
|
*
|
|
5365
5651
|
* @export
|
|
@@ -5956,6 +6242,50 @@ export interface DataTypesFieldMetadata {
|
|
|
5956
6242
|
*/
|
|
5957
6243
|
'type'?: string;
|
|
5958
6244
|
}
|
|
6245
|
+
/**
|
|
6246
|
+
*
|
|
6247
|
+
* @export
|
|
6248
|
+
* @interface DataTypesGatewayInfo
|
|
6249
|
+
*/
|
|
6250
|
+
export interface DataTypesGatewayInfo {
|
|
6251
|
+
/**
|
|
6252
|
+
*
|
|
6253
|
+
* @type {Array<string>}
|
|
6254
|
+
* @memberof DataTypesGatewayInfo
|
|
6255
|
+
*/
|
|
6256
|
+
'features'?: Array<string>;
|
|
6257
|
+
/**
|
|
6258
|
+
*
|
|
6259
|
+
* @type {boolean}
|
|
6260
|
+
* @memberof DataTypesGatewayInfo
|
|
6261
|
+
*/
|
|
6262
|
+
'is_active'?: boolean;
|
|
6263
|
+
/**
|
|
6264
|
+
*
|
|
6265
|
+
* @type {boolean}
|
|
6266
|
+
* @memberof DataTypesGatewayInfo
|
|
6267
|
+
*/
|
|
6268
|
+
'is_default'?: boolean;
|
|
6269
|
+
/**
|
|
6270
|
+
*
|
|
6271
|
+
* @type {string}
|
|
6272
|
+
* @memberof DataTypesGatewayInfo
|
|
6273
|
+
*/
|
|
6274
|
+
'name'?: string;
|
|
6275
|
+
}
|
|
6276
|
+
/**
|
|
6277
|
+
*
|
|
6278
|
+
* @export
|
|
6279
|
+
* @interface DataTypesGatewayListResponse
|
|
6280
|
+
*/
|
|
6281
|
+
export interface DataTypesGatewayListResponse {
|
|
6282
|
+
/**
|
|
6283
|
+
*
|
|
6284
|
+
* @type {Array<DataTypesGatewayInfo>}
|
|
6285
|
+
* @memberof DataTypesGatewayListResponse
|
|
6286
|
+
*/
|
|
6287
|
+
'gateways'?: Array<DataTypesGatewayInfo>;
|
|
6288
|
+
}
|
|
5959
6289
|
/**
|
|
5960
6290
|
*
|
|
5961
6291
|
* @export
|
|
@@ -8526,6 +8856,69 @@ export interface DataTypesPaymentResponse {
|
|
|
8526
8856
|
*/
|
|
8527
8857
|
'status'?: number;
|
|
8528
8858
|
}
|
|
8859
|
+
/**
|
|
8860
|
+
*
|
|
8861
|
+
* @export
|
|
8862
|
+
* @interface DataTypesPaymentStatusResponse
|
|
8863
|
+
*/
|
|
8864
|
+
export interface DataTypesPaymentStatusResponse {
|
|
8865
|
+
/**
|
|
8866
|
+
*
|
|
8867
|
+
* @type {number}
|
|
8868
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8869
|
+
*/
|
|
8870
|
+
'amount'?: number;
|
|
8871
|
+
/**
|
|
8872
|
+
*
|
|
8873
|
+
* @type {string}
|
|
8874
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8875
|
+
*/
|
|
8876
|
+
'currency'?: string;
|
|
8877
|
+
/**
|
|
8878
|
+
*
|
|
8879
|
+
* @type {string}
|
|
8880
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8881
|
+
*/
|
|
8882
|
+
'failure_reason'?: string;
|
|
8883
|
+
/**
|
|
8884
|
+
*
|
|
8885
|
+
* @type {string}
|
|
8886
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8887
|
+
*/
|
|
8888
|
+
'gateway'?: string;
|
|
8889
|
+
/**
|
|
8890
|
+
*
|
|
8891
|
+
* @type {{ [key: string]: any; }}
|
|
8892
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8893
|
+
*/
|
|
8894
|
+
'gateway_data'?: {
|
|
8895
|
+
[key: string]: any;
|
|
8896
|
+
};
|
|
8897
|
+
/**
|
|
8898
|
+
*
|
|
8899
|
+
* @type {string}
|
|
8900
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8901
|
+
*/
|
|
8902
|
+
'order_id'?: string;
|
|
8903
|
+
/**
|
|
8904
|
+
*
|
|
8905
|
+
* @type {string}
|
|
8906
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8907
|
+
*/
|
|
8908
|
+
'payment_id'?: string;
|
|
8909
|
+
/**
|
|
8910
|
+
*
|
|
8911
|
+
* @type {string}
|
|
8912
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8913
|
+
*/
|
|
8914
|
+
'status'?: string;
|
|
8915
|
+
/**
|
|
8916
|
+
*
|
|
8917
|
+
* @type {string}
|
|
8918
|
+
* @memberof DataTypesPaymentStatusResponse
|
|
8919
|
+
*/
|
|
8920
|
+
'updated_at'?: string;
|
|
8921
|
+
}
|
|
8529
8922
|
/**
|
|
8530
8923
|
*
|
|
8531
8924
|
* @export
|
|
@@ -8995,59 +9388,149 @@ export interface DataTypesPurchaseCreditsRequest {
|
|
|
8995
9388
|
'payment_method': string;
|
|
8996
9389
|
/**
|
|
8997
9390
|
*
|
|
8998
|
-
* @type {number}
|
|
8999
|
-
* @memberof DataTypesPurchaseCreditsRequest
|
|
9391
|
+
* @type {number}
|
|
9392
|
+
* @memberof DataTypesPurchaseCreditsRequest
|
|
9393
|
+
*/
|
|
9394
|
+
'plan_id': number;
|
|
9395
|
+
/**
|
|
9396
|
+
*
|
|
9397
|
+
* @type {number}
|
|
9398
|
+
* @memberof DataTypesPurchaseCreditsRequest
|
|
9399
|
+
*/
|
|
9400
|
+
'store_id': number;
|
|
9401
|
+
}
|
|
9402
|
+
/**
|
|
9403
|
+
*
|
|
9404
|
+
* @export
|
|
9405
|
+
* @interface DataTypesPurchaseCreditsResponse
|
|
9406
|
+
*/
|
|
9407
|
+
export interface DataTypesPurchaseCreditsResponse {
|
|
9408
|
+
/**
|
|
9409
|
+
*
|
|
9410
|
+
* @type {string}
|
|
9411
|
+
* @memberof DataTypesPurchaseCreditsResponse
|
|
9412
|
+
*/
|
|
9413
|
+
'message'?: string;
|
|
9414
|
+
/**
|
|
9415
|
+
*
|
|
9416
|
+
* @type {number}
|
|
9417
|
+
* @memberof DataTypesPurchaseCreditsResponse
|
|
9418
|
+
*/
|
|
9419
|
+
'payment_id'?: number;
|
|
9420
|
+
/**
|
|
9421
|
+
*
|
|
9422
|
+
* @type {number}
|
|
9423
|
+
* @memberof DataTypesPurchaseCreditsResponse
|
|
9424
|
+
*/
|
|
9425
|
+
'plan_id'?: number;
|
|
9426
|
+
/**
|
|
9427
|
+
*
|
|
9428
|
+
* @type {string}
|
|
9429
|
+
* @memberof DataTypesPurchaseCreditsResponse
|
|
9430
|
+
*/
|
|
9431
|
+
'purchase_date'?: string;
|
|
9432
|
+
/**
|
|
9433
|
+
*
|
|
9434
|
+
* @type {boolean}
|
|
9435
|
+
* @memberof DataTypesPurchaseCreditsResponse
|
|
9436
|
+
*/
|
|
9437
|
+
'success'?: boolean;
|
|
9438
|
+
/**
|
|
9439
|
+
*
|
|
9440
|
+
* @type {DataTypesCreditBalance}
|
|
9441
|
+
* @memberof DataTypesPurchaseCreditsResponse
|
|
9442
|
+
*/
|
|
9443
|
+
'updated_balance'?: DataTypesCreditBalance;
|
|
9444
|
+
}
|
|
9445
|
+
/**
|
|
9446
|
+
*
|
|
9447
|
+
* @export
|
|
9448
|
+
* @interface DataTypesRefundRequestDto
|
|
9449
|
+
*/
|
|
9450
|
+
export interface DataTypesRefundRequestDto {
|
|
9451
|
+
/**
|
|
9452
|
+
*
|
|
9453
|
+
* @type {number}
|
|
9454
|
+
* @memberof DataTypesRefundRequestDto
|
|
9455
|
+
*/
|
|
9456
|
+
'amount': number;
|
|
9457
|
+
/**
|
|
9458
|
+
*
|
|
9459
|
+
* @type {string}
|
|
9460
|
+
* @memberof DataTypesRefundRequestDto
|
|
9461
|
+
*/
|
|
9462
|
+
'gateway': string;
|
|
9463
|
+
/**
|
|
9464
|
+
*
|
|
9465
|
+
* @type {{ [key: string]: any; }}
|
|
9466
|
+
* @memberof DataTypesRefundRequestDto
|
|
9467
|
+
*/
|
|
9468
|
+
'metadata'?: {
|
|
9469
|
+
[key: string]: any;
|
|
9470
|
+
};
|
|
9471
|
+
/**
|
|
9472
|
+
*
|
|
9473
|
+
* @type {string}
|
|
9474
|
+
* @memberof DataTypesRefundRequestDto
|
|
9000
9475
|
*/
|
|
9001
|
-
'
|
|
9476
|
+
'payment_id': string;
|
|
9002
9477
|
/**
|
|
9003
9478
|
*
|
|
9004
|
-
* @type {
|
|
9005
|
-
* @memberof
|
|
9479
|
+
* @type {string}
|
|
9480
|
+
* @memberof DataTypesRefundRequestDto
|
|
9006
9481
|
*/
|
|
9007
|
-
'
|
|
9482
|
+
'reason': string;
|
|
9008
9483
|
}
|
|
9009
9484
|
/**
|
|
9010
9485
|
*
|
|
9011
9486
|
* @export
|
|
9012
|
-
* @interface
|
|
9487
|
+
* @interface DataTypesRefundResponseDto
|
|
9013
9488
|
*/
|
|
9014
|
-
export interface
|
|
9489
|
+
export interface DataTypesRefundResponseDto {
|
|
9490
|
+
/**
|
|
9491
|
+
*
|
|
9492
|
+
* @type {number}
|
|
9493
|
+
* @memberof DataTypesRefundResponseDto
|
|
9494
|
+
*/
|
|
9495
|
+
'amount'?: number;
|
|
9015
9496
|
/**
|
|
9016
9497
|
*
|
|
9017
9498
|
* @type {string}
|
|
9018
|
-
* @memberof
|
|
9499
|
+
* @memberof DataTypesRefundResponseDto
|
|
9019
9500
|
*/
|
|
9020
|
-
'
|
|
9501
|
+
'created_at'?: string;
|
|
9021
9502
|
/**
|
|
9022
9503
|
*
|
|
9023
|
-
* @type {
|
|
9024
|
-
* @memberof
|
|
9504
|
+
* @type {string}
|
|
9505
|
+
* @memberof DataTypesRefundResponseDto
|
|
9025
9506
|
*/
|
|
9026
|
-
'
|
|
9507
|
+
'gateway'?: string;
|
|
9027
9508
|
/**
|
|
9028
9509
|
*
|
|
9029
|
-
* @type {
|
|
9030
|
-
* @memberof
|
|
9510
|
+
* @type {{ [key: string]: any; }}
|
|
9511
|
+
* @memberof DataTypesRefundResponseDto
|
|
9031
9512
|
*/
|
|
9032
|
-
'
|
|
9513
|
+
'gateway_response'?: {
|
|
9514
|
+
[key: string]: any;
|
|
9515
|
+
};
|
|
9033
9516
|
/**
|
|
9034
9517
|
*
|
|
9035
9518
|
* @type {string}
|
|
9036
|
-
* @memberof
|
|
9519
|
+
* @memberof DataTypesRefundResponseDto
|
|
9037
9520
|
*/
|
|
9038
|
-
'
|
|
9521
|
+
'payment_id'?: string;
|
|
9039
9522
|
/**
|
|
9040
9523
|
*
|
|
9041
|
-
* @type {
|
|
9042
|
-
* @memberof
|
|
9524
|
+
* @type {string}
|
|
9525
|
+
* @memberof DataTypesRefundResponseDto
|
|
9043
9526
|
*/
|
|
9044
|
-
'
|
|
9527
|
+
'refund_id'?: string;
|
|
9045
9528
|
/**
|
|
9046
9529
|
*
|
|
9047
|
-
* @type {
|
|
9048
|
-
* @memberof
|
|
9530
|
+
* @type {string}
|
|
9531
|
+
* @memberof DataTypesRefundResponseDto
|
|
9049
9532
|
*/
|
|
9050
|
-
'
|
|
9533
|
+
'status'?: string;
|
|
9051
9534
|
}
|
|
9052
9535
|
/**
|
|
9053
9536
|
*
|
|
@@ -11493,6 +11976,25 @@ export interface DataTypesVerifyOTPResponseWrapper {
|
|
|
11493
11976
|
*/
|
|
11494
11977
|
'status'?: number;
|
|
11495
11978
|
}
|
|
11979
|
+
/**
|
|
11980
|
+
*
|
|
11981
|
+
* @export
|
|
11982
|
+
* @interface DataTypesVerifyPaymentRequest
|
|
11983
|
+
*/
|
|
11984
|
+
export interface DataTypesVerifyPaymentRequest {
|
|
11985
|
+
/**
|
|
11986
|
+
*
|
|
11987
|
+
* @type {string}
|
|
11988
|
+
* @memberof DataTypesVerifyPaymentRequest
|
|
11989
|
+
*/
|
|
11990
|
+
'gateway': string;
|
|
11991
|
+
/**
|
|
11992
|
+
*
|
|
11993
|
+
* @type {string}
|
|
11994
|
+
* @memberof DataTypesVerifyPaymentRequest
|
|
11995
|
+
*/
|
|
11996
|
+
'payment_id': string;
|
|
11997
|
+
}
|
|
11496
11998
|
/**
|
|
11497
11999
|
*
|
|
11498
12000
|
* @export
|
|
@@ -12137,7 +12639,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12137
12639
|
* @throws {RequiredError}
|
|
12138
12640
|
* @memberof APICallsApi
|
|
12139
12641
|
*/
|
|
12140
|
-
adminAPICallsCallIDDelete(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12642
|
+
adminAPICallsCallIDDelete(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12141
12643
|
/**
|
|
12142
12644
|
* Fetches APICall detail
|
|
12143
12645
|
* @summary Fetches APICall detail
|
|
@@ -12146,7 +12648,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12146
12648
|
* @throws {RequiredError}
|
|
12147
12649
|
* @memberof APICallsApi
|
|
12148
12650
|
*/
|
|
12149
|
-
adminAPICallsCallIDGet(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallResponse, any>>;
|
|
12651
|
+
adminAPICallsCallIDGet(callID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallResponse, any, {}>>;
|
|
12150
12652
|
/**
|
|
12151
12653
|
* UpdateAPICall information by ID.
|
|
12152
12654
|
* @summary UpdateAPICall an existing apicall details
|
|
@@ -12156,7 +12658,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12156
12658
|
* @throws {RequiredError}
|
|
12157
12659
|
* @memberof APICallsApi
|
|
12158
12660
|
*/
|
|
12159
|
-
adminAPICallsCallIDPut(callID: number, aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12661
|
+
adminAPICallsCallIDPut(callID: number, aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12160
12662
|
/**
|
|
12161
12663
|
* Fetches list of APICalls
|
|
12162
12664
|
* @summary Fetches list of APICalls
|
|
@@ -12164,7 +12666,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12164
12666
|
* @throws {RequiredError}
|
|
12165
12667
|
* @memberof APICallsApi
|
|
12166
12668
|
*/
|
|
12167
|
-
adminAPICallsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallsListResponse, any>>;
|
|
12669
|
+
adminAPICallsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesAPICallsListResponse, any, {}>>;
|
|
12168
12670
|
/**
|
|
12169
12671
|
* Creates a new apicall
|
|
12170
12672
|
* @summary Creates a new apicall
|
|
@@ -12173,7 +12675,7 @@ export declare class APICallsApi extends BaseAPI {
|
|
|
12173
12675
|
* @throws {RequiredError}
|
|
12174
12676
|
* @memberof APICallsApi
|
|
12175
12677
|
*/
|
|
12176
|
-
adminAPICallsPost(aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12678
|
+
adminAPICallsPost(aPICall: DataTypesAPICallRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12177
12679
|
}
|
|
12178
12680
|
/**
|
|
12179
12681
|
* AccountSettingsApi - axios parameter creator
|
|
@@ -12366,7 +12868,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12366
12868
|
* @throws {RequiredError}
|
|
12367
12869
|
* @memberof AccountSettingsApi
|
|
12368
12870
|
*/
|
|
12369
|
-
accountSettingsOrganizationGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12871
|
+
accountSettingsOrganizationGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12370
12872
|
/**
|
|
12371
12873
|
* Removes the logo of the currently logged-in user\'s organization
|
|
12372
12874
|
* @summary Delete user\'s organization logo
|
|
@@ -12374,7 +12876,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12374
12876
|
* @throws {RequiredError}
|
|
12375
12877
|
* @memberof AccountSettingsApi
|
|
12376
12878
|
*/
|
|
12377
|
-
accountSettingsOrganizationLogoDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12879
|
+
accountSettingsOrganizationLogoDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12378
12880
|
/**
|
|
12379
12881
|
* Updates the logo of the currently logged-in user\'s organization
|
|
12380
12882
|
* @summary Update user\'s organization logo
|
|
@@ -12383,7 +12885,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12383
12885
|
* @throws {RequiredError}
|
|
12384
12886
|
* @memberof AccountSettingsApi
|
|
12385
12887
|
*/
|
|
12386
|
-
accountSettingsOrganizationLogoPut(logo: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12888
|
+
accountSettingsOrganizationLogoPut(logo: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12387
12889
|
/**
|
|
12388
12890
|
* Updates the organization details of the currently logged-in user
|
|
12389
12891
|
* @summary Update user\'s organization
|
|
@@ -12392,7 +12894,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12392
12894
|
* @throws {RequiredError}
|
|
12393
12895
|
* @memberof AccountSettingsApi
|
|
12394
12896
|
*/
|
|
12395
|
-
accountSettingsOrganizationPut(organization: DataTypesUpdateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
12897
|
+
accountSettingsOrganizationPut(organization: DataTypesUpdateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
12396
12898
|
/**
|
|
12397
12899
|
* Updates the password of the currently logged-in user
|
|
12398
12900
|
* @summary Update user password
|
|
@@ -12401,7 +12903,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12401
12903
|
* @throws {RequiredError}
|
|
12402
12904
|
* @memberof AccountSettingsApi
|
|
12403
12905
|
*/
|
|
12404
|
-
accountSettingsPasswordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
12906
|
+
accountSettingsPasswordPut(password: DataTypesUpdatePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
12405
12907
|
/**
|
|
12406
12908
|
* Retrieves the profile of the currently logged-in user
|
|
12407
12909
|
* @summary Retrieve user profile
|
|
@@ -12409,7 +12911,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12409
12911
|
* @throws {RequiredError}
|
|
12410
12912
|
* @memberof AccountSettingsApi
|
|
12411
12913
|
*/
|
|
12412
|
-
accountSettingsProfileGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any>>;
|
|
12914
|
+
accountSettingsProfileGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any, {}>>;
|
|
12413
12915
|
/**
|
|
12414
12916
|
* Updates the profile of the currently logged-in user
|
|
12415
12917
|
* @summary Update user profile
|
|
@@ -12418,7 +12920,7 @@ export declare class AccountSettingsApi extends BaseAPI {
|
|
|
12418
12920
|
* @throws {RequiredError}
|
|
12419
12921
|
* @memberof AccountSettingsApi
|
|
12420
12922
|
*/
|
|
12421
|
-
accountSettingsProfilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any>>;
|
|
12923
|
+
accountSettingsProfilePut(profile: DataTypesUpdateProfileRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesProfileResponseWrapper, any, {}>>;
|
|
12422
12924
|
}
|
|
12423
12925
|
/**
|
|
12424
12926
|
* AnalyticsApi - axios parameter creator
|
|
@@ -12627,12 +13129,17 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12627
13129
|
*/
|
|
12628
13130
|
adminAnalyticsStoreXStoreIDQueriesGet: (xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDQueriesGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, orderBy?: string, sortBy?: AdminAnalyticsStoreXStoreIDQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12629
13131
|
/**
|
|
12630
|
-
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with comparison mode support
|
|
13132
|
+
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with analytics tags filtering and comparison mode support
|
|
12631
13133
|
* @summary Get No-Clicks Queries
|
|
12632
13134
|
* @param {string} xStoreID Store ID
|
|
12633
13135
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
12634
13136
|
* @param {string} [endTime] End time in RFC3339 format
|
|
12635
13137
|
* @param {string} [search] Search term to filter queries (case-insensitive partial match)
|
|
13138
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13139
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13140
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13141
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13142
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
12636
13143
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
12637
13144
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
12638
13145
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -12651,14 +13158,19 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12651
13158
|
* @param {*} [options] Override http request option.
|
|
12652
13159
|
* @throws {RequiredError}
|
|
12653
13160
|
*/
|
|
12654
|
-
adminAnalyticsStoreXStoreIDQueriesNoClicksGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13161
|
+
adminAnalyticsStoreXStoreIDQueriesNoClicksGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12655
13162
|
/**
|
|
12656
|
-
* Retrieve queries that returned no search results, useful for identifying content gaps with comparison mode support
|
|
13163
|
+
* Retrieve queries that returned no search results, useful for identifying content gaps with analytics tags filtering and comparison mode support
|
|
12657
13164
|
* @summary Get No-Results Queries
|
|
12658
13165
|
* @param {string} xStoreID Store ID
|
|
12659
13166
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
12660
13167
|
* @param {string} [endTime] End time in RFC3339 format
|
|
12661
13168
|
* @param {string} [search] Search term to filter queries (case-insensitive partial match)
|
|
13169
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13170
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13171
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13172
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13173
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
12662
13174
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
12663
13175
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
12664
13176
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -12677,25 +13189,43 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12677
13189
|
* @param {*} [options] Override http request option.
|
|
12678
13190
|
* @throws {RequiredError}
|
|
12679
13191
|
*/
|
|
12680
|
-
adminAnalyticsStoreXStoreIDQueriesNoResultsGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13192
|
+
adminAnalyticsStoreXStoreIDQueriesNoResultsGet: (xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12681
13193
|
/**
|
|
12682
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13194
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
12683
13195
|
* @summary Get Query Insights
|
|
12684
13196
|
* @param {string} xStoreID Store ID
|
|
12685
13197
|
* @param {string} query Search query to analyze
|
|
12686
13198
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
12687
13199
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13200
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
13201
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
13202
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
13203
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
13204
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
12688
13205
|
* @param {*} [options] Override http request option.
|
|
12689
13206
|
* @throws {RequiredError}
|
|
12690
13207
|
*/
|
|
12691
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13208
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12692
13209
|
/**
|
|
12693
|
-
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards.
|
|
13210
|
+
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
12694
13211
|
* @summary Get Top Results Analytics
|
|
12695
13212
|
* @param {string} xStoreID Store ID
|
|
12696
13213
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
12697
13214
|
* @param {string} [endTime] End time in RFC3339 format
|
|
12698
13215
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
13216
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13217
|
+
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13218
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13219
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13220
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
13221
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13222
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13223
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
13224
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
13225
|
+
* @param {AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
13226
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
13227
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
13228
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
12699
13229
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
12700
13230
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetSortByEnum} [sortBy] Field to sort by
|
|
12701
13231
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum} [sortOrder] Sort direction
|
|
@@ -12709,7 +13239,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12709
13239
|
* @param {*} [options] Override http request option.
|
|
12710
13240
|
* @throws {RequiredError}
|
|
12711
13241
|
*/
|
|
12712
|
-
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13242
|
+
adminAnalyticsStoreXStoreIDResultsGet: (xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12713
13243
|
/**
|
|
12714
13244
|
* Retrieve analytics tags usage data and filtering capabilities
|
|
12715
13245
|
* @summary Get Analytics Tags
|
|
@@ -12956,12 +13486,17 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
12956
13486
|
*/
|
|
12957
13487
|
adminAnalyticsStoreXStoreIDQueriesGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDQueriesGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, orderBy?: string, sortBy?: AdminAnalyticsStoreXStoreIDQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesGet200Response>>;
|
|
12958
13488
|
/**
|
|
12959
|
-
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with comparison mode support
|
|
13489
|
+
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with analytics tags filtering and comparison mode support
|
|
12960
13490
|
* @summary Get No-Clicks Queries
|
|
12961
13491
|
* @param {string} xStoreID Store ID
|
|
12962
13492
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
12963
13493
|
* @param {string} [endTime] End time in RFC3339 format
|
|
12964
13494
|
* @param {string} [search] Search term to filter queries (case-insensitive partial match)
|
|
13495
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13496
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13497
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13498
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13499
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
12965
13500
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
12966
13501
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
12967
13502
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -12980,14 +13515,19 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
12980
13515
|
* @param {*} [options] Override http request option.
|
|
12981
13516
|
* @throws {RequiredError}
|
|
12982
13517
|
*/
|
|
12983
|
-
adminAnalyticsStoreXStoreIDQueriesNoClicksGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
|
|
13518
|
+
adminAnalyticsStoreXStoreIDQueriesNoClicksGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
|
|
12984
13519
|
/**
|
|
12985
|
-
* Retrieve queries that returned no search results, useful for identifying content gaps with comparison mode support
|
|
13520
|
+
* Retrieve queries that returned no search results, useful for identifying content gaps with analytics tags filtering and comparison mode support
|
|
12986
13521
|
* @summary Get No-Results Queries
|
|
12987
13522
|
* @param {string} xStoreID Store ID
|
|
12988
13523
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
12989
13524
|
* @param {string} [endTime] End time in RFC3339 format
|
|
12990
13525
|
* @param {string} [search] Search term to filter queries (case-insensitive partial match)
|
|
13526
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13527
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13528
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13529
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13530
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
12991
13531
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
12992
13532
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
12993
13533
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -13006,25 +13546,43 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
13006
13546
|
* @param {*} [options] Override http request option.
|
|
13007
13547
|
* @throws {RequiredError}
|
|
13008
13548
|
*/
|
|
13009
|
-
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
|
|
13549
|
+
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
|
|
13010
13550
|
/**
|
|
13011
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13551
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
13012
13552
|
* @summary Get Query Insights
|
|
13013
13553
|
* @param {string} xStoreID Store ID
|
|
13014
13554
|
* @param {string} query Search query to analyze
|
|
13015
13555
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13016
13556
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13557
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
13558
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
13559
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
13560
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
13561
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13017
13562
|
* @param {*} [options] Override http request option.
|
|
13018
13563
|
* @throws {RequiredError}
|
|
13019
13564
|
*/
|
|
13020
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
|
|
13565
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>>;
|
|
13021
13566
|
/**
|
|
13022
|
-
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards.
|
|
13567
|
+
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
13023
13568
|
* @summary Get Top Results Analytics
|
|
13024
13569
|
* @param {string} xStoreID Store ID
|
|
13025
13570
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13026
13571
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13027
13572
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
13573
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13574
|
+
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13575
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13576
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13577
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
13578
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13579
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13580
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
13581
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
13582
|
+
* @param {AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
13583
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
13584
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
13585
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
13028
13586
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
13029
13587
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetSortByEnum} [sortBy] Field to sort by
|
|
13030
13588
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum} [sortOrder] Sort direction
|
|
@@ -13038,7 +13596,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
13038
13596
|
* @param {*} [options] Override http request option.
|
|
13039
13597
|
* @throws {RequiredError}
|
|
13040
13598
|
*/
|
|
13041
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>>;
|
|
13599
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>>;
|
|
13042
13600
|
/**
|
|
13043
13601
|
* Retrieve analytics tags usage data and filtering capabilities
|
|
13044
13602
|
* @summary Get Analytics Tags
|
|
@@ -13285,12 +13843,17 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
13285
13843
|
*/
|
|
13286
13844
|
adminAnalyticsStoreXStoreIDQueriesGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDQueriesGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, orderBy?: string, sortBy?: AdminAnalyticsStoreXStoreIDQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesGet200Response>;
|
|
13287
13845
|
/**
|
|
13288
|
-
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with comparison mode support
|
|
13846
|
+
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with analytics tags filtering and comparison mode support
|
|
13289
13847
|
* @summary Get No-Clicks Queries
|
|
13290
13848
|
* @param {string} xStoreID Store ID
|
|
13291
13849
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13292
13850
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13293
13851
|
* @param {string} [search] Search term to filter queries (case-insensitive partial match)
|
|
13852
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13853
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13854
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13855
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13856
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
13294
13857
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13295
13858
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13296
13859
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -13309,14 +13872,19 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
13309
13872
|
* @param {*} [options] Override http request option.
|
|
13310
13873
|
* @throws {RequiredError}
|
|
13311
13874
|
*/
|
|
13312
|
-
adminAnalyticsStoreXStoreIDQueriesNoClicksGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
|
|
13875
|
+
adminAnalyticsStoreXStoreIDQueriesNoClicksGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
|
|
13313
13876
|
/**
|
|
13314
|
-
* Retrieve queries that returned no search results, useful for identifying content gaps with comparison mode support
|
|
13877
|
+
* Retrieve queries that returned no search results, useful for identifying content gaps with analytics tags filtering and comparison mode support
|
|
13315
13878
|
* @summary Get No-Results Queries
|
|
13316
13879
|
* @param {string} xStoreID Store ID
|
|
13317
13880
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13318
13881
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13319
13882
|
* @param {string} [search] Search term to filter queries (case-insensitive partial match)
|
|
13883
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13884
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13885
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13886
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13887
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
13320
13888
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13321
13889
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13322
13890
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -13335,25 +13903,43 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
13335
13903
|
* @param {*} [options] Override http request option.
|
|
13336
13904
|
* @throws {RequiredError}
|
|
13337
13905
|
*/
|
|
13338
|
-
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
|
|
13906
|
+
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
|
|
13339
13907
|
/**
|
|
13340
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
13908
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
13341
13909
|
* @summary Get Query Insights
|
|
13342
13910
|
* @param {string} xStoreID Store ID
|
|
13343
13911
|
* @param {string} query Search query to analyze
|
|
13344
13912
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13345
13913
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13914
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
13915
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
13916
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
13917
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
13918
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13346
13919
|
* @param {*} [options] Override http request option.
|
|
13347
13920
|
* @throws {RequiredError}
|
|
13348
13921
|
*/
|
|
13349
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
|
|
13922
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>;
|
|
13350
13923
|
/**
|
|
13351
|
-
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards.
|
|
13924
|
+
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
13352
13925
|
* @summary Get Top Results Analytics
|
|
13353
13926
|
* @param {string} xStoreID Store ID
|
|
13354
13927
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13355
13928
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13356
13929
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
13930
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
13931
|
+
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
13932
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
13933
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
13934
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
13935
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13936
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13937
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
13938
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
13939
|
+
* @param {AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
13940
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
13941
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
13942
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
13357
13943
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
13358
13944
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetSortByEnum} [sortBy] Field to sort by
|
|
13359
13945
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum} [sortOrder] Sort direction
|
|
@@ -13367,7 +13953,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
13367
13953
|
* @param {*} [options] Override http request option.
|
|
13368
13954
|
* @throws {RequiredError}
|
|
13369
13955
|
*/
|
|
13370
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>;
|
|
13956
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response>;
|
|
13371
13957
|
/**
|
|
13372
13958
|
* Retrieve analytics tags usage data and filtering capabilities
|
|
13373
13959
|
* @summary Get Analytics Tags
|
|
@@ -13422,7 +14008,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13422
14008
|
* @throws {RequiredError}
|
|
13423
14009
|
* @memberof AnalyticsApi
|
|
13424
14010
|
*/
|
|
13425
|
-
adminAnalyticsStoreXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14011
|
+
adminAnalyticsStoreXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
13426
14012
|
/**
|
|
13427
14013
|
* Execute a custom ClickHouse query for advanced analytics with parameterized queries
|
|
13428
14014
|
* @summary Execute Custom Analytics Query
|
|
@@ -13432,7 +14018,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13432
14018
|
* @throws {RequiredError}
|
|
13433
14019
|
* @memberof AnalyticsApi
|
|
13434
14020
|
*/
|
|
13435
|
-
adminAnalyticsStoreXStoreIDCustomPost(xStoreID: string, body: AnalyticsCustomQueryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDCustomPost200Response, any>>;
|
|
14021
|
+
adminAnalyticsStoreXStoreIDCustomPost(xStoreID: string, body: AnalyticsCustomQueryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDCustomPost200Response, any, {}>>;
|
|
13436
14022
|
/**
|
|
13437
14023
|
* Retrieve popular filter combinations and their effectiveness metrics
|
|
13438
14024
|
* @summary Get Filter Combinations
|
|
@@ -13451,7 +14037,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13451
14037
|
* @throws {RequiredError}
|
|
13452
14038
|
* @memberof AnalyticsApi
|
|
13453
14039
|
*/
|
|
13454
|
-
adminAnalyticsStoreXStoreIDFiltersCombinationsGet(xStoreID: string, startTime?: string, endTime?: string, minUsage?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersCombinationsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersCombinationsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersCombinationsGet200Response, any>>;
|
|
14040
|
+
adminAnalyticsStoreXStoreIDFiltersCombinationsGet(xStoreID: string, startTime?: string, endTime?: string, minUsage?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersCombinationsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersCombinationsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersCombinationsGet200Response, any, {}>>;
|
|
13455
14041
|
/**
|
|
13456
14042
|
* Analyze filter effectiveness by comparing search results with and without filters
|
|
13457
14043
|
* @summary Get Filter Effectiveness
|
|
@@ -13469,7 +14055,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13469
14055
|
* @throws {RequiredError}
|
|
13470
14056
|
* @memberof AnalyticsApi
|
|
13471
14057
|
*/
|
|
13472
|
-
adminAnalyticsStoreXStoreIDFiltersEffectivenessGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersEffectivenessGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersEffectivenessGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersEffectivenessGet200Response, any>>;
|
|
14058
|
+
adminAnalyticsStoreXStoreIDFiltersEffectivenessGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersEffectivenessGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersEffectivenessGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersEffectivenessGet200Response, any, {}>>;
|
|
13473
14059
|
/**
|
|
13474
14060
|
* Retrieve comprehensive filter usage statistics including popular filters, combinations, and effectiveness metrics
|
|
13475
14061
|
* @summary Get Filter Analytics
|
|
@@ -13491,7 +14077,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13491
14077
|
* @throws {RequiredError}
|
|
13492
14078
|
* @memberof AnalyticsApi
|
|
13493
14079
|
*/
|
|
13494
|
-
adminAnalyticsStoreXStoreIDFiltersGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDFiltersGetGranularityEnum, filterKey?: string, includeCombinations?: boolean, includeEffectiveness?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersGet200Response, any>>;
|
|
14080
|
+
adminAnalyticsStoreXStoreIDFiltersGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDFiltersGetGranularityEnum, filterKey?: string, includeCombinations?: boolean, includeEffectiveness?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersGet200Response, any, {}>>;
|
|
13495
14081
|
/**
|
|
13496
14082
|
* Retrieve filter usage trends over time with growth analysis and pattern detection
|
|
13497
14083
|
* @summary Get Filter Trends
|
|
@@ -13512,7 +14098,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13512
14098
|
* @throws {RequiredError}
|
|
13513
14099
|
* @memberof AnalyticsApi
|
|
13514
14100
|
*/
|
|
13515
|
-
adminAnalyticsStoreXStoreIDFiltersTrendsGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetGranularityEnum, filterKey?: string, topFilters?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersTrendsGet200Response, any>>;
|
|
14101
|
+
adminAnalyticsStoreXStoreIDFiltersTrendsGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetGranularityEnum, filterKey?: string, topFilters?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDFiltersTrendsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDFiltersTrendsGet200Response, any, {}>>;
|
|
13516
14102
|
/**
|
|
13517
14103
|
* Retrieve geographic analytics data showing search behavior by country, region, and city with analytics tags filtering support and comparison mode
|
|
13518
14104
|
* @summary Get Geographic Analytics
|
|
@@ -13544,7 +14130,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13544
14130
|
* @throws {RequiredError}
|
|
13545
14131
|
* @memberof AnalyticsApi
|
|
13546
14132
|
*/
|
|
13547
|
-
adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDGeoGet200Response, any>>;
|
|
14133
|
+
adminAnalyticsStoreXStoreIDGeoGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDGeoGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDGeoGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDGeoGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDGeoGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDGeoGet200Response, any, {}>>;
|
|
13548
14134
|
/**
|
|
13549
14135
|
* Check the health status of analytics service and ClickHouse connection
|
|
13550
14136
|
* @summary Analytics Health Check
|
|
@@ -13553,7 +14139,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13553
14139
|
* @throws {RequiredError}
|
|
13554
14140
|
* @memberof AnalyticsApi
|
|
13555
14141
|
*/
|
|
13556
|
-
adminAnalyticsStoreXStoreIDHealthGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14142
|
+
adminAnalyticsStoreXStoreIDHealthGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
13557
14143
|
/**
|
|
13558
14144
|
* Retrieve comprehensive KPI metrics including searches, clicks, conversions, and revenue data with time series and summary. Supports analytics tags filtering with AND/OR operators and comparison mode between different timelines and tag sets.
|
|
13559
14145
|
* @summary Get KPI Analytics
|
|
@@ -13582,7 +14168,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13582
14168
|
* @throws {RequiredError}
|
|
13583
14169
|
* @memberof AnalyticsApi
|
|
13584
14170
|
*/
|
|
13585
|
-
adminAnalyticsStoreXStoreIDKpiGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDKpiGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDKpiGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDKpiGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDKpiGet200Response, any>>;
|
|
14171
|
+
adminAnalyticsStoreXStoreIDKpiGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDKpiGetGranularityEnum, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDKpiGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDKpiGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDKpiGet200Response, any, {}>>;
|
|
13586
14172
|
/**
|
|
13587
14173
|
* Retrieve real-time KPI metrics for the last hour with minute-level granularity
|
|
13588
14174
|
* @summary Get Realtime KPI Analytics
|
|
@@ -13591,7 +14177,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13591
14177
|
* @throws {RequiredError}
|
|
13592
14178
|
* @memberof AnalyticsApi
|
|
13593
14179
|
*/
|
|
13594
|
-
adminAnalyticsStoreXStoreIDKpiRealtimeGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14180
|
+
adminAnalyticsStoreXStoreIDKpiRealtimeGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
13595
14181
|
/**
|
|
13596
14182
|
* Retrieve detailed analytics for search queries including performance metrics, click-through rates, and conversion data with advanced analytics tags filtering and comparison mode support
|
|
13597
14183
|
* @summary Get Query Analytics
|
|
@@ -13625,14 +14211,19 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13625
14211
|
* @throws {RequiredError}
|
|
13626
14212
|
* @memberof AnalyticsApi
|
|
13627
14213
|
*/
|
|
13628
|
-
adminAnalyticsStoreXStoreIDQueriesGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDQueriesGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, orderBy?: string, sortBy?: AdminAnalyticsStoreXStoreIDQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesGet200Response, any>>;
|
|
14214
|
+
adminAnalyticsStoreXStoreIDQueriesGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDQueriesGetGranularityEnum, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, orderBy?: string, sortBy?: AdminAnalyticsStoreXStoreIDQueriesGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesGet200Response, any, {}>>;
|
|
13629
14215
|
/**
|
|
13630
|
-
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with comparison mode support
|
|
14216
|
+
* Retrieve queries that received searches but no user clicks, indicating poor result relevance with analytics tags filtering and comparison mode support
|
|
13631
14217
|
* @summary Get No-Clicks Queries
|
|
13632
14218
|
* @param {string} xStoreID Store ID
|
|
13633
14219
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13634
14220
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13635
14221
|
* @param {string} [search] Search term to filter queries (case-insensitive partial match)
|
|
14222
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
14223
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
14224
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
14225
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
14226
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
13636
14227
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13637
14228
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13638
14229
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -13652,14 +14243,19 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13652
14243
|
* @throws {RequiredError}
|
|
13653
14244
|
* @memberof AnalyticsApi
|
|
13654
14245
|
*/
|
|
13655
|
-
adminAnalyticsStoreXStoreIDQueriesNoClicksGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any>>;
|
|
14246
|
+
adminAnalyticsStoreXStoreIDQueriesNoClicksGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
|
|
13656
14247
|
/**
|
|
13657
|
-
* Retrieve queries that returned no search results, useful for identifying content gaps with comparison mode support
|
|
14248
|
+
* Retrieve queries that returned no search results, useful for identifying content gaps with analytics tags filtering and comparison mode support
|
|
13658
14249
|
* @summary Get No-Results Queries
|
|
13659
14250
|
* @param {string} xStoreID Store ID
|
|
13660
14251
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13661
14252
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13662
14253
|
* @param {string} [search] Search term to filter queries (case-insensitive partial match)
|
|
14254
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
14255
|
+
* @param {AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
14256
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
14257
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
14258
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
13663
14259
|
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
13664
14260
|
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
13665
14261
|
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
@@ -13679,26 +14275,44 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13679
14275
|
* @throws {RequiredError}
|
|
13680
14276
|
* @memberof AnalyticsApi
|
|
13681
14277
|
*/
|
|
13682
|
-
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any>>;
|
|
14278
|
+
adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
|
|
13683
14279
|
/**
|
|
13684
|
-
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics
|
|
14280
|
+
* Retrieve comprehensive analytics for a specific search query including popular results, filters, click position histogram, and performance metrics with independent pagination for popular results and filters
|
|
13685
14281
|
* @summary Get Query Insights
|
|
13686
14282
|
* @param {string} xStoreID Store ID
|
|
13687
14283
|
* @param {string} query Search query to analyze
|
|
13688
14284
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13689
14285
|
* @param {string} [endTime] End time in RFC3339 format
|
|
14286
|
+
* @param {number} [resultsPage] Page number for popular results pagination
|
|
14287
|
+
* @param {number} [resultsPageSize] Number of results per page for popular results
|
|
14288
|
+
* @param {number} [filtersPage] Page number for popular filters pagination
|
|
14289
|
+
* @param {number} [filtersPageSize] Number of filters per page for popular filters
|
|
14290
|
+
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
13690
14291
|
* @param {*} [options] Override http request option.
|
|
13691
14292
|
* @throws {RequiredError}
|
|
13692
14293
|
* @memberof AnalyticsApi
|
|
13693
14294
|
*/
|
|
13694
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any>>;
|
|
14295
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, resultsPage?: number, resultsPageSize?: number, filtersPage?: number, filtersPageSize?: number, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response, any, {}>>;
|
|
13695
14296
|
/**
|
|
13696
|
-
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards.
|
|
14297
|
+
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
13697
14298
|
* @summary Get Top Results Analytics
|
|
13698
14299
|
* @param {string} xStoreID Store ID
|
|
13699
14300
|
* @param {string} [startTime] Start time in RFC3339 format
|
|
13700
14301
|
* @param {string} [endTime] End time in RFC3339 format
|
|
13701
14302
|
* @param {string} [itemIds] Comma-separated list of item IDs to filter
|
|
14303
|
+
* @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
|
|
14304
|
+
* @param {AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
|
|
14305
|
+
* @param {string} [tagsExclude] Comma-separated analytics tags to exclude
|
|
14306
|
+
* @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
|
|
14307
|
+
* @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
|
|
14308
|
+
* @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
|
|
14309
|
+
* @param {string} [compareStartTime] Comparison period start time in RFC3339 format
|
|
14310
|
+
* @param {string} [compareEndTime] Comparison period end time in RFC3339 format
|
|
14311
|
+
* @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
|
|
14312
|
+
* @param {AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
|
|
14313
|
+
* @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
|
|
14314
|
+
* @param {string} [compareTagKeyFilter] Tag key filter for comparison period
|
|
14315
|
+
* @param {string} [compareTagValueFilter] Tag value filter for comparison period
|
|
13702
14316
|
* @param {number} [minImpressions] Minimum number of impressions required
|
|
13703
14317
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetSortByEnum} [sortBy] Field to sort by
|
|
13704
14318
|
* @param {AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum} [sortOrder] Sort direction
|
|
@@ -13713,7 +14327,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13713
14327
|
* @throws {RequiredError}
|
|
13714
14328
|
* @memberof AnalyticsApi
|
|
13715
14329
|
*/
|
|
13716
|
-
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any>>;
|
|
14330
|
+
adminAnalyticsStoreXStoreIDResultsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, minImpressions?: number, sortBy?: AdminAnalyticsStoreXStoreIDResultsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDResultsGetSortOrderEnum, sort?: string, includeDocuments?: boolean, includeWidget?: boolean, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any, {}>>;
|
|
13717
14331
|
/**
|
|
13718
14332
|
* Retrieve analytics tags usage data and filtering capabilities
|
|
13719
14333
|
* @summary Get Analytics Tags
|
|
@@ -13735,7 +14349,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13735
14349
|
* @throws {RequiredError}
|
|
13736
14350
|
* @memberof AnalyticsApi
|
|
13737
14351
|
*/
|
|
13738
|
-
adminAnalyticsStoreXStoreIDTagsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, tagKey?: string, tagValue?: string, minUsage?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14352
|
+
adminAnalyticsStoreXStoreIDTagsGet(xStoreID: string, startTime?: string, endTime?: string, search?: string, tagKey?: string, tagValue?: string, minUsage?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
13739
14353
|
/**
|
|
13740
14354
|
* Retrieve high-level summary of analytics tags usage and statistics
|
|
13741
14355
|
* @summary Get Analytics Tags Summary
|
|
@@ -13753,7 +14367,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
13753
14367
|
* @throws {RequiredError}
|
|
13754
14368
|
* @memberof AnalyticsApi
|
|
13755
14369
|
*/
|
|
13756
|
-
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
14370
|
+
adminAnalyticsStoreXStoreIDTagsSummaryGet(xStoreID: string, startTime?: string, endTime?: string, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDTagsSummaryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
13757
14371
|
}
|
|
13758
14372
|
/**
|
|
13759
14373
|
* @export
|
|
@@ -13978,6 +14592,14 @@ export declare const AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum: {
|
|
|
13978
14592
|
readonly Desc: "desc";
|
|
13979
14593
|
};
|
|
13980
14594
|
export type AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesGetSortOrderEnum];
|
|
14595
|
+
/**
|
|
14596
|
+
* @export
|
|
14597
|
+
*/
|
|
14598
|
+
export declare const AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum: {
|
|
14599
|
+
readonly Any: "any";
|
|
14600
|
+
readonly All: "all";
|
|
14601
|
+
};
|
|
14602
|
+
export type AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoClicksGetTagsMatchModeEnum];
|
|
13981
14603
|
/**
|
|
13982
14604
|
* @export
|
|
13983
14605
|
*/
|
|
@@ -14003,6 +14625,14 @@ export declare const AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum:
|
|
|
14003
14625
|
readonly Desc: "desc";
|
|
14004
14626
|
};
|
|
14005
14627
|
export type AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoClicksGetSortOrderEnum];
|
|
14628
|
+
/**
|
|
14629
|
+
* @export
|
|
14630
|
+
*/
|
|
14631
|
+
export declare const AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum: {
|
|
14632
|
+
readonly Any: "any";
|
|
14633
|
+
readonly All: "all";
|
|
14634
|
+
};
|
|
14635
|
+
export type AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetTagsMatchModeEnum];
|
|
14006
14636
|
/**
|
|
14007
14637
|
* @export
|
|
14008
14638
|
*/
|
|
@@ -14028,6 +14658,22 @@ export declare const AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum
|
|
|
14028
14658
|
readonly Desc: "desc";
|
|
14029
14659
|
};
|
|
14030
14660
|
export type AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum[keyof typeof AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum];
|
|
14661
|
+
/**
|
|
14662
|
+
* @export
|
|
14663
|
+
*/
|
|
14664
|
+
export declare const AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum: {
|
|
14665
|
+
readonly Any: "any";
|
|
14666
|
+
readonly All: "all";
|
|
14667
|
+
};
|
|
14668
|
+
export type AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDResultsGetTagsMatchModeEnum];
|
|
14669
|
+
/**
|
|
14670
|
+
* @export
|
|
14671
|
+
*/
|
|
14672
|
+
export declare const AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum: {
|
|
14673
|
+
readonly Any: "any";
|
|
14674
|
+
readonly All: "all";
|
|
14675
|
+
};
|
|
14676
|
+
export type AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum = typeof AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum[keyof typeof AdminAnalyticsStoreXStoreIDResultsGetCompareTagsMatchModeEnum];
|
|
14031
14677
|
/**
|
|
14032
14678
|
* @export
|
|
14033
14679
|
*/
|
|
@@ -14263,7 +14909,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14263
14909
|
* @throws {RequiredError}
|
|
14264
14910
|
* @memberof AnalyticsEventsApi
|
|
14265
14911
|
*/
|
|
14266
|
-
apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, body: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14912
|
+
apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, body: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14267
14913
|
/**
|
|
14268
14914
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
14269
14915
|
* @summary Get Analytics Configuration
|
|
@@ -14273,7 +14919,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14273
14919
|
* @throws {RequiredError}
|
|
14274
14920
|
* @memberof AnalyticsEventsApi
|
|
14275
14921
|
*/
|
|
14276
|
-
apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14922
|
+
apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14277
14923
|
/**
|
|
14278
14924
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
14279
14925
|
* @summary Submit Analytics Event
|
|
@@ -14284,7 +14930,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14284
14930
|
* @throws {RequiredError}
|
|
14285
14931
|
* @memberof AnalyticsEventsApi
|
|
14286
14932
|
*/
|
|
14287
|
-
apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14933
|
+
apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14288
14934
|
/**
|
|
14289
14935
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
14290
14936
|
* @summary Get Event Schema
|
|
@@ -14294,7 +14940,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14294
14940
|
* @throws {RequiredError}
|
|
14295
14941
|
* @memberof AnalyticsEventsApi
|
|
14296
14942
|
*/
|
|
14297
|
-
apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14943
|
+
apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14298
14944
|
/**
|
|
14299
14945
|
* Validate an analytics event payload without actually processing or storing it
|
|
14300
14946
|
* @summary Validate Analytics Event
|
|
@@ -14305,7 +14951,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
14305
14951
|
* @throws {RequiredError}
|
|
14306
14952
|
* @memberof AnalyticsEventsApi
|
|
14307
14953
|
*/
|
|
14308
|
-
apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
14954
|
+
apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, body: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14309
14955
|
}
|
|
14310
14956
|
/**
|
|
14311
14957
|
* ArticlesApi - axios parameter creator
|
|
@@ -14460,7 +15106,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14460
15106
|
* @throws {RequiredError}
|
|
14461
15107
|
* @memberof ArticlesApi
|
|
14462
15108
|
*/
|
|
14463
|
-
adminArticlesArticleIDDelete(articleID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15109
|
+
adminArticlesArticleIDDelete(articleID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14464
15110
|
/**
|
|
14465
15111
|
* Fetches article by id
|
|
14466
15112
|
* @summary Fetches article by id
|
|
@@ -14469,7 +15115,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14469
15115
|
* @throws {RequiredError}
|
|
14470
15116
|
* @memberof ArticlesApi
|
|
14471
15117
|
*/
|
|
14472
|
-
adminArticlesArticleIDGet(articleID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticleResponse, any>>;
|
|
15118
|
+
adminArticlesArticleIDGet(articleID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticleResponse, any, {}>>;
|
|
14473
15119
|
/**
|
|
14474
15120
|
* Update article information by ID.
|
|
14475
15121
|
* @summary Update an existing Article
|
|
@@ -14479,7 +15125,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14479
15125
|
* @throws {RequiredError}
|
|
14480
15126
|
* @memberof ArticlesApi
|
|
14481
15127
|
*/
|
|
14482
|
-
adminArticlesArticleIDPut(articleID: number, createArticleRequestDto: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15128
|
+
adminArticlesArticleIDPut(articleID: number, createArticleRequestDto: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14483
15129
|
/**
|
|
14484
15130
|
* Fetches list of all Articles
|
|
14485
15131
|
* @summary Fetches list of all Articles
|
|
@@ -14487,7 +15133,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14487
15133
|
* @throws {RequiredError}
|
|
14488
15134
|
* @memberof ArticlesApi
|
|
14489
15135
|
*/
|
|
14490
|
-
adminArticlesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticlesListResponse, any>>;
|
|
15136
|
+
adminArticlesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMgArticlesListResponse, any, {}>>;
|
|
14491
15137
|
/**
|
|
14492
15138
|
* Adds a new article to the system
|
|
14493
15139
|
* @summary Creates a new article
|
|
@@ -14496,7 +15142,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14496
15142
|
* @throws {RequiredError}
|
|
14497
15143
|
* @memberof ArticlesApi
|
|
14498
15144
|
*/
|
|
14499
|
-
adminArticlesPost(plan: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15145
|
+
adminArticlesPost(plan: MgDocumentTypesCreateArticleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14500
15146
|
}
|
|
14501
15147
|
/**
|
|
14502
15148
|
* AuthApi - axios parameter creator
|
|
@@ -14597,7 +15243,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
14597
15243
|
* @throws {RequiredError}
|
|
14598
15244
|
* @memberof AuthApi
|
|
14599
15245
|
*/
|
|
14600
|
-
authLoginPost(login: DataTypesLoginRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any>>;
|
|
15246
|
+
authLoginPost(login: DataTypesLoginRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
|
|
14601
15247
|
/**
|
|
14602
15248
|
* Logs out the authenticated user
|
|
14603
15249
|
* @summary Logout a user
|
|
@@ -14605,7 +15251,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
14605
15251
|
* @throws {RequiredError}
|
|
14606
15252
|
* @memberof AuthApi
|
|
14607
15253
|
*/
|
|
14608
|
-
authLogoutPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15254
|
+
authLogoutPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14609
15255
|
/**
|
|
14610
15256
|
* Returns refreshed session data for authenticated user
|
|
14611
15257
|
* @summary Get current auth session
|
|
@@ -14613,7 +15259,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
14613
15259
|
* @throws {RequiredError}
|
|
14614
15260
|
* @memberof AuthApi
|
|
14615
15261
|
*/
|
|
14616
|
-
authSessionGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any>>;
|
|
15262
|
+
authSessionGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLoginResponseWrapper, any, {}>>;
|
|
14617
15263
|
}
|
|
14618
15264
|
/**
|
|
14619
15265
|
* ConnectorsApi - axios parameter creator
|
|
@@ -14877,7 +15523,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14877
15523
|
* @throws {RequiredError}
|
|
14878
15524
|
* @memberof ConnectorsApi
|
|
14879
15525
|
*/
|
|
14880
|
-
v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResultResponse, any>>;
|
|
15526
|
+
v1ConnectorsSearchIndexGet(index: string, q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResultResponse, any, {}>>;
|
|
14881
15527
|
/**
|
|
14882
15528
|
* Get all sources
|
|
14883
15529
|
* @summary Get all sources
|
|
@@ -14885,7 +15531,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14885
15531
|
* @throws {RequiredError}
|
|
14886
15532
|
* @memberof ConnectorsApi
|
|
14887
15533
|
*/
|
|
14888
|
-
v1ConnectorsSourcesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSourcesListResponse, any>>;
|
|
15534
|
+
v1ConnectorsSourcesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSourcesListResponse, any, {}>>;
|
|
14889
15535
|
/**
|
|
14890
15536
|
* Create source
|
|
14891
15537
|
* @summary Create source
|
|
@@ -14894,7 +15540,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14894
15540
|
* @throws {RequiredError}
|
|
14895
15541
|
* @memberof ConnectorsApi
|
|
14896
15542
|
*/
|
|
14897
|
-
v1ConnectorsSourcesPost(source: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateSourceResponse, any>>;
|
|
15543
|
+
v1ConnectorsSourcesPost(source: DataTypesCreateSourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateSourceResponse, any, {}>>;
|
|
14898
15544
|
/**
|
|
14899
15545
|
* Update source config by id
|
|
14900
15546
|
* @summary Update source config by id
|
|
@@ -14906,7 +15552,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14906
15552
|
*/
|
|
14907
15553
|
v1ConnectorsSourcesSourceIdConfigPut(sourceId: string, config: {
|
|
14908
15554
|
[key: string]: any;
|
|
14909
|
-
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
15555
|
+
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
14910
15556
|
/**
|
|
14911
15557
|
* Get source by id
|
|
14912
15558
|
* @summary Get source by id
|
|
@@ -14914,7 +15560,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14914
15560
|
* @throws {RequiredError}
|
|
14915
15561
|
* @memberof ConnectorsApi
|
|
14916
15562
|
*/
|
|
14917
|
-
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any>>;
|
|
15563
|
+
v1ConnectorsSourcesSourceIdGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSourceConfigResponseWrapper, any, {}>>;
|
|
14918
15564
|
/**
|
|
14919
15565
|
* Update Index schema
|
|
14920
15566
|
* @summary Update Index schema
|
|
@@ -14924,7 +15570,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14924
15570
|
* @throws {RequiredError}
|
|
14925
15571
|
* @memberof ConnectorsApi
|
|
14926
15572
|
*/
|
|
14927
|
-
v1ConnectorsSourcesSourceidUpdateschemaPost(sourceid: string, schema: DataTypesUpdateIndexSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSchemaResponse, any>>;
|
|
15573
|
+
v1ConnectorsSourcesSourceidUpdateschemaPost(sourceid: string, schema: DataTypesUpdateIndexSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateSchemaResponse, any, {}>>;
|
|
14928
15574
|
/**
|
|
14929
15575
|
* Upload source data
|
|
14930
15576
|
* @summary Upload source data
|
|
@@ -14933,7 +15579,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14933
15579
|
* @throws {RequiredError}
|
|
14934
15580
|
* @memberof ConnectorsApi
|
|
14935
15581
|
*/
|
|
14936
|
-
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
15582
|
+
v1ConnectorsSourcesSourceidUploaddataPost(v1ConnectorsSourcesSourceidUploaddataPostRequest: V1ConnectorsSourcesSourceidUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any, {}>>;
|
|
14937
15583
|
/**
|
|
14938
15584
|
* Create task
|
|
14939
15585
|
* @summary Create task
|
|
@@ -14942,7 +15588,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14942
15588
|
* @throws {RequiredError}
|
|
14943
15589
|
* @memberof ConnectorsApi
|
|
14944
15590
|
*/
|
|
14945
|
-
v1ConnectorsTasksPost(task: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateTaskResponse, any>>;
|
|
15591
|
+
v1ConnectorsTasksPost(task: DataTypesCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateTaskResponse, any, {}>>;
|
|
14946
15592
|
/**
|
|
14947
15593
|
* Trigger task run
|
|
14948
15594
|
* @summary Trigger task run
|
|
@@ -14952,7 +15598,7 @@ export declare class ConnectorsApi extends BaseAPI {
|
|
|
14952
15598
|
* @throws {RequiredError}
|
|
14953
15599
|
* @memberof ConnectorsApi
|
|
14954
15600
|
*/
|
|
14955
|
-
v1ConnectorsTasksTaskIdRunPost(taskId: string, initiatedBy: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesTriggerTaskRunResponse, any>>;
|
|
15601
|
+
v1ConnectorsTasksTaskIdRunPost(taskId: string, initiatedBy: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesTriggerTaskRunResponse, any, {}>>;
|
|
14956
15602
|
}
|
|
14957
15603
|
/**
|
|
14958
15604
|
* CreditsApi - axios parameter creator
|
|
@@ -15224,7 +15870,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15224
15870
|
* @throws {RequiredError}
|
|
15225
15871
|
* @memberof CreditsApi
|
|
15226
15872
|
*/
|
|
15227
|
-
apiCreditsAdminAdjustPost(request: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any>>;
|
|
15873
|
+
apiCreditsAdminAdjustPost(request: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any, {}>>;
|
|
15228
15874
|
/**
|
|
15229
15875
|
* Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
|
|
15230
15876
|
* @summary Get detailed organization credit balance
|
|
@@ -15233,7 +15879,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15233
15879
|
* @throws {RequiredError}
|
|
15234
15880
|
* @memberof CreditsApi
|
|
15235
15881
|
*/
|
|
15236
|
-
apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any>>;
|
|
15882
|
+
apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any, {}>>;
|
|
15237
15883
|
/**
|
|
15238
15884
|
* Get current credit balance and summary for the authenticated user\'s organization
|
|
15239
15885
|
* @summary Get organization credit balance
|
|
@@ -15241,7 +15887,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15241
15887
|
* @throws {RequiredError}
|
|
15242
15888
|
* @memberof CreditsApi
|
|
15243
15889
|
*/
|
|
15244
|
-
apiCreditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any>>;
|
|
15890
|
+
apiCreditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
|
|
15245
15891
|
/**
|
|
15246
15892
|
* Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
|
|
15247
15893
|
* @summary Get store credit balance (legacy)
|
|
@@ -15251,7 +15897,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15251
15897
|
* @throws {RequiredError}
|
|
15252
15898
|
* @memberof CreditsApi
|
|
15253
15899
|
*/
|
|
15254
|
-
apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any>>;
|
|
15900
|
+
apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
|
|
15255
15901
|
/**
|
|
15256
15902
|
* Manually consume credits for testing or administrative purposes using FIFO logic
|
|
15257
15903
|
* @summary Manually consume credits
|
|
@@ -15260,7 +15906,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15260
15906
|
* @throws {RequiredError}
|
|
15261
15907
|
* @memberof CreditsApi
|
|
15262
15908
|
*/
|
|
15263
|
-
apiCreditsConsumePost(request: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any>>;
|
|
15909
|
+
apiCreditsConsumePost(request: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any, {}>>;
|
|
15264
15910
|
/**
|
|
15265
15911
|
* Get detailed history of credit consumption with FIFO breakdown and analytics
|
|
15266
15912
|
* @summary Get FIFO consumption history
|
|
@@ -15273,7 +15919,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15273
15919
|
* @throws {RequiredError}
|
|
15274
15920
|
* @memberof CreditsApi
|
|
15275
15921
|
*/
|
|
15276
|
-
apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any>>;
|
|
15922
|
+
apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any, {}>>;
|
|
15277
15923
|
/**
|
|
15278
15924
|
* Get all active credit plans available for purchase with detailed pricing and features
|
|
15279
15925
|
* @summary Get available credit plans
|
|
@@ -15281,7 +15927,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15281
15927
|
* @throws {RequiredError}
|
|
15282
15928
|
* @memberof CreditsApi
|
|
15283
15929
|
*/
|
|
15284
|
-
apiCreditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any>>;
|
|
15930
|
+
apiCreditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any, {}>>;
|
|
15285
15931
|
/**
|
|
15286
15932
|
* Purchase credits using a credit plan with payment processing
|
|
15287
15933
|
* @summary Purchase credits
|
|
@@ -15290,7 +15936,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15290
15936
|
* @throws {RequiredError}
|
|
15291
15937
|
* @memberof CreditsApi
|
|
15292
15938
|
*/
|
|
15293
|
-
apiCreditsPurchasePost(request: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any>>;
|
|
15939
|
+
apiCreditsPurchasePost(request: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any, {}>>;
|
|
15294
15940
|
/**
|
|
15295
15941
|
* Get paginated credit transaction history for the authenticated organization
|
|
15296
15942
|
* @summary Get organization credit transactions
|
|
@@ -15303,7 +15949,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
15303
15949
|
* @throws {RequiredError}
|
|
15304
15950
|
* @memberof CreditsApi
|
|
15305
15951
|
*/
|
|
15306
|
-
apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any>>;
|
|
15952
|
+
apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any, {}>>;
|
|
15307
15953
|
}
|
|
15308
15954
|
/**
|
|
15309
15955
|
* @export
|
|
@@ -15558,7 +16204,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
15558
16204
|
* @throws {RequiredError}
|
|
15559
16205
|
* @memberof CustomStopwordsApi
|
|
15560
16206
|
*/
|
|
15561
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDDelete(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16207
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDDelete(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
15562
16208
|
/**
|
|
15563
16209
|
* Fetches a specific custom word list by ID
|
|
15564
16210
|
* @summary Get custom word list by ID
|
|
@@ -15568,7 +16214,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
15568
16214
|
* @throws {RequiredError}
|
|
15569
16215
|
* @memberof CustomStopwordsApi
|
|
15570
16216
|
*/
|
|
15571
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any>>;
|
|
16217
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID: string, customWordListID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any, {}>>;
|
|
15572
16218
|
/**
|
|
15573
16219
|
* Updates a custom word list
|
|
15574
16220
|
* @summary Update custom word list
|
|
@@ -15579,7 +16225,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
15579
16225
|
* @throws {RequiredError}
|
|
15580
16226
|
* @memberof CustomStopwordsApi
|
|
15581
16227
|
*/
|
|
15582
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDPut(xStoreID: string, customWordListID: number, body: DataTypesUpdateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16228
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDPut(xStoreID: string, customWordListID: number, body: DataTypesUpdateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
15583
16229
|
/**
|
|
15584
16230
|
* Removes words from a custom word list
|
|
15585
16231
|
* @summary Remove words from custom word list
|
|
@@ -15590,7 +16236,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
15590
16236
|
* @throws {RequiredError}
|
|
15591
16237
|
* @memberof CustomStopwordsApi
|
|
15592
16238
|
*/
|
|
15593
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsDelete(xStoreID: string, customWordListID: number, body: DataTypesRemoveWordsFromCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16239
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsDelete(xStoreID: string, customWordListID: number, body: DataTypesRemoveWordsFromCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
15594
16240
|
/**
|
|
15595
16241
|
* Adds words to an existing custom word list
|
|
15596
16242
|
* @summary Add words to custom word list
|
|
@@ -15601,7 +16247,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
15601
16247
|
* @throws {RequiredError}
|
|
15602
16248
|
* @memberof CustomStopwordsApi
|
|
15603
16249
|
*/
|
|
15604
|
-
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsPost(xStoreID: string, customWordListID: number, body: DataTypesAddWordsToCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
16250
|
+
adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDWordsPost(xStoreID: string, customWordListID: number, body: DataTypesAddWordsToCustomListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
15605
16251
|
/**
|
|
15606
16252
|
* Fetches custom word lists for a store with pagination
|
|
15607
16253
|
* @summary Get custom word lists
|
|
@@ -15614,7 +16260,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
15614
16260
|
* @throws {RequiredError}
|
|
15615
16261
|
* @memberof CustomStopwordsApi
|
|
15616
16262
|
*/
|
|
15617
|
-
adminStoresXStoreIDStopwordsCustomWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListsResponseWrapper, any>>;
|
|
16263
|
+
adminStoresXStoreIDStopwordsCustomWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListsResponseWrapper, any, {}>>;
|
|
15618
16264
|
/**
|
|
15619
16265
|
* Creates a new custom word list for a store
|
|
15620
16266
|
* @summary Create custom word list
|
|
@@ -15624,7 +16270,7 @@ export declare class CustomStopwordsApi extends BaseAPI {
|
|
|
15624
16270
|
* @throws {RequiredError}
|
|
15625
16271
|
* @memberof CustomStopwordsApi
|
|
15626
16272
|
*/
|
|
15627
|
-
adminStoresXStoreIDStopwordsCustomWordlistsPost(xStoreID: string, body: DataTypesCreateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any>>;
|
|
16273
|
+
adminStoresXStoreIDStopwordsCustomWordlistsPost(xStoreID: string, body: DataTypesCreateCustomWordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCustomWordListResponseWrapper, any, {}>>;
|
|
15628
16274
|
}
|
|
15629
16275
|
/**
|
|
15630
16276
|
* DocumentsApi - axios parameter creator
|
|
@@ -15687,7 +16333,7 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
15687
16333
|
* @throws {RequiredError}
|
|
15688
16334
|
* @memberof DocumentsApi
|
|
15689
16335
|
*/
|
|
15690
|
-
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
16336
|
+
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
15691
16337
|
}
|
|
15692
16338
|
/**
|
|
15693
16339
|
* ItemAnalyticsApi - axios parameter creator
|
|
@@ -16103,7 +16749,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16103
16749
|
* @throws {RequiredError}
|
|
16104
16750
|
* @memberof ItemAnalyticsApi
|
|
16105
16751
|
*/
|
|
16106
|
-
adminAnalyticsStoreXStoreIDItemsComparisonGet(xStoreID: string, itemIds: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsComparisonGet200Response, any>>;
|
|
16752
|
+
adminAnalyticsStoreXStoreIDItemsComparisonGet(xStoreID: string, itemIds: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsComparisonGet200Response, any, {}>>;
|
|
16107
16753
|
/**
|
|
16108
16754
|
* Analyze how items are discovered through search queries, filters, and sorts with position distribution data
|
|
16109
16755
|
* @summary Get Item Discovery Analytics
|
|
@@ -16125,7 +16771,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16125
16771
|
* @throws {RequiredError}
|
|
16126
16772
|
* @memberof ItemAnalyticsApi
|
|
16127
16773
|
*/
|
|
16128
|
-
adminAnalyticsStoreXStoreIDItemsDiscoveryGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, queries?: string, itemLimit?: number, minImpressions?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsDiscoveryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsDiscoveryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsDiscoveryGet200Response, any>>;
|
|
16774
|
+
adminAnalyticsStoreXStoreIDItemsDiscoveryGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, queries?: string, itemLimit?: number, minImpressions?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsDiscoveryGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsDiscoveryGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsDiscoveryGet200Response, any, {}>>;
|
|
16129
16775
|
/**
|
|
16130
16776
|
* Retrieve general item performance analytics including impressions, clicks, conversions, and revenue metrics
|
|
16131
16777
|
* @summary Get Item Analytics
|
|
@@ -16147,7 +16793,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16147
16793
|
* @throws {RequiredError}
|
|
16148
16794
|
* @memberof ItemAnalyticsApi
|
|
16149
16795
|
*/
|
|
16150
|
-
adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
16796
|
+
adminAnalyticsStoreXStoreIDItemsGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
16151
16797
|
/**
|
|
16152
16798
|
* Retrieve detailed analytics for a specific item including performance metrics and discovery data
|
|
16153
16799
|
* @summary Get Item Details
|
|
@@ -16159,7 +16805,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16159
16805
|
* @throws {RequiredError}
|
|
16160
16806
|
* @memberof ItemAnalyticsApi
|
|
16161
16807
|
*/
|
|
16162
|
-
adminAnalyticsStoreXStoreIDItemsItemIdGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any>>;
|
|
16808
|
+
adminAnalyticsStoreXStoreIDItemsItemIdGet(xStoreID: string, itemId: string, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsAnalyticsAPIResponse, any, {}>>;
|
|
16163
16809
|
/**
|
|
16164
16810
|
* Retrieve detailed performance metrics for items including click-through rates, conversion rates, and revenue data
|
|
16165
16811
|
* @summary Get Item Performance Analytics
|
|
@@ -16181,7 +16827,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16181
16827
|
* @throws {RequiredError}
|
|
16182
16828
|
* @memberof ItemAnalyticsApi
|
|
16183
16829
|
*/
|
|
16184
|
-
adminAnalyticsStoreXStoreIDItemsPerformanceGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsPerformanceGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsPerformanceGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any>>;
|
|
16830
|
+
adminAnalyticsStoreXStoreIDItemsPerformanceGet(xStoreID: string, startTime?: string, endTime?: string, itemIds?: string, itemLimit?: number, minImpressions?: number, maxPosition?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsPerformanceGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsPerformanceGetSortOrderEnum, sort?: string, limit?: number, offset?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsPerformanceGet200Response, any, {}>>;
|
|
16185
16831
|
/**
|
|
16186
16832
|
* Retrieve item performance trends over time showing how items perform across different time periods
|
|
16187
16833
|
* @summary Get Item Performance Trends
|
|
@@ -16202,7 +16848,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16202
16848
|
* @throws {RequiredError}
|
|
16203
16849
|
* @memberof ItemAnalyticsApi
|
|
16204
16850
|
*/
|
|
16205
|
-
adminAnalyticsStoreXStoreIDItemsTrendsGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDItemsTrendsGetGranularityEnum, itemIds?: string, itemLimit?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsTrendsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsTrendsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsTrendsGet200Response, any>>;
|
|
16851
|
+
adminAnalyticsStoreXStoreIDItemsTrendsGet(xStoreID: string, startTime?: string, endTime?: string, granularity?: AdminAnalyticsStoreXStoreIDItemsTrendsGetGranularityEnum, itemIds?: string, itemLimit?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDItemsTrendsGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDItemsTrendsGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDItemsTrendsGet200Response, any, {}>>;
|
|
16206
16852
|
/**
|
|
16207
16853
|
* Analyze query performance with item context showing how queries perform in discovering and ranking items
|
|
16208
16854
|
* @summary Get Query Item Performance Analytics
|
|
@@ -16224,7 +16870,7 @@ export declare class ItemAnalyticsApi extends BaseAPI {
|
|
|
16224
16870
|
* @throws {RequiredError}
|
|
16225
16871
|
* @memberof ItemAnalyticsApi
|
|
16226
16872
|
*/
|
|
16227
|
-
adminAnalyticsStoreXStoreIDQueriesItemPerformanceGet(xStoreID: string, startTime?: string, endTime?: string, queries?: string, itemIds?: string, queryLimit?: number, minImpressions?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGet200Response, any>>;
|
|
16873
|
+
adminAnalyticsStoreXStoreIDQueriesItemPerformanceGet(xStoreID: string, startTime?: string, endTime?: string, queries?: string, itemIds?: string, queryLimit?: number, minImpressions?: number, limit?: number, offset?: number, page?: number, pageSize?: number, sortBy?: AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGetSortByEnum, sortOrder?: AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGetSortOrderEnum, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesItemPerformanceGet200Response, any, {}>>;
|
|
16228
16874
|
}
|
|
16229
16875
|
/**
|
|
16230
16876
|
* @export
|
|
@@ -16484,7 +17130,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
16484
17130
|
* @throws {RequiredError}
|
|
16485
17131
|
* @memberof LimitsApi
|
|
16486
17132
|
*/
|
|
16487
|
-
miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17133
|
+
miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16488
17134
|
/**
|
|
16489
17135
|
* Fetches list of all limits
|
|
16490
17136
|
* @summary Fetches list of all limits
|
|
@@ -16492,7 +17138,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
16492
17138
|
* @throws {RequiredError}
|
|
16493
17139
|
* @memberof LimitsApi
|
|
16494
17140
|
*/
|
|
16495
|
-
miscLimitsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitsListResponse, any>>;
|
|
17141
|
+
miscLimitsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitsListResponse, any, {}>>;
|
|
16496
17142
|
/**
|
|
16497
17143
|
* Fetches limit by id
|
|
16498
17144
|
* @summary Fetches limit by id
|
|
@@ -16501,7 +17147,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
16501
17147
|
* @throws {RequiredError}
|
|
16502
17148
|
* @memberof LimitsApi
|
|
16503
17149
|
*/
|
|
16504
|
-
miscLimitsLimitIDGet(limitID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitResponse, any>>;
|
|
17150
|
+
miscLimitsLimitIDGet(limitID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitResponse, any, {}>>;
|
|
16505
17151
|
/**
|
|
16506
17152
|
* Updates limit information by ID.
|
|
16507
17153
|
* @summary UpdateLimit an existing limit
|
|
@@ -16511,7 +17157,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
16511
17157
|
* @throws {RequiredError}
|
|
16512
17158
|
* @memberof LimitsApi
|
|
16513
17159
|
*/
|
|
16514
|
-
miscLimitsLimitIDPut(limitID: number, limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17160
|
+
miscLimitsLimitIDPut(limitID: number, limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16515
17161
|
/**
|
|
16516
17162
|
* Adds a new limit to the system
|
|
16517
17163
|
* @summary Creates a new limit
|
|
@@ -16520,7 +17166,7 @@ export declare class LimitsApi extends BaseAPI {
|
|
|
16520
17166
|
* @throws {RequiredError}
|
|
16521
17167
|
* @memberof LimitsApi
|
|
16522
17168
|
*/
|
|
16523
|
-
miscLimitsPost(limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17169
|
+
miscLimitsPost(limit: DataTypesCreateLimitRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16524
17170
|
}
|
|
16525
17171
|
/**
|
|
16526
17172
|
* MenusApi - axios parameter creator
|
|
@@ -16911,7 +17557,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16911
17557
|
* @throws {RequiredError}
|
|
16912
17558
|
* @memberof MenusApi
|
|
16913
17559
|
*/
|
|
16914
|
-
miscMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17560
|
+
miscMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
16915
17561
|
/**
|
|
16916
17562
|
* Deletes a menu from the system by ID.
|
|
16917
17563
|
* @summary Delete a menu
|
|
@@ -16920,7 +17566,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16920
17566
|
* @throws {RequiredError}
|
|
16921
17567
|
* @memberof MenusApi
|
|
16922
17568
|
*/
|
|
16923
|
-
miscMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17569
|
+
miscMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16924
17570
|
/**
|
|
16925
17571
|
* Fetches menus by id
|
|
16926
17572
|
* @summary Fetches menus by id
|
|
@@ -16929,7 +17575,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16929
17575
|
* @throws {RequiredError}
|
|
16930
17576
|
* @memberof MenusApi
|
|
16931
17577
|
*/
|
|
16932
|
-
miscMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17578
|
+
miscMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
16933
17579
|
/**
|
|
16934
17580
|
* Updates menu information by ID.
|
|
16935
17581
|
* @summary Update an existing menu
|
|
@@ -16939,7 +17585,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16939
17585
|
* @throws {RequiredError}
|
|
16940
17586
|
* @memberof MenusApi
|
|
16941
17587
|
*/
|
|
16942
|
-
miscMenusIdPut(id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17588
|
+
miscMenusIdPut(id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16943
17589
|
/**
|
|
16944
17590
|
* Fetches list of all menus by org id
|
|
16945
17591
|
* @summary Fetches list of all menus by org id
|
|
@@ -16948,7 +17594,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16948
17594
|
* @throws {RequiredError}
|
|
16949
17595
|
* @memberof MenusApi
|
|
16950
17596
|
*/
|
|
16951
|
-
miscMenusOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17597
|
+
miscMenusOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
16952
17598
|
/**
|
|
16953
17599
|
* Fetches list of all menus by org id and menuid
|
|
16954
17600
|
* @summary Fetches list of all menus by org id and menuid
|
|
@@ -16958,7 +17604,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16958
17604
|
* @throws {RequiredError}
|
|
16959
17605
|
* @memberof MenusApi
|
|
16960
17606
|
*/
|
|
16961
|
-
miscMenusOrgOrgIdIdGet(orgId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17607
|
+
miscMenusOrgOrgIdIdGet(orgId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
16962
17608
|
/**
|
|
16963
17609
|
* Updates menu information by ID with orgid.
|
|
16964
17610
|
* @summary Update an existing menu with orgid
|
|
@@ -16969,7 +17615,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16969
17615
|
* @throws {RequiredError}
|
|
16970
17616
|
* @memberof MenusApi
|
|
16971
17617
|
*/
|
|
16972
|
-
miscMenusOrgOrgIdIdPut(orgId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17618
|
+
miscMenusOrgOrgIdIdPut(orgId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16973
17619
|
/**
|
|
16974
17620
|
* Adds a new menu to the system
|
|
16975
17621
|
* @summary Creates a new menu
|
|
@@ -16979,7 +17625,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16979
17625
|
* @throws {RequiredError}
|
|
16980
17626
|
* @memberof MenusApi
|
|
16981
17627
|
*/
|
|
16982
|
-
miscMenusOrgOrgIdPost(orgId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17628
|
+
miscMenusOrgOrgIdPost(orgId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16983
17629
|
/**
|
|
16984
17630
|
* Adds a new menu to the system
|
|
16985
17631
|
* @summary Creates a new menu
|
|
@@ -16988,7 +17634,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16988
17634
|
* @throws {RequiredError}
|
|
16989
17635
|
* @memberof MenusApi
|
|
16990
17636
|
*/
|
|
16991
|
-
miscMenusPost(menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17637
|
+
miscMenusPost(menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
16992
17638
|
/**
|
|
16993
17639
|
* Fetches list of all menus by store id
|
|
16994
17640
|
* @summary Fetches list of all menus by store id
|
|
@@ -16997,7 +17643,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
16997
17643
|
* @throws {RequiredError}
|
|
16998
17644
|
* @memberof MenusApi
|
|
16999
17645
|
*/
|
|
17000
|
-
miscMenusStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any>>;
|
|
17646
|
+
miscMenusStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
|
|
17001
17647
|
/**
|
|
17002
17648
|
* Fetches list of all menus by storeId and menuid
|
|
17003
17649
|
* @summary Fetches list of all menus by storeId and menuid
|
|
@@ -17007,7 +17653,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17007
17653
|
* @throws {RequiredError}
|
|
17008
17654
|
* @memberof MenusApi
|
|
17009
17655
|
*/
|
|
17010
|
-
miscMenusStoreStoreIdIdGet(storeId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any>>;
|
|
17656
|
+
miscMenusStoreStoreIdIdGet(storeId: number, id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuResponse, any, {}>>;
|
|
17011
17657
|
/**
|
|
17012
17658
|
* Updates menu information by ID with storeId.
|
|
17013
17659
|
* @summary Update an existing menu with storeId
|
|
@@ -17018,7 +17664,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17018
17664
|
* @throws {RequiredError}
|
|
17019
17665
|
* @memberof MenusApi
|
|
17020
17666
|
*/
|
|
17021
|
-
miscMenusStoreStoreIdIdPut(storeId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17667
|
+
miscMenusStoreStoreIdIdPut(storeId: number, id: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17022
17668
|
/**
|
|
17023
17669
|
* Adds a new menu to the system with storeid
|
|
17024
17670
|
* @summary Creates a new menu with storeid
|
|
@@ -17028,7 +17674,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17028
17674
|
* @throws {RequiredError}
|
|
17029
17675
|
* @memberof MenusApi
|
|
17030
17676
|
*/
|
|
17031
|
-
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17677
|
+
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17032
17678
|
/**
|
|
17033
17679
|
* Fetches hierarchical menu access for the currently logged-in user
|
|
17034
17680
|
* @summary Fetches hierarchical menu access for logged-in user
|
|
@@ -17036,7 +17682,7 @@ export declare class MenusApi extends BaseAPI {
|
|
|
17036
17682
|
* @throws {RequiredError}
|
|
17037
17683
|
* @memberof MenusApi
|
|
17038
17684
|
*/
|
|
17039
|
-
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuAccessListResponse, any>>;
|
|
17685
|
+
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuAccessListResponse, any, {}>>;
|
|
17040
17686
|
}
|
|
17041
17687
|
/**
|
|
17042
17688
|
* ModulesApi - axios parameter creator
|
|
@@ -17190,7 +17836,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17190
17836
|
* @throws {RequiredError}
|
|
17191
17837
|
* @memberof ModulesApi
|
|
17192
17838
|
*/
|
|
17193
|
-
miscModulesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleListResponse, any>>;
|
|
17839
|
+
miscModulesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleListResponse, any, {}>>;
|
|
17194
17840
|
/**
|
|
17195
17841
|
* Deletes a module from the system by ID.
|
|
17196
17842
|
* @summary Deletes a module
|
|
@@ -17199,7 +17845,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17199
17845
|
* @throws {RequiredError}
|
|
17200
17846
|
* @memberof ModulesApi
|
|
17201
17847
|
*/
|
|
17202
|
-
miscModulesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17848
|
+
miscModulesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17203
17849
|
/**
|
|
17204
17850
|
* Fetches a module by its id
|
|
17205
17851
|
* @summary Fetches a module by id
|
|
@@ -17208,7 +17854,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17208
17854
|
* @throws {RequiredError}
|
|
17209
17855
|
* @memberof ModulesApi
|
|
17210
17856
|
*/
|
|
17211
|
-
miscModulesIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleResponse, any>>;
|
|
17857
|
+
miscModulesIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesModuleResponse, any, {}>>;
|
|
17212
17858
|
/**
|
|
17213
17859
|
* Updates module information by ID.
|
|
17214
17860
|
* @summary Updates an existing module
|
|
@@ -17218,7 +17864,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17218
17864
|
* @throws {RequiredError}
|
|
17219
17865
|
* @memberof ModulesApi
|
|
17220
17866
|
*/
|
|
17221
|
-
miscModulesIdPut(id: number, module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17867
|
+
miscModulesIdPut(id: number, module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17222
17868
|
/**
|
|
17223
17869
|
* Adds a new module to the system
|
|
17224
17870
|
* @summary Creates a new module
|
|
@@ -17227,7 +17873,7 @@ export declare class ModulesApi extends BaseAPI {
|
|
|
17227
17873
|
* @throws {RequiredError}
|
|
17228
17874
|
* @memberof ModulesApi
|
|
17229
17875
|
*/
|
|
17230
|
-
miscModulesPost(module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
17876
|
+
miscModulesPost(module: DataTypesModule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17231
17877
|
}
|
|
17232
17878
|
/**
|
|
17233
17879
|
* MongoDbApi - axios parameter creator
|
|
@@ -17410,7 +18056,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17410
18056
|
* @throws {RequiredError}
|
|
17411
18057
|
* @memberof MongoDbApi
|
|
17412
18058
|
*/
|
|
17413
|
-
mongodbDatabasesDatabaseNameCollectionsCollectionNameDelete(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18059
|
+
mongodbDatabasesDatabaseNameCollectionsCollectionNameDelete(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17414
18060
|
/**
|
|
17415
18061
|
* Creates a new collection within a specified database.
|
|
17416
18062
|
* @summary Create a new collection
|
|
@@ -17420,7 +18066,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17420
18066
|
* @throws {RequiredError}
|
|
17421
18067
|
* @memberof MongoDbApi
|
|
17422
18068
|
*/
|
|
17423
|
-
mongodbDatabasesDatabaseNameCollectionsCollectionNamePost(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18069
|
+
mongodbDatabasesDatabaseNameCollectionsCollectionNamePost(databaseName: string, collectionName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17424
18070
|
/**
|
|
17425
18071
|
* Retrieves a list of collections for a given database.
|
|
17426
18072
|
* @summary List collections
|
|
@@ -17429,7 +18075,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17429
18075
|
* @throws {RequiredError}
|
|
17430
18076
|
* @memberof MongoDbApi
|
|
17431
18077
|
*/
|
|
17432
|
-
mongodbDatabasesDatabaseNameCollectionsGet(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any>>;
|
|
18078
|
+
mongodbDatabasesDatabaseNameCollectionsGet(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any, {}>>;
|
|
17433
18079
|
/**
|
|
17434
18080
|
* Drops an entire database from the MongoDB instance.
|
|
17435
18081
|
* @summary Drop a database
|
|
@@ -17438,7 +18084,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17438
18084
|
* @throws {RequiredError}
|
|
17439
18085
|
* @memberof MongoDbApi
|
|
17440
18086
|
*/
|
|
17441
|
-
mongodbDatabasesDatabaseNameDelete(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18087
|
+
mongodbDatabasesDatabaseNameDelete(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17442
18088
|
/**
|
|
17443
18089
|
* Creates a new database by creating an initial collection in it.
|
|
17444
18090
|
* @summary Create a new database
|
|
@@ -17447,7 +18093,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17447
18093
|
* @throws {RequiredError}
|
|
17448
18094
|
* @memberof MongoDbApi
|
|
17449
18095
|
*/
|
|
17450
|
-
mongodbDatabasesDatabaseNamePost(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18096
|
+
mongodbDatabasesDatabaseNamePost(databaseName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17451
18097
|
/**
|
|
17452
18098
|
* Retrieves a list of all databases on the MongoDB instance.
|
|
17453
18099
|
* @summary List all databases
|
|
@@ -17455,7 +18101,7 @@ export declare class MongoDbApi extends BaseAPI {
|
|
|
17455
18101
|
* @throws {RequiredError}
|
|
17456
18102
|
* @memberof MongoDbApi
|
|
17457
18103
|
*/
|
|
17458
|
-
mongodbDatabasesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any>>;
|
|
18104
|
+
mongodbDatabasesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericStringArrayResponse, any, {}>>;
|
|
17459
18105
|
}
|
|
17460
18106
|
/**
|
|
17461
18107
|
* NewsLettersApi - axios parameter creator
|
|
@@ -17612,7 +18258,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
17612
18258
|
* @throws {RequiredError}
|
|
17613
18259
|
* @memberof NewsLettersApi
|
|
17614
18260
|
*/
|
|
17615
|
-
miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestsListResponse, any>>;
|
|
18261
|
+
miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestsListResponse, any, {}>>;
|
|
17616
18262
|
/**
|
|
17617
18263
|
* Fetches NewsLetterSubscription by id
|
|
17618
18264
|
* @summary Fetches NewsLetterSubscription by id
|
|
@@ -17621,7 +18267,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
17621
18267
|
* @throws {RequiredError}
|
|
17622
18268
|
* @memberof NewsLettersApi
|
|
17623
18269
|
*/
|
|
17624
|
-
miscNewsLettersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestResponse, any>>;
|
|
18270
|
+
miscNewsLettersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestResponse, any, {}>>;
|
|
17625
18271
|
/**
|
|
17626
18272
|
* Updates NewsLetterSubscription information by ID.
|
|
17627
18273
|
* @summary Update an existing NewsLetterSubscription
|
|
@@ -17631,7 +18277,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
17631
18277
|
* @throws {RequiredError}
|
|
17632
18278
|
* @memberof NewsLettersApi
|
|
17633
18279
|
*/
|
|
17634
|
-
miscNewsLettersIdPut(id: number, newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18280
|
+
miscNewsLettersIdPut(id: number, newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17635
18281
|
/**
|
|
17636
18282
|
* Adds a new NewsLetterSubscription to the system
|
|
17637
18283
|
* @summary Creates a new NewsLetterSubscription
|
|
@@ -17640,7 +18286,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
17640
18286
|
* @throws {RequiredError}
|
|
17641
18287
|
* @memberof NewsLettersApi
|
|
17642
18288
|
*/
|
|
17643
|
-
miscNewsLettersPost(newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18289
|
+
miscNewsLettersPost(newsLetterRequest: DataTypesNewsLetterRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17644
18290
|
/**
|
|
17645
18291
|
* Updates UpdateNewsLetterStatus information by ID.
|
|
17646
18292
|
* @summary Update an existing UpdateNewsLetterStatus
|
|
@@ -17650,7 +18296,7 @@ export declare class NewsLettersApi extends BaseAPI {
|
|
|
17650
18296
|
* @throws {RequiredError}
|
|
17651
18297
|
* @memberof NewsLettersApi
|
|
17652
18298
|
*/
|
|
17653
|
-
miscNewsLettersUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18299
|
+
miscNewsLettersUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17654
18300
|
}
|
|
17655
18301
|
/**
|
|
17656
18302
|
* OnboardingApi - axios parameter creator
|
|
@@ -17888,7 +18534,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17888
18534
|
* @throws {RequiredError}
|
|
17889
18535
|
* @memberof OnboardingApi
|
|
17890
18536
|
*/
|
|
17891
|
-
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
|
|
18537
|
+
adminV1UsersOnboardingGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any, {}>>;
|
|
17892
18538
|
/**
|
|
17893
18539
|
* Get job status
|
|
17894
18540
|
* @summary Get job status
|
|
@@ -17897,7 +18543,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17897
18543
|
* @throws {RequiredError}
|
|
17898
18544
|
* @memberof OnboardingApi
|
|
17899
18545
|
*/
|
|
17900
|
-
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesJobStatusResponseWrapper, any>>;
|
|
18546
|
+
adminV1UsersOnboardingJobstatusJobidGet(jobid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesJobStatusResponseWrapper, any, {}>>;
|
|
17901
18547
|
/**
|
|
17902
18548
|
* Updates onboardingstep and merges new data into onboardingdata JSON
|
|
17903
18549
|
* @summary Update user onboarding step
|
|
@@ -17906,7 +18552,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17906
18552
|
* @throws {RequiredError}
|
|
17907
18553
|
* @memberof OnboardingApi
|
|
17908
18554
|
*/
|
|
17909
|
-
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any>>;
|
|
18555
|
+
adminV1UsersOnboardingPost(body: DataTypesOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingResponseWrapper, any, {}>>;
|
|
17910
18556
|
/**
|
|
17911
18557
|
* Uploads a custom schema JSON file for onboarding and stores it into onboardingdata.customSchema
|
|
17912
18558
|
* @summary Upload custom schema JSON
|
|
@@ -17915,7 +18561,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17915
18561
|
* @throws {RequiredError}
|
|
17916
18562
|
* @memberof OnboardingApi
|
|
17917
18563
|
*/
|
|
17918
|
-
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18564
|
+
adminV1UsersOnboardingSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
17919
18565
|
/**
|
|
17920
18566
|
* Get schema options
|
|
17921
18567
|
* @summary Get schema options
|
|
@@ -17923,7 +18569,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17923
18569
|
* @throws {RequiredError}
|
|
17924
18570
|
* @memberof OnboardingApi
|
|
17925
18571
|
*/
|
|
17926
|
-
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any>>;
|
|
18572
|
+
adminV1UsersOnboardingSchemaoptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any, {}>>;
|
|
17927
18573
|
/**
|
|
17928
18574
|
* Test search endpoint
|
|
17929
18575
|
* @summary Test search
|
|
@@ -17932,7 +18578,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17932
18578
|
* @throws {RequiredError}
|
|
17933
18579
|
* @memberof OnboardingApi
|
|
17934
18580
|
*/
|
|
17935
|
-
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any>>;
|
|
18581
|
+
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any, {}>>;
|
|
17936
18582
|
/**
|
|
17937
18583
|
* Get store key
|
|
17938
18584
|
* @summary Get store key
|
|
@@ -17940,7 +18586,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17940
18586
|
* @throws {RequiredError}
|
|
17941
18587
|
* @memberof OnboardingApi
|
|
17942
18588
|
*/
|
|
17943
|
-
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any>>;
|
|
18589
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any, {}>>;
|
|
17944
18590
|
/**
|
|
17945
18591
|
* Upload source data
|
|
17946
18592
|
* @summary Upload source data
|
|
@@ -17949,7 +18595,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17949
18595
|
* @throws {RequiredError}
|
|
17950
18596
|
* @memberof OnboardingApi
|
|
17951
18597
|
*/
|
|
17952
|
-
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
18598
|
+
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any, {}>>;
|
|
17953
18599
|
/**
|
|
17954
18600
|
* Get sample datasets
|
|
17955
18601
|
* @summary Get sample datasets
|
|
@@ -17957,7 +18603,7 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
17957
18603
|
* @throws {RequiredError}
|
|
17958
18604
|
* @memberof OnboardingApi
|
|
17959
18605
|
*/
|
|
17960
|
-
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any>>;
|
|
18606
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSampleDatasetsResponseWrapper, any, {}>>;
|
|
17961
18607
|
}
|
|
17962
18608
|
/**
|
|
17963
18609
|
* OrganizationsApi - axios parameter creator
|
|
@@ -18114,7 +18760,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18114
18760
|
* @throws {RequiredError}
|
|
18115
18761
|
* @memberof OrganizationsApi
|
|
18116
18762
|
*/
|
|
18117
|
-
adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationsListResponse, any>>;
|
|
18763
|
+
adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationsListResponse, any, {}>>;
|
|
18118
18764
|
/**
|
|
18119
18765
|
* Updates Orgnization information by ID.
|
|
18120
18766
|
* @summary Update an existing Orgnization
|
|
@@ -18124,7 +18770,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18124
18770
|
* @throws {RequiredError}
|
|
18125
18771
|
* @memberof OrganizationsApi
|
|
18126
18772
|
*/
|
|
18127
|
-
adminOrganizationsIdPut(id: number, organization: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18773
|
+
adminOrganizationsIdPut(id: number, organization: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18128
18774
|
/**
|
|
18129
18775
|
* Fetches Orgnization by Id
|
|
18130
18776
|
* @summary Fetches Orgnization by Id
|
|
@@ -18133,7 +18779,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18133
18779
|
* @throws {RequiredError}
|
|
18134
18780
|
* @memberof OrganizationsApi
|
|
18135
18781
|
*/
|
|
18136
|
-
adminOrganizationsOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any>>;
|
|
18782
|
+
adminOrganizationsOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationResponse, any, {}>>;
|
|
18137
18783
|
/**
|
|
18138
18784
|
* Adds a new Orgnization
|
|
18139
18785
|
* @summary Creates a new Orgnization
|
|
@@ -18142,7 +18788,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18142
18788
|
* @throws {RequiredError}
|
|
18143
18789
|
* @memberof OrganizationsApi
|
|
18144
18790
|
*/
|
|
18145
|
-
adminOrganizationsPost(organzation: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18791
|
+
adminOrganizationsPost(organzation: DataTypesCreateOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18146
18792
|
/**
|
|
18147
18793
|
* Deletes a Orgnization from the system by ID.
|
|
18148
18794
|
* @summary Delete a Orgnization
|
|
@@ -18152,7 +18798,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
18152
18798
|
* @throws {RequiredError}
|
|
18153
18799
|
* @memberof OrganizationsApi
|
|
18154
18800
|
*/
|
|
18155
|
-
adminOrganizationsUpdateStatusIdStatusDelete(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18801
|
+
adminOrganizationsUpdateStatusIdStatusDelete(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18156
18802
|
}
|
|
18157
18803
|
/**
|
|
18158
18804
|
* ParentMenusApi - axios parameter creator
|
|
@@ -18306,7 +18952,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18306
18952
|
* @throws {RequiredError}
|
|
18307
18953
|
* @memberof ParentMenusApi
|
|
18308
18954
|
*/
|
|
18309
|
-
miscParentMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenusListResponse, any>>;
|
|
18955
|
+
miscParentMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenusListResponse, any, {}>>;
|
|
18310
18956
|
/**
|
|
18311
18957
|
* Deletes a parent menu from the system by ID.
|
|
18312
18958
|
* @summary Delete a parent menu
|
|
@@ -18315,7 +18961,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18315
18961
|
* @throws {RequiredError}
|
|
18316
18962
|
* @memberof ParentMenusApi
|
|
18317
18963
|
*/
|
|
18318
|
-
miscParentMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18964
|
+
miscParentMenusIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18319
18965
|
/**
|
|
18320
18966
|
* Fetches parent menus by id
|
|
18321
18967
|
* @summary Fetches parent menus by id
|
|
@@ -18324,7 +18970,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18324
18970
|
* @throws {RequiredError}
|
|
18325
18971
|
* @memberof ParentMenusApi
|
|
18326
18972
|
*/
|
|
18327
|
-
miscParentMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenuResponse, any>>;
|
|
18973
|
+
miscParentMenusIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesParentMenuResponse, any, {}>>;
|
|
18328
18974
|
/**
|
|
18329
18975
|
* Updates parent menu information by ID.
|
|
18330
18976
|
* @summary Update an existing parent menu
|
|
@@ -18334,7 +18980,7 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18334
18980
|
* @throws {RequiredError}
|
|
18335
18981
|
* @memberof ParentMenusApi
|
|
18336
18982
|
*/
|
|
18337
|
-
miscParentMenusIdPut(id: number, parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18983
|
+
miscParentMenusIdPut(id: number, parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18338
18984
|
/**
|
|
18339
18985
|
* Adds a new parent menu to the system
|
|
18340
18986
|
* @summary Creates a new parent menu
|
|
@@ -18343,7 +18989,190 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
18343
18989
|
* @throws {RequiredError}
|
|
18344
18990
|
* @memberof ParentMenusApi
|
|
18345
18991
|
*/
|
|
18346
|
-
miscParentMenusPost(parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
18992
|
+
miscParentMenusPost(parentMenu: DataTypesParentMenu, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18993
|
+
}
|
|
18994
|
+
/**
|
|
18995
|
+
* PaymentGatewayApi - axios parameter creator
|
|
18996
|
+
* @export
|
|
18997
|
+
*/
|
|
18998
|
+
export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
18999
|
+
/**
|
|
19000
|
+
* Creates a payment order using specified or default payment gateway
|
|
19001
|
+
* @summary Create a new payment order
|
|
19002
|
+
* @param {DataTypesCreatePaymentOrderRequest} order Payment order details
|
|
19003
|
+
* @param {*} [options] Override http request option.
|
|
19004
|
+
* @throws {RequiredError}
|
|
19005
|
+
*/
|
|
19006
|
+
paymentGatewayCreateOrderPost: (order: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19007
|
+
/**
|
|
19008
|
+
* Returns list of all active credit plans for purchase
|
|
19009
|
+
* @summary Get available credit plans
|
|
19010
|
+
* @param {*} [options] Override http request option.
|
|
19011
|
+
* @throws {RequiredError}
|
|
19012
|
+
*/
|
|
19013
|
+
paymentGatewayCreditPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19014
|
+
/**
|
|
19015
|
+
* Returns list of all available payment gateways
|
|
19016
|
+
* @summary Get available payment gateways
|
|
19017
|
+
* @param {*} [options] Override http request option.
|
|
19018
|
+
* @throws {RequiredError}
|
|
19019
|
+
*/
|
|
19020
|
+
paymentGatewayGatewaysGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19021
|
+
/**
|
|
19022
|
+
* Processes a refund for a completed payment
|
|
19023
|
+
* @summary Process payment refund
|
|
19024
|
+
* @param {DataTypesRefundRequestDto} refund Refund details
|
|
19025
|
+
* @param {*} [options] Override http request option.
|
|
19026
|
+
* @throws {RequiredError}
|
|
19027
|
+
*/
|
|
19028
|
+
paymentGatewayRefundPost: (refund: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19029
|
+
/**
|
|
19030
|
+
* Verifies the current status of a payment
|
|
19031
|
+
* @summary Verify payment status
|
|
19032
|
+
* @param {DataTypesVerifyPaymentRequest} verify Payment verification details
|
|
19033
|
+
* @param {*} [options] Override http request option.
|
|
19034
|
+
* @throws {RequiredError}
|
|
19035
|
+
*/
|
|
19036
|
+
paymentGatewayVerifyPost: (verify: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19037
|
+
};
|
|
19038
|
+
/**
|
|
19039
|
+
* PaymentGatewayApi - functional programming interface
|
|
19040
|
+
* @export
|
|
19041
|
+
*/
|
|
19042
|
+
export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
19043
|
+
/**
|
|
19044
|
+
* Creates a payment order using specified or default payment gateway
|
|
19045
|
+
* @summary Create a new payment order
|
|
19046
|
+
* @param {DataTypesCreatePaymentOrderRequest} order Payment order details
|
|
19047
|
+
* @param {*} [options] Override http request option.
|
|
19048
|
+
* @throws {RequiredError}
|
|
19049
|
+
*/
|
|
19050
|
+
paymentGatewayCreateOrderPost(order: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreatePaymentOrderResponse>>;
|
|
19051
|
+
/**
|
|
19052
|
+
* Returns list of all active credit plans for purchase
|
|
19053
|
+
* @summary Get available credit plans
|
|
19054
|
+
* @param {*} [options] Override http request option.
|
|
19055
|
+
* @throws {RequiredError}
|
|
19056
|
+
*/
|
|
19057
|
+
paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DataTypesCreditPlan>>>;
|
|
19058
|
+
/**
|
|
19059
|
+
* Returns list of all available payment gateways
|
|
19060
|
+
* @summary Get available payment gateways
|
|
19061
|
+
* @param {*} [options] Override http request option.
|
|
19062
|
+
* @throws {RequiredError}
|
|
19063
|
+
*/
|
|
19064
|
+
paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGatewayListResponse>>;
|
|
19065
|
+
/**
|
|
19066
|
+
* Processes a refund for a completed payment
|
|
19067
|
+
* @summary Process payment refund
|
|
19068
|
+
* @param {DataTypesRefundRequestDto} refund Refund details
|
|
19069
|
+
* @param {*} [options] Override http request option.
|
|
19070
|
+
* @throws {RequiredError}
|
|
19071
|
+
*/
|
|
19072
|
+
paymentGatewayRefundPost(refund: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundResponseDto>>;
|
|
19073
|
+
/**
|
|
19074
|
+
* Verifies the current status of a payment
|
|
19075
|
+
* @summary Verify payment status
|
|
19076
|
+
* @param {DataTypesVerifyPaymentRequest} verify Payment verification details
|
|
19077
|
+
* @param {*} [options] Override http request option.
|
|
19078
|
+
* @throws {RequiredError}
|
|
19079
|
+
*/
|
|
19080
|
+
paymentGatewayVerifyPost(verify: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusResponse>>;
|
|
19081
|
+
};
|
|
19082
|
+
/**
|
|
19083
|
+
* PaymentGatewayApi - factory interface
|
|
19084
|
+
* @export
|
|
19085
|
+
*/
|
|
19086
|
+
export declare const PaymentGatewayApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19087
|
+
/**
|
|
19088
|
+
* Creates a payment order using specified or default payment gateway
|
|
19089
|
+
* @summary Create a new payment order
|
|
19090
|
+
* @param {DataTypesCreatePaymentOrderRequest} order Payment order details
|
|
19091
|
+
* @param {*} [options] Override http request option.
|
|
19092
|
+
* @throws {RequiredError}
|
|
19093
|
+
*/
|
|
19094
|
+
paymentGatewayCreateOrderPost(order: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreatePaymentOrderResponse>;
|
|
19095
|
+
/**
|
|
19096
|
+
* Returns list of all active credit plans for purchase
|
|
19097
|
+
* @summary Get available credit plans
|
|
19098
|
+
* @param {*} [options] Override http request option.
|
|
19099
|
+
* @throws {RequiredError}
|
|
19100
|
+
*/
|
|
19101
|
+
paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<DataTypesCreditPlan>>;
|
|
19102
|
+
/**
|
|
19103
|
+
* Returns list of all available payment gateways
|
|
19104
|
+
* @summary Get available payment gateways
|
|
19105
|
+
* @param {*} [options] Override http request option.
|
|
19106
|
+
* @throws {RequiredError}
|
|
19107
|
+
*/
|
|
19108
|
+
paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGatewayListResponse>;
|
|
19109
|
+
/**
|
|
19110
|
+
* Processes a refund for a completed payment
|
|
19111
|
+
* @summary Process payment refund
|
|
19112
|
+
* @param {DataTypesRefundRequestDto} refund Refund details
|
|
19113
|
+
* @param {*} [options] Override http request option.
|
|
19114
|
+
* @throws {RequiredError}
|
|
19115
|
+
*/
|
|
19116
|
+
paymentGatewayRefundPost(refund: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundResponseDto>;
|
|
19117
|
+
/**
|
|
19118
|
+
* Verifies the current status of a payment
|
|
19119
|
+
* @summary Verify payment status
|
|
19120
|
+
* @param {DataTypesVerifyPaymentRequest} verify Payment verification details
|
|
19121
|
+
* @param {*} [options] Override http request option.
|
|
19122
|
+
* @throws {RequiredError}
|
|
19123
|
+
*/
|
|
19124
|
+
paymentGatewayVerifyPost(verify: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusResponse>;
|
|
19125
|
+
};
|
|
19126
|
+
/**
|
|
19127
|
+
* PaymentGatewayApi - object-oriented interface
|
|
19128
|
+
* @export
|
|
19129
|
+
* @class PaymentGatewayApi
|
|
19130
|
+
* @extends {BaseAPI}
|
|
19131
|
+
*/
|
|
19132
|
+
export declare class PaymentGatewayApi extends BaseAPI {
|
|
19133
|
+
/**
|
|
19134
|
+
* Creates a payment order using specified or default payment gateway
|
|
19135
|
+
* @summary Create a new payment order
|
|
19136
|
+
* @param {DataTypesCreatePaymentOrderRequest} order Payment order details
|
|
19137
|
+
* @param {*} [options] Override http request option.
|
|
19138
|
+
* @throws {RequiredError}
|
|
19139
|
+
* @memberof PaymentGatewayApi
|
|
19140
|
+
*/
|
|
19141
|
+
paymentGatewayCreateOrderPost(order: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
|
|
19142
|
+
/**
|
|
19143
|
+
* Returns list of all active credit plans for purchase
|
|
19144
|
+
* @summary Get available credit plans
|
|
19145
|
+
* @param {*} [options] Override http request option.
|
|
19146
|
+
* @throws {RequiredError}
|
|
19147
|
+
* @memberof PaymentGatewayApi
|
|
19148
|
+
*/
|
|
19149
|
+
paymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
|
|
19150
|
+
/**
|
|
19151
|
+
* Returns list of all available payment gateways
|
|
19152
|
+
* @summary Get available payment gateways
|
|
19153
|
+
* @param {*} [options] Override http request option.
|
|
19154
|
+
* @throws {RequiredError}
|
|
19155
|
+
* @memberof PaymentGatewayApi
|
|
19156
|
+
*/
|
|
19157
|
+
paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any, {}>>;
|
|
19158
|
+
/**
|
|
19159
|
+
* Processes a refund for a completed payment
|
|
19160
|
+
* @summary Process payment refund
|
|
19161
|
+
* @param {DataTypesRefundRequestDto} refund Refund details
|
|
19162
|
+
* @param {*} [options] Override http request option.
|
|
19163
|
+
* @throws {RequiredError}
|
|
19164
|
+
* @memberof PaymentGatewayApi
|
|
19165
|
+
*/
|
|
19166
|
+
paymentGatewayRefundPost(refund: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any, {}>>;
|
|
19167
|
+
/**
|
|
19168
|
+
* Verifies the current status of a payment
|
|
19169
|
+
* @summary Verify payment status
|
|
19170
|
+
* @param {DataTypesVerifyPaymentRequest} verify Payment verification details
|
|
19171
|
+
* @param {*} [options] Override http request option.
|
|
19172
|
+
* @throws {RequiredError}
|
|
19173
|
+
* @memberof PaymentGatewayApi
|
|
19174
|
+
*/
|
|
19175
|
+
paymentGatewayVerifyPost(verify: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any, {}>>;
|
|
18347
19176
|
}
|
|
18348
19177
|
/**
|
|
18349
19178
|
* PaymentsApi - axios parameter creator
|
|
@@ -18497,7 +19326,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
18497
19326
|
* @throws {RequiredError}
|
|
18498
19327
|
* @memberof PaymentsApi
|
|
18499
19328
|
*/
|
|
18500
|
-
adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentsListResponse, any>>;
|
|
19329
|
+
adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentsListResponse, any, {}>>;
|
|
18501
19330
|
/**
|
|
18502
19331
|
* Deletes a payment from the system by ID.
|
|
18503
19332
|
* @summary Delete a payment
|
|
@@ -18506,7 +19335,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
18506
19335
|
* @throws {RequiredError}
|
|
18507
19336
|
* @memberof PaymentsApi
|
|
18508
19337
|
*/
|
|
18509
|
-
adminPaymentsPaymentIDDelete(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19338
|
+
adminPaymentsPaymentIDDelete(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18510
19339
|
/**
|
|
18511
19340
|
* Fetches payment by id
|
|
18512
19341
|
* @summary Fetches payment by id
|
|
@@ -18515,7 +19344,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
18515
19344
|
* @throws {RequiredError}
|
|
18516
19345
|
* @memberof PaymentsApi
|
|
18517
19346
|
*/
|
|
18518
|
-
adminPaymentsPaymentIDGet(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentResponse, any>>;
|
|
19347
|
+
adminPaymentsPaymentIDGet(paymentID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentResponse, any, {}>>;
|
|
18519
19348
|
/**
|
|
18520
19349
|
* Updates payment information by ID.
|
|
18521
19350
|
* @summary Update an existing payment
|
|
@@ -18525,7 +19354,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
18525
19354
|
* @throws {RequiredError}
|
|
18526
19355
|
* @memberof PaymentsApi
|
|
18527
19356
|
*/
|
|
18528
|
-
adminPaymentsPaymentIDPut(paymentID: number, payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19357
|
+
adminPaymentsPaymentIDPut(paymentID: number, payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18529
19358
|
/**
|
|
18530
19359
|
* Adds a new payment to the system
|
|
18531
19360
|
* @summary Creates a new payment
|
|
@@ -18534,7 +19363,7 @@ export declare class PaymentsApi extends BaseAPI {
|
|
|
18534
19363
|
* @throws {RequiredError}
|
|
18535
19364
|
* @memberof PaymentsApi
|
|
18536
19365
|
*/
|
|
18537
|
-
adminPaymentsPost(payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19366
|
+
adminPaymentsPost(payment: DataTypesPaymentRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18538
19367
|
}
|
|
18539
19368
|
/**
|
|
18540
19369
|
* PlansApi - axios parameter creator
|
|
@@ -18691,7 +19520,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
18691
19520
|
* @throws {RequiredError}
|
|
18692
19521
|
* @memberof PlansApi
|
|
18693
19522
|
*/
|
|
18694
|
-
miscPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlansListResponse, any>>;
|
|
19523
|
+
miscPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlansListResponse, any, {}>>;
|
|
18695
19524
|
/**
|
|
18696
19525
|
* Fetches plan by id
|
|
18697
19526
|
* @summary Fetches plan by id
|
|
@@ -18700,7 +19529,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
18700
19529
|
* @throws {RequiredError}
|
|
18701
19530
|
* @memberof PlansApi
|
|
18702
19531
|
*/
|
|
18703
|
-
miscPlansPlanIDGet(planID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlanResponse, any>>;
|
|
19532
|
+
miscPlansPlanIDGet(planID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlanResponse, any, {}>>;
|
|
18704
19533
|
/**
|
|
18705
19534
|
* Update plan information by ID.
|
|
18706
19535
|
* @summary Update an existing Plan
|
|
@@ -18710,7 +19539,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
18710
19539
|
* @throws {RequiredError}
|
|
18711
19540
|
* @memberof PlansApi
|
|
18712
19541
|
*/
|
|
18713
|
-
miscPlansPlanIDPut(planID: number, plan: DataTypesPlan, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19542
|
+
miscPlansPlanIDPut(planID: number, plan: DataTypesPlan, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18714
19543
|
/**
|
|
18715
19544
|
* Adds a new plan to the system
|
|
18716
19545
|
* @summary Creates a new plan
|
|
@@ -18719,7 +19548,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
18719
19548
|
* @throws {RequiredError}
|
|
18720
19549
|
* @memberof PlansApi
|
|
18721
19550
|
*/
|
|
18722
|
-
miscPlansPost(plan: DataTypesCreatePlanRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19551
|
+
miscPlansPost(plan: DataTypesCreatePlanRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18723
19552
|
/**
|
|
18724
19553
|
* Updates plan status information by ID.
|
|
18725
19554
|
* @summary Update an existing plan status
|
|
@@ -18729,7 +19558,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
18729
19558
|
* @throws {RequiredError}
|
|
18730
19559
|
* @memberof PlansApi
|
|
18731
19560
|
*/
|
|
18732
|
-
miscPlansUpdateStatusPlanIDStatusPut(planID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
19561
|
+
miscPlansUpdateStatusPlanIDStatusPut(planID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
18733
19562
|
}
|
|
18734
19563
|
/**
|
|
18735
19564
|
* PluralsDeclensionsApi - axios parameter creator
|
|
@@ -19106,7 +19935,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19106
19935
|
* @throws {RequiredError}
|
|
19107
19936
|
* @memberof PluralsDeclensionsApi
|
|
19108
19937
|
*/
|
|
19109
|
-
adminDefaultDeclensionsCategoriesGet(language?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any>>;
|
|
19938
|
+
adminDefaultDeclensionsCategoriesGet(language?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
19110
19939
|
/**
|
|
19111
19940
|
* Get list of available languages in default declensions
|
|
19112
19941
|
* @summary Get available languages
|
|
@@ -19114,7 +19943,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19114
19943
|
* @throws {RequiredError}
|
|
19115
19944
|
* @memberof PluralsDeclensionsApi
|
|
19116
19945
|
*/
|
|
19117
|
-
adminDefaultDeclensionsLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any>>;
|
|
19946
|
+
adminDefaultDeclensionsLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
19118
19947
|
/**
|
|
19119
19948
|
* Search default declensions that can be used as templates for creating custom declensions
|
|
19120
19949
|
* @summary Search default declensions
|
|
@@ -19127,7 +19956,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19127
19956
|
* @throws {RequiredError}
|
|
19128
19957
|
* @memberof PluralsDeclensionsApi
|
|
19129
19958
|
*/
|
|
19130
|
-
adminDefaultDeclensionsSearchGet(lang?: string, category?: string, search?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDefaultDeclensionsResponseWrapper, any>>;
|
|
19959
|
+
adminDefaultDeclensionsSearchGet(lang?: string, category?: string, search?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDefaultDeclensionsResponseWrapper, any, {}>>;
|
|
19131
19960
|
/**
|
|
19132
19961
|
* Bulk upload plural/declension groups from JSON array
|
|
19133
19962
|
* @summary Bulk upload plural/declension groups
|
|
@@ -19137,7 +19966,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19137
19966
|
* @throws {RequiredError}
|
|
19138
19967
|
* @memberof PluralsDeclensionsApi
|
|
19139
19968
|
*/
|
|
19140
|
-
adminStoresXStoreIDPluralsDeclensionsBulkUploadPost(xStoreID: string, body: DataTypesBulkUploadPluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
19969
|
+
adminStoresXStoreIDPluralsDeclensionsBulkUploadPost(xStoreID: string, body: DataTypesBulkUploadPluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19141
19970
|
/**
|
|
19142
19971
|
* Export plural/declension groups for a store to CSV format
|
|
19143
19972
|
* @summary Export plural/declension groups to CSV
|
|
@@ -19148,7 +19977,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19148
19977
|
* @throws {RequiredError}
|
|
19149
19978
|
* @memberof PluralsDeclensionsApi
|
|
19150
19979
|
*/
|
|
19151
|
-
adminStoresXStoreIDPluralsDeclensionsExportCsvGet(xStoreID: string, language?: string, type?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
19980
|
+
adminStoresXStoreIDPluralsDeclensionsExportCsvGet(xStoreID: string, language?: string, type?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
19152
19981
|
/**
|
|
19153
19982
|
* Fetches plural/declension groups for a store with pagination
|
|
19154
19983
|
* @summary Get plural/declension groups
|
|
@@ -19162,7 +19991,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19162
19991
|
* @throws {RequiredError}
|
|
19163
19992
|
* @memberof PluralsDeclensionsApi
|
|
19164
19993
|
*/
|
|
19165
|
-
adminStoresXStoreIDPluralsDeclensionsGet(xStoreID: string, language?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionsResponseWrapper, any>>;
|
|
19994
|
+
adminStoresXStoreIDPluralsDeclensionsGet(xStoreID: string, language?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionsResponseWrapper, any, {}>>;
|
|
19166
19995
|
/**
|
|
19167
19996
|
* Deletes a plural/declension group (soft delete)
|
|
19168
19997
|
* @summary Delete plural/declension group
|
|
@@ -19172,7 +20001,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19172
20001
|
* @throws {RequiredError}
|
|
19173
20002
|
* @memberof PluralsDeclensionsApi
|
|
19174
20003
|
*/
|
|
19175
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDDelete(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20004
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDDelete(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19176
20005
|
/**
|
|
19177
20006
|
* Fetches a specific plural/declension group by ID
|
|
19178
20007
|
* @summary Get plural/declension group by ID
|
|
@@ -19182,7 +20011,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19182
20011
|
* @throws {RequiredError}
|
|
19183
20012
|
* @memberof PluralsDeclensionsApi
|
|
19184
20013
|
*/
|
|
19185
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDGet(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any>>;
|
|
20014
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDGet(xStoreID: string, pluralDeclensionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any, {}>>;
|
|
19186
20015
|
/**
|
|
19187
20016
|
* Updates a plural/declension group
|
|
19188
20017
|
* @summary Update plural/declension group
|
|
@@ -19193,7 +20022,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19193
20022
|
* @throws {RequiredError}
|
|
19194
20023
|
* @memberof PluralsDeclensionsApi
|
|
19195
20024
|
*/
|
|
19196
|
-
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDPut(xStoreID: string, pluralDeclensionID: number, body: DataTypesUpdatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20025
|
+
adminStoresXStoreIDPluralsDeclensionsPluralDeclensionIDPut(xStoreID: string, pluralDeclensionID: number, body: DataTypesUpdatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19197
20026
|
/**
|
|
19198
20027
|
* Creates a new plural/declension group for a store
|
|
19199
20028
|
* @summary Create plural/declension group
|
|
@@ -19203,7 +20032,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19203
20032
|
* @throws {RequiredError}
|
|
19204
20033
|
* @memberof PluralsDeclensionsApi
|
|
19205
20034
|
*/
|
|
19206
|
-
adminStoresXStoreIDPluralsDeclensionsPost(xStoreID: string, body: DataTypesCreatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any>>;
|
|
20035
|
+
adminStoresXStoreIDPluralsDeclensionsPost(xStoreID: string, body: DataTypesCreatePluralDeclensionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPluralDeclensionResponseWrapper, any, {}>>;
|
|
19207
20036
|
/**
|
|
19208
20037
|
* Upload plural/declension groups from CSV file
|
|
19209
20038
|
* @summary Upload plural/declension groups from CSV file
|
|
@@ -19213,7 +20042,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19213
20042
|
* @throws {RequiredError}
|
|
19214
20043
|
* @memberof PluralsDeclensionsApi
|
|
19215
20044
|
*/
|
|
19216
|
-
adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
20045
|
+
adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19217
20046
|
/**
|
|
19218
20047
|
* Upload plural/declension groups from JSON file
|
|
19219
20048
|
* @summary Upload plural/declension groups from JSON file
|
|
@@ -19223,7 +20052,7 @@ export declare class PluralsDeclensionsApi extends BaseAPI {
|
|
|
19223
20052
|
* @throws {RequiredError}
|
|
19224
20053
|
* @memberof PluralsDeclensionsApi
|
|
19225
20054
|
*/
|
|
19226
|
-
adminStoresXStoreIDPluralsDeclensionsUploadJsonPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any>>;
|
|
20055
|
+
adminStoresXStoreIDPluralsDeclensionsUploadJsonPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkUploadResponseWrapper, any, {}>>;
|
|
19227
20056
|
}
|
|
19228
20057
|
/**
|
|
19229
20058
|
* RegisterApi - axios parameter creator
|
|
@@ -19326,7 +20155,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
19326
20155
|
* @throws {RequiredError}
|
|
19327
20156
|
* @memberof RegisterApi
|
|
19328
20157
|
*/
|
|
19329
|
-
registerUsersOtpResendPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20158
|
+
registerUsersOtpResendPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19330
20159
|
/**
|
|
19331
20160
|
* Verifies OTP and marks user as verified
|
|
19332
20161
|
* @summary Verify OTP
|
|
@@ -19335,7 +20164,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
19335
20164
|
* @throws {RequiredError}
|
|
19336
20165
|
* @memberof RegisterApi
|
|
19337
20166
|
*/
|
|
19338
|
-
registerUsersOtpVerifyPost(body: DataTypesOTPPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesVerifyOTPResponseWrapper, any>>;
|
|
20167
|
+
registerUsersOtpVerifyPost(body: DataTypesOTPPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesVerifyOTPResponseWrapper, any, {}>>;
|
|
19339
20168
|
/**
|
|
19340
20169
|
* Creates a new user and sends OTP to email
|
|
19341
20170
|
* @summary Register new user
|
|
@@ -19344,7 +20173,7 @@ export declare class RegisterApi extends BaseAPI {
|
|
|
19344
20173
|
* @throws {RequiredError}
|
|
19345
20174
|
* @memberof RegisterApi
|
|
19346
20175
|
*/
|
|
19347
|
-
registerUsersPost(payload: DataTypesCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateUserResponseWrapper, any>>;
|
|
20176
|
+
registerUsersPost(payload: DataTypesCreateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreateUserResponseWrapper, any, {}>>;
|
|
19348
20177
|
}
|
|
19349
20178
|
/**
|
|
19350
20179
|
* RequestsApi - axios parameter creator
|
|
@@ -19525,7 +20354,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
19525
20354
|
* @throws {RequiredError}
|
|
19526
20355
|
* @memberof RequestsApi
|
|
19527
20356
|
*/
|
|
19528
|
-
miscRequestsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestsListResponse, any>>;
|
|
20357
|
+
miscRequestsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestsListResponse, any, {}>>;
|
|
19529
20358
|
/**
|
|
19530
20359
|
* Updates ServiceRequest information by ID.
|
|
19531
20360
|
* @summary Deletes an existing ServiceRequest
|
|
@@ -19534,7 +20363,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
19534
20363
|
* @throws {RequiredError}
|
|
19535
20364
|
* @memberof RequestsApi
|
|
19536
20365
|
*/
|
|
19537
|
-
miscRequestsIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20366
|
+
miscRequestsIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19538
20367
|
/**
|
|
19539
20368
|
* Updates ServiceRequest information by ID.
|
|
19540
20369
|
* @summary Update an existing ServiceRequest
|
|
@@ -19544,7 +20373,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
19544
20373
|
* @throws {RequiredError}
|
|
19545
20374
|
* @memberof RequestsApi
|
|
19546
20375
|
*/
|
|
19547
|
-
miscRequestsIdPut(id: number, serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20376
|
+
miscRequestsIdPut(id: number, serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19548
20377
|
/**
|
|
19549
20378
|
* Adds a new ServiceRequest to the system
|
|
19550
20379
|
* @summary Creates a new ServiceRequest
|
|
@@ -19553,7 +20382,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
19553
20382
|
* @throws {RequiredError}
|
|
19554
20383
|
* @memberof RequestsApi
|
|
19555
20384
|
*/
|
|
19556
|
-
miscRequestsPost(serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20385
|
+
miscRequestsPost(serviceRequest: DataTypesServiceRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19557
20386
|
/**
|
|
19558
20387
|
* Fetches ServiceRequest by id
|
|
19559
20388
|
* @summary Fetches ServiceRequest by id
|
|
@@ -19562,7 +20391,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
19562
20391
|
* @throws {RequiredError}
|
|
19563
20392
|
* @memberof RequestsApi
|
|
19564
20393
|
*/
|
|
19565
|
-
miscRequestsRequestIdGet(requestId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestResponse, any>>;
|
|
20394
|
+
miscRequestsRequestIdGet(requestId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestResponse, any, {}>>;
|
|
19566
20395
|
/**
|
|
19567
20396
|
* Updates ServiceRequest status information by ID.
|
|
19568
20397
|
* @summary Update an existing ServiceRequest status
|
|
@@ -19572,7 +20401,7 @@ export declare class RequestsApi extends BaseAPI {
|
|
|
19572
20401
|
* @throws {RequiredError}
|
|
19573
20402
|
* @memberof RequestsApi
|
|
19574
20403
|
*/
|
|
19575
|
-
miscRequestsUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20404
|
+
miscRequestsUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19576
20405
|
}
|
|
19577
20406
|
/**
|
|
19578
20407
|
* RoleRightsApi - axios parameter creator
|
|
@@ -19799,7 +20628,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
19799
20628
|
* @throws {RequiredError}
|
|
19800
20629
|
* @memberof RoleRightsApi
|
|
19801
20630
|
*/
|
|
19802
|
-
adminRolerightsBulkPost(roleRight: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20631
|
+
adminRolerightsBulkPost(roleRight: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19803
20632
|
/**
|
|
19804
20633
|
* Fetches list of all roleright
|
|
19805
20634
|
* @summary Fetches list of all roleright
|
|
@@ -19807,7 +20636,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
19807
20636
|
* @throws {RequiredError}
|
|
19808
20637
|
* @memberof RoleRightsApi
|
|
19809
20638
|
*/
|
|
19810
|
-
adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20639
|
+
adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
19811
20640
|
/**
|
|
19812
20641
|
* Fetches roleright by role id
|
|
19813
20642
|
* @summary Fetches roleright by role id
|
|
@@ -19816,7 +20645,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
19816
20645
|
* @throws {RequiredError}
|
|
19817
20646
|
* @memberof RoleRightsApi
|
|
19818
20647
|
*/
|
|
19819
|
-
adminRolerightsGetRoleRightsByRoleIdIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any>>;
|
|
20648
|
+
adminRolerightsGetRoleRightsByRoleIdIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any, {}>>;
|
|
19820
20649
|
/**
|
|
19821
20650
|
* Fetches roleright by id
|
|
19822
20651
|
* @summary Fetches roleright by id
|
|
@@ -19825,7 +20654,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
19825
20654
|
* @throws {RequiredError}
|
|
19826
20655
|
* @memberof RoleRightsApi
|
|
19827
20656
|
*/
|
|
19828
|
-
adminRolerightsIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any>>;
|
|
20657
|
+
adminRolerightsIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightResponse, any, {}>>;
|
|
19829
20658
|
/**
|
|
19830
20659
|
* Updates roleright information by ID.
|
|
19831
20660
|
* @summary Update an existing roleright
|
|
@@ -19835,7 +20664,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
19835
20664
|
* @throws {RequiredError}
|
|
19836
20665
|
* @memberof RoleRightsApi
|
|
19837
20666
|
*/
|
|
19838
|
-
adminRolerightsIdPut(id: number, roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20667
|
+
adminRolerightsIdPut(id: number, roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19839
20668
|
/**
|
|
19840
20669
|
* Fetches list of all roleright by orgId
|
|
19841
20670
|
* @summary Fetches list of all roleright by orgId
|
|
@@ -19844,7 +20673,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
19844
20673
|
* @throws {RequiredError}
|
|
19845
20674
|
* @memberof RoleRightsApi
|
|
19846
20675
|
*/
|
|
19847
|
-
adminRolerightsOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20676
|
+
adminRolerightsOrgOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
19848
20677
|
/**
|
|
19849
20678
|
* Adds a new roleright to the system
|
|
19850
20679
|
* @summary Creates a new roleright
|
|
@@ -19853,7 +20682,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
19853
20682
|
* @throws {RequiredError}
|
|
19854
20683
|
* @memberof RoleRightsApi
|
|
19855
20684
|
*/
|
|
19856
|
-
adminRolerightsPost(roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20685
|
+
adminRolerightsPost(roleRight: DataTypesRoleRightRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
19857
20686
|
/**
|
|
19858
20687
|
* Fetches list of all roleright by storeid
|
|
19859
20688
|
* @summary Fetches list of all roleright by storeid
|
|
@@ -19862,7 +20691,7 @@ export declare class RoleRightsApi extends BaseAPI {
|
|
|
19862
20691
|
* @throws {RequiredError}
|
|
19863
20692
|
* @memberof RoleRightsApi
|
|
19864
20693
|
*/
|
|
19865
|
-
adminRolerightsStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any>>;
|
|
20694
|
+
adminRolerightsStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
|
|
19866
20695
|
}
|
|
19867
20696
|
/**
|
|
19868
20697
|
* RolesApi - axios parameter creator
|
|
@@ -20023,7 +20852,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20023
20852
|
* @throws {RequiredError}
|
|
20024
20853
|
* @memberof RolesApi
|
|
20025
20854
|
*/
|
|
20026
|
-
adminRolesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20855
|
+
adminRolesIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20027
20856
|
/**
|
|
20028
20857
|
* Updates role information by ID.
|
|
20029
20858
|
* @summary Update an existing role
|
|
@@ -20033,7 +20862,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20033
20862
|
* @throws {RequiredError}
|
|
20034
20863
|
* @memberof RolesApi
|
|
20035
20864
|
*/
|
|
20036
|
-
adminRolesIdPut(id: number, role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20865
|
+
adminRolesIdPut(id: number, role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20037
20866
|
/**
|
|
20038
20867
|
* Fetches list of all roles
|
|
20039
20868
|
* @summary Fetches list of all roles
|
|
@@ -20042,7 +20871,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20042
20871
|
* @throws {RequiredError}
|
|
20043
20872
|
* @memberof RolesApi
|
|
20044
20873
|
*/
|
|
20045
|
-
adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRolesListResponse, any>>;
|
|
20874
|
+
adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRolesListResponse, any, {}>>;
|
|
20046
20875
|
/**
|
|
20047
20876
|
* Fetches role by id
|
|
20048
20877
|
* @summary Fetches role by id
|
|
@@ -20052,7 +20881,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20052
20881
|
* @throws {RequiredError}
|
|
20053
20882
|
* @memberof RolesApi
|
|
20054
20883
|
*/
|
|
20055
|
-
adminRolesOrgIdRoleIdGet(orgId: number, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleResponse, any>>;
|
|
20884
|
+
adminRolesOrgIdRoleIdGet(orgId: number, roleId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleResponse, any, {}>>;
|
|
20056
20885
|
/**
|
|
20057
20886
|
* Adds a new role to the system
|
|
20058
20887
|
* @summary Creates a new role
|
|
@@ -20061,7 +20890,7 @@ export declare class RolesApi extends BaseAPI {
|
|
|
20061
20890
|
* @throws {RequiredError}
|
|
20062
20891
|
* @memberof RolesApi
|
|
20063
20892
|
*/
|
|
20064
|
-
adminRolesPost(role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
20893
|
+
adminRolesPost(role: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20065
20894
|
}
|
|
20066
20895
|
/**
|
|
20067
20896
|
* SearchApi - axios parameter creator
|
|
@@ -20283,7 +21112,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
20283
21112
|
* @throws {RequiredError}
|
|
20284
21113
|
* @memberof SearchApi
|
|
20285
21114
|
*/
|
|
20286
|
-
adminV1SearchXStoreIDPost(xStoreID: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCombinedSearchResponseWrapper, any>>;
|
|
21115
|
+
adminV1SearchXStoreIDPost(xStoreID: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCombinedSearchResponseWrapper, any, {}>>;
|
|
20287
21116
|
/**
|
|
20288
21117
|
* Get metadata about all configurable fields for dynamic form generation
|
|
20289
21118
|
* @summary Get Configuration Schema
|
|
@@ -20292,7 +21121,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
20292
21121
|
* @throws {RequiredError}
|
|
20293
21122
|
* @memberof SearchApi
|
|
20294
21123
|
*/
|
|
20295
|
-
v1IndexConfigSchemaGet(indexname?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any>>;
|
|
21124
|
+
v1IndexConfigSchemaGet(indexname?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any, {}>>;
|
|
20296
21125
|
/**
|
|
20297
21126
|
* Get the current index configuration
|
|
20298
21127
|
* @summary Get Index Config
|
|
@@ -20301,7 +21130,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
20301
21130
|
* @throws {RequiredError}
|
|
20302
21131
|
* @memberof SearchApi
|
|
20303
21132
|
*/
|
|
20304
|
-
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
21133
|
+
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
20305
21134
|
/**
|
|
20306
21135
|
* Configure the index for search
|
|
20307
21136
|
* @summary Index Config
|
|
@@ -20311,7 +21140,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
20311
21140
|
* @throws {RequiredError}
|
|
20312
21141
|
* @memberof SearchApi
|
|
20313
21142
|
*/
|
|
20314
|
-
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
21143
|
+
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20315
21144
|
/**
|
|
20316
21145
|
* Update a single property of the index configuration
|
|
20317
21146
|
* @summary Update Index Config Property
|
|
@@ -20322,7 +21151,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
20322
21151
|
* @throws {RequiredError}
|
|
20323
21152
|
* @memberof SearchApi
|
|
20324
21153
|
*/
|
|
20325
|
-
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
21154
|
+
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
20326
21155
|
/**
|
|
20327
21156
|
* Get default configuration values computed from the Typesense schema
|
|
20328
21157
|
* @summary Get Schema-Based Defaults
|
|
@@ -20331,7 +21160,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
20331
21160
|
* @throws {RequiredError}
|
|
20332
21161
|
* @memberof SearchApi
|
|
20333
21162
|
*/
|
|
20334
|
-
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any>>;
|
|
21163
|
+
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
|
|
20335
21164
|
/**
|
|
20336
21165
|
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
20337
21166
|
* @summary Public Search API
|
|
@@ -20342,7 +21171,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
20342
21171
|
* @throws {RequiredError}
|
|
20343
21172
|
* @memberof SearchApi
|
|
20344
21173
|
*/
|
|
20345
|
-
v1SearchPost(xStoreid: string, xStoresecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any>>;
|
|
21174
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any, {}>>;
|
|
20346
21175
|
}
|
|
20347
21176
|
/**
|
|
20348
21177
|
* StopwordsApi - axios parameter creator
|
|
@@ -20571,7 +21400,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
20571
21400
|
* @throws {RequiredError}
|
|
20572
21401
|
* @memberof StopwordsApi
|
|
20573
21402
|
*/
|
|
20574
|
-
adminStoresStopwordsLanguagesGet(type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLanguagesResponseWrapper, any>>;
|
|
21403
|
+
adminStoresStopwordsLanguagesGet(type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLanguagesResponseWrapper, any, {}>>;
|
|
20575
21404
|
/**
|
|
20576
21405
|
* Enables or disables a specific word for a store. Supports default words, store-specific words, and custom words.
|
|
20577
21406
|
* @summary Update word status for store
|
|
@@ -20581,7 +21410,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
20581
21410
|
* @throws {RequiredError}
|
|
20582
21411
|
* @memberof StopwordsApi
|
|
20583
21412
|
*/
|
|
20584
|
-
adminStoresXStoreIDStopwordsWordStatusPut(xStoreID: string, body: DataTypesUpdateWordStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21413
|
+
adminStoresXStoreIDStopwordsWordStatusPut(xStoreID: string, body: DataTypesUpdateWordStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
20585
21414
|
/**
|
|
20586
21415
|
* Fetches a single word list by language with pagination on words within the wordlist
|
|
20587
21416
|
* @summary Get word lists by language
|
|
@@ -20594,7 +21423,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
20594
21423
|
* @throws {RequiredError}
|
|
20595
21424
|
* @memberof StopwordsApi
|
|
20596
21425
|
*/
|
|
20597
|
-
adminStoresXStoreIDStopwordsWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseWrapper, any>>;
|
|
21426
|
+
adminStoresXStoreIDStopwordsWordlistsGet(xStoreID: string, lang?: string, type?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseWrapper, any, {}>>;
|
|
20598
21427
|
/**
|
|
20599
21428
|
* Fetches a single word list by language with pagination on words, including store-specific enabled/disabled status and store-specific added words. Supports search functionality.
|
|
20600
21429
|
* @summary Get word lists by language (includes store-specific words)
|
|
@@ -20608,7 +21437,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
20608
21437
|
* @throws {RequiredError}
|
|
20609
21438
|
* @memberof StopwordsApi
|
|
20610
21439
|
*/
|
|
20611
|
-
adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID: string, lang?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseEnhancedWrapper, any>>;
|
|
21440
|
+
adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID: string, lang?: string, type?: string, q?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesWordListResponseEnhancedWrapper, any, {}>>;
|
|
20612
21441
|
/**
|
|
20613
21442
|
* Removes store-specific words from a language word list
|
|
20614
21443
|
* @summary Remove words from language word list
|
|
@@ -20619,7 +21448,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
20619
21448
|
* @throws {RequiredError}
|
|
20620
21449
|
* @memberof StopwordsApi
|
|
20621
21450
|
*/
|
|
20622
|
-
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID: string, wordListID: number, body: DataTypesRemoveWordsFromLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21451
|
+
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID: string, wordListID: number, body: DataTypesRemoveWordsFromLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
20623
21452
|
/**
|
|
20624
21453
|
* Adds words directly to a language word list for a specific store
|
|
20625
21454
|
* @summary Add words to language word list
|
|
@@ -20630,7 +21459,7 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
20630
21459
|
* @throws {RequiredError}
|
|
20631
21460
|
* @memberof StopwordsApi
|
|
20632
21461
|
*/
|
|
20633
|
-
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost(xStoreID: string, wordListID: number, body: DataTypesAddWordsToLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any>>;
|
|
21462
|
+
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost(xStoreID: string, wordListID: number, body: DataTypesAddWordsToLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
20634
21463
|
}
|
|
20635
21464
|
/**
|
|
20636
21465
|
* StoreDocumentsApi - axios parameter creator
|
|
@@ -20843,7 +21672,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
20843
21672
|
* @throws {RequiredError}
|
|
20844
21673
|
* @memberof StoreDocumentsApi
|
|
20845
21674
|
*/
|
|
20846
|
-
adminStoresXStoreIDDocumentsBulkPost(xStoreID: string, body: DataTypesBulkDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkDocumentResponseWrapper, any>>;
|
|
21675
|
+
adminStoresXStoreIDDocumentsBulkPost(xStoreID: string, body: DataTypesBulkDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesBulkDocumentResponseWrapper, any, {}>>;
|
|
20847
21676
|
/**
|
|
20848
21677
|
* Deletes a document by ID from a store
|
|
20849
21678
|
* @summary Delete document
|
|
@@ -20853,7 +21682,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
20853
21682
|
* @throws {RequiredError}
|
|
20854
21683
|
* @memberof StoreDocumentsApi
|
|
20855
21684
|
*/
|
|
20856
|
-
adminStoresXStoreIDDocumentsDocumentIDDelete(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21685
|
+
adminStoresXStoreIDDocumentsDocumentIDDelete(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
20857
21686
|
/**
|
|
20858
21687
|
* Retrieves a single document by ID from a store
|
|
20859
21688
|
* @summary Get single document
|
|
@@ -20863,7 +21692,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
20863
21692
|
* @throws {RequiredError}
|
|
20864
21693
|
* @memberof StoreDocumentsApi
|
|
20865
21694
|
*/
|
|
20866
|
-
adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21695
|
+
adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID: string, documentID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
20867
21696
|
/**
|
|
20868
21697
|
* Updates an existing document by ID. The document ID will not change even if document properties change.
|
|
20869
21698
|
* @summary Update document
|
|
@@ -20874,7 +21703,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
20874
21703
|
* @throws {RequiredError}
|
|
20875
21704
|
* @memberof StoreDocumentsApi
|
|
20876
21705
|
*/
|
|
20877
|
-
adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21706
|
+
adminStoresXStoreIDDocumentsDocumentIDPut(xStoreID: string, documentID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
20878
21707
|
/**
|
|
20879
21708
|
* Retrieves documents from a store with pagination and optional filtering
|
|
20880
21709
|
* @summary Get documents from store
|
|
@@ -20888,7 +21717,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
20888
21717
|
* @throws {RequiredError}
|
|
20889
21718
|
* @memberof StoreDocumentsApi
|
|
20890
21719
|
*/
|
|
20891
|
-
adminStoresXStoreIDDocumentsGet(xStoreID: string, page?: number, limit?: number, search?: string, filter?: string, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentListResponseWrapper, any>>;
|
|
21720
|
+
adminStoresXStoreIDDocumentsGet(xStoreID: string, page?: number, limit?: number, search?: string, filter?: string, sort?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentListResponseWrapper, any, {}>>;
|
|
20892
21721
|
/**
|
|
20893
21722
|
* Inserts a new document into a store. If ID is provided, it will be used; otherwise, a hash-based ID will be generated. If a document with the same hash already exists, it will be updated.
|
|
20894
21723
|
* @summary Insert document
|
|
@@ -20898,7 +21727,7 @@ export declare class StoreDocumentsApi extends BaseAPI {
|
|
|
20898
21727
|
* @throws {RequiredError}
|
|
20899
21728
|
* @memberof StoreDocumentsApi
|
|
20900
21729
|
*/
|
|
20901
|
-
adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any>>;
|
|
21730
|
+
adminStoresXStoreIDDocumentsPost(xStoreID: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesDocumentResponseWrapper, any, {}>>;
|
|
20902
21731
|
}
|
|
20903
21732
|
/**
|
|
20904
21733
|
* StoresApi - axios parameter creator
|
|
@@ -21202,7 +22031,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21202
22031
|
* @throws {RequiredError}
|
|
21203
22032
|
* @memberof StoresApi
|
|
21204
22033
|
*/
|
|
21205
|
-
adminStoresGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoresListResponse, any>>;
|
|
22034
|
+
adminStoresGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoresListResponse, any, {}>>;
|
|
21206
22035
|
/**
|
|
21207
22036
|
* Fetches stores by xStoreID
|
|
21208
22037
|
* @summary Fetches stores by xStoreID
|
|
@@ -21211,7 +22040,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21211
22040
|
* @throws {RequiredError}
|
|
21212
22041
|
* @memberof StoresApi
|
|
21213
22042
|
*/
|
|
21214
|
-
adminStoresGetStoreXStoreIDGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreResponse, any>>;
|
|
22043
|
+
adminStoresGetStoreXStoreIDGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreResponse, any, {}>>;
|
|
21215
22044
|
/**
|
|
21216
22045
|
* Adds a new store to the system
|
|
21217
22046
|
* @summary Creates a new store
|
|
@@ -21220,7 +22049,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21220
22049
|
* @throws {RequiredError}
|
|
21221
22050
|
* @memberof StoresApi
|
|
21222
22051
|
*/
|
|
21223
|
-
adminStoresPost(store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22052
|
+
adminStoresPost(store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21224
22053
|
/**
|
|
21225
22054
|
* Updates store information by ID.
|
|
21226
22055
|
* @summary Update an existing store
|
|
@@ -21230,7 +22059,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21230
22059
|
* @throws {RequiredError}
|
|
21231
22060
|
* @memberof StoresApi
|
|
21232
22061
|
*/
|
|
21233
|
-
adminStoresStoreIDPut(storeID: number, store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22062
|
+
adminStoresStoreIDPut(storeID: number, store: DataTypesStoreRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21234
22063
|
/**
|
|
21235
22064
|
* Updates StoreStatus information by ID.
|
|
21236
22065
|
* @summary Update an existing StoreStatus
|
|
@@ -21240,7 +22069,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21240
22069
|
* @throws {RequiredError}
|
|
21241
22070
|
* @memberof StoresApi
|
|
21242
22071
|
*/
|
|
21243
|
-
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22072
|
+
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21244
22073
|
/**
|
|
21245
22074
|
* Retrieves the store configuration using x-store ID
|
|
21246
22075
|
* @summary Get Store Config
|
|
@@ -21249,7 +22078,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21249
22078
|
* @throws {RequiredError}
|
|
21250
22079
|
* @memberof StoresApi
|
|
21251
22080
|
*/
|
|
21252
|
-
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
22081
|
+
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
21253
22082
|
/**
|
|
21254
22083
|
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
21255
22084
|
* @summary Update Store Config (Partial)
|
|
@@ -21259,7 +22088,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21259
22088
|
* @throws {RequiredError}
|
|
21260
22089
|
* @memberof StoresApi
|
|
21261
22090
|
*/
|
|
21262
|
-
adminStoresXStoreIDConfigPut(xStoreID: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
22091
|
+
adminStoresXStoreIDConfigPut(xStoreID: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
21263
22092
|
/**
|
|
21264
22093
|
* Get metadata about all configurable fields for store configuration using x-store ID
|
|
21265
22094
|
* @summary Get Store Config Schema
|
|
@@ -21268,7 +22097,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21268
22097
|
* @throws {RequiredError}
|
|
21269
22098
|
* @memberof StoresApi
|
|
21270
22099
|
*/
|
|
21271
|
-
adminStoresXStoreIDConfigSchemaGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any>>;
|
|
22100
|
+
adminStoresXStoreIDConfigSchemaGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any, {}>>;
|
|
21272
22101
|
/**
|
|
21273
22102
|
* Retrieves all store credentials (XStoreID, XStoreSecret, XStoreWriteSecret) for a given x-store ID
|
|
21274
22103
|
* @summary Get store credentials
|
|
@@ -21277,7 +22106,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21277
22106
|
* @throws {RequiredError}
|
|
21278
22107
|
* @memberof StoresApi
|
|
21279
22108
|
*/
|
|
21280
|
-
adminStoresXStoreIDCredentialsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCredentialsResponse, any>>;
|
|
22109
|
+
adminStoresXStoreIDCredentialsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCredentialsResponse, any, {}>>;
|
|
21281
22110
|
/**
|
|
21282
22111
|
* Get default configuration values computed from the store\'s index schema using x-store ID
|
|
21283
22112
|
* @summary Get Store Schema-Based Defaults
|
|
@@ -21286,7 +22115,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21286
22115
|
* @throws {RequiredError}
|
|
21287
22116
|
* @memberof StoresApi
|
|
21288
22117
|
*/
|
|
21289
|
-
adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any>>;
|
|
22118
|
+
adminStoresXStoreIDDefaultsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
|
|
21290
22119
|
/**
|
|
21291
22120
|
* Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
|
|
21292
22121
|
* @summary Regenerate X-Store Secret
|
|
@@ -21295,7 +22124,7 @@ export declare class StoresApi extends BaseAPI {
|
|
|
21295
22124
|
* @throws {RequiredError}
|
|
21296
22125
|
* @memberof StoresApi
|
|
21297
22126
|
*/
|
|
21298
|
-
xStoreIDRegenerateSecretPost(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse, any>>;
|
|
22127
|
+
xStoreIDRegenerateSecretPost(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse, any, {}>>;
|
|
21299
22128
|
}
|
|
21300
22129
|
/**
|
|
21301
22130
|
* SubscriptionsApi - axios parameter creator
|
|
@@ -21454,7 +22283,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
21454
22283
|
* @throws {RequiredError}
|
|
21455
22284
|
* @memberof SubscriptionsApi
|
|
21456
22285
|
*/
|
|
21457
|
-
adminSubscriptionsSubscriptionIDPut(subscriptionID: number, subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22286
|
+
adminSubscriptionsSubscriptionIDPut(subscriptionID: number, subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21458
22287
|
/**
|
|
21459
22288
|
* Updates Subscription status information by ID.
|
|
21460
22289
|
* @summary Update an existing Subscription status
|
|
@@ -21464,7 +22293,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
21464
22293
|
* @throws {RequiredError}
|
|
21465
22294
|
* @memberof SubscriptionsApi
|
|
21466
22295
|
*/
|
|
21467
|
-
adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22296
|
+
adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21468
22297
|
/**
|
|
21469
22298
|
* Fetches list of all Subscription
|
|
21470
22299
|
* @summary Fetches list of all Subscription
|
|
@@ -21472,7 +22301,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
21472
22301
|
* @throws {RequiredError}
|
|
21473
22302
|
* @memberof SubscriptionsApi
|
|
21474
22303
|
*/
|
|
21475
|
-
miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionsListResponse, any>>;
|
|
22304
|
+
miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionsListResponse, any, {}>>;
|
|
21476
22305
|
/**
|
|
21477
22306
|
* Adds a new Subscription to the system
|
|
21478
22307
|
* @summary Creates a new Subscription
|
|
@@ -21481,7 +22310,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
21481
22310
|
* @throws {RequiredError}
|
|
21482
22311
|
* @memberof SubscriptionsApi
|
|
21483
22312
|
*/
|
|
21484
|
-
miscSubscriptionsPost(subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22313
|
+
miscSubscriptionsPost(subscription: DataTypesCreateSubscriptionRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21485
22314
|
/**
|
|
21486
22315
|
* Fetches Subscription by id
|
|
21487
22316
|
* @summary Fetches Subscription by id
|
|
@@ -21490,7 +22319,7 @@ export declare class SubscriptionsApi extends BaseAPI {
|
|
|
21490
22319
|
* @throws {RequiredError}
|
|
21491
22320
|
* @memberof SubscriptionsApi
|
|
21492
22321
|
*/
|
|
21493
|
-
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any>>;
|
|
22322
|
+
miscSubscriptionsSubscriptionIDGet(subscriptionID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionResponse, any, {}>>;
|
|
21494
22323
|
}
|
|
21495
22324
|
/**
|
|
21496
22325
|
* UserApi - axios parameter creator
|
|
@@ -21697,7 +22526,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
21697
22526
|
* @throws {RequiredError}
|
|
21698
22527
|
* @memberof UserApi
|
|
21699
22528
|
*/
|
|
21700
|
-
adminUsersActivateUserIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22529
|
+
adminUsersActivateUserIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21701
22530
|
/**
|
|
21702
22531
|
* Fetches list of all users
|
|
21703
22532
|
* @summary Fetches list of all users
|
|
@@ -21705,7 +22534,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
21705
22534
|
* @throws {RequiredError}
|
|
21706
22535
|
* @memberof UserApi
|
|
21707
22536
|
*/
|
|
21708
|
-
adminUsersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUsersListResponse, any>>;
|
|
22537
|
+
adminUsersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUsersListResponse, any, {}>>;
|
|
21709
22538
|
/**
|
|
21710
22539
|
* Deletes a user from the system by ID.
|
|
21711
22540
|
* @summary Delete a user
|
|
@@ -21714,7 +22543,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
21714
22543
|
* @throws {RequiredError}
|
|
21715
22544
|
* @memberof UserApi
|
|
21716
22545
|
*/
|
|
21717
|
-
adminUsersIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22546
|
+
adminUsersIdDelete(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21718
22547
|
/**
|
|
21719
22548
|
* Fetches user by id
|
|
21720
22549
|
* @summary Fetches user by id
|
|
@@ -21723,7 +22552,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
21723
22552
|
* @throws {RequiredError}
|
|
21724
22553
|
* @memberof UserApi
|
|
21725
22554
|
*/
|
|
21726
|
-
adminUsersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUserResponse, any>>;
|
|
22555
|
+
adminUsersIdGet(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUserResponse, any, {}>>;
|
|
21727
22556
|
/**
|
|
21728
22557
|
* Updates user information by ID.
|
|
21729
22558
|
* @summary Update an existing user
|
|
@@ -21733,7 +22562,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
21733
22562
|
* @throws {RequiredError}
|
|
21734
22563
|
* @memberof UserApi
|
|
21735
22564
|
*/
|
|
21736
|
-
adminUsersIdPut(id: number, user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22565
|
+
adminUsersIdPut(id: number, user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21737
22566
|
/**
|
|
21738
22567
|
* Adds a new user to the system
|
|
21739
22568
|
* @summary Creates a new user
|
|
@@ -21742,7 +22571,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
21742
22571
|
* @throws {RequiredError}
|
|
21743
22572
|
* @memberof UserApi
|
|
21744
22573
|
*/
|
|
21745
|
-
adminUsersPost(user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22574
|
+
adminUsersPost(user: DataTypesCreateUserRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21746
22575
|
/**
|
|
21747
22576
|
* Resets the password for a specified user by ID and logs out the user.
|
|
21748
22577
|
* @summary Reset a user\'s password
|
|
@@ -21751,5 +22580,5 @@ export declare class UserApi extends BaseAPI {
|
|
|
21751
22580
|
* @throws {RequiredError}
|
|
21752
22581
|
* @memberof UserApi
|
|
21753
22582
|
*/
|
|
21754
|
-
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
22583
|
+
adminUsersResetpasswordIdPut(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
21755
22584
|
}
|