@seekora-ai/admin-api 1.1.0 → 1.1.1
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 +23 -2
- package/api.ts +1020 -4
- package/dist/api.d.ts +779 -4
- package/dist/api.js +429 -4
- package/dist/esm/api.d.ts +779 -4
- package/dist/esm/api.js +429 -4
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.1.tgz +0 -0
- package/seekora-ai-admin-api-1.1.0.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -746,6 +746,19 @@ export interface AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response {
|
|
|
746
746
|
*/
|
|
747
747
|
'total'?: number;
|
|
748
748
|
}
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @export
|
|
752
|
+
* @interface AdminPaymentGatewayVerifyInvoicePostRequest
|
|
753
|
+
*/
|
|
754
|
+
export interface AdminPaymentGatewayVerifyInvoicePostRequest {
|
|
755
|
+
/**
|
|
756
|
+
*
|
|
757
|
+
* @type {string}
|
|
758
|
+
* @memberof AdminPaymentGatewayVerifyInvoicePostRequest
|
|
759
|
+
*/
|
|
760
|
+
'gateway_order_id'?: string;
|
|
761
|
+
}
|
|
749
762
|
/**
|
|
750
763
|
*
|
|
751
764
|
* @export
|
|
@@ -10878,6 +10891,31 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
|
|
|
10878
10891
|
*/
|
|
10879
10892
|
'status'?: number;
|
|
10880
10893
|
}
|
|
10894
|
+
/**
|
|
10895
|
+
*
|
|
10896
|
+
* @export
|
|
10897
|
+
* @interface DataTypesGenericResponseFeatureLimitServiceLimitStatus
|
|
10898
|
+
*/
|
|
10899
|
+
export interface DataTypesGenericResponseFeatureLimitServiceLimitStatus {
|
|
10900
|
+
/**
|
|
10901
|
+
*
|
|
10902
|
+
* @type {FeatureLimitServiceLimitStatus}
|
|
10903
|
+
* @memberof DataTypesGenericResponseFeatureLimitServiceLimitStatus
|
|
10904
|
+
*/
|
|
10905
|
+
'data'?: FeatureLimitServiceLimitStatus;
|
|
10906
|
+
/**
|
|
10907
|
+
*
|
|
10908
|
+
* @type {string}
|
|
10909
|
+
* @memberof DataTypesGenericResponseFeatureLimitServiceLimitStatus
|
|
10910
|
+
*/
|
|
10911
|
+
'message'?: string;
|
|
10912
|
+
/**
|
|
10913
|
+
*
|
|
10914
|
+
* @type {number}
|
|
10915
|
+
* @memberof DataTypesGenericResponseFeatureLimitServiceLimitStatus
|
|
10916
|
+
*/
|
|
10917
|
+
'status'?: number;
|
|
10918
|
+
}
|
|
10881
10919
|
/**
|
|
10882
10920
|
*
|
|
10883
10921
|
* @export
|
|
@@ -18199,6 +18237,228 @@ export interface DataTypesWordWithStatusEnhanced {
|
|
|
18199
18237
|
*/
|
|
18200
18238
|
'wordid'?: number;
|
|
18201
18239
|
}
|
|
18240
|
+
/**
|
|
18241
|
+
*
|
|
18242
|
+
* @export
|
|
18243
|
+
* @interface FeatureLimitServiceAPICallStatus
|
|
18244
|
+
*/
|
|
18245
|
+
export interface FeatureLimitServiceAPICallStatus {
|
|
18246
|
+
/**
|
|
18247
|
+
*
|
|
18248
|
+
* @type {number}
|
|
18249
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18250
|
+
*/
|
|
18251
|
+
'calls_made'?: number;
|
|
18252
|
+
/**
|
|
18253
|
+
*
|
|
18254
|
+
* @type {string}
|
|
18255
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18256
|
+
*/
|
|
18257
|
+
'current_period'?: string;
|
|
18258
|
+
/**
|
|
18259
|
+
*
|
|
18260
|
+
* @type {boolean}
|
|
18261
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18262
|
+
*/
|
|
18263
|
+
'is_exhausted'?: boolean;
|
|
18264
|
+
/**
|
|
18265
|
+
*
|
|
18266
|
+
* @type {number}
|
|
18267
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18268
|
+
*/
|
|
18269
|
+
'limit'?: number;
|
|
18270
|
+
/**
|
|
18271
|
+
*
|
|
18272
|
+
* @type {string}
|
|
18273
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18274
|
+
*/
|
|
18275
|
+
'period_ends_at'?: string;
|
|
18276
|
+
/**
|
|
18277
|
+
*
|
|
18278
|
+
* @type {string}
|
|
18279
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18280
|
+
*/
|
|
18281
|
+
'period_starts_at'?: string;
|
|
18282
|
+
/**
|
|
18283
|
+
*
|
|
18284
|
+
* @type {number}
|
|
18285
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18286
|
+
*/
|
|
18287
|
+
'remaining'?: number;
|
|
18288
|
+
/**
|
|
18289
|
+
*
|
|
18290
|
+
* @type {number}
|
|
18291
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
18292
|
+
*/
|
|
18293
|
+
'usage_percent'?: number;
|
|
18294
|
+
}
|
|
18295
|
+
/**
|
|
18296
|
+
*
|
|
18297
|
+
* @export
|
|
18298
|
+
* @interface FeatureLimitServiceCreditStatus
|
|
18299
|
+
*/
|
|
18300
|
+
export interface FeatureLimitServiceCreditStatus {
|
|
18301
|
+
/**
|
|
18302
|
+
*
|
|
18303
|
+
* @type {number}
|
|
18304
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
18305
|
+
*/
|
|
18306
|
+
'available'?: number;
|
|
18307
|
+
/**
|
|
18308
|
+
*
|
|
18309
|
+
* @type {number}
|
|
18310
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
18311
|
+
*/
|
|
18312
|
+
'consumed'?: number;
|
|
18313
|
+
/**
|
|
18314
|
+
*
|
|
18315
|
+
* @type {number}
|
|
18316
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
18317
|
+
*/
|
|
18318
|
+
'expiring_credits'?: number;
|
|
18319
|
+
/**
|
|
18320
|
+
*
|
|
18321
|
+
* @type {string}
|
|
18322
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
18323
|
+
*/
|
|
18324
|
+
'expiry_date'?: string;
|
|
18325
|
+
/**
|
|
18326
|
+
*
|
|
18327
|
+
* @type {boolean}
|
|
18328
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
18329
|
+
*/
|
|
18330
|
+
'is_exhausted'?: boolean;
|
|
18331
|
+
/**
|
|
18332
|
+
*
|
|
18333
|
+
* @type {number}
|
|
18334
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
18335
|
+
*/
|
|
18336
|
+
'total'?: number;
|
|
18337
|
+
/**
|
|
18338
|
+
*
|
|
18339
|
+
* @type {number}
|
|
18340
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
18341
|
+
*/
|
|
18342
|
+
'usage_percent'?: number;
|
|
18343
|
+
}
|
|
18344
|
+
/**
|
|
18345
|
+
*
|
|
18346
|
+
* @export
|
|
18347
|
+
* @interface FeatureLimitServiceFeatureStatus
|
|
18348
|
+
*/
|
|
18349
|
+
export interface FeatureLimitServiceFeatureStatus {
|
|
18350
|
+
/**
|
|
18351
|
+
*
|
|
18352
|
+
* @type {number}
|
|
18353
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
18354
|
+
*/
|
|
18355
|
+
'current_usage'?: number;
|
|
18356
|
+
/**
|
|
18357
|
+
*
|
|
18358
|
+
* @type {string}
|
|
18359
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
18360
|
+
*/
|
|
18361
|
+
'feature_name'?: string;
|
|
18362
|
+
/**
|
|
18363
|
+
*
|
|
18364
|
+
* @type {boolean}
|
|
18365
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
18366
|
+
*/
|
|
18367
|
+
'is_exhausted'?: boolean;
|
|
18368
|
+
/**
|
|
18369
|
+
*
|
|
18370
|
+
* @type {any}
|
|
18371
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
18372
|
+
*/
|
|
18373
|
+
'limit'?: any;
|
|
18374
|
+
/**
|
|
18375
|
+
*
|
|
18376
|
+
* @type {any}
|
|
18377
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
18378
|
+
*/
|
|
18379
|
+
'remaining'?: any;
|
|
18380
|
+
/**
|
|
18381
|
+
*
|
|
18382
|
+
* @type {number}
|
|
18383
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
18384
|
+
*/
|
|
18385
|
+
'usage_percent'?: number;
|
|
18386
|
+
/**
|
|
18387
|
+
*
|
|
18388
|
+
* @type {string}
|
|
18389
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
18390
|
+
*/
|
|
18391
|
+
'will_reset_at'?: string;
|
|
18392
|
+
}
|
|
18393
|
+
/**
|
|
18394
|
+
*
|
|
18395
|
+
* @export
|
|
18396
|
+
* @interface FeatureLimitServiceLimitStatus
|
|
18397
|
+
*/
|
|
18398
|
+
export interface FeatureLimitServiceLimitStatus {
|
|
18399
|
+
/**
|
|
18400
|
+
*
|
|
18401
|
+
* @type {FeatureLimitServiceAPICallStatus}
|
|
18402
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18403
|
+
*/
|
|
18404
|
+
'api_calls'?: FeatureLimitServiceAPICallStatus;
|
|
18405
|
+
/**
|
|
18406
|
+
*
|
|
18407
|
+
* @type {string}
|
|
18408
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18409
|
+
*/
|
|
18410
|
+
'block_reason'?: string;
|
|
18411
|
+
/**
|
|
18412
|
+
*
|
|
18413
|
+
* @type {FeatureLimitServiceCreditStatus}
|
|
18414
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18415
|
+
*/
|
|
18416
|
+
'credits'?: FeatureLimitServiceCreditStatus;
|
|
18417
|
+
/**
|
|
18418
|
+
*
|
|
18419
|
+
* @type {{ [key: string]: FeatureLimitServiceFeatureStatus; }}
|
|
18420
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18421
|
+
*/
|
|
18422
|
+
'features'?: {
|
|
18423
|
+
[key: string]: FeatureLimitServiceFeatureStatus;
|
|
18424
|
+
};
|
|
18425
|
+
/**
|
|
18426
|
+
*
|
|
18427
|
+
* @type {boolean}
|
|
18428
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18429
|
+
*/
|
|
18430
|
+
'is_blocked'?: boolean;
|
|
18431
|
+
/**
|
|
18432
|
+
*
|
|
18433
|
+
* @type {string}
|
|
18434
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18435
|
+
*/
|
|
18436
|
+
'last_updated'?: string;
|
|
18437
|
+
/**
|
|
18438
|
+
*
|
|
18439
|
+
* @type {string}
|
|
18440
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18441
|
+
*/
|
|
18442
|
+
'next_reset'?: string;
|
|
18443
|
+
/**
|
|
18444
|
+
*
|
|
18445
|
+
* @type {number}
|
|
18446
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18447
|
+
*/
|
|
18448
|
+
'org_id'?: number;
|
|
18449
|
+
/**
|
|
18450
|
+
*
|
|
18451
|
+
* @type {number}
|
|
18452
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18453
|
+
*/
|
|
18454
|
+
'plan_id'?: number;
|
|
18455
|
+
/**
|
|
18456
|
+
*
|
|
18457
|
+
* @type {string}
|
|
18458
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
18459
|
+
*/
|
|
18460
|
+
'plan_name'?: string;
|
|
18461
|
+
}
|
|
18202
18462
|
/**
|
|
18203
18463
|
*
|
|
18204
18464
|
* @export
|
|
@@ -18565,6 +18825,154 @@ export interface StoreRouteAPIUsageLogEntry {
|
|
|
18565
18825
|
*/
|
|
18566
18826
|
'url'?: string;
|
|
18567
18827
|
}
|
|
18828
|
+
/**
|
|
18829
|
+
*
|
|
18830
|
+
* @export
|
|
18831
|
+
* @interface StoreRouteDailyStats
|
|
18832
|
+
*/
|
|
18833
|
+
export interface StoreRouteDailyStats {
|
|
18834
|
+
/**
|
|
18835
|
+
*
|
|
18836
|
+
* @type {string}
|
|
18837
|
+
* @memberof StoreRouteDailyStats
|
|
18838
|
+
*/
|
|
18839
|
+
'date'?: string;
|
|
18840
|
+
/**
|
|
18841
|
+
*
|
|
18842
|
+
* @type {StoreRouteOperationsStats}
|
|
18843
|
+
* @memberof StoreRouteDailyStats
|
|
18844
|
+
*/
|
|
18845
|
+
'operations'?: StoreRouteOperationsStats;
|
|
18846
|
+
/**
|
|
18847
|
+
*
|
|
18848
|
+
* @type {StoreRouteRecordsStats}
|
|
18849
|
+
* @memberof StoreRouteDailyStats
|
|
18850
|
+
*/
|
|
18851
|
+
'records'?: StoreRouteRecordsStats;
|
|
18852
|
+
/**
|
|
18853
|
+
*
|
|
18854
|
+
* @type {number}
|
|
18855
|
+
* @memberof StoreRouteDailyStats
|
|
18856
|
+
*/
|
|
18857
|
+
'search_requests'?: number;
|
|
18858
|
+
/**
|
|
18859
|
+
*
|
|
18860
|
+
* @type {StoreRouteResponseTimeStats}
|
|
18861
|
+
* @memberof StoreRouteDailyStats
|
|
18862
|
+
*/
|
|
18863
|
+
'search_response_time'?: StoreRouteResponseTimeStats;
|
|
18864
|
+
}
|
|
18865
|
+
/**
|
|
18866
|
+
*
|
|
18867
|
+
* @export
|
|
18868
|
+
* @interface StoreRouteDailyStatsResponse
|
|
18869
|
+
*/
|
|
18870
|
+
export interface StoreRouteDailyStatsResponse {
|
|
18871
|
+
/**
|
|
18872
|
+
*
|
|
18873
|
+
* @type {Array<StoreRouteDailyStats>}
|
|
18874
|
+
* @memberof StoreRouteDailyStatsResponse
|
|
18875
|
+
*/
|
|
18876
|
+
'data'?: Array<StoreRouteDailyStats>;
|
|
18877
|
+
/**
|
|
18878
|
+
*
|
|
18879
|
+
* @type {string}
|
|
18880
|
+
* @memberof StoreRouteDailyStatsResponse
|
|
18881
|
+
*/
|
|
18882
|
+
'message'?: string;
|
|
18883
|
+
/**
|
|
18884
|
+
*
|
|
18885
|
+
* @type {StoreRouteDailyStatsResponseMeta}
|
|
18886
|
+
* @memberof StoreRouteDailyStatsResponse
|
|
18887
|
+
*/
|
|
18888
|
+
'meta'?: StoreRouteDailyStatsResponseMeta;
|
|
18889
|
+
/**
|
|
18890
|
+
*
|
|
18891
|
+
* @type {number}
|
|
18892
|
+
* @memberof StoreRouteDailyStatsResponse
|
|
18893
|
+
*/
|
|
18894
|
+
'status'?: number;
|
|
18895
|
+
}
|
|
18896
|
+
/**
|
|
18897
|
+
*
|
|
18898
|
+
* @export
|
|
18899
|
+
* @interface StoreRouteDailyStatsResponseMeta
|
|
18900
|
+
*/
|
|
18901
|
+
export interface StoreRouteDailyStatsResponseMeta {
|
|
18902
|
+
/**
|
|
18903
|
+
*
|
|
18904
|
+
* @type {string}
|
|
18905
|
+
* @memberof StoreRouteDailyStatsResponseMeta
|
|
18906
|
+
*/
|
|
18907
|
+
'end_date'?: string;
|
|
18908
|
+
/**
|
|
18909
|
+
*
|
|
18910
|
+
* @type {string}
|
|
18911
|
+
* @memberof StoreRouteDailyStatsResponseMeta
|
|
18912
|
+
*/
|
|
18913
|
+
'start_date'?: string;
|
|
18914
|
+
/**
|
|
18915
|
+
*
|
|
18916
|
+
* @type {number}
|
|
18917
|
+
* @memberof StoreRouteDailyStatsResponseMeta
|
|
18918
|
+
*/
|
|
18919
|
+
'total_days'?: number;
|
|
18920
|
+
}
|
|
18921
|
+
/**
|
|
18922
|
+
*
|
|
18923
|
+
* @export
|
|
18924
|
+
* @interface StoreRouteOperationsStats
|
|
18925
|
+
*/
|
|
18926
|
+
export interface StoreRouteOperationsStats {
|
|
18927
|
+
/**
|
|
18928
|
+
*
|
|
18929
|
+
* @type {number}
|
|
18930
|
+
* @memberof StoreRouteOperationsStats
|
|
18931
|
+
*/
|
|
18932
|
+
'acl_operations'?: number;
|
|
18933
|
+
/**
|
|
18934
|
+
*
|
|
18935
|
+
* @type {number}
|
|
18936
|
+
* @memberof StoreRouteOperationsStats
|
|
18937
|
+
*/
|
|
18938
|
+
'index_operations'?: number;
|
|
18939
|
+
/**
|
|
18940
|
+
*
|
|
18941
|
+
* @type {number}
|
|
18942
|
+
* @memberof StoreRouteOperationsStats
|
|
18943
|
+
*/
|
|
18944
|
+
'recommend_requests'?: number;
|
|
18945
|
+
/**
|
|
18946
|
+
*
|
|
18947
|
+
* @type {number}
|
|
18948
|
+
* @memberof StoreRouteOperationsStats
|
|
18949
|
+
*/
|
|
18950
|
+
'record_operations'?: number;
|
|
18951
|
+
/**
|
|
18952
|
+
*
|
|
18953
|
+
* @type {number}
|
|
18954
|
+
* @memberof StoreRouteOperationsStats
|
|
18955
|
+
*/
|
|
18956
|
+
'rules_operations'?: number;
|
|
18957
|
+
/**
|
|
18958
|
+
*
|
|
18959
|
+
* @type {StoreRouteSearchOperationsBreakdown}
|
|
18960
|
+
* @memberof StoreRouteOperationsStats
|
|
18961
|
+
*/
|
|
18962
|
+
'search_operations'?: StoreRouteSearchOperationsBreakdown;
|
|
18963
|
+
/**
|
|
18964
|
+
*
|
|
18965
|
+
* @type {number}
|
|
18966
|
+
* @memberof StoreRouteOperationsStats
|
|
18967
|
+
*/
|
|
18968
|
+
'synonym_operations'?: number;
|
|
18969
|
+
/**
|
|
18970
|
+
*
|
|
18971
|
+
* @type {number}
|
|
18972
|
+
* @memberof StoreRouteOperationsStats
|
|
18973
|
+
*/
|
|
18974
|
+
'total_operations'?: number;
|
|
18975
|
+
}
|
|
18568
18976
|
/**
|
|
18569
18977
|
*
|
|
18570
18978
|
* @export
|
|
@@ -18596,6 +19004,161 @@ export interface StoreRoutePaginationMeta {
|
|
|
18596
19004
|
*/
|
|
18597
19005
|
'total_pages'?: number;
|
|
18598
19006
|
}
|
|
19007
|
+
/**
|
|
19008
|
+
*
|
|
19009
|
+
* @export
|
|
19010
|
+
* @interface StoreRouteRecordsStats
|
|
19011
|
+
*/
|
|
19012
|
+
export interface StoreRouteRecordsStats {
|
|
19013
|
+
/**
|
|
19014
|
+
*
|
|
19015
|
+
* @type {number}
|
|
19016
|
+
* @memberof StoreRouteRecordsStats
|
|
19017
|
+
*/
|
|
19018
|
+
'included_in_plan'?: number;
|
|
19019
|
+
/**
|
|
19020
|
+
*
|
|
19021
|
+
* @type {number}
|
|
19022
|
+
* @memberof StoreRouteRecordsStats
|
|
19023
|
+
*/
|
|
19024
|
+
'percentage_used'?: number;
|
|
19025
|
+
/**
|
|
19026
|
+
*
|
|
19027
|
+
* @type {number}
|
|
19028
|
+
* @memberof StoreRouteRecordsStats
|
|
19029
|
+
*/
|
|
19030
|
+
'used'?: number;
|
|
19031
|
+
}
|
|
19032
|
+
/**
|
|
19033
|
+
*
|
|
19034
|
+
* @export
|
|
19035
|
+
* @interface StoreRouteResponseTimeStats
|
|
19036
|
+
*/
|
|
19037
|
+
export interface StoreRouteResponseTimeStats {
|
|
19038
|
+
/**
|
|
19039
|
+
*
|
|
19040
|
+
* @type {number}
|
|
19041
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19042
|
+
*/
|
|
19043
|
+
'average_ms'?: number;
|
|
19044
|
+
/**
|
|
19045
|
+
*
|
|
19046
|
+
* @type {number}
|
|
19047
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19048
|
+
*/
|
|
19049
|
+
'max_ms'?: number;
|
|
19050
|
+
/**
|
|
19051
|
+
*
|
|
19052
|
+
* @type {number}
|
|
19053
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19054
|
+
*/
|
|
19055
|
+
'min_ms'?: number;
|
|
19056
|
+
/**
|
|
19057
|
+
*
|
|
19058
|
+
* @type {number}
|
|
19059
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19060
|
+
*/
|
|
19061
|
+
'percentile_90_ms'?: number;
|
|
19062
|
+
/**
|
|
19063
|
+
*
|
|
19064
|
+
* @type {number}
|
|
19065
|
+
* @memberof StoreRouteResponseTimeStats
|
|
19066
|
+
*/
|
|
19067
|
+
'percentile_99_ms'?: number;
|
|
19068
|
+
}
|
|
19069
|
+
/**
|
|
19070
|
+
*
|
|
19071
|
+
* @export
|
|
19072
|
+
* @interface StoreRouteSearchOperationsBreakdown
|
|
19073
|
+
*/
|
|
19074
|
+
export interface StoreRouteSearchOperationsBreakdown {
|
|
19075
|
+
/**
|
|
19076
|
+
*
|
|
19077
|
+
* @type {number}
|
|
19078
|
+
* @memberof StoreRouteSearchOperationsBreakdown
|
|
19079
|
+
*/
|
|
19080
|
+
'multi_queries'?: number;
|
|
19081
|
+
/**
|
|
19082
|
+
*
|
|
19083
|
+
* @type {number}
|
|
19084
|
+
* @memberof StoreRouteSearchOperationsBreakdown
|
|
19085
|
+
*/
|
|
19086
|
+
'single_queries'?: number;
|
|
19087
|
+
/**
|
|
19088
|
+
*
|
|
19089
|
+
* @type {number}
|
|
19090
|
+
* @memberof StoreRouteSearchOperationsBreakdown
|
|
19091
|
+
*/
|
|
19092
|
+
'total'?: number;
|
|
19093
|
+
}
|
|
19094
|
+
/**
|
|
19095
|
+
*
|
|
19096
|
+
* @export
|
|
19097
|
+
* @interface StoreRouteTimeSeriesMeta
|
|
19098
|
+
*/
|
|
19099
|
+
export interface StoreRouteTimeSeriesMeta {
|
|
19100
|
+
/**
|
|
19101
|
+
*
|
|
19102
|
+
* @type {number}
|
|
19103
|
+
* @memberof StoreRouteTimeSeriesMeta
|
|
19104
|
+
*/
|
|
19105
|
+
'data_points'?: number;
|
|
19106
|
+
/**
|
|
19107
|
+
*
|
|
19108
|
+
* @type {string}
|
|
19109
|
+
* @memberof StoreRouteTimeSeriesMeta
|
|
19110
|
+
*/
|
|
19111
|
+
'end_date'?: string;
|
|
19112
|
+
/**
|
|
19113
|
+
*
|
|
19114
|
+
* @type {string}
|
|
19115
|
+
* @memberof StoreRouteTimeSeriesMeta
|
|
19116
|
+
*/
|
|
19117
|
+
'start_date'?: string;
|
|
19118
|
+
/**
|
|
19119
|
+
*
|
|
19120
|
+
* @type {number}
|
|
19121
|
+
* @memberof StoreRouteTimeSeriesMeta
|
|
19122
|
+
*/
|
|
19123
|
+
'total_days'?: number;
|
|
19124
|
+
}
|
|
19125
|
+
/**
|
|
19126
|
+
*
|
|
19127
|
+
* @export
|
|
19128
|
+
* @interface StoreRouteTimeSeriesResponse
|
|
19129
|
+
*/
|
|
19130
|
+
export interface StoreRouteTimeSeriesResponse {
|
|
19131
|
+
/**
|
|
19132
|
+
* Can be []TimeSeriesDataPoint or AllMetricsData
|
|
19133
|
+
* @type {any}
|
|
19134
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
19135
|
+
*/
|
|
19136
|
+
'data'?: any;
|
|
19137
|
+
/**
|
|
19138
|
+
*
|
|
19139
|
+
* @type {string}
|
|
19140
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
19141
|
+
*/
|
|
19142
|
+
'message'?: string;
|
|
19143
|
+
/**
|
|
19144
|
+
*
|
|
19145
|
+
* @type {StoreRouteTimeSeriesMeta}
|
|
19146
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
19147
|
+
*/
|
|
19148
|
+
'meta'?: StoreRouteTimeSeriesMeta;
|
|
19149
|
+
/**
|
|
19150
|
+
*
|
|
19151
|
+
* @type {string}
|
|
19152
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
19153
|
+
*/
|
|
19154
|
+
'metric'?: string;
|
|
19155
|
+
/**
|
|
19156
|
+
*
|
|
19157
|
+
* @type {number}
|
|
19158
|
+
* @memberof StoreRouteTimeSeriesResponse
|
|
19159
|
+
*/
|
|
19160
|
+
'status'?: number;
|
|
19161
|
+
}
|
|
18599
19162
|
/**
|
|
18600
19163
|
*
|
|
18601
19164
|
* @export
|
|
@@ -22698,6 +23261,13 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
22698
23261
|
* @throws {RequiredError}
|
|
22699
23262
|
*/
|
|
22700
23263
|
adminBillingAlertsPost: (dataTypesBillingAlertRequest: DataTypesBillingAlertRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23264
|
+
/**
|
|
23265
|
+
* Returns available alert types and their configurations for the frontend
|
|
23266
|
+
* @summary Get billing alert types
|
|
23267
|
+
* @param {*} [options] Override http request option.
|
|
23268
|
+
* @throws {RequiredError}
|
|
23269
|
+
*/
|
|
23270
|
+
adminBillingAlertsTypesGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22701
23271
|
/**
|
|
22702
23272
|
* Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
|
|
22703
23273
|
* @summary Get credit consumption
|
|
@@ -22793,7 +23363,7 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
22793
23363
|
*/
|
|
22794
23364
|
adminBillingInvoicesIdDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22795
23365
|
/**
|
|
22796
|
-
* Downloads an invoice as
|
|
23366
|
+
* Downloads an invoice as a PDF file
|
|
22797
23367
|
* @summary Download invoice
|
|
22798
23368
|
* @param {string} id Invoice ID
|
|
22799
23369
|
* @param {*} [options] Override http request option.
|
|
@@ -22956,6 +23526,13 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
22956
23526
|
* @throws {RequiredError}
|
|
22957
23527
|
*/
|
|
22958
23528
|
adminBillingAlertsPost(dataTypesBillingAlertRequest: DataTypesBillingAlertRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
23529
|
+
/**
|
|
23530
|
+
* Returns available alert types and their configurations for the frontend
|
|
23531
|
+
* @summary Get billing alert types
|
|
23532
|
+
* @param {*} [options] Override http request option.
|
|
23533
|
+
* @throws {RequiredError}
|
|
23534
|
+
*/
|
|
23535
|
+
adminBillingAlertsTypesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
22959
23536
|
/**
|
|
22960
23537
|
* Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
|
|
22961
23538
|
* @summary Get credit consumption
|
|
@@ -23051,7 +23628,7 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
23051
23628
|
*/
|
|
23052
23629
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
23053
23630
|
/**
|
|
23054
|
-
* Downloads an invoice as
|
|
23631
|
+
* Downloads an invoice as a PDF file
|
|
23055
23632
|
* @summary Download invoice
|
|
23056
23633
|
* @param {string} id Invoice ID
|
|
23057
23634
|
* @param {*} [options] Override http request option.
|
|
@@ -23214,6 +23791,13 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
23214
23791
|
* @throws {RequiredError}
|
|
23215
23792
|
*/
|
|
23216
23793
|
adminBillingAlertsPost(dataTypesBillingAlertRequest: DataTypesBillingAlertRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23794
|
+
/**
|
|
23795
|
+
* Returns available alert types and their configurations for the frontend
|
|
23796
|
+
* @summary Get billing alert types
|
|
23797
|
+
* @param {*} [options] Override http request option.
|
|
23798
|
+
* @throws {RequiredError}
|
|
23799
|
+
*/
|
|
23800
|
+
adminBillingAlertsTypesGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23217
23801
|
/**
|
|
23218
23802
|
* Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
|
|
23219
23803
|
* @summary Get credit consumption
|
|
@@ -23309,7 +23893,7 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
23309
23893
|
*/
|
|
23310
23894
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
23311
23895
|
/**
|
|
23312
|
-
* Downloads an invoice as
|
|
23896
|
+
* Downloads an invoice as a PDF file
|
|
23313
23897
|
* @summary Download invoice
|
|
23314
23898
|
* @param {string} id Invoice ID
|
|
23315
23899
|
* @param {*} [options] Override http request option.
|
|
@@ -23478,6 +24062,14 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
23478
24062
|
* @memberof BillingDashboardApi
|
|
23479
24063
|
*/
|
|
23480
24064
|
adminBillingAlertsPost(dataTypesBillingAlertRequest: DataTypesBillingAlertRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
24065
|
+
/**
|
|
24066
|
+
* Returns available alert types and their configurations for the frontend
|
|
24067
|
+
* @summary Get billing alert types
|
|
24068
|
+
* @param {*} [options] Override http request option.
|
|
24069
|
+
* @throws {RequiredError}
|
|
24070
|
+
* @memberof BillingDashboardApi
|
|
24071
|
+
*/
|
|
24072
|
+
adminBillingAlertsTypesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
23481
24073
|
/**
|
|
23482
24074
|
* Retrieves paginated list of credit consumption records with filtering options for the authenticated user\'s organization
|
|
23483
24075
|
* @summary Get credit consumption
|
|
@@ -23582,7 +24174,7 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
23582
24174
|
*/
|
|
23583
24175
|
adminBillingInvoicesIdDelete(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
23584
24176
|
/**
|
|
23585
|
-
* Downloads an invoice as
|
|
24177
|
+
* Downloads an invoice as a PDF file
|
|
23586
24178
|
* @summary Download invoice
|
|
23587
24179
|
* @param {string} id Invoice ID
|
|
23588
24180
|
* @param {*} [options] Override http request option.
|
|
@@ -24906,6 +25498,20 @@ export declare const FeatureLimitsApiAxiosParamCreator: (configuration?: Configu
|
|
|
24906
25498
|
* @throws {RequiredError}
|
|
24907
25499
|
*/
|
|
24908
25500
|
apiFeatureLimitsPlanGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25501
|
+
/**
|
|
25502
|
+
* Returns plan details and feature availability map for UI rendering
|
|
25503
|
+
* @summary Get plan information for frontend
|
|
25504
|
+
* @param {*} [options] Override http request option.
|
|
25505
|
+
* @throws {RequiredError}
|
|
25506
|
+
*/
|
|
25507
|
+
apiFeatureLimitsPlanInfoGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25508
|
+
/**
|
|
25509
|
+
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
25510
|
+
* @summary Get real-time limit status
|
|
25511
|
+
* @param {*} [options] Override http request option.
|
|
25512
|
+
* @throws {RequiredError}
|
|
25513
|
+
*/
|
|
25514
|
+
apiFeatureLimitsStatusGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24909
25515
|
/**
|
|
24910
25516
|
* Retrieves current feature usage statistics for the organization
|
|
24911
25517
|
* @summary Get feature usage statistics
|
|
@@ -24953,6 +25559,22 @@ export declare const FeatureLimitsApiFp: (configuration?: Configuration) => {
|
|
|
24953
25559
|
* @throws {RequiredError}
|
|
24954
25560
|
*/
|
|
24955
25561
|
apiFeatureLimitsPlanGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiFeatureLimitsPlanGet200Response>>;
|
|
25562
|
+
/**
|
|
25563
|
+
* Returns plan details and feature availability map for UI rendering
|
|
25564
|
+
* @summary Get plan information for frontend
|
|
25565
|
+
* @param {*} [options] Override http request option.
|
|
25566
|
+
* @throws {RequiredError}
|
|
25567
|
+
*/
|
|
25568
|
+
apiFeatureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
25569
|
+
[key: string]: any;
|
|
25570
|
+
}>>;
|
|
25571
|
+
/**
|
|
25572
|
+
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
25573
|
+
* @summary Get real-time limit status
|
|
25574
|
+
* @param {*} [options] Override http request option.
|
|
25575
|
+
* @throws {RequiredError}
|
|
25576
|
+
*/
|
|
25577
|
+
apiFeatureLimitsStatusGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseFeatureLimitServiceLimitStatus>>;
|
|
24956
25578
|
/**
|
|
24957
25579
|
* Retrieves current feature usage statistics for the organization
|
|
24958
25580
|
* @summary Get feature usage statistics
|
|
@@ -25000,6 +25622,22 @@ export declare const FeatureLimitsApiFactory: (configuration?: Configuration, ba
|
|
|
25000
25622
|
* @throws {RequiredError}
|
|
25001
25623
|
*/
|
|
25002
25624
|
apiFeatureLimitsPlanGet(options?: RawAxiosRequestConfig): AxiosPromise<ApiFeatureLimitsPlanGet200Response>;
|
|
25625
|
+
/**
|
|
25626
|
+
* Returns plan details and feature availability map for UI rendering
|
|
25627
|
+
* @summary Get plan information for frontend
|
|
25628
|
+
* @param {*} [options] Override http request option.
|
|
25629
|
+
* @throws {RequiredError}
|
|
25630
|
+
*/
|
|
25631
|
+
apiFeatureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
25632
|
+
[key: string]: any;
|
|
25633
|
+
}>;
|
|
25634
|
+
/**
|
|
25635
|
+
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
25636
|
+
* @summary Get real-time limit status
|
|
25637
|
+
* @param {*} [options] Override http request option.
|
|
25638
|
+
* @throws {RequiredError}
|
|
25639
|
+
*/
|
|
25640
|
+
apiFeatureLimitsStatusGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseFeatureLimitServiceLimitStatus>;
|
|
25003
25641
|
/**
|
|
25004
25642
|
* Retrieves current feature usage statistics for the organization
|
|
25005
25643
|
* @summary Get feature usage statistics
|
|
@@ -25053,6 +25691,24 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
25053
25691
|
* @memberof FeatureLimitsApi
|
|
25054
25692
|
*/
|
|
25055
25693
|
apiFeatureLimitsPlanGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiFeatureLimitsPlanGet200Response, any, {}>>;
|
|
25694
|
+
/**
|
|
25695
|
+
* Returns plan details and feature availability map for UI rendering
|
|
25696
|
+
* @summary Get plan information for frontend
|
|
25697
|
+
* @param {*} [options] Override http request option.
|
|
25698
|
+
* @throws {RequiredError}
|
|
25699
|
+
* @memberof FeatureLimitsApi
|
|
25700
|
+
*/
|
|
25701
|
+
apiFeatureLimitsPlanInfoGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
25702
|
+
[key: string]: any;
|
|
25703
|
+
}, any, {}>>;
|
|
25704
|
+
/**
|
|
25705
|
+
* Retrieves comprehensive real-time limit status for the organization including all features, credits, and API calls
|
|
25706
|
+
* @summary Get real-time limit status
|
|
25707
|
+
* @param {*} [options] Override http request option.
|
|
25708
|
+
* @throws {RequiredError}
|
|
25709
|
+
* @memberof FeatureLimitsApi
|
|
25710
|
+
*/
|
|
25711
|
+
apiFeatureLimitsStatusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseFeatureLimitServiceLimitStatus, any, {}>>;
|
|
25056
25712
|
/**
|
|
25057
25713
|
* Retrieves current feature usage statistics for the organization
|
|
25058
25714
|
* @summary Get feature usage statistics
|
|
@@ -28030,6 +28686,14 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
28030
28686
|
* @throws {RequiredError}
|
|
28031
28687
|
*/
|
|
28032
28688
|
adminPaymentGatewayRefundPost: (dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28689
|
+
/**
|
|
28690
|
+
* Verifies an invoice payment using only the gateway order ID. Fetches payment details from the gateway automatically. Ideal for testing without webhook access.
|
|
28691
|
+
* @summary Verify invoice payment (simplified)
|
|
28692
|
+
* @param {AdminPaymentGatewayVerifyInvoicePostRequest} adminPaymentGatewayVerifyInvoicePostRequest Gateway Order ID
|
|
28693
|
+
* @param {*} [options] Override http request option.
|
|
28694
|
+
* @throws {RequiredError}
|
|
28695
|
+
*/
|
|
28696
|
+
adminPaymentGatewayVerifyInvoicePost: (adminPaymentGatewayVerifyInvoicePostRequest: AdminPaymentGatewayVerifyInvoicePostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28033
28697
|
/**
|
|
28034
28698
|
* Verifies the current status of a payment using only the order ID. Returns frontend-friendly status (\"success\", \"pending\", or \"error\"). This is a simplified endpoint that can be used for polling instead of payment-status endpoint for immediate verification.
|
|
28035
28699
|
* @summary Verify payment status by order ID
|
|
@@ -28131,6 +28795,14 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
28131
28795
|
* @throws {RequiredError}
|
|
28132
28796
|
*/
|
|
28133
28797
|
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundResponseDto>>;
|
|
28798
|
+
/**
|
|
28799
|
+
* Verifies an invoice payment using only the gateway order ID. Fetches payment details from the gateway automatically. Ideal for testing without webhook access.
|
|
28800
|
+
* @summary Verify invoice payment (simplified)
|
|
28801
|
+
* @param {AdminPaymentGatewayVerifyInvoicePostRequest} adminPaymentGatewayVerifyInvoicePostRequest Gateway Order ID
|
|
28802
|
+
* @param {*} [options] Override http request option.
|
|
28803
|
+
* @throws {RequiredError}
|
|
28804
|
+
*/
|
|
28805
|
+
adminPaymentGatewayVerifyInvoicePost(adminPaymentGatewayVerifyInvoicePostRequest: AdminPaymentGatewayVerifyInvoicePostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusPollResponse>>;
|
|
28134
28806
|
/**
|
|
28135
28807
|
* Verifies the current status of a payment using only the order ID. Returns frontend-friendly status (\"success\", \"pending\", or \"error\"). This is a simplified endpoint that can be used for polling instead of payment-status endpoint for immediate verification.
|
|
28136
28808
|
* @summary Verify payment status by order ID
|
|
@@ -28236,6 +28908,14 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
28236
28908
|
* @throws {RequiredError}
|
|
28237
28909
|
*/
|
|
28238
28910
|
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundResponseDto>;
|
|
28911
|
+
/**
|
|
28912
|
+
* Verifies an invoice payment using only the gateway order ID. Fetches payment details from the gateway automatically. Ideal for testing without webhook access.
|
|
28913
|
+
* @summary Verify invoice payment (simplified)
|
|
28914
|
+
* @param {AdminPaymentGatewayVerifyInvoicePostRequest} adminPaymentGatewayVerifyInvoicePostRequest Gateway Order ID
|
|
28915
|
+
* @param {*} [options] Override http request option.
|
|
28916
|
+
* @throws {RequiredError}
|
|
28917
|
+
*/
|
|
28918
|
+
adminPaymentGatewayVerifyInvoicePost(adminPaymentGatewayVerifyInvoicePostRequest: AdminPaymentGatewayVerifyInvoicePostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusPollResponse>;
|
|
28239
28919
|
/**
|
|
28240
28920
|
* Verifies the current status of a payment using only the order ID. Returns frontend-friendly status (\"success\", \"pending\", or \"error\"). This is a simplified endpoint that can be used for polling instead of payment-status endpoint for immediate verification.
|
|
28241
28921
|
* @summary Verify payment status by order ID
|
|
@@ -28350,6 +29030,15 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
28350
29030
|
* @memberof PaymentGatewayApi
|
|
28351
29031
|
*/
|
|
28352
29032
|
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any, {}>>;
|
|
29033
|
+
/**
|
|
29034
|
+
* Verifies an invoice payment using only the gateway order ID. Fetches payment details from the gateway automatically. Ideal for testing without webhook access.
|
|
29035
|
+
* @summary Verify invoice payment (simplified)
|
|
29036
|
+
* @param {AdminPaymentGatewayVerifyInvoicePostRequest} adminPaymentGatewayVerifyInvoicePostRequest Gateway Order ID
|
|
29037
|
+
* @param {*} [options] Override http request option.
|
|
29038
|
+
* @throws {RequiredError}
|
|
29039
|
+
* @memberof PaymentGatewayApi
|
|
29040
|
+
*/
|
|
29041
|
+
adminPaymentGatewayVerifyInvoicePost(adminPaymentGatewayVerifyInvoicePostRequest: AdminPaymentGatewayVerifyInvoicePostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusPollResponse, any, {}>>;
|
|
28353
29042
|
/**
|
|
28354
29043
|
* Verifies the current status of a payment using only the order ID. Returns frontend-friendly status (\"success\", \"pending\", or \"error\"). This is a simplified endpoint that can be used for polling instead of payment-status endpoint for immediate verification.
|
|
28355
29044
|
* @summary Verify payment status by order ID
|
|
@@ -32966,6 +33655,27 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
32966
33655
|
* @throws {RequiredError}
|
|
32967
33656
|
*/
|
|
32968
33657
|
adminStoresUpdateStatusIdStatusPut: (id: number, status: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33658
|
+
/**
|
|
33659
|
+
* Retrieves aggregated daily statistics for a specific store including records usage, response times, and operation counts.
|
|
33660
|
+
* @summary Get Daily Statistics for a Store
|
|
33661
|
+
* @param {string} xStoreID Store ID
|
|
33662
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
33663
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
33664
|
+
* @param {*} [options] Override http request option.
|
|
33665
|
+
* @throws {RequiredError}
|
|
33666
|
+
*/
|
|
33667
|
+
adminStoresXStoreIDAnalyticsDailyStatsGet: (xStoreID: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33668
|
+
/**
|
|
33669
|
+
* Retrieves time series data for a specific metric (records, search_response_time, operations, or search_requests) with date filtering for graphing.
|
|
33670
|
+
* @summary Get Time Series Data for Store Metrics
|
|
33671
|
+
* @param {string} xStoreID Store ID
|
|
33672
|
+
* @param {string} metric Metric type: records, search_response_time, operations, search_requests
|
|
33673
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
33674
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
33675
|
+
* @param {*} [options] Override http request option.
|
|
33676
|
+
* @throws {RequiredError}
|
|
33677
|
+
*/
|
|
33678
|
+
adminStoresXStoreIDAnalyticsTimeseriesGet: (xStoreID: string, metric: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32969
33679
|
/**
|
|
32970
33680
|
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
32971
33681
|
* @summary Get Specific API Usage Event
|
|
@@ -33114,6 +33824,27 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
33114
33824
|
* @throws {RequiredError}
|
|
33115
33825
|
*/
|
|
33116
33826
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
33827
|
+
/**
|
|
33828
|
+
* Retrieves aggregated daily statistics for a specific store including records usage, response times, and operation counts.
|
|
33829
|
+
* @summary Get Daily Statistics for a Store
|
|
33830
|
+
* @param {string} xStoreID Store ID
|
|
33831
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
33832
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
33833
|
+
* @param {*} [options] Override http request option.
|
|
33834
|
+
* @throws {RequiredError}
|
|
33835
|
+
*/
|
|
33836
|
+
adminStoresXStoreIDAnalyticsDailyStatsGet(xStoreID: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteDailyStatsResponse>>;
|
|
33837
|
+
/**
|
|
33838
|
+
* Retrieves time series data for a specific metric (records, search_response_time, operations, or search_requests) with date filtering for graphing.
|
|
33839
|
+
* @summary Get Time Series Data for Store Metrics
|
|
33840
|
+
* @param {string} xStoreID Store ID
|
|
33841
|
+
* @param {string} metric Metric type: records, search_response_time, operations, search_requests
|
|
33842
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
33843
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
33844
|
+
* @param {*} [options] Override http request option.
|
|
33845
|
+
* @throws {RequiredError}
|
|
33846
|
+
*/
|
|
33847
|
+
adminStoresXStoreIDAnalyticsTimeseriesGet(xStoreID: string, metric: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteTimeSeriesResponse>>;
|
|
33117
33848
|
/**
|
|
33118
33849
|
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33119
33850
|
* @summary Get Specific API Usage Event
|
|
@@ -33262,6 +33993,27 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
33262
33993
|
* @throws {RequiredError}
|
|
33263
33994
|
*/
|
|
33264
33995
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
33996
|
+
/**
|
|
33997
|
+
* Retrieves aggregated daily statistics for a specific store including records usage, response times, and operation counts.
|
|
33998
|
+
* @summary Get Daily Statistics for a Store
|
|
33999
|
+
* @param {string} xStoreID Store ID
|
|
34000
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34001
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34002
|
+
* @param {*} [options] Override http request option.
|
|
34003
|
+
* @throws {RequiredError}
|
|
34004
|
+
*/
|
|
34005
|
+
adminStoresXStoreIDAnalyticsDailyStatsGet(xStoreID: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteDailyStatsResponse>;
|
|
34006
|
+
/**
|
|
34007
|
+
* Retrieves time series data for a specific metric (records, search_response_time, operations, or search_requests) with date filtering for graphing.
|
|
34008
|
+
* @summary Get Time Series Data for Store Metrics
|
|
34009
|
+
* @param {string} xStoreID Store ID
|
|
34010
|
+
* @param {string} metric Metric type: records, search_response_time, operations, search_requests
|
|
34011
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34012
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34013
|
+
* @param {*} [options] Override http request option.
|
|
34014
|
+
* @throws {RequiredError}
|
|
34015
|
+
*/
|
|
34016
|
+
adminStoresXStoreIDAnalyticsTimeseriesGet(xStoreID: string, metric: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteTimeSeriesResponse>;
|
|
33265
34017
|
/**
|
|
33266
34018
|
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33267
34019
|
* @summary Get Specific API Usage Event
|
|
@@ -33417,6 +34169,29 @@ export declare class StoresApi extends BaseAPI {
|
|
|
33417
34169
|
* @memberof StoresApi
|
|
33418
34170
|
*/
|
|
33419
34171
|
adminStoresUpdateStatusIdStatusPut(id: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
34172
|
+
/**
|
|
34173
|
+
* Retrieves aggregated daily statistics for a specific store including records usage, response times, and operation counts.
|
|
34174
|
+
* @summary Get Daily Statistics for a Store
|
|
34175
|
+
* @param {string} xStoreID Store ID
|
|
34176
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34177
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34178
|
+
* @param {*} [options] Override http request option.
|
|
34179
|
+
* @throws {RequiredError}
|
|
34180
|
+
* @memberof StoresApi
|
|
34181
|
+
*/
|
|
34182
|
+
adminStoresXStoreIDAnalyticsDailyStatsGet(xStoreID: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteDailyStatsResponse, any, {}>>;
|
|
34183
|
+
/**
|
|
34184
|
+
* Retrieves time series data for a specific metric (records, search_response_time, operations, or search_requests) with date filtering for graphing.
|
|
34185
|
+
* @summary Get Time Series Data for Store Metrics
|
|
34186
|
+
* @param {string} xStoreID Store ID
|
|
34187
|
+
* @param {string} metric Metric type: records, search_response_time, operations, search_requests
|
|
34188
|
+
* @param {string} [startDate] Start date (YYYY-MM-DD)
|
|
34189
|
+
* @param {string} [endDate] End date (YYYY-MM-DD)
|
|
34190
|
+
* @param {*} [options] Override http request option.
|
|
34191
|
+
* @throws {RequiredError}
|
|
34192
|
+
* @memberof StoresApi
|
|
34193
|
+
*/
|
|
34194
|
+
adminStoresXStoreIDAnalyticsTimeseriesGet(xStoreID: string, metric: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteTimeSeriesResponse, any, {}>>;
|
|
33420
34195
|
/**
|
|
33421
34196
|
* Retrieve detailed information for a specific API usage event including headers, request body, and response body
|
|
33422
34197
|
* @summary Get Specific API Usage Event
|