@seekora-ai/admin-api 1.1.14 → 1.1.15
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 +25 -2
- package/api.ts +1130 -0
- package/dist/api.d.ts +723 -0
- package/dist/api.js +702 -0
- package/dist/esm/api.d.ts +723 -0
- package/dist/esm/api.js +702 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.15.tgz +0 -0
- package/seekora-ai-admin-api-1.1.14.tgz +0 -0
package/api.ts
CHANGED
|
@@ -11674,6 +11674,31 @@ export interface DataTypesLimitResponse {
|
|
|
11674
11674
|
*/
|
|
11675
11675
|
'status'?: number;
|
|
11676
11676
|
}
|
|
11677
|
+
/**
|
|
11678
|
+
*
|
|
11679
|
+
* @export
|
|
11680
|
+
* @interface DataTypesLimitsListResponse
|
|
11681
|
+
*/
|
|
11682
|
+
export interface DataTypesLimitsListResponse {
|
|
11683
|
+
/**
|
|
11684
|
+
*
|
|
11685
|
+
* @type {Array<DataTypesLimit>}
|
|
11686
|
+
* @memberof DataTypesLimitsListResponse
|
|
11687
|
+
*/
|
|
11688
|
+
'data'?: Array<DataTypesLimit>;
|
|
11689
|
+
/**
|
|
11690
|
+
*
|
|
11691
|
+
* @type {string}
|
|
11692
|
+
* @memberof DataTypesLimitsListResponse
|
|
11693
|
+
*/
|
|
11694
|
+
'message'?: string;
|
|
11695
|
+
/**
|
|
11696
|
+
*
|
|
11697
|
+
* @type {number}
|
|
11698
|
+
* @memberof DataTypesLimitsListResponse
|
|
11699
|
+
*/
|
|
11700
|
+
'status'?: number;
|
|
11701
|
+
}
|
|
11677
11702
|
/**
|
|
11678
11703
|
*
|
|
11679
11704
|
* @export
|
|
@@ -12503,6 +12528,31 @@ export interface DataTypesNewsLetterRequestResponse {
|
|
|
12503
12528
|
*/
|
|
12504
12529
|
'status'?: number;
|
|
12505
12530
|
}
|
|
12531
|
+
/**
|
|
12532
|
+
*
|
|
12533
|
+
* @export
|
|
12534
|
+
* @interface DataTypesNewsLetterRequestsListResponse
|
|
12535
|
+
*/
|
|
12536
|
+
export interface DataTypesNewsLetterRequestsListResponse {
|
|
12537
|
+
/**
|
|
12538
|
+
*
|
|
12539
|
+
* @type {Array<DataTypesNewsLetterRequest>}
|
|
12540
|
+
* @memberof DataTypesNewsLetterRequestsListResponse
|
|
12541
|
+
*/
|
|
12542
|
+
'data'?: Array<DataTypesNewsLetterRequest>;
|
|
12543
|
+
/**
|
|
12544
|
+
*
|
|
12545
|
+
* @type {string}
|
|
12546
|
+
* @memberof DataTypesNewsLetterRequestsListResponse
|
|
12547
|
+
*/
|
|
12548
|
+
'message'?: string;
|
|
12549
|
+
/**
|
|
12550
|
+
*
|
|
12551
|
+
* @type {number}
|
|
12552
|
+
* @memberof DataTypesNewsLetterRequestsListResponse
|
|
12553
|
+
*/
|
|
12554
|
+
'status'?: number;
|
|
12555
|
+
}
|
|
12506
12556
|
/**
|
|
12507
12557
|
*
|
|
12508
12558
|
* @export
|
|
@@ -12541,6 +12591,105 @@ export interface DataTypesOTPPayload {
|
|
|
12541
12591
|
*/
|
|
12542
12592
|
'otp'?: string;
|
|
12543
12593
|
}
|
|
12594
|
+
/**
|
|
12595
|
+
*
|
|
12596
|
+
* @export
|
|
12597
|
+
* @interface DataTypesOfficialSearchResponse
|
|
12598
|
+
*/
|
|
12599
|
+
export interface DataTypesOfficialSearchResponse {
|
|
12600
|
+
/**
|
|
12601
|
+
*
|
|
12602
|
+
* @type {any}
|
|
12603
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
12604
|
+
*/
|
|
12605
|
+
'facets'?: any;
|
|
12606
|
+
/**
|
|
12607
|
+
*
|
|
12608
|
+
* @type {number}
|
|
12609
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
12610
|
+
*/
|
|
12611
|
+
'page'?: number;
|
|
12612
|
+
/**
|
|
12613
|
+
*
|
|
12614
|
+
* @type {number}
|
|
12615
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
12616
|
+
*/
|
|
12617
|
+
'per_page'?: number;
|
|
12618
|
+
/**
|
|
12619
|
+
*
|
|
12620
|
+
* @type {Array<DataTypesOfficialSearchResult>}
|
|
12621
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
12622
|
+
*/
|
|
12623
|
+
'results'?: Array<DataTypesOfficialSearchResult>;
|
|
12624
|
+
/**
|
|
12625
|
+
*
|
|
12626
|
+
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
12627
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
12628
|
+
*/
|
|
12629
|
+
'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
|
|
12630
|
+
/**
|
|
12631
|
+
*
|
|
12632
|
+
* @type {number}
|
|
12633
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
12634
|
+
*/
|
|
12635
|
+
'total_results'?: number;
|
|
12636
|
+
}
|
|
12637
|
+
/**
|
|
12638
|
+
*
|
|
12639
|
+
* @export
|
|
12640
|
+
* @interface DataTypesOfficialSearchResponseWrapper
|
|
12641
|
+
*/
|
|
12642
|
+
export interface DataTypesOfficialSearchResponseWrapper {
|
|
12643
|
+
/**
|
|
12644
|
+
*
|
|
12645
|
+
* @type {DataTypesOfficialSearchResponse}
|
|
12646
|
+
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
12647
|
+
*/
|
|
12648
|
+
'data'?: DataTypesOfficialSearchResponse;
|
|
12649
|
+
/**
|
|
12650
|
+
*
|
|
12651
|
+
* @type {string}
|
|
12652
|
+
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
12653
|
+
*/
|
|
12654
|
+
'message'?: string;
|
|
12655
|
+
/**
|
|
12656
|
+
*
|
|
12657
|
+
* @type {number}
|
|
12658
|
+
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
12659
|
+
*/
|
|
12660
|
+
'status'?: number;
|
|
12661
|
+
}
|
|
12662
|
+
/**
|
|
12663
|
+
*
|
|
12664
|
+
* @export
|
|
12665
|
+
* @interface DataTypesOfficialSearchResult
|
|
12666
|
+
*/
|
|
12667
|
+
export interface DataTypesOfficialSearchResult {
|
|
12668
|
+
/**
|
|
12669
|
+
*
|
|
12670
|
+
* @type {{ [key: string]: any; }}
|
|
12671
|
+
* @memberof DataTypesOfficialSearchResult
|
|
12672
|
+
*/
|
|
12673
|
+
'document'?: { [key: string]: any; };
|
|
12674
|
+
/**
|
|
12675
|
+
*
|
|
12676
|
+
* @type {{ [key: string]: any; }}
|
|
12677
|
+
* @memberof DataTypesOfficialSearchResult
|
|
12678
|
+
*/
|
|
12679
|
+
'highlight'?: { [key: string]: any; };
|
|
12680
|
+
/**
|
|
12681
|
+
*
|
|
12682
|
+
* @type {string}
|
|
12683
|
+
* @memberof DataTypesOfficialSearchResult
|
|
12684
|
+
*/
|
|
12685
|
+
'id'?: string;
|
|
12686
|
+
/**
|
|
12687
|
+
*
|
|
12688
|
+
* @type {number}
|
|
12689
|
+
* @memberof DataTypesOfficialSearchResult
|
|
12690
|
+
*/
|
|
12691
|
+
'score'?: number;
|
|
12692
|
+
}
|
|
12544
12693
|
/**
|
|
12545
12694
|
*
|
|
12546
12695
|
* @export
|
|
@@ -13548,6 +13697,31 @@ export interface DataTypesOrganizationTaxDetails {
|
|
|
13548
13697
|
*/
|
|
13549
13698
|
'tax_settings'?: { [key: string]: any; };
|
|
13550
13699
|
}
|
|
13700
|
+
/**
|
|
13701
|
+
*
|
|
13702
|
+
* @export
|
|
13703
|
+
* @interface DataTypesOrganizationsListResponse
|
|
13704
|
+
*/
|
|
13705
|
+
export interface DataTypesOrganizationsListResponse {
|
|
13706
|
+
/**
|
|
13707
|
+
*
|
|
13708
|
+
* @type {Array<DataTypesOrganization>}
|
|
13709
|
+
* @memberof DataTypesOrganizationsListResponse
|
|
13710
|
+
*/
|
|
13711
|
+
'data'?: Array<DataTypesOrganization>;
|
|
13712
|
+
/**
|
|
13713
|
+
*
|
|
13714
|
+
* @type {string}
|
|
13715
|
+
* @memberof DataTypesOrganizationsListResponse
|
|
13716
|
+
*/
|
|
13717
|
+
'message'?: string;
|
|
13718
|
+
/**
|
|
13719
|
+
*
|
|
13720
|
+
* @type {number}
|
|
13721
|
+
* @memberof DataTypesOrganizationsListResponse
|
|
13722
|
+
*/
|
|
13723
|
+
'status'?: number;
|
|
13724
|
+
}
|
|
13551
13725
|
/**
|
|
13552
13726
|
* Defines what happens when a rule is triggered (promote/hide documents, apply filters, etc.)
|
|
13553
13727
|
* @export
|
|
@@ -14050,6 +14224,31 @@ export interface DataTypesPaymentStatusPollResponse {
|
|
|
14050
14224
|
*/
|
|
14051
14225
|
'updated_at'?: string;
|
|
14052
14226
|
}
|
|
14227
|
+
/**
|
|
14228
|
+
*
|
|
14229
|
+
* @export
|
|
14230
|
+
* @interface DataTypesPaymentsListResponse
|
|
14231
|
+
*/
|
|
14232
|
+
export interface DataTypesPaymentsListResponse {
|
|
14233
|
+
/**
|
|
14234
|
+
*
|
|
14235
|
+
* @type {Array<DataTypesPayment>}
|
|
14236
|
+
* @memberof DataTypesPaymentsListResponse
|
|
14237
|
+
*/
|
|
14238
|
+
'data'?: Array<DataTypesPayment>;
|
|
14239
|
+
/**
|
|
14240
|
+
*
|
|
14241
|
+
* @type {string}
|
|
14242
|
+
* @memberof DataTypesPaymentsListResponse
|
|
14243
|
+
*/
|
|
14244
|
+
'message'?: string;
|
|
14245
|
+
/**
|
|
14246
|
+
*
|
|
14247
|
+
* @type {number}
|
|
14248
|
+
* @memberof DataTypesPaymentsListResponse
|
|
14249
|
+
*/
|
|
14250
|
+
'status'?: number;
|
|
14251
|
+
}
|
|
14053
14252
|
/**
|
|
14054
14253
|
*
|
|
14055
14254
|
* @export
|
|
@@ -14167,6 +14366,31 @@ export interface DataTypesPlanResponse {
|
|
|
14167
14366
|
*/
|
|
14168
14367
|
'status'?: number;
|
|
14169
14368
|
}
|
|
14369
|
+
/**
|
|
14370
|
+
*
|
|
14371
|
+
* @export
|
|
14372
|
+
* @interface DataTypesPlansListResponse
|
|
14373
|
+
*/
|
|
14374
|
+
export interface DataTypesPlansListResponse {
|
|
14375
|
+
/**
|
|
14376
|
+
*
|
|
14377
|
+
* @type {Array<DataTypesPlan>}
|
|
14378
|
+
* @memberof DataTypesPlansListResponse
|
|
14379
|
+
*/
|
|
14380
|
+
'data'?: Array<DataTypesPlan>;
|
|
14381
|
+
/**
|
|
14382
|
+
*
|
|
14383
|
+
* @type {string}
|
|
14384
|
+
* @memberof DataTypesPlansListResponse
|
|
14385
|
+
*/
|
|
14386
|
+
'message'?: string;
|
|
14387
|
+
/**
|
|
14388
|
+
*
|
|
14389
|
+
* @type {number}
|
|
14390
|
+
* @memberof DataTypesPlansListResponse
|
|
14391
|
+
*/
|
|
14392
|
+
'status'?: number;
|
|
14393
|
+
}
|
|
14170
14394
|
/**
|
|
14171
14395
|
*
|
|
14172
14396
|
* @export
|
|
@@ -14483,6 +14707,91 @@ export interface DataTypesProfileResponseWrapper {
|
|
|
14483
14707
|
*/
|
|
14484
14708
|
'status'?: number;
|
|
14485
14709
|
}
|
|
14710
|
+
/**
|
|
14711
|
+
*
|
|
14712
|
+
* @export
|
|
14713
|
+
* @interface DataTypesPublicSearchRequest
|
|
14714
|
+
*/
|
|
14715
|
+
export interface DataTypesPublicSearchRequest {
|
|
14716
|
+
/**
|
|
14717
|
+
*
|
|
14718
|
+
* @type {Array<string>}
|
|
14719
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14720
|
+
*/
|
|
14721
|
+
'analytics_tags'?: Array<string>;
|
|
14722
|
+
/**
|
|
14723
|
+
*
|
|
14724
|
+
* @type {string}
|
|
14725
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14726
|
+
*/
|
|
14727
|
+
'facet_by'?: string;
|
|
14728
|
+
/**
|
|
14729
|
+
*
|
|
14730
|
+
* @type {string}
|
|
14731
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14732
|
+
*/
|
|
14733
|
+
'filter'?: string;
|
|
14734
|
+
/**
|
|
14735
|
+
*
|
|
14736
|
+
* @type {boolean}
|
|
14737
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14738
|
+
*/
|
|
14739
|
+
'include_suggestions'?: boolean;
|
|
14740
|
+
/**
|
|
14741
|
+
*
|
|
14742
|
+
* @type {number}
|
|
14743
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14744
|
+
*/
|
|
14745
|
+
'max_facet_values'?: number;
|
|
14746
|
+
/**
|
|
14747
|
+
*
|
|
14748
|
+
* @type {number}
|
|
14749
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14750
|
+
*/
|
|
14751
|
+
'page'?: number;
|
|
14752
|
+
/**
|
|
14753
|
+
*
|
|
14754
|
+
* @type {number}
|
|
14755
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14756
|
+
*/
|
|
14757
|
+
'per_page'?: number;
|
|
14758
|
+
/**
|
|
14759
|
+
*
|
|
14760
|
+
* @type {string}
|
|
14761
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14762
|
+
*/
|
|
14763
|
+
'q': string;
|
|
14764
|
+
/**
|
|
14765
|
+
*
|
|
14766
|
+
* @type {string}
|
|
14767
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14768
|
+
*/
|
|
14769
|
+
'sort'?: string;
|
|
14770
|
+
/**
|
|
14771
|
+
* IDs of stopword sets to use
|
|
14772
|
+
* @type {Array<string>}
|
|
14773
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14774
|
+
*/
|
|
14775
|
+
'stopword_sets'?: Array<string>;
|
|
14776
|
+
/**
|
|
14777
|
+
*
|
|
14778
|
+
* @type {number}
|
|
14779
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14780
|
+
*/
|
|
14781
|
+
'suggestions_limit'?: number;
|
|
14782
|
+
/**
|
|
14783
|
+
* IDs of synonym sets to use
|
|
14784
|
+
* @type {Array<string>}
|
|
14785
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14786
|
+
*/
|
|
14787
|
+
'synonym_sets'?: Array<string>;
|
|
14788
|
+
/**
|
|
14789
|
+
* If true, returns only display fields instead of full document (used in public API only)
|
|
14790
|
+
* @type {boolean}
|
|
14791
|
+
* @memberof DataTypesPublicSearchRequest
|
|
14792
|
+
*/
|
|
14793
|
+
'widget_mode'?: boolean;
|
|
14794
|
+
}
|
|
14486
14795
|
/**
|
|
14487
14796
|
*
|
|
14488
14797
|
* @export
|
|
@@ -15497,6 +15806,31 @@ export interface DataTypesRoleRightsListResponse {
|
|
|
15497
15806
|
*/
|
|
15498
15807
|
'status'?: number;
|
|
15499
15808
|
}
|
|
15809
|
+
/**
|
|
15810
|
+
*
|
|
15811
|
+
* @export
|
|
15812
|
+
* @interface DataTypesRolesListResponse
|
|
15813
|
+
*/
|
|
15814
|
+
export interface DataTypesRolesListResponse {
|
|
15815
|
+
/**
|
|
15816
|
+
*
|
|
15817
|
+
* @type {Array<DataTypesRole>}
|
|
15818
|
+
* @memberof DataTypesRolesListResponse
|
|
15819
|
+
*/
|
|
15820
|
+
'data'?: Array<DataTypesRole>;
|
|
15821
|
+
/**
|
|
15822
|
+
*
|
|
15823
|
+
* @type {string}
|
|
15824
|
+
* @memberof DataTypesRolesListResponse
|
|
15825
|
+
*/
|
|
15826
|
+
'message'?: string;
|
|
15827
|
+
/**
|
|
15828
|
+
*
|
|
15829
|
+
* @type {number}
|
|
15830
|
+
* @memberof DataTypesRolesListResponse
|
|
15831
|
+
*/
|
|
15832
|
+
'status'?: number;
|
|
15833
|
+
}
|
|
15500
15834
|
/**
|
|
15501
15835
|
* Defines the conditions that trigger a rule (query matching, filters, etc.)
|
|
15502
15836
|
* @export
|
|
@@ -16052,6 +16386,31 @@ export interface DataTypesServiceRequestResponse {
|
|
|
16052
16386
|
*/
|
|
16053
16387
|
'status'?: number;
|
|
16054
16388
|
}
|
|
16389
|
+
/**
|
|
16390
|
+
*
|
|
16391
|
+
* @export
|
|
16392
|
+
* @interface DataTypesServiceRequestsListResponse
|
|
16393
|
+
*/
|
|
16394
|
+
export interface DataTypesServiceRequestsListResponse {
|
|
16395
|
+
/**
|
|
16396
|
+
*
|
|
16397
|
+
* @type {Array<DataTypesServiceRequest>}
|
|
16398
|
+
* @memberof DataTypesServiceRequestsListResponse
|
|
16399
|
+
*/
|
|
16400
|
+
'data'?: Array<DataTypesServiceRequest>;
|
|
16401
|
+
/**
|
|
16402
|
+
*
|
|
16403
|
+
* @type {string}
|
|
16404
|
+
* @memberof DataTypesServiceRequestsListResponse
|
|
16405
|
+
*/
|
|
16406
|
+
'message'?: string;
|
|
16407
|
+
/**
|
|
16408
|
+
*
|
|
16409
|
+
* @type {number}
|
|
16410
|
+
* @memberof DataTypesServiceRequestsListResponse
|
|
16411
|
+
*/
|
|
16412
|
+
'status'?: number;
|
|
16413
|
+
}
|
|
16055
16414
|
/**
|
|
16056
16415
|
*
|
|
16057
16416
|
* @export
|
|
@@ -16917,6 +17276,31 @@ export interface DataTypesSubscriptionResponse {
|
|
|
16917
17276
|
*/
|
|
16918
17277
|
'status'?: number;
|
|
16919
17278
|
}
|
|
17279
|
+
/**
|
|
17280
|
+
*
|
|
17281
|
+
* @export
|
|
17282
|
+
* @interface DataTypesSubscriptionsListResponse
|
|
17283
|
+
*/
|
|
17284
|
+
export interface DataTypesSubscriptionsListResponse {
|
|
17285
|
+
/**
|
|
17286
|
+
*
|
|
17287
|
+
* @type {Array<DataTypesSubscription>}
|
|
17288
|
+
* @memberof DataTypesSubscriptionsListResponse
|
|
17289
|
+
*/
|
|
17290
|
+
'data'?: Array<DataTypesSubscription>;
|
|
17291
|
+
/**
|
|
17292
|
+
*
|
|
17293
|
+
* @type {string}
|
|
17294
|
+
* @memberof DataTypesSubscriptionsListResponse
|
|
17295
|
+
*/
|
|
17296
|
+
'message'?: string;
|
|
17297
|
+
/**
|
|
17298
|
+
*
|
|
17299
|
+
* @type {number}
|
|
17300
|
+
* @memberof DataTypesSubscriptionsListResponse
|
|
17301
|
+
*/
|
|
17302
|
+
'status'?: number;
|
|
17303
|
+
}
|
|
16920
17304
|
/**
|
|
16921
17305
|
*
|
|
16922
17306
|
* @export
|
|
@@ -35647,6 +36031,39 @@ export const LimitsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
35647
36031
|
|
|
35648
36032
|
|
|
35649
36033
|
|
|
36034
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
36035
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
36036
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
36037
|
+
|
|
36038
|
+
return {
|
|
36039
|
+
url: toPathString(localVarUrlObj),
|
|
36040
|
+
options: localVarRequestOptions,
|
|
36041
|
+
};
|
|
36042
|
+
},
|
|
36043
|
+
/**
|
|
36044
|
+
* Fetches list of all limits
|
|
36045
|
+
* @summary Fetches list of all limits
|
|
36046
|
+
* @param {*} [options] Override http request option.
|
|
36047
|
+
* @throws {RequiredError}
|
|
36048
|
+
*/
|
|
36049
|
+
miscLimitsGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
36050
|
+
const localVarPath = `/misc/limits`;
|
|
36051
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
36052
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
36053
|
+
let baseOptions;
|
|
36054
|
+
if (configuration) {
|
|
36055
|
+
baseOptions = configuration.baseOptions;
|
|
36056
|
+
}
|
|
36057
|
+
|
|
36058
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
36059
|
+
const localVarHeaderParameter = {} as any;
|
|
36060
|
+
const localVarQueryParameter = {} as any;
|
|
36061
|
+
|
|
36062
|
+
// authentication BearerAuth required
|
|
36063
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
36064
|
+
|
|
36065
|
+
|
|
36066
|
+
|
|
35650
36067
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
35651
36068
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
35652
36069
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -35799,6 +36216,18 @@ export const LimitsApiFp = function(configuration?: Configuration) {
|
|
|
35799
36216
|
const localVarOperationServerBasePath = operationServerMap['LimitsApi.miscLimitsChangeStatusLimitIDIsActivePut']?.[localVarOperationServerIndex]?.url;
|
|
35800
36217
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
35801
36218
|
},
|
|
36219
|
+
/**
|
|
36220
|
+
* Fetches list of all limits
|
|
36221
|
+
* @summary Fetches list of all limits
|
|
36222
|
+
* @param {*} [options] Override http request option.
|
|
36223
|
+
* @throws {RequiredError}
|
|
36224
|
+
*/
|
|
36225
|
+
async miscLimitsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesLimitsListResponse>> {
|
|
36226
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.miscLimitsGet(options);
|
|
36227
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
36228
|
+
const localVarOperationServerBasePath = operationServerMap['LimitsApi.miscLimitsGet']?.[localVarOperationServerIndex]?.url;
|
|
36229
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
36230
|
+
},
|
|
35802
36231
|
/**
|
|
35803
36232
|
* Fetches limit by id
|
|
35804
36233
|
* @summary Fetches limit by id
|
|
@@ -35860,6 +36289,15 @@ export const LimitsApiFactory = function (configuration?: Configuration, basePat
|
|
|
35860
36289
|
miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
|
|
35861
36290
|
return localVarFp.miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options).then((request) => request(axios, basePath));
|
|
35862
36291
|
},
|
|
36292
|
+
/**
|
|
36293
|
+
* Fetches list of all limits
|
|
36294
|
+
* @summary Fetches list of all limits
|
|
36295
|
+
* @param {*} [options] Override http request option.
|
|
36296
|
+
* @throws {RequiredError}
|
|
36297
|
+
*/
|
|
36298
|
+
miscLimitsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesLimitsListResponse> {
|
|
36299
|
+
return localVarFp.miscLimitsGet(options).then((request) => request(axios, basePath));
|
|
36300
|
+
},
|
|
35863
36301
|
/**
|
|
35864
36302
|
* Fetches limit by id
|
|
35865
36303
|
* @summary Fetches limit by id
|
|
@@ -35914,6 +36352,17 @@ export class LimitsApi extends BaseAPI {
|
|
|
35914
36352
|
return LimitsApiFp(this.configuration).miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options).then((request) => request(this.axios, this.basePath));
|
|
35915
36353
|
}
|
|
35916
36354
|
|
|
36355
|
+
/**
|
|
36356
|
+
* Fetches list of all limits
|
|
36357
|
+
* @summary Fetches list of all limits
|
|
36358
|
+
* @param {*} [options] Override http request option.
|
|
36359
|
+
* @throws {RequiredError}
|
|
36360
|
+
* @memberof LimitsApi
|
|
36361
|
+
*/
|
|
36362
|
+
public miscLimitsGet(options?: RawAxiosRequestConfig) {
|
|
36363
|
+
return LimitsApiFp(this.configuration).miscLimitsGet(options).then((request) => request(this.axios, this.basePath));
|
|
36364
|
+
}
|
|
36365
|
+
|
|
35917
36366
|
/**
|
|
35918
36367
|
* Fetches limit by id
|
|
35919
36368
|
* @summary Fetches limit by id
|
|
@@ -35960,6 +36409,39 @@ export class LimitsApi extends BaseAPI {
|
|
|
35960
36409
|
*/
|
|
35961
36410
|
export const MenusApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
35962
36411
|
return {
|
|
36412
|
+
/**
|
|
36413
|
+
* Fetches list of all menus
|
|
36414
|
+
* @summary Fetches list of all menus
|
|
36415
|
+
* @param {*} [options] Override http request option.
|
|
36416
|
+
* @throws {RequiredError}
|
|
36417
|
+
*/
|
|
36418
|
+
miscMenusGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
36419
|
+
const localVarPath = `/misc/menus`;
|
|
36420
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
36421
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
36422
|
+
let baseOptions;
|
|
36423
|
+
if (configuration) {
|
|
36424
|
+
baseOptions = configuration.baseOptions;
|
|
36425
|
+
}
|
|
36426
|
+
|
|
36427
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
36428
|
+
const localVarHeaderParameter = {} as any;
|
|
36429
|
+
const localVarQueryParameter = {} as any;
|
|
36430
|
+
|
|
36431
|
+
// authentication BearerAuth required
|
|
36432
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
36433
|
+
|
|
36434
|
+
|
|
36435
|
+
|
|
36436
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
36437
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
36438
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
36439
|
+
|
|
36440
|
+
return {
|
|
36441
|
+
url: toPathString(localVarUrlObj),
|
|
36442
|
+
options: localVarRequestOptions,
|
|
36443
|
+
};
|
|
36444
|
+
},
|
|
35963
36445
|
/**
|
|
35964
36446
|
* Deletes a menu from the system by ID.
|
|
35965
36447
|
* @summary Delete a menu
|
|
@@ -36495,6 +36977,18 @@ export const MenusApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
36495
36977
|
export const MenusApiFp = function(configuration?: Configuration) {
|
|
36496
36978
|
const localVarAxiosParamCreator = MenusApiAxiosParamCreator(configuration)
|
|
36497
36979
|
return {
|
|
36980
|
+
/**
|
|
36981
|
+
* Fetches list of all menus
|
|
36982
|
+
* @summary Fetches list of all menus
|
|
36983
|
+
* @param {*} [options] Override http request option.
|
|
36984
|
+
* @throws {RequiredError}
|
|
36985
|
+
*/
|
|
36986
|
+
async miscMenusGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesMenusListResponse>> {
|
|
36987
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.miscMenusGet(options);
|
|
36988
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
36989
|
+
const localVarOperationServerBasePath = operationServerMap['MenusApi.miscMenusGet']?.[localVarOperationServerIndex]?.url;
|
|
36990
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
36991
|
+
},
|
|
36498
36992
|
/**
|
|
36499
36993
|
* Deletes a menu from the system by ID.
|
|
36500
36994
|
* @summary Delete a menu
|
|
@@ -36682,6 +37176,15 @@ export const MenusApiFp = function(configuration?: Configuration) {
|
|
|
36682
37176
|
export const MenusApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
36683
37177
|
const localVarFp = MenusApiFp(configuration)
|
|
36684
37178
|
return {
|
|
37179
|
+
/**
|
|
37180
|
+
* Fetches list of all menus
|
|
37181
|
+
* @summary Fetches list of all menus
|
|
37182
|
+
* @param {*} [options] Override http request option.
|
|
37183
|
+
* @throws {RequiredError}
|
|
37184
|
+
*/
|
|
37185
|
+
miscMenusGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesMenusListResponse> {
|
|
37186
|
+
return localVarFp.miscMenusGet(options).then((request) => request(axios, basePath));
|
|
37187
|
+
},
|
|
36685
37188
|
/**
|
|
36686
37189
|
* Deletes a menu from the system by ID.
|
|
36687
37190
|
* @summary Delete a menu
|
|
@@ -36830,6 +37333,17 @@ export const MenusApiFactory = function (configuration?: Configuration, basePath
|
|
|
36830
37333
|
* @extends {BaseAPI}
|
|
36831
37334
|
*/
|
|
36832
37335
|
export class MenusApi extends BaseAPI {
|
|
37336
|
+
/**
|
|
37337
|
+
* Fetches list of all menus
|
|
37338
|
+
* @summary Fetches list of all menus
|
|
37339
|
+
* @param {*} [options] Override http request option.
|
|
37340
|
+
* @throws {RequiredError}
|
|
37341
|
+
* @memberof MenusApi
|
|
37342
|
+
*/
|
|
37343
|
+
public miscMenusGet(options?: RawAxiosRequestConfig) {
|
|
37344
|
+
return MenusApiFp(this.configuration).miscMenusGet(options).then((request) => request(this.axios, this.basePath));
|
|
37345
|
+
}
|
|
37346
|
+
|
|
36833
37347
|
/**
|
|
36834
37348
|
* Deletes a menu from the system by ID.
|
|
36835
37349
|
* @summary Delete a menu
|
|
@@ -37866,6 +38380,39 @@ export class MongoDbApi extends BaseAPI {
|
|
|
37866
38380
|
*/
|
|
37867
38381
|
export const NewsLettersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
37868
38382
|
return {
|
|
38383
|
+
/**
|
|
38384
|
+
* Fetches list of all NewsLetterSubscription
|
|
38385
|
+
* @summary Fetches list of all NewsLetterSubscription
|
|
38386
|
+
* @param {*} [options] Override http request option.
|
|
38387
|
+
* @throws {RequiredError}
|
|
38388
|
+
*/
|
|
38389
|
+
miscNewsLettersGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
38390
|
+
const localVarPath = `/misc/NewsLetters`;
|
|
38391
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
38392
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
38393
|
+
let baseOptions;
|
|
38394
|
+
if (configuration) {
|
|
38395
|
+
baseOptions = configuration.baseOptions;
|
|
38396
|
+
}
|
|
38397
|
+
|
|
38398
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
38399
|
+
const localVarHeaderParameter = {} as any;
|
|
38400
|
+
const localVarQueryParameter = {} as any;
|
|
38401
|
+
|
|
38402
|
+
// authentication BearerAuth required
|
|
38403
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
38404
|
+
|
|
38405
|
+
|
|
38406
|
+
|
|
38407
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
38408
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
38409
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
38410
|
+
|
|
38411
|
+
return {
|
|
38412
|
+
url: toPathString(localVarUrlObj),
|
|
38413
|
+
options: localVarRequestOptions,
|
|
38414
|
+
};
|
|
38415
|
+
},
|
|
37869
38416
|
/**
|
|
37870
38417
|
* Fetches NewsLetterSubscription by id
|
|
37871
38418
|
* @summary Fetches NewsLetterSubscription by id
|
|
@@ -38036,6 +38583,18 @@ export const NewsLettersApiAxiosParamCreator = function (configuration?: Configu
|
|
|
38036
38583
|
export const NewsLettersApiFp = function(configuration?: Configuration) {
|
|
38037
38584
|
const localVarAxiosParamCreator = NewsLettersApiAxiosParamCreator(configuration)
|
|
38038
38585
|
return {
|
|
38586
|
+
/**
|
|
38587
|
+
* Fetches list of all NewsLetterSubscription
|
|
38588
|
+
* @summary Fetches list of all NewsLetterSubscription
|
|
38589
|
+
* @param {*} [options] Override http request option.
|
|
38590
|
+
* @throws {RequiredError}
|
|
38591
|
+
*/
|
|
38592
|
+
async miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesNewsLetterRequestsListResponse>> {
|
|
38593
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.miscNewsLettersGet(options);
|
|
38594
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
38595
|
+
const localVarOperationServerBasePath = operationServerMap['NewsLettersApi.miscNewsLettersGet']?.[localVarOperationServerIndex]?.url;
|
|
38596
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
38597
|
+
},
|
|
38039
38598
|
/**
|
|
38040
38599
|
* Fetches NewsLetterSubscription by id
|
|
38041
38600
|
* @summary Fetches NewsLetterSubscription by id
|
|
@@ -38100,6 +38659,15 @@ export const NewsLettersApiFp = function(configuration?: Configuration) {
|
|
|
38100
38659
|
export const NewsLettersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
38101
38660
|
const localVarFp = NewsLettersApiFp(configuration)
|
|
38102
38661
|
return {
|
|
38662
|
+
/**
|
|
38663
|
+
* Fetches list of all NewsLetterSubscription
|
|
38664
|
+
* @summary Fetches list of all NewsLetterSubscription
|
|
38665
|
+
* @param {*} [options] Override http request option.
|
|
38666
|
+
* @throws {RequiredError}
|
|
38667
|
+
*/
|
|
38668
|
+
miscNewsLettersGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesNewsLetterRequestsListResponse> {
|
|
38669
|
+
return localVarFp.miscNewsLettersGet(options).then((request) => request(axios, basePath));
|
|
38670
|
+
},
|
|
38103
38671
|
/**
|
|
38104
38672
|
* Fetches NewsLetterSubscription by id
|
|
38105
38673
|
* @summary Fetches NewsLetterSubscription by id
|
|
@@ -38152,6 +38720,17 @@ export const NewsLettersApiFactory = function (configuration?: Configuration, ba
|
|
|
38152
38720
|
* @extends {BaseAPI}
|
|
38153
38721
|
*/
|
|
38154
38722
|
export class NewsLettersApi extends BaseAPI {
|
|
38723
|
+
/**
|
|
38724
|
+
* Fetches list of all NewsLetterSubscription
|
|
38725
|
+
* @summary Fetches list of all NewsLetterSubscription
|
|
38726
|
+
* @param {*} [options] Override http request option.
|
|
38727
|
+
* @throws {RequiredError}
|
|
38728
|
+
* @memberof NewsLettersApi
|
|
38729
|
+
*/
|
|
38730
|
+
public miscNewsLettersGet(options?: RawAxiosRequestConfig) {
|
|
38731
|
+
return NewsLettersApiFp(this.configuration).miscNewsLettersGet(options).then((request) => request(this.axios, this.basePath));
|
|
38732
|
+
}
|
|
38733
|
+
|
|
38155
38734
|
/**
|
|
38156
38735
|
* Fetches NewsLetterSubscription by id
|
|
38157
38736
|
* @summary Fetches NewsLetterSubscription by id
|
|
@@ -38889,6 +39468,39 @@ export class OnboardingApi extends BaseAPI {
|
|
|
38889
39468
|
*/
|
|
38890
39469
|
export const OrganizationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
38891
39470
|
return {
|
|
39471
|
+
/**
|
|
39472
|
+
* Fetches list of all Organizations
|
|
39473
|
+
* @summary Fetches list of all Organizations
|
|
39474
|
+
* @param {*} [options] Override http request option.
|
|
39475
|
+
* @throws {RequiredError}
|
|
39476
|
+
*/
|
|
39477
|
+
adminOrganizationsGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
39478
|
+
const localVarPath = `/admin/Organizations`;
|
|
39479
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
39480
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
39481
|
+
let baseOptions;
|
|
39482
|
+
if (configuration) {
|
|
39483
|
+
baseOptions = configuration.baseOptions;
|
|
39484
|
+
}
|
|
39485
|
+
|
|
39486
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
39487
|
+
const localVarHeaderParameter = {} as any;
|
|
39488
|
+
const localVarQueryParameter = {} as any;
|
|
39489
|
+
|
|
39490
|
+
// authentication BearerAuth required
|
|
39491
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
39492
|
+
|
|
39493
|
+
|
|
39494
|
+
|
|
39495
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
39496
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
39497
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
39498
|
+
|
|
39499
|
+
return {
|
|
39500
|
+
url: toPathString(localVarUrlObj),
|
|
39501
|
+
options: localVarRequestOptions,
|
|
39502
|
+
};
|
|
39503
|
+
},
|
|
38892
39504
|
/**
|
|
38893
39505
|
* Updates Orgnization information by ID.
|
|
38894
39506
|
* @summary Update an existing Orgnization
|
|
@@ -39059,6 +39671,18 @@ export const OrganizationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
39059
39671
|
export const OrganizationsApiFp = function(configuration?: Configuration) {
|
|
39060
39672
|
const localVarAxiosParamCreator = OrganizationsApiAxiosParamCreator(configuration)
|
|
39061
39673
|
return {
|
|
39674
|
+
/**
|
|
39675
|
+
* Fetches list of all Organizations
|
|
39676
|
+
* @summary Fetches list of all Organizations
|
|
39677
|
+
* @param {*} [options] Override http request option.
|
|
39678
|
+
* @throws {RequiredError}
|
|
39679
|
+
*/
|
|
39680
|
+
async adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOrganizationsListResponse>> {
|
|
39681
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminOrganizationsGet(options);
|
|
39682
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
39683
|
+
const localVarOperationServerBasePath = operationServerMap['OrganizationsApi.adminOrganizationsGet']?.[localVarOperationServerIndex]?.url;
|
|
39684
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
39685
|
+
},
|
|
39062
39686
|
/**
|
|
39063
39687
|
* Updates Orgnization information by ID.
|
|
39064
39688
|
* @summary Update an existing Orgnization
|
|
@@ -39123,6 +39747,15 @@ export const OrganizationsApiFp = function(configuration?: Configuration) {
|
|
|
39123
39747
|
export const OrganizationsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
39124
39748
|
const localVarFp = OrganizationsApiFp(configuration)
|
|
39125
39749
|
return {
|
|
39750
|
+
/**
|
|
39751
|
+
* Fetches list of all Organizations
|
|
39752
|
+
* @summary Fetches list of all Organizations
|
|
39753
|
+
* @param {*} [options] Override http request option.
|
|
39754
|
+
* @throws {RequiredError}
|
|
39755
|
+
*/
|
|
39756
|
+
adminOrganizationsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOrganizationsListResponse> {
|
|
39757
|
+
return localVarFp.adminOrganizationsGet(options).then((request) => request(axios, basePath));
|
|
39758
|
+
},
|
|
39126
39759
|
/**
|
|
39127
39760
|
* Updates Orgnization information by ID.
|
|
39128
39761
|
* @summary Update an existing Orgnization
|
|
@@ -39175,6 +39808,17 @@ export const OrganizationsApiFactory = function (configuration?: Configuration,
|
|
|
39175
39808
|
* @extends {BaseAPI}
|
|
39176
39809
|
*/
|
|
39177
39810
|
export class OrganizationsApi extends BaseAPI {
|
|
39811
|
+
/**
|
|
39812
|
+
* Fetches list of all Organizations
|
|
39813
|
+
* @summary Fetches list of all Organizations
|
|
39814
|
+
* @param {*} [options] Override http request option.
|
|
39815
|
+
* @throws {RequiredError}
|
|
39816
|
+
* @memberof OrganizationsApi
|
|
39817
|
+
*/
|
|
39818
|
+
public adminOrganizationsGet(options?: RawAxiosRequestConfig) {
|
|
39819
|
+
return OrganizationsApiFp(this.configuration).adminOrganizationsGet(options).then((request) => request(this.axios, this.basePath));
|
|
39820
|
+
}
|
|
39821
|
+
|
|
39178
39822
|
/**
|
|
39179
39823
|
* Updates Orgnization information by ID.
|
|
39180
39824
|
* @summary Update an existing Orgnization
|
|
@@ -40701,6 +41345,39 @@ export class PaymentGatewayApi extends BaseAPI {
|
|
|
40701
41345
|
*/
|
|
40702
41346
|
export const PaymentsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
40703
41347
|
return {
|
|
41348
|
+
/**
|
|
41349
|
+
* Fetches list of all payments
|
|
41350
|
+
* @summary Fetches list of all payments
|
|
41351
|
+
* @param {*} [options] Override http request option.
|
|
41352
|
+
* @throws {RequiredError}
|
|
41353
|
+
*/
|
|
41354
|
+
adminPaymentsGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41355
|
+
const localVarPath = `/admin/payments/`;
|
|
41356
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
41357
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
41358
|
+
let baseOptions;
|
|
41359
|
+
if (configuration) {
|
|
41360
|
+
baseOptions = configuration.baseOptions;
|
|
41361
|
+
}
|
|
41362
|
+
|
|
41363
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
41364
|
+
const localVarHeaderParameter = {} as any;
|
|
41365
|
+
const localVarQueryParameter = {} as any;
|
|
41366
|
+
|
|
41367
|
+
// authentication BearerAuth required
|
|
41368
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
41369
|
+
|
|
41370
|
+
|
|
41371
|
+
|
|
41372
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
41373
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
41374
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
41375
|
+
|
|
41376
|
+
return {
|
|
41377
|
+
url: toPathString(localVarUrlObj),
|
|
41378
|
+
options: localVarRequestOptions,
|
|
41379
|
+
};
|
|
41380
|
+
},
|
|
40704
41381
|
/**
|
|
40705
41382
|
* Deletes a payment from the system by ID.
|
|
40706
41383
|
* @summary Delete a payment
|
|
@@ -40867,6 +41544,18 @@ export const PaymentsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
40867
41544
|
export const PaymentsApiFp = function(configuration?: Configuration) {
|
|
40868
41545
|
const localVarAxiosParamCreator = PaymentsApiAxiosParamCreator(configuration)
|
|
40869
41546
|
return {
|
|
41547
|
+
/**
|
|
41548
|
+
* Fetches list of all payments
|
|
41549
|
+
* @summary Fetches list of all payments
|
|
41550
|
+
* @param {*} [options] Override http request option.
|
|
41551
|
+
* @throws {RequiredError}
|
|
41552
|
+
*/
|
|
41553
|
+
async adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentsListResponse>> {
|
|
41554
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminPaymentsGet(options);
|
|
41555
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
41556
|
+
const localVarOperationServerBasePath = operationServerMap['PaymentsApi.adminPaymentsGet']?.[localVarOperationServerIndex]?.url;
|
|
41557
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
41558
|
+
},
|
|
40870
41559
|
/**
|
|
40871
41560
|
* Deletes a payment from the system by ID.
|
|
40872
41561
|
* @summary Delete a payment
|
|
@@ -40930,6 +41619,15 @@ export const PaymentsApiFp = function(configuration?: Configuration) {
|
|
|
40930
41619
|
export const PaymentsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
40931
41620
|
const localVarFp = PaymentsApiFp(configuration)
|
|
40932
41621
|
return {
|
|
41622
|
+
/**
|
|
41623
|
+
* Fetches list of all payments
|
|
41624
|
+
* @summary Fetches list of all payments
|
|
41625
|
+
* @param {*} [options] Override http request option.
|
|
41626
|
+
* @throws {RequiredError}
|
|
41627
|
+
*/
|
|
41628
|
+
adminPaymentsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentsListResponse> {
|
|
41629
|
+
return localVarFp.adminPaymentsGet(options).then((request) => request(axios, basePath));
|
|
41630
|
+
},
|
|
40933
41631
|
/**
|
|
40934
41632
|
* Deletes a payment from the system by ID.
|
|
40935
41633
|
* @summary Delete a payment
|
|
@@ -40981,6 +41679,17 @@ export const PaymentsApiFactory = function (configuration?: Configuration, baseP
|
|
|
40981
41679
|
* @extends {BaseAPI}
|
|
40982
41680
|
*/
|
|
40983
41681
|
export class PaymentsApi extends BaseAPI {
|
|
41682
|
+
/**
|
|
41683
|
+
* Fetches list of all payments
|
|
41684
|
+
* @summary Fetches list of all payments
|
|
41685
|
+
* @param {*} [options] Override http request option.
|
|
41686
|
+
* @throws {RequiredError}
|
|
41687
|
+
* @memberof PaymentsApi
|
|
41688
|
+
*/
|
|
41689
|
+
public adminPaymentsGet(options?: RawAxiosRequestConfig) {
|
|
41690
|
+
return PaymentsApiFp(this.configuration).adminPaymentsGet(options).then((request) => request(this.axios, this.basePath));
|
|
41691
|
+
}
|
|
41692
|
+
|
|
40984
41693
|
/**
|
|
40985
41694
|
* Deletes a payment from the system by ID.
|
|
40986
41695
|
* @summary Delete a payment
|
|
@@ -41039,6 +41748,39 @@ export class PaymentsApi extends BaseAPI {
|
|
|
41039
41748
|
*/
|
|
41040
41749
|
export const PlansApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
41041
41750
|
return {
|
|
41751
|
+
/**
|
|
41752
|
+
* Fetches list of all Plans
|
|
41753
|
+
* @summary Fetches list of all Plans
|
|
41754
|
+
* @param {*} [options] Override http request option.
|
|
41755
|
+
* @throws {RequiredError}
|
|
41756
|
+
*/
|
|
41757
|
+
miscPlansGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41758
|
+
const localVarPath = `/misc/Plans`;
|
|
41759
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
41760
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
41761
|
+
let baseOptions;
|
|
41762
|
+
if (configuration) {
|
|
41763
|
+
baseOptions = configuration.baseOptions;
|
|
41764
|
+
}
|
|
41765
|
+
|
|
41766
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
41767
|
+
const localVarHeaderParameter = {} as any;
|
|
41768
|
+
const localVarQueryParameter = {} as any;
|
|
41769
|
+
|
|
41770
|
+
// authentication BearerAuth required
|
|
41771
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
41772
|
+
|
|
41773
|
+
|
|
41774
|
+
|
|
41775
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
41776
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
41777
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
41778
|
+
|
|
41779
|
+
return {
|
|
41780
|
+
url: toPathString(localVarUrlObj),
|
|
41781
|
+
options: localVarRequestOptions,
|
|
41782
|
+
};
|
|
41783
|
+
},
|
|
41042
41784
|
/**
|
|
41043
41785
|
* Fetches plan by id
|
|
41044
41786
|
* @summary Fetches plan by id
|
|
@@ -41209,6 +41951,18 @@ export const PlansApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
41209
41951
|
export const PlansApiFp = function(configuration?: Configuration) {
|
|
41210
41952
|
const localVarAxiosParamCreator = PlansApiAxiosParamCreator(configuration)
|
|
41211
41953
|
return {
|
|
41954
|
+
/**
|
|
41955
|
+
* Fetches list of all Plans
|
|
41956
|
+
* @summary Fetches list of all Plans
|
|
41957
|
+
* @param {*} [options] Override http request option.
|
|
41958
|
+
* @throws {RequiredError}
|
|
41959
|
+
*/
|
|
41960
|
+
async miscPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPlansListResponse>> {
|
|
41961
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.miscPlansGet(options);
|
|
41962
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
41963
|
+
const localVarOperationServerBasePath = operationServerMap['PlansApi.miscPlansGet']?.[localVarOperationServerIndex]?.url;
|
|
41964
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
41965
|
+
},
|
|
41212
41966
|
/**
|
|
41213
41967
|
* Fetches plan by id
|
|
41214
41968
|
* @summary Fetches plan by id
|
|
@@ -41273,6 +42027,15 @@ export const PlansApiFp = function(configuration?: Configuration) {
|
|
|
41273
42027
|
export const PlansApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
41274
42028
|
const localVarFp = PlansApiFp(configuration)
|
|
41275
42029
|
return {
|
|
42030
|
+
/**
|
|
42031
|
+
* Fetches list of all Plans
|
|
42032
|
+
* @summary Fetches list of all Plans
|
|
42033
|
+
* @param {*} [options] Override http request option.
|
|
42034
|
+
* @throws {RequiredError}
|
|
42035
|
+
*/
|
|
42036
|
+
miscPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPlansListResponse> {
|
|
42037
|
+
return localVarFp.miscPlansGet(options).then((request) => request(axios, basePath));
|
|
42038
|
+
},
|
|
41276
42039
|
/**
|
|
41277
42040
|
* Fetches plan by id
|
|
41278
42041
|
* @summary Fetches plan by id
|
|
@@ -41325,6 +42088,17 @@ export const PlansApiFactory = function (configuration?: Configuration, basePath
|
|
|
41325
42088
|
* @extends {BaseAPI}
|
|
41326
42089
|
*/
|
|
41327
42090
|
export class PlansApi extends BaseAPI {
|
|
42091
|
+
/**
|
|
42092
|
+
* Fetches list of all Plans
|
|
42093
|
+
* @summary Fetches list of all Plans
|
|
42094
|
+
* @param {*} [options] Override http request option.
|
|
42095
|
+
* @throws {RequiredError}
|
|
42096
|
+
* @memberof PlansApi
|
|
42097
|
+
*/
|
|
42098
|
+
public miscPlansGet(options?: RawAxiosRequestConfig) {
|
|
42099
|
+
return PlansApiFp(this.configuration).miscPlansGet(options).then((request) => request(this.axios, this.basePath));
|
|
42100
|
+
}
|
|
42101
|
+
|
|
41328
42102
|
/**
|
|
41329
42103
|
* Fetches plan by id
|
|
41330
42104
|
* @summary Fetches plan by id
|
|
@@ -46239,6 +47013,39 @@ export class RegisterApi extends BaseAPI {
|
|
|
46239
47013
|
*/
|
|
46240
47014
|
export const RequestsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
46241
47015
|
return {
|
|
47016
|
+
/**
|
|
47017
|
+
* Fetches list of all ServiceRequest
|
|
47018
|
+
* @summary Fetches list of all ServiceRequest
|
|
47019
|
+
* @param {*} [options] Override http request option.
|
|
47020
|
+
* @throws {RequiredError}
|
|
47021
|
+
*/
|
|
47022
|
+
miscRequestsGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47023
|
+
const localVarPath = `/misc/Requests`;
|
|
47024
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
47025
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
47026
|
+
let baseOptions;
|
|
47027
|
+
if (configuration) {
|
|
47028
|
+
baseOptions = configuration.baseOptions;
|
|
47029
|
+
}
|
|
47030
|
+
|
|
47031
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
47032
|
+
const localVarHeaderParameter = {} as any;
|
|
47033
|
+
const localVarQueryParameter = {} as any;
|
|
47034
|
+
|
|
47035
|
+
// authentication BearerAuth required
|
|
47036
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
47037
|
+
|
|
47038
|
+
|
|
47039
|
+
|
|
47040
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
47041
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
47042
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
47043
|
+
|
|
47044
|
+
return {
|
|
47045
|
+
url: toPathString(localVarUrlObj),
|
|
47046
|
+
options: localVarRequestOptions,
|
|
47047
|
+
};
|
|
47048
|
+
},
|
|
46242
47049
|
/**
|
|
46243
47050
|
* Updates ServiceRequest information by ID.
|
|
46244
47051
|
* @summary Deletes an existing ServiceRequest
|
|
@@ -46446,6 +47253,18 @@ export const RequestsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
46446
47253
|
export const RequestsApiFp = function(configuration?: Configuration) {
|
|
46447
47254
|
const localVarAxiosParamCreator = RequestsApiAxiosParamCreator(configuration)
|
|
46448
47255
|
return {
|
|
47256
|
+
/**
|
|
47257
|
+
* Fetches list of all ServiceRequest
|
|
47258
|
+
* @summary Fetches list of all ServiceRequest
|
|
47259
|
+
* @param {*} [options] Override http request option.
|
|
47260
|
+
* @throws {RequiredError}
|
|
47261
|
+
*/
|
|
47262
|
+
async miscRequestsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesServiceRequestsListResponse>> {
|
|
47263
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.miscRequestsGet(options);
|
|
47264
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
47265
|
+
const localVarOperationServerBasePath = operationServerMap['RequestsApi.miscRequestsGet']?.[localVarOperationServerIndex]?.url;
|
|
47266
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
47267
|
+
},
|
|
46449
47268
|
/**
|
|
46450
47269
|
* Updates ServiceRequest information by ID.
|
|
46451
47270
|
* @summary Deletes an existing ServiceRequest
|
|
@@ -46523,6 +47342,15 @@ export const RequestsApiFp = function(configuration?: Configuration) {
|
|
|
46523
47342
|
export const RequestsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
46524
47343
|
const localVarFp = RequestsApiFp(configuration)
|
|
46525
47344
|
return {
|
|
47345
|
+
/**
|
|
47346
|
+
* Fetches list of all ServiceRequest
|
|
47347
|
+
* @summary Fetches list of all ServiceRequest
|
|
47348
|
+
* @param {*} [options] Override http request option.
|
|
47349
|
+
* @throws {RequiredError}
|
|
47350
|
+
*/
|
|
47351
|
+
miscRequestsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesServiceRequestsListResponse> {
|
|
47352
|
+
return localVarFp.miscRequestsGet(options).then((request) => request(axios, basePath));
|
|
47353
|
+
},
|
|
46526
47354
|
/**
|
|
46527
47355
|
* Updates ServiceRequest information by ID.
|
|
46528
47356
|
* @summary Deletes an existing ServiceRequest
|
|
@@ -46585,6 +47413,17 @@ export const RequestsApiFactory = function (configuration?: Configuration, baseP
|
|
|
46585
47413
|
* @extends {BaseAPI}
|
|
46586
47414
|
*/
|
|
46587
47415
|
export class RequestsApi extends BaseAPI {
|
|
47416
|
+
/**
|
|
47417
|
+
* Fetches list of all ServiceRequest
|
|
47418
|
+
* @summary Fetches list of all ServiceRequest
|
|
47419
|
+
* @param {*} [options] Override http request option.
|
|
47420
|
+
* @throws {RequiredError}
|
|
47421
|
+
* @memberof RequestsApi
|
|
47422
|
+
*/
|
|
47423
|
+
public miscRequestsGet(options?: RawAxiosRequestConfig) {
|
|
47424
|
+
return RequestsApiFp(this.configuration).miscRequestsGet(options).then((request) => request(this.axios, this.basePath));
|
|
47425
|
+
}
|
|
47426
|
+
|
|
46588
47427
|
/**
|
|
46589
47428
|
* Updates ServiceRequest information by ID.
|
|
46590
47429
|
* @summary Deletes an existing ServiceRequest
|
|
@@ -46695,6 +47534,39 @@ export const RoleRightsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
46695
47534
|
options: localVarRequestOptions,
|
|
46696
47535
|
};
|
|
46697
47536
|
},
|
|
47537
|
+
/**
|
|
47538
|
+
* Fetches list of all roleright
|
|
47539
|
+
* @summary Fetches list of all roleright
|
|
47540
|
+
* @param {*} [options] Override http request option.
|
|
47541
|
+
* @throws {RequiredError}
|
|
47542
|
+
*/
|
|
47543
|
+
adminRolerightsGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47544
|
+
const localVarPath = `/admin/rolerights`;
|
|
47545
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
47546
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
47547
|
+
let baseOptions;
|
|
47548
|
+
if (configuration) {
|
|
47549
|
+
baseOptions = configuration.baseOptions;
|
|
47550
|
+
}
|
|
47551
|
+
|
|
47552
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
47553
|
+
const localVarHeaderParameter = {} as any;
|
|
47554
|
+
const localVarQueryParameter = {} as any;
|
|
47555
|
+
|
|
47556
|
+
// authentication BearerAuth required
|
|
47557
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
47558
|
+
|
|
47559
|
+
|
|
47560
|
+
|
|
47561
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
47562
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
47563
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
47564
|
+
|
|
47565
|
+
return {
|
|
47566
|
+
url: toPathString(localVarUrlObj),
|
|
47567
|
+
options: localVarRequestOptions,
|
|
47568
|
+
};
|
|
47569
|
+
},
|
|
46698
47570
|
/**
|
|
46699
47571
|
* Fetches roleright by role id
|
|
46700
47572
|
* @summary Fetches roleright by role id
|
|
@@ -46948,6 +47820,18 @@ export const RoleRightsApiFp = function(configuration?: Configuration) {
|
|
|
46948
47820
|
const localVarOperationServerBasePath = operationServerMap['RoleRightsApi.adminRolerightsBulkPost']?.[localVarOperationServerIndex]?.url;
|
|
46949
47821
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
46950
47822
|
},
|
|
47823
|
+
/**
|
|
47824
|
+
* Fetches list of all roleright
|
|
47825
|
+
* @summary Fetches list of all roleright
|
|
47826
|
+
* @param {*} [options] Override http request option.
|
|
47827
|
+
* @throws {RequiredError}
|
|
47828
|
+
*/
|
|
47829
|
+
async adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRoleRightsListResponse>> {
|
|
47830
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminRolerightsGet(options);
|
|
47831
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
47832
|
+
const localVarOperationServerBasePath = operationServerMap['RoleRightsApi.adminRolerightsGet']?.[localVarOperationServerIndex]?.url;
|
|
47833
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
47834
|
+
},
|
|
46951
47835
|
/**
|
|
46952
47836
|
* Fetches roleright by role id
|
|
46953
47837
|
* @summary Fetches roleright by role id
|
|
@@ -47047,6 +47931,15 @@ export const RoleRightsApiFactory = function (configuration?: Configuration, bas
|
|
|
47047
47931
|
adminRolerightsBulkPost(dataTypesRoleRightRequestDto: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
|
|
47048
47932
|
return localVarFp.adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options).then((request) => request(axios, basePath));
|
|
47049
47933
|
},
|
|
47934
|
+
/**
|
|
47935
|
+
* Fetches list of all roleright
|
|
47936
|
+
* @summary Fetches list of all roleright
|
|
47937
|
+
* @param {*} [options] Override http request option.
|
|
47938
|
+
* @throws {RequiredError}
|
|
47939
|
+
*/
|
|
47940
|
+
adminRolerightsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRoleRightsListResponse> {
|
|
47941
|
+
return localVarFp.adminRolerightsGet(options).then((request) => request(axios, basePath));
|
|
47942
|
+
},
|
|
47050
47943
|
/**
|
|
47051
47944
|
* Fetches roleright by role id
|
|
47052
47945
|
* @summary Fetches roleright by role id
|
|
@@ -47130,6 +48023,17 @@ export class RoleRightsApi extends BaseAPI {
|
|
|
47130
48023
|
return RoleRightsApiFp(this.configuration).adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
47131
48024
|
}
|
|
47132
48025
|
|
|
48026
|
+
/**
|
|
48027
|
+
* Fetches list of all roleright
|
|
48028
|
+
* @summary Fetches list of all roleright
|
|
48029
|
+
* @param {*} [options] Override http request option.
|
|
48030
|
+
* @throws {RequiredError}
|
|
48031
|
+
* @memberof RoleRightsApi
|
|
48032
|
+
*/
|
|
48033
|
+
public adminRolerightsGet(options?: RawAxiosRequestConfig) {
|
|
48034
|
+
return RoleRightsApiFp(this.configuration).adminRolerightsGet(options).then((request) => request(this.axios, this.basePath));
|
|
48035
|
+
}
|
|
48036
|
+
|
|
47133
48037
|
/**
|
|
47134
48038
|
* Fetches roleright by role id
|
|
47135
48039
|
* @summary Fetches roleright by role id
|
|
@@ -47292,6 +48196,43 @@ export const RolesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
47292
48196
|
options: localVarRequestOptions,
|
|
47293
48197
|
};
|
|
47294
48198
|
},
|
|
48199
|
+
/**
|
|
48200
|
+
* Fetches list of all roles
|
|
48201
|
+
* @summary Fetches list of all roles
|
|
48202
|
+
* @param {number} orgId Org ID
|
|
48203
|
+
* @param {*} [options] Override http request option.
|
|
48204
|
+
* @throws {RequiredError}
|
|
48205
|
+
*/
|
|
48206
|
+
adminRolesOrgIdGet: async (orgId: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48207
|
+
// verify required parameter 'orgId' is not null or undefined
|
|
48208
|
+
assertParamExists('adminRolesOrgIdGet', 'orgId', orgId)
|
|
48209
|
+
const localVarPath = `/admin/roles/{OrgId}`
|
|
48210
|
+
.replace(`{${"OrgId"}}`, encodeURIComponent(String(orgId)));
|
|
48211
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
48212
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
48213
|
+
let baseOptions;
|
|
48214
|
+
if (configuration) {
|
|
48215
|
+
baseOptions = configuration.baseOptions;
|
|
48216
|
+
}
|
|
48217
|
+
|
|
48218
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
48219
|
+
const localVarHeaderParameter = {} as any;
|
|
48220
|
+
const localVarQueryParameter = {} as any;
|
|
48221
|
+
|
|
48222
|
+
// authentication BearerAuth required
|
|
48223
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
48224
|
+
|
|
48225
|
+
|
|
48226
|
+
|
|
48227
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
48228
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
48229
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
48230
|
+
|
|
48231
|
+
return {
|
|
48232
|
+
url: toPathString(localVarUrlObj),
|
|
48233
|
+
options: localVarRequestOptions,
|
|
48234
|
+
};
|
|
48235
|
+
},
|
|
47295
48236
|
/**
|
|
47296
48237
|
* Fetches role by id
|
|
47297
48238
|
* @summary Fetches role by id
|
|
@@ -47409,6 +48350,19 @@ export const RolesApiFp = function(configuration?: Configuration) {
|
|
|
47409
48350
|
const localVarOperationServerBasePath = operationServerMap['RolesApi.adminRolesIdPut']?.[localVarOperationServerIndex]?.url;
|
|
47410
48351
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
47411
48352
|
},
|
|
48353
|
+
/**
|
|
48354
|
+
* Fetches list of all roles
|
|
48355
|
+
* @summary Fetches list of all roles
|
|
48356
|
+
* @param {number} orgId Org ID
|
|
48357
|
+
* @param {*} [options] Override http request option.
|
|
48358
|
+
* @throws {RequiredError}
|
|
48359
|
+
*/
|
|
48360
|
+
async adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRolesListResponse>> {
|
|
48361
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminRolesOrgIdGet(orgId, options);
|
|
48362
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
48363
|
+
const localVarOperationServerBasePath = operationServerMap['RolesApi.adminRolesOrgIdGet']?.[localVarOperationServerIndex]?.url;
|
|
48364
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48365
|
+
},
|
|
47412
48366
|
/**
|
|
47413
48367
|
* Fetches role by id
|
|
47414
48368
|
* @summary Fetches role by id
|
|
@@ -47467,6 +48421,16 @@ export const RolesApiFactory = function (configuration?: Configuration, basePath
|
|
|
47467
48421
|
adminRolesIdPut(id: number, dataTypesCreateRoleRequestDto: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
|
|
47468
48422
|
return localVarFp.adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options).then((request) => request(axios, basePath));
|
|
47469
48423
|
},
|
|
48424
|
+
/**
|
|
48425
|
+
* Fetches list of all roles
|
|
48426
|
+
* @summary Fetches list of all roles
|
|
48427
|
+
* @param {number} orgId Org ID
|
|
48428
|
+
* @param {*} [options] Override http request option.
|
|
48429
|
+
* @throws {RequiredError}
|
|
48430
|
+
*/
|
|
48431
|
+
adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRolesListResponse> {
|
|
48432
|
+
return localVarFp.adminRolesOrgIdGet(orgId, options).then((request) => request(axios, basePath));
|
|
48433
|
+
},
|
|
47470
48434
|
/**
|
|
47471
48435
|
* Fetches role by id
|
|
47472
48436
|
* @summary Fetches role by id
|
|
@@ -47523,6 +48487,18 @@ export class RolesApi extends BaseAPI {
|
|
|
47523
48487
|
return RolesApiFp(this.configuration).adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
47524
48488
|
}
|
|
47525
48489
|
|
|
48490
|
+
/**
|
|
48491
|
+
* Fetches list of all roles
|
|
48492
|
+
* @summary Fetches list of all roles
|
|
48493
|
+
* @param {number} orgId Org ID
|
|
48494
|
+
* @param {*} [options] Override http request option.
|
|
48495
|
+
* @throws {RequiredError}
|
|
48496
|
+
* @memberof RolesApi
|
|
48497
|
+
*/
|
|
48498
|
+
public adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig) {
|
|
48499
|
+
return RolesApiFp(this.configuration).adminRolesOrgIdGet(orgId, options).then((request) => request(this.axios, this.basePath));
|
|
48500
|
+
}
|
|
48501
|
+
|
|
47526
48502
|
/**
|
|
47527
48503
|
* Fetches role by id
|
|
47528
48504
|
* @summary Fetches role by id
|
|
@@ -47782,6 +48758,54 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
47782
48758
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
47783
48759
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
47784
48760
|
|
|
48761
|
+
return {
|
|
48762
|
+
url: toPathString(localVarUrlObj),
|
|
48763
|
+
options: localVarRequestOptions,
|
|
48764
|
+
};
|
|
48765
|
+
},
|
|
48766
|
+
/**
|
|
48767
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
48768
|
+
* @summary Public Search API
|
|
48769
|
+
* @param {string} xStoreid Store ID
|
|
48770
|
+
* @param {string} xStoresecret Store Secret
|
|
48771
|
+
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
48772
|
+
* @param {*} [options] Override http request option.
|
|
48773
|
+
* @throws {RequiredError}
|
|
48774
|
+
*/
|
|
48775
|
+
v1SearchPost: async (xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48776
|
+
// verify required parameter 'xStoreid' is not null or undefined
|
|
48777
|
+
assertParamExists('v1SearchPost', 'xStoreid', xStoreid)
|
|
48778
|
+
// verify required parameter 'xStoresecret' is not null or undefined
|
|
48779
|
+
assertParamExists('v1SearchPost', 'xStoresecret', xStoresecret)
|
|
48780
|
+
// verify required parameter 'dataTypesPublicSearchRequest' is not null or undefined
|
|
48781
|
+
assertParamExists('v1SearchPost', 'dataTypesPublicSearchRequest', dataTypesPublicSearchRequest)
|
|
48782
|
+
const localVarPath = `/v1/search`;
|
|
48783
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
48784
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
48785
|
+
let baseOptions;
|
|
48786
|
+
if (configuration) {
|
|
48787
|
+
baseOptions = configuration.baseOptions;
|
|
48788
|
+
}
|
|
48789
|
+
|
|
48790
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
48791
|
+
const localVarHeaderParameter = {} as any;
|
|
48792
|
+
const localVarQueryParameter = {} as any;
|
|
48793
|
+
|
|
48794
|
+
|
|
48795
|
+
|
|
48796
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
48797
|
+
|
|
48798
|
+
if (xStoreid != null) {
|
|
48799
|
+
localVarHeaderParameter['x-storeid'] = String(xStoreid);
|
|
48800
|
+
}
|
|
48801
|
+
if (xStoresecret != null) {
|
|
48802
|
+
localVarHeaderParameter['x-storesecret'] = String(xStoresecret);
|
|
48803
|
+
}
|
|
48804
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
48805
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
48806
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
48807
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dataTypesPublicSearchRequest, localVarRequestOptions, configuration)
|
|
48808
|
+
|
|
47785
48809
|
return {
|
|
47786
48810
|
url: toPathString(localVarUrlObj),
|
|
47787
48811
|
options: localVarRequestOptions,
|
|
@@ -47879,6 +48903,21 @@ export const SearchApiFp = function(configuration?: Configuration) {
|
|
|
47879
48903
|
const localVarOperationServerBasePath = operationServerMap['SearchApi.v1IndexIndexnameDefaultsGet']?.[localVarOperationServerIndex]?.url;
|
|
47880
48904
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
47881
48905
|
},
|
|
48906
|
+
/**
|
|
48907
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
48908
|
+
* @summary Public Search API
|
|
48909
|
+
* @param {string} xStoreid Store ID
|
|
48910
|
+
* @param {string} xStoresecret Store Secret
|
|
48911
|
+
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
48912
|
+
* @param {*} [options] Override http request option.
|
|
48913
|
+
* @throws {RequiredError}
|
|
48914
|
+
*/
|
|
48915
|
+
async v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>> {
|
|
48916
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options);
|
|
48917
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
48918
|
+
const localVarOperationServerBasePath = operationServerMap['SearchApi.v1SearchPost']?.[localVarOperationServerIndex]?.url;
|
|
48919
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48920
|
+
},
|
|
47882
48921
|
}
|
|
47883
48922
|
};
|
|
47884
48923
|
|
|
@@ -47953,6 +48992,18 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
|
|
|
47953
48992
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper> {
|
|
47954
48993
|
return localVarFp.v1IndexIndexnameDefaultsGet(indexname, options).then((request) => request(axios, basePath));
|
|
47955
48994
|
},
|
|
48995
|
+
/**
|
|
48996
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
48997
|
+
* @summary Public Search API
|
|
48998
|
+
* @param {string} xStoreid Store ID
|
|
48999
|
+
* @param {string} xStoresecret Store Secret
|
|
49000
|
+
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
49001
|
+
* @param {*} [options] Override http request option.
|
|
49002
|
+
* @throws {RequiredError}
|
|
49003
|
+
*/
|
|
49004
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper> {
|
|
49005
|
+
return localVarFp.v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options).then((request) => request(axios, basePath));
|
|
49006
|
+
},
|
|
47956
49007
|
};
|
|
47957
49008
|
};
|
|
47958
49009
|
|
|
@@ -48038,6 +49089,20 @@ export class SearchApi extends BaseAPI {
|
|
|
48038
49089
|
public v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig) {
|
|
48039
49090
|
return SearchApiFp(this.configuration).v1IndexIndexnameDefaultsGet(indexname, options).then((request) => request(this.axios, this.basePath));
|
|
48040
49091
|
}
|
|
49092
|
+
|
|
49093
|
+
/**
|
|
49094
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
49095
|
+
* @summary Public Search API
|
|
49096
|
+
* @param {string} xStoreid Store ID
|
|
49097
|
+
* @param {string} xStoresecret Store Secret
|
|
49098
|
+
* @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
|
|
49099
|
+
* @param {*} [options] Override http request option.
|
|
49100
|
+
* @throws {RequiredError}
|
|
49101
|
+
* @memberof SearchApi
|
|
49102
|
+
*/
|
|
49103
|
+
public v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig) {
|
|
49104
|
+
return SearchApiFp(this.configuration).v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
49105
|
+
}
|
|
48041
49106
|
}
|
|
48042
49107
|
|
|
48043
49108
|
|
|
@@ -51486,6 +52551,39 @@ export const SubscriptionsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
51486
52551
|
|
|
51487
52552
|
|
|
51488
52553
|
|
|
52554
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
52555
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52556
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
52557
|
+
|
|
52558
|
+
return {
|
|
52559
|
+
url: toPathString(localVarUrlObj),
|
|
52560
|
+
options: localVarRequestOptions,
|
|
52561
|
+
};
|
|
52562
|
+
},
|
|
52563
|
+
/**
|
|
52564
|
+
* Fetches list of all Subscription
|
|
52565
|
+
* @summary Fetches list of all Subscription
|
|
52566
|
+
* @param {*} [options] Override http request option.
|
|
52567
|
+
* @throws {RequiredError}
|
|
52568
|
+
*/
|
|
52569
|
+
miscSubscriptionsGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52570
|
+
const localVarPath = `/misc/subscriptions`;
|
|
52571
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52572
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
52573
|
+
let baseOptions;
|
|
52574
|
+
if (configuration) {
|
|
52575
|
+
baseOptions = configuration.baseOptions;
|
|
52576
|
+
}
|
|
52577
|
+
|
|
52578
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
52579
|
+
const localVarHeaderParameter = {} as any;
|
|
52580
|
+
const localVarQueryParameter = {} as any;
|
|
52581
|
+
|
|
52582
|
+
// authentication BearerAuth required
|
|
52583
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
52584
|
+
|
|
52585
|
+
|
|
52586
|
+
|
|
51489
52587
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
51490
52588
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
51491
52589
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -51635,6 +52733,18 @@ export const SubscriptionsApiFp = function(configuration?: Configuration) {
|
|
|
51635
52733
|
const localVarOperationServerBasePath = operationServerMap['SubscriptionsApi.adminSubscriptionsUpdatestatusSubscriptionIDStatusPut']?.[localVarOperationServerIndex]?.url;
|
|
51636
52734
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
51637
52735
|
},
|
|
52736
|
+
/**
|
|
52737
|
+
* Fetches list of all Subscription
|
|
52738
|
+
* @summary Fetches list of all Subscription
|
|
52739
|
+
* @param {*} [options] Override http request option.
|
|
52740
|
+
* @throws {RequiredError}
|
|
52741
|
+
*/
|
|
52742
|
+
async miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSubscriptionsListResponse>> {
|
|
52743
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.miscSubscriptionsGet(options);
|
|
52744
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
52745
|
+
const localVarOperationServerBasePath = operationServerMap['SubscriptionsApi.miscSubscriptionsGet']?.[localVarOperationServerIndex]?.url;
|
|
52746
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
52747
|
+
},
|
|
51638
52748
|
/**
|
|
51639
52749
|
* Adds a new Subscription to the system
|
|
51640
52750
|
* @summary Creates a new Subscription
|
|
@@ -51713,6 +52823,15 @@ export const SubscriptionsApiFactory = function (configuration?: Configuration,
|
|
|
51713
52823
|
adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
|
|
51714
52824
|
return localVarFp.adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options).then((request) => request(axios, basePath));
|
|
51715
52825
|
},
|
|
52826
|
+
/**
|
|
52827
|
+
* Fetches list of all Subscription
|
|
52828
|
+
* @summary Fetches list of all Subscription
|
|
52829
|
+
* @param {*} [options] Override http request option.
|
|
52830
|
+
* @throws {RequiredError}
|
|
52831
|
+
*/
|
|
52832
|
+
miscSubscriptionsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSubscriptionsListResponse> {
|
|
52833
|
+
return localVarFp.miscSubscriptionsGet(options).then((request) => request(axios, basePath));
|
|
52834
|
+
},
|
|
51716
52835
|
/**
|
|
51717
52836
|
* Adds a new Subscription to the system
|
|
51718
52837
|
* @summary Creates a new Subscription
|
|
@@ -51793,6 +52912,17 @@ export class SubscriptionsApi extends BaseAPI {
|
|
|
51793
52912
|
return SubscriptionsApiFp(this.configuration).adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options).then((request) => request(this.axios, this.basePath));
|
|
51794
52913
|
}
|
|
51795
52914
|
|
|
52915
|
+
/**
|
|
52916
|
+
* Fetches list of all Subscription
|
|
52917
|
+
* @summary Fetches list of all Subscription
|
|
52918
|
+
* @param {*} [options] Override http request option.
|
|
52919
|
+
* @throws {RequiredError}
|
|
52920
|
+
* @memberof SubscriptionsApi
|
|
52921
|
+
*/
|
|
52922
|
+
public miscSubscriptionsGet(options?: RawAxiosRequestConfig) {
|
|
52923
|
+
return SubscriptionsApiFp(this.configuration).miscSubscriptionsGet(options).then((request) => request(this.axios, this.basePath));
|
|
52924
|
+
}
|
|
52925
|
+
|
|
51796
52926
|
/**
|
|
51797
52927
|
* Adds a new Subscription to the system
|
|
51798
52928
|
* @summary Creates a new Subscription
|