@seekora-ai/admin-api 1.1.44 → 1.1.46
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 +17 -4
- package/api.ts +690 -29
- package/dist/api.d.ts +480 -27
- package/dist/api.js +382 -15
- package/dist/esm/api.d.ts +480 -27
- package/dist/esm/api.js +382 -15
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.46.tgz +0 -0
- package/seekora-ai-admin-api-1.1.44.tgz +0 -0
package/api.ts
CHANGED
|
@@ -5944,6 +5944,37 @@ export interface DataTypesAPICallsListResponse {
|
|
|
5944
5944
|
*/
|
|
5945
5945
|
'status'?: number;
|
|
5946
5946
|
}
|
|
5947
|
+
/**
|
|
5948
|
+
*
|
|
5949
|
+
* @export
|
|
5950
|
+
* @interface DataTypesAcceptInvitationWithPasswordRequest
|
|
5951
|
+
*/
|
|
5952
|
+
export interface DataTypesAcceptInvitationWithPasswordRequest {
|
|
5953
|
+
/**
|
|
5954
|
+
*
|
|
5955
|
+
* @type {string}
|
|
5956
|
+
* @memberof DataTypesAcceptInvitationWithPasswordRequest
|
|
5957
|
+
*/
|
|
5958
|
+
'first_name': string;
|
|
5959
|
+
/**
|
|
5960
|
+
*
|
|
5961
|
+
* @type {string}
|
|
5962
|
+
* @memberof DataTypesAcceptInvitationWithPasswordRequest
|
|
5963
|
+
*/
|
|
5964
|
+
'last_name': string;
|
|
5965
|
+
/**
|
|
5966
|
+
*
|
|
5967
|
+
* @type {string}
|
|
5968
|
+
* @memberof DataTypesAcceptInvitationWithPasswordRequest
|
|
5969
|
+
*/
|
|
5970
|
+
'password': string;
|
|
5971
|
+
/**
|
|
5972
|
+
*
|
|
5973
|
+
* @type {string}
|
|
5974
|
+
* @memberof DataTypesAcceptInvitationWithPasswordRequest
|
|
5975
|
+
*/
|
|
5976
|
+
'token': string;
|
|
5977
|
+
}
|
|
5947
5978
|
/**
|
|
5948
5979
|
*
|
|
5949
5980
|
* @export
|
|
@@ -10223,6 +10254,31 @@ export interface DataTypesGenericResponseArrayDataTypesMenuRouteMetricMapping {
|
|
|
10223
10254
|
*/
|
|
10224
10255
|
'status'?: number;
|
|
10225
10256
|
}
|
|
10257
|
+
/**
|
|
10258
|
+
*
|
|
10259
|
+
* @export
|
|
10260
|
+
* @interface DataTypesGenericResponseArrayDataTypesUserWithPermissions
|
|
10261
|
+
*/
|
|
10262
|
+
export interface DataTypesGenericResponseArrayDataTypesUserWithPermissions {
|
|
10263
|
+
/**
|
|
10264
|
+
*
|
|
10265
|
+
* @type {Array<DataTypesUserWithPermissions>}
|
|
10266
|
+
* @memberof DataTypesGenericResponseArrayDataTypesUserWithPermissions
|
|
10267
|
+
*/
|
|
10268
|
+
'data'?: Array<DataTypesUserWithPermissions>;
|
|
10269
|
+
/**
|
|
10270
|
+
*
|
|
10271
|
+
* @type {string}
|
|
10272
|
+
* @memberof DataTypesGenericResponseArrayDataTypesUserWithPermissions
|
|
10273
|
+
*/
|
|
10274
|
+
'message'?: string;
|
|
10275
|
+
/**
|
|
10276
|
+
*
|
|
10277
|
+
* @type {number}
|
|
10278
|
+
* @memberof DataTypesGenericResponseArrayDataTypesUserWithPermissions
|
|
10279
|
+
*/
|
|
10280
|
+
'status'?: number;
|
|
10281
|
+
}
|
|
10226
10282
|
/**
|
|
10227
10283
|
*
|
|
10228
10284
|
* @export
|
|
@@ -10323,6 +10379,31 @@ export interface DataTypesGenericResponseDataTypesGSTVerificationResponse {
|
|
|
10323
10379
|
*/
|
|
10324
10380
|
'status'?: number;
|
|
10325
10381
|
}
|
|
10382
|
+
/**
|
|
10383
|
+
*
|
|
10384
|
+
* @export
|
|
10385
|
+
* @interface DataTypesGenericResponseDataTypesInvitationPermissionResponse
|
|
10386
|
+
*/
|
|
10387
|
+
export interface DataTypesGenericResponseDataTypesInvitationPermissionResponse {
|
|
10388
|
+
/**
|
|
10389
|
+
*
|
|
10390
|
+
* @type {DataTypesInvitationPermissionResponse}
|
|
10391
|
+
* @memberof DataTypesGenericResponseDataTypesInvitationPermissionResponse
|
|
10392
|
+
*/
|
|
10393
|
+
'data'?: DataTypesInvitationPermissionResponse;
|
|
10394
|
+
/**
|
|
10395
|
+
*
|
|
10396
|
+
* @type {string}
|
|
10397
|
+
* @memberof DataTypesGenericResponseDataTypesInvitationPermissionResponse
|
|
10398
|
+
*/
|
|
10399
|
+
'message'?: string;
|
|
10400
|
+
/**
|
|
10401
|
+
*
|
|
10402
|
+
* @type {number}
|
|
10403
|
+
* @memberof DataTypesGenericResponseDataTypesInvitationPermissionResponse
|
|
10404
|
+
*/
|
|
10405
|
+
'status'?: number;
|
|
10406
|
+
}
|
|
10326
10407
|
/**
|
|
10327
10408
|
*
|
|
10328
10409
|
* @export
|
|
@@ -11523,6 +11604,142 @@ export interface DataTypesInvitationCreatedResponse {
|
|
|
11523
11604
|
*/
|
|
11524
11605
|
'status'?: number;
|
|
11525
11606
|
}
|
|
11607
|
+
/**
|
|
11608
|
+
*
|
|
11609
|
+
* @export
|
|
11610
|
+
* @interface DataTypesInvitationDetailsResponse
|
|
11611
|
+
*/
|
|
11612
|
+
export interface DataTypesInvitationDetailsResponse {
|
|
11613
|
+
/**
|
|
11614
|
+
*
|
|
11615
|
+
* @type {DataTypesTeamInvitationWithDetails}
|
|
11616
|
+
* @memberof DataTypesInvitationDetailsResponse
|
|
11617
|
+
*/
|
|
11618
|
+
'data'?: DataTypesTeamInvitationWithDetails;
|
|
11619
|
+
/**
|
|
11620
|
+
*
|
|
11621
|
+
* @type {string}
|
|
11622
|
+
* @memberof DataTypesInvitationDetailsResponse
|
|
11623
|
+
*/
|
|
11624
|
+
'message'?: string;
|
|
11625
|
+
/**
|
|
11626
|
+
*
|
|
11627
|
+
* @type {number}
|
|
11628
|
+
* @memberof DataTypesInvitationDetailsResponse
|
|
11629
|
+
*/
|
|
11630
|
+
'status'?: number;
|
|
11631
|
+
}
|
|
11632
|
+
/**
|
|
11633
|
+
*
|
|
11634
|
+
* @export
|
|
11635
|
+
* @interface DataTypesInvitationPermissionConfig
|
|
11636
|
+
*/
|
|
11637
|
+
export interface DataTypesInvitationPermissionConfig {
|
|
11638
|
+
/**
|
|
11639
|
+
*
|
|
11640
|
+
* @type {boolean}
|
|
11641
|
+
* @memberof DataTypesInvitationPermissionConfig
|
|
11642
|
+
*/
|
|
11643
|
+
'allStoresFullAccess'?: boolean;
|
|
11644
|
+
/**
|
|
11645
|
+
*
|
|
11646
|
+
* @type {boolean}
|
|
11647
|
+
* @memberof DataTypesInvitationPermissionConfig
|
|
11648
|
+
*/
|
|
11649
|
+
'fullAccess'?: boolean;
|
|
11650
|
+
/**
|
|
11651
|
+
* Flat format
|
|
11652
|
+
* @type {Array<DataTypesRoleRightRequestDto>}
|
|
11653
|
+
* @memberof DataTypesInvitationPermissionConfig
|
|
11654
|
+
*/
|
|
11655
|
+
'orgLevelMenus'?: Array<DataTypesRoleRightRequestDto>;
|
|
11656
|
+
/**
|
|
11657
|
+
* Grouped format (preferred)
|
|
11658
|
+
* @type {DataTypesGroupedRolePermissions}
|
|
11659
|
+
* @memberof DataTypesInvitationPermissionConfig
|
|
11660
|
+
*/
|
|
11661
|
+
'orgLevelMenusGrouped'?: DataTypesGroupedRolePermissions;
|
|
11662
|
+
/**
|
|
11663
|
+
* Flat format
|
|
11664
|
+
* @type {Array<DataTypesStoreLevelMenuRight>}
|
|
11665
|
+
* @memberof DataTypesInvitationPermissionConfig
|
|
11666
|
+
*/
|
|
11667
|
+
'storeAccess'?: Array<DataTypesStoreLevelMenuRight>;
|
|
11668
|
+
/**
|
|
11669
|
+
* Grouped format (preferred)
|
|
11670
|
+
* @type {Array<DataTypesGroupedStoreAccess>}
|
|
11671
|
+
* @memberof DataTypesInvitationPermissionConfig
|
|
11672
|
+
*/
|
|
11673
|
+
'storeAccessGrouped'?: Array<DataTypesGroupedStoreAccess>;
|
|
11674
|
+
}
|
|
11675
|
+
/**
|
|
11676
|
+
*
|
|
11677
|
+
* @export
|
|
11678
|
+
* @interface DataTypesInvitationPermissionModeRequest
|
|
11679
|
+
*/
|
|
11680
|
+
export interface DataTypesInvitationPermissionModeRequest {
|
|
11681
|
+
/**
|
|
11682
|
+
* Required if useCustomPermissions = false
|
|
11683
|
+
* @type {number}
|
|
11684
|
+
* @memberof DataTypesInvitationPermissionModeRequest
|
|
11685
|
+
*/
|
|
11686
|
+
'roleId'?: number;
|
|
11687
|
+
/**
|
|
11688
|
+
* Name for user-specific role (default: \"Custom - {Email}\")
|
|
11689
|
+
* @type {string}
|
|
11690
|
+
* @memberof DataTypesInvitationPermissionModeRequest
|
|
11691
|
+
*/
|
|
11692
|
+
'roleName'?: string;
|
|
11693
|
+
/**
|
|
11694
|
+
* true = custom, false = use regular role
|
|
11695
|
+
* @type {boolean}
|
|
11696
|
+
* @memberof DataTypesInvitationPermissionModeRequest
|
|
11697
|
+
*/
|
|
11698
|
+
'useCustomPermissions': boolean;
|
|
11699
|
+
}
|
|
11700
|
+
/**
|
|
11701
|
+
*
|
|
11702
|
+
* @export
|
|
11703
|
+
* @interface DataTypesInvitationPermissionResponse
|
|
11704
|
+
*/
|
|
11705
|
+
export interface DataTypesInvitationPermissionResponse {
|
|
11706
|
+
/**
|
|
11707
|
+
*
|
|
11708
|
+
* @type {string}
|
|
11709
|
+
* @memberof DataTypesInvitationPermissionResponse
|
|
11710
|
+
*/
|
|
11711
|
+
'email'?: string;
|
|
11712
|
+
/**
|
|
11713
|
+
*
|
|
11714
|
+
* @type {number}
|
|
11715
|
+
* @memberof DataTypesInvitationPermissionResponse
|
|
11716
|
+
*/
|
|
11717
|
+
'invitationId'?: number;
|
|
11718
|
+
/**
|
|
11719
|
+
*
|
|
11720
|
+
* @type {DataTypesInvitationPermissionConfig}
|
|
11721
|
+
* @memberof DataTypesInvitationPermissionResponse
|
|
11722
|
+
*/
|
|
11723
|
+
'permissions'?: DataTypesInvitationPermissionConfig;
|
|
11724
|
+
/**
|
|
11725
|
+
*
|
|
11726
|
+
* @type {number}
|
|
11727
|
+
* @memberof DataTypesInvitationPermissionResponse
|
|
11728
|
+
*/
|
|
11729
|
+
'roleId'?: number;
|
|
11730
|
+
/**
|
|
11731
|
+
*
|
|
11732
|
+
* @type {string}
|
|
11733
|
+
* @memberof DataTypesInvitationPermissionResponse
|
|
11734
|
+
*/
|
|
11735
|
+
'roleName'?: string;
|
|
11736
|
+
/**
|
|
11737
|
+
*
|
|
11738
|
+
* @type {boolean}
|
|
11739
|
+
* @memberof DataTypesInvitationPermissionResponse
|
|
11740
|
+
*/
|
|
11741
|
+
'useCustomPermissions'?: boolean;
|
|
11742
|
+
}
|
|
11526
11743
|
/**
|
|
11527
11744
|
*
|
|
11528
11745
|
* @export
|
|
@@ -21043,6 +21260,49 @@ export interface DataTypesUpdateIndexSchemaRequestFieldsInner {
|
|
|
21043
21260
|
*/
|
|
21044
21261
|
'sort'?: boolean;
|
|
21045
21262
|
}
|
|
21263
|
+
/**
|
|
21264
|
+
*
|
|
21265
|
+
* @export
|
|
21266
|
+
* @interface DataTypesUpdateInvitationRolePermissionsRequest
|
|
21267
|
+
*/
|
|
21268
|
+
export interface DataTypesUpdateInvitationRolePermissionsRequest {
|
|
21269
|
+
/**
|
|
21270
|
+
*
|
|
21271
|
+
* @type {boolean}
|
|
21272
|
+
* @memberof DataTypesUpdateInvitationRolePermissionsRequest
|
|
21273
|
+
*/
|
|
21274
|
+
'allStoresFullAccess'?: boolean;
|
|
21275
|
+
/**
|
|
21276
|
+
*
|
|
21277
|
+
* @type {boolean}
|
|
21278
|
+
* @memberof DataTypesUpdateInvitationRolePermissionsRequest
|
|
21279
|
+
*/
|
|
21280
|
+
'fullAccess'?: boolean;
|
|
21281
|
+
/**
|
|
21282
|
+
* Flat format
|
|
21283
|
+
* @type {Array<DataTypesRoleRightRequestDto>}
|
|
21284
|
+
* @memberof DataTypesUpdateInvitationRolePermissionsRequest
|
|
21285
|
+
*/
|
|
21286
|
+
'orgLevelMenus'?: Array<DataTypesRoleRightRequestDto>;
|
|
21287
|
+
/**
|
|
21288
|
+
* Grouped format (preferred)
|
|
21289
|
+
* @type {DataTypesGroupedRolePermissions}
|
|
21290
|
+
* @memberof DataTypesUpdateInvitationRolePermissionsRequest
|
|
21291
|
+
*/
|
|
21292
|
+
'orgLevelMenusGrouped'?: DataTypesGroupedRolePermissions;
|
|
21293
|
+
/**
|
|
21294
|
+
* Flat format
|
|
21295
|
+
* @type {Array<DataTypesStoreLevelMenuRight>}
|
|
21296
|
+
* @memberof DataTypesUpdateInvitationRolePermissionsRequest
|
|
21297
|
+
*/
|
|
21298
|
+
'storeAccess'?: Array<DataTypesStoreLevelMenuRight>;
|
|
21299
|
+
/**
|
|
21300
|
+
* Grouped format (preferred)
|
|
21301
|
+
* @type {Array<DataTypesGroupedStoreAccess>}
|
|
21302
|
+
* @memberof DataTypesUpdateInvitationRolePermissionsRequest
|
|
21303
|
+
*/
|
|
21304
|
+
'storeAccessGrouped'?: Array<DataTypesGroupedStoreAccess>;
|
|
21305
|
+
}
|
|
21046
21306
|
/**
|
|
21047
21307
|
*
|
|
21048
21308
|
* @export
|
|
@@ -22452,27 +22712,39 @@ export interface DataTypesUserStoresResponse {
|
|
|
22452
22712
|
/**
|
|
22453
22713
|
*
|
|
22454
22714
|
* @export
|
|
22455
|
-
* @interface
|
|
22715
|
+
* @interface DataTypesUserWithPermissions
|
|
22456
22716
|
*/
|
|
22457
|
-
export interface
|
|
22717
|
+
export interface DataTypesUserWithPermissions {
|
|
22458
22718
|
/**
|
|
22459
|
-
*
|
|
22460
|
-
* @type {
|
|
22461
|
-
* @memberof
|
|
22719
|
+
* Invitation ID if this is a pending invitation
|
|
22720
|
+
* @type {number}
|
|
22721
|
+
* @memberof DataTypesUserWithPermissions
|
|
22722
|
+
*/
|
|
22723
|
+
'invitationId'?: number;
|
|
22724
|
+
/**
|
|
22725
|
+
* Permissions for pending invitations
|
|
22726
|
+
* @type {DataTypesInvitationPermissionResponse}
|
|
22727
|
+
* @memberof DataTypesUserWithPermissions
|
|
22728
|
+
*/
|
|
22729
|
+
'invitationPermissions'?: DataTypesInvitationPermissionResponse;
|
|
22730
|
+
/**
|
|
22731
|
+
* true if this is a pending invitation
|
|
22732
|
+
* @type {boolean}
|
|
22733
|
+
* @memberof DataTypesUserWithPermissions
|
|
22462
22734
|
*/
|
|
22463
|
-
'
|
|
22735
|
+
'isInvitation'?: boolean;
|
|
22464
22736
|
/**
|
|
22465
22737
|
*
|
|
22466
|
-
* @type {
|
|
22467
|
-
* @memberof
|
|
22738
|
+
* @type {DataTypesRolePermissionsResponse}
|
|
22739
|
+
* @memberof DataTypesUserWithPermissions
|
|
22468
22740
|
*/
|
|
22469
|
-
'
|
|
22741
|
+
'rolePermissions'?: DataTypesRolePermissionsResponse;
|
|
22470
22742
|
/**
|
|
22471
22743
|
*
|
|
22472
|
-
* @type {
|
|
22473
|
-
* @memberof
|
|
22744
|
+
* @type {DataTypesUser}
|
|
22745
|
+
* @memberof DataTypesUserWithPermissions
|
|
22474
22746
|
*/
|
|
22475
|
-
'
|
|
22747
|
+
'user'?: DataTypesUser;
|
|
22476
22748
|
}
|
|
22477
22749
|
/**
|
|
22478
22750
|
*
|
|
@@ -30002,10 +30274,11 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
30002
30274
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
30003
30275
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
30004
30276
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
30277
|
+
* @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
|
|
30005
30278
|
* @param {*} [options] Override http request option.
|
|
30006
30279
|
* @throws {RequiredError}
|
|
30007
30280
|
*/
|
|
30008
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: async (xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30281
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: async (xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, noClicksOnly?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30009
30282
|
// verify required parameter 'xStoreID' is not null or undefined
|
|
30010
30283
|
assertParamExists('adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet', 'xStoreID', xStoreID)
|
|
30011
30284
|
// verify required parameter 'query' is not null or undefined
|
|
@@ -30131,6 +30404,10 @@ export const AnalyticsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
30131
30404
|
localVarQueryParameter['include_widget'] = includeWidget;
|
|
30132
30405
|
}
|
|
30133
30406
|
|
|
30407
|
+
if (noClicksOnly !== undefined) {
|
|
30408
|
+
localVarQueryParameter['no_clicks_only'] = noClicksOnly;
|
|
30409
|
+
}
|
|
30410
|
+
|
|
30134
30411
|
|
|
30135
30412
|
|
|
30136
30413
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -31069,11 +31346,12 @@ export const AnalyticsApiFp = function(configuration?: Configuration) {
|
|
|
31069
31346
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
31070
31347
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
31071
31348
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
31349
|
+
* @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
|
|
31072
31350
|
* @param {*} [options] Override http request option.
|
|
31073
31351
|
* @throws {RequiredError}
|
|
31074
31352
|
*/
|
|
31075
|
-
async adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>> {
|
|
31076
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options);
|
|
31353
|
+
async adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, noClicksOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response>> {
|
|
31354
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, noClicksOnly, options);
|
|
31077
31355
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31078
31356
|
const localVarOperationServerBasePath = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet']?.[localVarOperationServerIndex]?.url;
|
|
31079
31357
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -31584,11 +31862,12 @@ export const AnalyticsApiFactory = function (configuration?: Configuration, base
|
|
|
31584
31862
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
31585
31863
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
31586
31864
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
31865
|
+
* @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
|
|
31587
31866
|
* @param {*} [options] Override http request option.
|
|
31588
31867
|
* @throws {RequiredError}
|
|
31589
31868
|
*/
|
|
31590
|
-
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response> {
|
|
31591
|
-
return localVarFp.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options).then((request) => request(axios, basePath));
|
|
31869
|
+
adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, noClicksOnly?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGet200Response> {
|
|
31870
|
+
return localVarFp.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, noClicksOnly, options).then((request) => request(axios, basePath));
|
|
31592
31871
|
},
|
|
31593
31872
|
/**
|
|
31594
31873
|
* Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
|
|
@@ -32106,12 +32385,13 @@ export class AnalyticsApi extends BaseAPI {
|
|
|
32106
32385
|
* @param {number} [geoPageSize] Number of geo locations per page
|
|
32107
32386
|
* @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
|
|
32108
32387
|
* @param {boolean} [includeWidget] Whether to include widget display fields for popular results
|
|
32388
|
+
* @param {boolean} [noClicksOnly] Filter to show insights only for searches that had no clicks (useful when clicking on queries from \'searches without clicks\' list)
|
|
32109
32389
|
* @param {*} [options] Override http request option.
|
|
32110
32390
|
* @throws {RequiredError}
|
|
32111
32391
|
* @memberof AnalyticsApi
|
|
32112
32392
|
*/
|
|
32113
|
-
public adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, options?: RawAxiosRequestConfig) {
|
|
32114
|
-
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options).then((request) => request(this.axios, this.basePath));
|
|
32393
|
+
public adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID: string, query: string, startTime?: string, endTime?: string, analyticsTags?: string, tagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum, tagsExclude?: string, tagKeyFilter?: string, tagValueFilter?: string, search?: string, compareMode?: boolean, compareStartTime?: string, compareEndTime?: string, compareAnalyticsTags?: string, compareTagsMatchMode?: AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum, compareTagsExclude?: string, compareTagKeyFilter?: string, compareTagValueFilter?: string, resultsPage?: number, resultsPageSize?: number, resultsSearch?: string, filtersPage?: number, filtersPageSize?: number, filtersSearch?: string, geoPage?: number, geoPageSize?: number, geoSearch?: string, includeWidget?: boolean, noClicksOnly?: boolean, options?: RawAxiosRequestConfig) {
|
|
32394
|
+
return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, noClicksOnly, options).then((request) => request(this.axios, this.basePath));
|
|
32115
32395
|
}
|
|
32116
32396
|
|
|
32117
32397
|
/**
|
|
@@ -63778,6 +64058,129 @@ export class TaxManagementApi extends BaseAPI {
|
|
|
63778
64058
|
*/
|
|
63779
64059
|
export const TeamApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
63780
64060
|
return {
|
|
64061
|
+
/**
|
|
64062
|
+
* Retrieves permission configuration for an invitation
|
|
64063
|
+
* @summary Get invitation permissions
|
|
64064
|
+
* @param {number} invitationId Invitation ID
|
|
64065
|
+
* @param {*} [options] Override http request option.
|
|
64066
|
+
* @throws {RequiredError}
|
|
64067
|
+
*/
|
|
64068
|
+
invitationsInvitationIdPermissionsGet: async (invitationId: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
64069
|
+
// verify required parameter 'invitationId' is not null or undefined
|
|
64070
|
+
assertParamExists('invitationsInvitationIdPermissionsGet', 'invitationId', invitationId)
|
|
64071
|
+
const localVarPath = `/invitations/{invitationId}/permissions`
|
|
64072
|
+
.replace(`{${"invitationId"}}`, encodeURIComponent(String(invitationId)));
|
|
64073
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
64074
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
64075
|
+
let baseOptions;
|
|
64076
|
+
if (configuration) {
|
|
64077
|
+
baseOptions = configuration.baseOptions;
|
|
64078
|
+
}
|
|
64079
|
+
|
|
64080
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
64081
|
+
const localVarHeaderParameter = {} as any;
|
|
64082
|
+
const localVarQueryParameter = {} as any;
|
|
64083
|
+
|
|
64084
|
+
// authentication BearerAuth required
|
|
64085
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
64086
|
+
|
|
64087
|
+
|
|
64088
|
+
|
|
64089
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
64090
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
64091
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
64092
|
+
|
|
64093
|
+
return {
|
|
64094
|
+
url: toPathString(localVarUrlObj),
|
|
64095
|
+
options: localVarRequestOptions,
|
|
64096
|
+
};
|
|
64097
|
+
},
|
|
64098
|
+
/**
|
|
64099
|
+
* Sets whether invitation uses custom permissions or a regular role
|
|
64100
|
+
* @summary Set invitation permission mode
|
|
64101
|
+
* @param {number} invitationId Invitation ID
|
|
64102
|
+
* @param {DataTypesInvitationPermissionModeRequest} dataTypesInvitationPermissionModeRequest Permission mode configuration
|
|
64103
|
+
* @param {*} [options] Override http request option.
|
|
64104
|
+
* @throws {RequiredError}
|
|
64105
|
+
*/
|
|
64106
|
+
invitationsInvitationIdPermissionsModePut: async (invitationId: number, dataTypesInvitationPermissionModeRequest: DataTypesInvitationPermissionModeRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
64107
|
+
// verify required parameter 'invitationId' is not null or undefined
|
|
64108
|
+
assertParamExists('invitationsInvitationIdPermissionsModePut', 'invitationId', invitationId)
|
|
64109
|
+
// verify required parameter 'dataTypesInvitationPermissionModeRequest' is not null or undefined
|
|
64110
|
+
assertParamExists('invitationsInvitationIdPermissionsModePut', 'dataTypesInvitationPermissionModeRequest', dataTypesInvitationPermissionModeRequest)
|
|
64111
|
+
const localVarPath = `/invitations/{invitationId}/permissions/mode`
|
|
64112
|
+
.replace(`{${"invitationId"}}`, encodeURIComponent(String(invitationId)));
|
|
64113
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
64114
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
64115
|
+
let baseOptions;
|
|
64116
|
+
if (configuration) {
|
|
64117
|
+
baseOptions = configuration.baseOptions;
|
|
64118
|
+
}
|
|
64119
|
+
|
|
64120
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
64121
|
+
const localVarHeaderParameter = {} as any;
|
|
64122
|
+
const localVarQueryParameter = {} as any;
|
|
64123
|
+
|
|
64124
|
+
// authentication BearerAuth required
|
|
64125
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
64126
|
+
|
|
64127
|
+
|
|
64128
|
+
|
|
64129
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
64130
|
+
|
|
64131
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
64132
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
64133
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
64134
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dataTypesInvitationPermissionModeRequest, localVarRequestOptions, configuration)
|
|
64135
|
+
|
|
64136
|
+
return {
|
|
64137
|
+
url: toPathString(localVarUrlObj),
|
|
64138
|
+
options: localVarRequestOptions,
|
|
64139
|
+
};
|
|
64140
|
+
},
|
|
64141
|
+
/**
|
|
64142
|
+
* Updates role permissions for an invitation (only applies if useCustomPermissions = true)
|
|
64143
|
+
* @summary Update invitation role permissions
|
|
64144
|
+
* @param {number} invitationId Invitation ID
|
|
64145
|
+
* @param {DataTypesUpdateInvitationRolePermissionsRequest} dataTypesUpdateInvitationRolePermissionsRequest Permission configuration
|
|
64146
|
+
* @param {*} [options] Override http request option.
|
|
64147
|
+
* @throws {RequiredError}
|
|
64148
|
+
*/
|
|
64149
|
+
invitationsInvitationIdPermissionsRolePut: async (invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
64150
|
+
// verify required parameter 'invitationId' is not null or undefined
|
|
64151
|
+
assertParamExists('invitationsInvitationIdPermissionsRolePut', 'invitationId', invitationId)
|
|
64152
|
+
// verify required parameter 'dataTypesUpdateInvitationRolePermissionsRequest' is not null or undefined
|
|
64153
|
+
assertParamExists('invitationsInvitationIdPermissionsRolePut', 'dataTypesUpdateInvitationRolePermissionsRequest', dataTypesUpdateInvitationRolePermissionsRequest)
|
|
64154
|
+
const localVarPath = `/invitations/{invitationId}/permissions/role`
|
|
64155
|
+
.replace(`{${"invitationId"}}`, encodeURIComponent(String(invitationId)));
|
|
64156
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
64157
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
64158
|
+
let baseOptions;
|
|
64159
|
+
if (configuration) {
|
|
64160
|
+
baseOptions = configuration.baseOptions;
|
|
64161
|
+
}
|
|
64162
|
+
|
|
64163
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
64164
|
+
const localVarHeaderParameter = {} as any;
|
|
64165
|
+
const localVarQueryParameter = {} as any;
|
|
64166
|
+
|
|
64167
|
+
// authentication BearerAuth required
|
|
64168
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
64169
|
+
|
|
64170
|
+
|
|
64171
|
+
|
|
64172
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
64173
|
+
|
|
64174
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
64175
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
64176
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
64177
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dataTypesUpdateInvitationRolePermissionsRequest, localVarRequestOptions, configuration)
|
|
64178
|
+
|
|
64179
|
+
return {
|
|
64180
|
+
url: toPathString(localVarUrlObj),
|
|
64181
|
+
options: localVarRequestOptions,
|
|
64182
|
+
};
|
|
64183
|
+
},
|
|
63781
64184
|
/**
|
|
63782
64185
|
* Cancels a pending invitation
|
|
63783
64186
|
* @summary Cancel invitation
|
|
@@ -63843,6 +64246,80 @@ export const TeamApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
63843
64246
|
|
|
63844
64247
|
|
|
63845
64248
|
|
|
64249
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
64250
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
64251
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
64252
|
+
|
|
64253
|
+
return {
|
|
64254
|
+
url: toPathString(localVarUrlObj),
|
|
64255
|
+
options: localVarRequestOptions,
|
|
64256
|
+
};
|
|
64257
|
+
},
|
|
64258
|
+
/**
|
|
64259
|
+
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
64260
|
+
* @summary Accept invitation and set password (onboarding)
|
|
64261
|
+
* @param {string} token Invitation Token
|
|
64262
|
+
* @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
|
|
64263
|
+
* @param {*} [options] Override http request option.
|
|
64264
|
+
* @throws {RequiredError}
|
|
64265
|
+
*/
|
|
64266
|
+
v1InvitationsTokenAcceptWithPasswordPost: async (token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
64267
|
+
// verify required parameter 'token' is not null or undefined
|
|
64268
|
+
assertParamExists('v1InvitationsTokenAcceptWithPasswordPost', 'token', token)
|
|
64269
|
+
// verify required parameter 'dataTypesAcceptInvitationWithPasswordRequest' is not null or undefined
|
|
64270
|
+
assertParamExists('v1InvitationsTokenAcceptWithPasswordPost', 'dataTypesAcceptInvitationWithPasswordRequest', dataTypesAcceptInvitationWithPasswordRequest)
|
|
64271
|
+
const localVarPath = `/v1/invitations/{token}/accept-with-password`
|
|
64272
|
+
.replace(`{${"token"}}`, encodeURIComponent(String(token)));
|
|
64273
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
64274
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
64275
|
+
let baseOptions;
|
|
64276
|
+
if (configuration) {
|
|
64277
|
+
baseOptions = configuration.baseOptions;
|
|
64278
|
+
}
|
|
64279
|
+
|
|
64280
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
64281
|
+
const localVarHeaderParameter = {} as any;
|
|
64282
|
+
const localVarQueryParameter = {} as any;
|
|
64283
|
+
|
|
64284
|
+
|
|
64285
|
+
|
|
64286
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
64287
|
+
|
|
64288
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
64289
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
64290
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
64291
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dataTypesAcceptInvitationWithPasswordRequest, localVarRequestOptions, configuration)
|
|
64292
|
+
|
|
64293
|
+
return {
|
|
64294
|
+
url: toPathString(localVarUrlObj),
|
|
64295
|
+
options: localVarRequestOptions,
|
|
64296
|
+
};
|
|
64297
|
+
},
|
|
64298
|
+
/**
|
|
64299
|
+
* Retrieves invitation details by token (public endpoint for onboarding)
|
|
64300
|
+
* @summary Get invitation details by token
|
|
64301
|
+
* @param {string} token Invitation Token
|
|
64302
|
+
* @param {*} [options] Override http request option.
|
|
64303
|
+
* @throws {RequiredError}
|
|
64304
|
+
*/
|
|
64305
|
+
v1InvitationsTokenGet: async (token: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
64306
|
+
// verify required parameter 'token' is not null or undefined
|
|
64307
|
+
assertParamExists('v1InvitationsTokenGet', 'token', token)
|
|
64308
|
+
const localVarPath = `/v1/invitations/{token}`
|
|
64309
|
+
.replace(`{${"token"}}`, encodeURIComponent(String(token)));
|
|
64310
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
64311
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
64312
|
+
let baseOptions;
|
|
64313
|
+
if (configuration) {
|
|
64314
|
+
baseOptions = configuration.baseOptions;
|
|
64315
|
+
}
|
|
64316
|
+
|
|
64317
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
64318
|
+
const localVarHeaderParameter = {} as any;
|
|
64319
|
+
const localVarQueryParameter = {} as any;
|
|
64320
|
+
|
|
64321
|
+
|
|
64322
|
+
|
|
63846
64323
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
63847
64324
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
63848
64325
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -64252,6 +64729,47 @@ export const TeamApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
64252
64729
|
export const TeamApiFp = function(configuration?: Configuration) {
|
|
64253
64730
|
const localVarAxiosParamCreator = TeamApiAxiosParamCreator(configuration)
|
|
64254
64731
|
return {
|
|
64732
|
+
/**
|
|
64733
|
+
* Retrieves permission configuration for an invitation
|
|
64734
|
+
* @summary Get invitation permissions
|
|
64735
|
+
* @param {number} invitationId Invitation ID
|
|
64736
|
+
* @param {*} [options] Override http request option.
|
|
64737
|
+
* @throws {RequiredError}
|
|
64738
|
+
*/
|
|
64739
|
+
async invitationsInvitationIdPermissionsGet(invitationId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesInvitationPermissionResponse>> {
|
|
64740
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.invitationsInvitationIdPermissionsGet(invitationId, options);
|
|
64741
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
64742
|
+
const localVarOperationServerBasePath = operationServerMap['TeamApi.invitationsInvitationIdPermissionsGet']?.[localVarOperationServerIndex]?.url;
|
|
64743
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
64744
|
+
},
|
|
64745
|
+
/**
|
|
64746
|
+
* Sets whether invitation uses custom permissions or a regular role
|
|
64747
|
+
* @summary Set invitation permission mode
|
|
64748
|
+
* @param {number} invitationId Invitation ID
|
|
64749
|
+
* @param {DataTypesInvitationPermissionModeRequest} dataTypesInvitationPermissionModeRequest Permission mode configuration
|
|
64750
|
+
* @param {*} [options] Override http request option.
|
|
64751
|
+
* @throws {RequiredError}
|
|
64752
|
+
*/
|
|
64753
|
+
async invitationsInvitationIdPermissionsModePut(invitationId: number, dataTypesInvitationPermissionModeRequest: DataTypesInvitationPermissionModeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
|
|
64754
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.invitationsInvitationIdPermissionsModePut(invitationId, dataTypesInvitationPermissionModeRequest, options);
|
|
64755
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
64756
|
+
const localVarOperationServerBasePath = operationServerMap['TeamApi.invitationsInvitationIdPermissionsModePut']?.[localVarOperationServerIndex]?.url;
|
|
64757
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
64758
|
+
},
|
|
64759
|
+
/**
|
|
64760
|
+
* Updates role permissions for an invitation (only applies if useCustomPermissions = true)
|
|
64761
|
+
* @summary Update invitation role permissions
|
|
64762
|
+
* @param {number} invitationId Invitation ID
|
|
64763
|
+
* @param {DataTypesUpdateInvitationRolePermissionsRequest} dataTypesUpdateInvitationRolePermissionsRequest Permission configuration
|
|
64764
|
+
* @param {*} [options] Override http request option.
|
|
64765
|
+
* @throws {RequiredError}
|
|
64766
|
+
*/
|
|
64767
|
+
async invitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
|
|
64768
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.invitationsInvitationIdPermissionsRolePut(invitationId, dataTypesUpdateInvitationRolePermissionsRequest, options);
|
|
64769
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
64770
|
+
const localVarOperationServerBasePath = operationServerMap['TeamApi.invitationsInvitationIdPermissionsRolePut']?.[localVarOperationServerIndex]?.url;
|
|
64771
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
64772
|
+
},
|
|
64255
64773
|
/**
|
|
64256
64774
|
* Cancels a pending invitation
|
|
64257
64775
|
* @summary Cancel invitation
|
|
@@ -64278,6 +64796,33 @@ export const TeamApiFp = function(configuration?: Configuration) {
|
|
|
64278
64796
|
const localVarOperationServerBasePath = operationServerMap['TeamApi.v1InvitationsTokenAcceptPost']?.[localVarOperationServerIndex]?.url;
|
|
64279
64797
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
64280
64798
|
},
|
|
64799
|
+
/**
|
|
64800
|
+
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
64801
|
+
* @summary Accept invitation and set password (onboarding)
|
|
64802
|
+
* @param {string} token Invitation Token
|
|
64803
|
+
* @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
|
|
64804
|
+
* @param {*} [options] Override http request option.
|
|
64805
|
+
* @throws {RequiredError}
|
|
64806
|
+
*/
|
|
64807
|
+
async v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesLoginResponseWrapper>> {
|
|
64808
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1InvitationsTokenAcceptWithPasswordPost(token, dataTypesAcceptInvitationWithPasswordRequest, options);
|
|
64809
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
64810
|
+
const localVarOperationServerBasePath = operationServerMap['TeamApi.v1InvitationsTokenAcceptWithPasswordPost']?.[localVarOperationServerIndex]?.url;
|
|
64811
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
64812
|
+
},
|
|
64813
|
+
/**
|
|
64814
|
+
* Retrieves invitation details by token (public endpoint for onboarding)
|
|
64815
|
+
* @summary Get invitation details by token
|
|
64816
|
+
* @param {string} token Invitation Token
|
|
64817
|
+
* @param {*} [options] Override http request option.
|
|
64818
|
+
* @throws {RequiredError}
|
|
64819
|
+
*/
|
|
64820
|
+
async v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesInvitationDetailsResponse>> {
|
|
64821
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1InvitationsTokenGet(token, options);
|
|
64822
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
64823
|
+
const localVarOperationServerBasePath = operationServerMap['TeamApi.v1InvitationsTokenGet']?.[localVarOperationServerIndex]?.url;
|
|
64824
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
64825
|
+
},
|
|
64281
64826
|
/**
|
|
64282
64827
|
* Retrieves all users with access to a store
|
|
64283
64828
|
* @summary Get store access list
|
|
@@ -64421,6 +64966,38 @@ export const TeamApiFp = function(configuration?: Configuration) {
|
|
|
64421
64966
|
export const TeamApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
64422
64967
|
const localVarFp = TeamApiFp(configuration)
|
|
64423
64968
|
return {
|
|
64969
|
+
/**
|
|
64970
|
+
* Retrieves permission configuration for an invitation
|
|
64971
|
+
* @summary Get invitation permissions
|
|
64972
|
+
* @param {number} invitationId Invitation ID
|
|
64973
|
+
* @param {*} [options] Override http request option.
|
|
64974
|
+
* @throws {RequiredError}
|
|
64975
|
+
*/
|
|
64976
|
+
invitationsInvitationIdPermissionsGet(invitationId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesInvitationPermissionResponse> {
|
|
64977
|
+
return localVarFp.invitationsInvitationIdPermissionsGet(invitationId, options).then((request) => request(axios, basePath));
|
|
64978
|
+
},
|
|
64979
|
+
/**
|
|
64980
|
+
* Sets whether invitation uses custom permissions or a regular role
|
|
64981
|
+
* @summary Set invitation permission mode
|
|
64982
|
+
* @param {number} invitationId Invitation ID
|
|
64983
|
+
* @param {DataTypesInvitationPermissionModeRequest} dataTypesInvitationPermissionModeRequest Permission mode configuration
|
|
64984
|
+
* @param {*} [options] Override http request option.
|
|
64985
|
+
* @throws {RequiredError}
|
|
64986
|
+
*/
|
|
64987
|
+
invitationsInvitationIdPermissionsModePut(invitationId: number, dataTypesInvitationPermissionModeRequest: DataTypesInvitationPermissionModeRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
|
|
64988
|
+
return localVarFp.invitationsInvitationIdPermissionsModePut(invitationId, dataTypesInvitationPermissionModeRequest, options).then((request) => request(axios, basePath));
|
|
64989
|
+
},
|
|
64990
|
+
/**
|
|
64991
|
+
* Updates role permissions for an invitation (only applies if useCustomPermissions = true)
|
|
64992
|
+
* @summary Update invitation role permissions
|
|
64993
|
+
* @param {number} invitationId Invitation ID
|
|
64994
|
+
* @param {DataTypesUpdateInvitationRolePermissionsRequest} dataTypesUpdateInvitationRolePermissionsRequest Permission configuration
|
|
64995
|
+
* @param {*} [options] Override http request option.
|
|
64996
|
+
* @throws {RequiredError}
|
|
64997
|
+
*/
|
|
64998
|
+
invitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
|
|
64999
|
+
return localVarFp.invitationsInvitationIdPermissionsRolePut(invitationId, dataTypesUpdateInvitationRolePermissionsRequest, options).then((request) => request(axios, basePath));
|
|
65000
|
+
},
|
|
64424
65001
|
/**
|
|
64425
65002
|
* Cancels a pending invitation
|
|
64426
65003
|
* @summary Cancel invitation
|
|
@@ -64441,6 +65018,27 @@ export const TeamApiFactory = function (configuration?: Configuration, basePath?
|
|
|
64441
65018
|
v1InvitationsTokenAcceptPost(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
|
|
64442
65019
|
return localVarFp.v1InvitationsTokenAcceptPost(token, options).then((request) => request(axios, basePath));
|
|
64443
65020
|
},
|
|
65021
|
+
/**
|
|
65022
|
+
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
65023
|
+
* @summary Accept invitation and set password (onboarding)
|
|
65024
|
+
* @param {string} token Invitation Token
|
|
65025
|
+
* @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
|
|
65026
|
+
* @param {*} [options] Override http request option.
|
|
65027
|
+
* @throws {RequiredError}
|
|
65028
|
+
*/
|
|
65029
|
+
v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesLoginResponseWrapper> {
|
|
65030
|
+
return localVarFp.v1InvitationsTokenAcceptWithPasswordPost(token, dataTypesAcceptInvitationWithPasswordRequest, options).then((request) => request(axios, basePath));
|
|
65031
|
+
},
|
|
65032
|
+
/**
|
|
65033
|
+
* Retrieves invitation details by token (public endpoint for onboarding)
|
|
65034
|
+
* @summary Get invitation details by token
|
|
65035
|
+
* @param {string} token Invitation Token
|
|
65036
|
+
* @param {*} [options] Override http request option.
|
|
65037
|
+
* @throws {RequiredError}
|
|
65038
|
+
*/
|
|
65039
|
+
v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesInvitationDetailsResponse> {
|
|
65040
|
+
return localVarFp.v1InvitationsTokenGet(token, options).then((request) => request(axios, basePath));
|
|
65041
|
+
},
|
|
64444
65042
|
/**
|
|
64445
65043
|
* Retrieves all users with access to a store
|
|
64446
65044
|
* @summary Get store access list
|
|
@@ -64554,6 +65152,44 @@ export const TeamApiFactory = function (configuration?: Configuration, basePath?
|
|
|
64554
65152
|
* @extends {BaseAPI}
|
|
64555
65153
|
*/
|
|
64556
65154
|
export class TeamApi extends BaseAPI {
|
|
65155
|
+
/**
|
|
65156
|
+
* Retrieves permission configuration for an invitation
|
|
65157
|
+
* @summary Get invitation permissions
|
|
65158
|
+
* @param {number} invitationId Invitation ID
|
|
65159
|
+
* @param {*} [options] Override http request option.
|
|
65160
|
+
* @throws {RequiredError}
|
|
65161
|
+
* @memberof TeamApi
|
|
65162
|
+
*/
|
|
65163
|
+
public invitationsInvitationIdPermissionsGet(invitationId: number, options?: RawAxiosRequestConfig) {
|
|
65164
|
+
return TeamApiFp(this.configuration).invitationsInvitationIdPermissionsGet(invitationId, options).then((request) => request(this.axios, this.basePath));
|
|
65165
|
+
}
|
|
65166
|
+
|
|
65167
|
+
/**
|
|
65168
|
+
* Sets whether invitation uses custom permissions or a regular role
|
|
65169
|
+
* @summary Set invitation permission mode
|
|
65170
|
+
* @param {number} invitationId Invitation ID
|
|
65171
|
+
* @param {DataTypesInvitationPermissionModeRequest} dataTypesInvitationPermissionModeRequest Permission mode configuration
|
|
65172
|
+
* @param {*} [options] Override http request option.
|
|
65173
|
+
* @throws {RequiredError}
|
|
65174
|
+
* @memberof TeamApi
|
|
65175
|
+
*/
|
|
65176
|
+
public invitationsInvitationIdPermissionsModePut(invitationId: number, dataTypesInvitationPermissionModeRequest: DataTypesInvitationPermissionModeRequest, options?: RawAxiosRequestConfig) {
|
|
65177
|
+
return TeamApiFp(this.configuration).invitationsInvitationIdPermissionsModePut(invitationId, dataTypesInvitationPermissionModeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
65178
|
+
}
|
|
65179
|
+
|
|
65180
|
+
/**
|
|
65181
|
+
* Updates role permissions for an invitation (only applies if useCustomPermissions = true)
|
|
65182
|
+
* @summary Update invitation role permissions
|
|
65183
|
+
* @param {number} invitationId Invitation ID
|
|
65184
|
+
* @param {DataTypesUpdateInvitationRolePermissionsRequest} dataTypesUpdateInvitationRolePermissionsRequest Permission configuration
|
|
65185
|
+
* @param {*} [options] Override http request option.
|
|
65186
|
+
* @throws {RequiredError}
|
|
65187
|
+
* @memberof TeamApi
|
|
65188
|
+
*/
|
|
65189
|
+
public invitationsInvitationIdPermissionsRolePut(invitationId: number, dataTypesUpdateInvitationRolePermissionsRequest: DataTypesUpdateInvitationRolePermissionsRequest, options?: RawAxiosRequestConfig) {
|
|
65190
|
+
return TeamApiFp(this.configuration).invitationsInvitationIdPermissionsRolePut(invitationId, dataTypesUpdateInvitationRolePermissionsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
65191
|
+
}
|
|
65192
|
+
|
|
64557
65193
|
/**
|
|
64558
65194
|
* Cancels a pending invitation
|
|
64559
65195
|
* @summary Cancel invitation
|
|
@@ -64578,6 +65214,31 @@ export class TeamApi extends BaseAPI {
|
|
|
64578
65214
|
return TeamApiFp(this.configuration).v1InvitationsTokenAcceptPost(token, options).then((request) => request(this.axios, this.basePath));
|
|
64579
65215
|
}
|
|
64580
65216
|
|
|
65217
|
+
/**
|
|
65218
|
+
* Accepts a team invitation, creates user account if needed, sets password, and returns session token
|
|
65219
|
+
* @summary Accept invitation and set password (onboarding)
|
|
65220
|
+
* @param {string} token Invitation Token
|
|
65221
|
+
* @param {DataTypesAcceptInvitationWithPasswordRequest} dataTypesAcceptInvitationWithPasswordRequest Password and user details
|
|
65222
|
+
* @param {*} [options] Override http request option.
|
|
65223
|
+
* @throws {RequiredError}
|
|
65224
|
+
* @memberof TeamApi
|
|
65225
|
+
*/
|
|
65226
|
+
public v1InvitationsTokenAcceptWithPasswordPost(token: string, dataTypesAcceptInvitationWithPasswordRequest: DataTypesAcceptInvitationWithPasswordRequest, options?: RawAxiosRequestConfig) {
|
|
65227
|
+
return TeamApiFp(this.configuration).v1InvitationsTokenAcceptWithPasswordPost(token, dataTypesAcceptInvitationWithPasswordRequest, options).then((request) => request(this.axios, this.basePath));
|
|
65228
|
+
}
|
|
65229
|
+
|
|
65230
|
+
/**
|
|
65231
|
+
* Retrieves invitation details by token (public endpoint for onboarding)
|
|
65232
|
+
* @summary Get invitation details by token
|
|
65233
|
+
* @param {string} token Invitation Token
|
|
65234
|
+
* @param {*} [options] Override http request option.
|
|
65235
|
+
* @throws {RequiredError}
|
|
65236
|
+
* @memberof TeamApi
|
|
65237
|
+
*/
|
|
65238
|
+
public v1InvitationsTokenGet(token: string, options?: RawAxiosRequestConfig) {
|
|
65239
|
+
return TeamApiFp(this.configuration).v1InvitationsTokenGet(token, options).then((request) => request(this.axios, this.basePath));
|
|
65240
|
+
}
|
|
65241
|
+
|
|
64581
65242
|
/**
|
|
64582
65243
|
* Retrieves all users with access to a store
|
|
64583
65244
|
* @summary Get store access list
|
|
@@ -64752,8 +65413,8 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
64752
65413
|
};
|
|
64753
65414
|
},
|
|
64754
65415
|
/**
|
|
64755
|
-
* Fetches list of all users
|
|
64756
|
-
* @summary Fetches list of all users
|
|
65416
|
+
* Fetches list of all users with their role permissions included
|
|
65417
|
+
* @summary Fetches list of all users with role permissions
|
|
64757
65418
|
* @param {*} [options] Override http request option.
|
|
64758
65419
|
* @throws {RequiredError}
|
|
64759
65420
|
*/
|
|
@@ -65205,12 +65866,12 @@ export const UserApiFp = function(configuration?: Configuration) {
|
|
|
65205
65866
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
65206
65867
|
},
|
|
65207
65868
|
/**
|
|
65208
|
-
* Fetches list of all users
|
|
65209
|
-
* @summary Fetches list of all users
|
|
65869
|
+
* Fetches list of all users with their role permissions included
|
|
65870
|
+
* @summary Fetches list of all users with role permissions
|
|
65210
65871
|
* @param {*} [options] Override http request option.
|
|
65211
65872
|
* @throws {RequiredError}
|
|
65212
65873
|
*/
|
|
65213
|
-
async adminUsersGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
65874
|
+
async adminUsersGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayDataTypesUserWithPermissions>> {
|
|
65214
65875
|
const localVarAxiosArgs = await localVarAxiosParamCreator.adminUsersGet(options);
|
|
65215
65876
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
65216
65877
|
const localVarOperationServerBasePath = operationServerMap['UserApi.adminUsersGet']?.[localVarOperationServerIndex]?.url;
|
|
@@ -65372,12 +66033,12 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
|
|
|
65372
66033
|
return localVarFp.adminUsersActivateUserIdStatusPut(id, status, options).then((request) => request(axios, basePath));
|
|
65373
66034
|
},
|
|
65374
66035
|
/**
|
|
65375
|
-
* Fetches list of all users
|
|
65376
|
-
* @summary Fetches list of all users
|
|
66036
|
+
* Fetches list of all users with their role permissions included
|
|
66037
|
+
* @summary Fetches list of all users with role permissions
|
|
65377
66038
|
* @param {*} [options] Override http request option.
|
|
65378
66039
|
* @throws {RequiredError}
|
|
65379
66040
|
*/
|
|
65380
|
-
adminUsersGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
66041
|
+
adminUsersGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayDataTypesUserWithPermissions> {
|
|
65381
66042
|
return localVarFp.adminUsersGet(options).then((request) => request(axios, basePath));
|
|
65382
66043
|
},
|
|
65383
66044
|
/**
|
|
@@ -65508,8 +66169,8 @@ export class UserApi extends BaseAPI {
|
|
|
65508
66169
|
}
|
|
65509
66170
|
|
|
65510
66171
|
/**
|
|
65511
|
-
* Fetches list of all users
|
|
65512
|
-
* @summary Fetches list of all users
|
|
66172
|
+
* Fetches list of all users with their role permissions included
|
|
66173
|
+
* @summary Fetches list of all users with role permissions
|
|
65513
66174
|
* @param {*} [options] Override http request option.
|
|
65514
66175
|
* @throws {RequiredError}
|
|
65515
66176
|
* @memberof UserApi
|