@seekora-ai/admin-api 1.0.8 → 1.0.9
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 +6 -2
- package/api.ts +174 -0
- package/dist/api.d.ts +102 -0
- package/dist/api.js +122 -0
- package/dist/esm/api.d.ts +102 -0
- package/dist/esm/api.js +122 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.9.tgz +0 -0
- package/seekora-ai-admin-api-1.0.8.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.0.
|
|
1
|
+
## @seekora-ai/admin-api@1.0.9
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @seekora-ai/admin-api@1.0.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.0.9 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -112,7 +112,9 @@ Class | Method | HTTP request | Description
|
|
|
112
112
|
*OnboardingApi* | [**adminV1UsersOnboardingSchemaUploadPost**](docs/OnboardingApi.md#adminv1usersonboardingschemauploadpost) | **POST** /admin/v1/users/onboarding/schema-upload | Upload custom schema JSON
|
|
113
113
|
*OnboardingApi* | [**adminV1UsersOnboardingSchemaoptionsGet**](docs/OnboardingApi.md#adminv1usersonboardingschemaoptionsget) | **GET** /admin/v1/users/onboarding/schemaoptions | Get schema options
|
|
114
114
|
*OnboardingApi* | [**adminV1UsersOnboardingSearchGet**](docs/OnboardingApi.md#adminv1usersonboardingsearchget) | **GET** /admin/v1/users/onboarding/search | Test search
|
|
115
|
+
*OnboardingApi* | [**adminV1UsersOnboardingStorekeyGet**](docs/OnboardingApi.md#adminv1usersonboardingstorekeyget) | **GET** /admin/v1/users/onboarding/storekey | Get store key
|
|
115
116
|
*OnboardingApi* | [**adminV1UsersOnboardingUploaddataPost**](docs/OnboardingApi.md#adminv1usersonboardinguploaddatapost) | **POST** /admin/v1/users/onboarding/uploaddata | Upload source data
|
|
117
|
+
*OnboardingApi* | [**adminV1UsersSampledatasetsGet**](docs/OnboardingApi.md#adminv1userssampledatasetsget) | **GET** /admin/v1/users/sampledatasets | Get sample datasets
|
|
116
118
|
*OrganizationsApi* | [**adminOrganizationsGet**](docs/OrganizationsApi.md#adminorganizationsget) | **GET** /admin/Organizations | Fetches list of all Organizations
|
|
117
119
|
*OrganizationsApi* | [**adminOrganizationsIdPut**](docs/OrganizationsApi.md#adminorganizationsidput) | **PUT** /admin/Organizations/{id} | Update an existing Orgnization
|
|
118
120
|
*OrganizationsApi* | [**adminOrganizationsOrgIdGet**](docs/OrganizationsApi.md#adminorganizationsorgidget) | **GET** /admin/Organizations/{OrgId} | Fetches Orgnization by Id
|
|
@@ -259,6 +261,8 @@ Class | Method | HTTP request | Description
|
|
|
259
261
|
- [DataTypesSource](docs/DataTypesSource.md)
|
|
260
262
|
- [DataTypesSourcesListResponse](docs/DataTypesSourcesListResponse.md)
|
|
261
263
|
- [DataTypesStore](docs/DataTypesStore.md)
|
|
264
|
+
- [DataTypesStoreKeyResponse](docs/DataTypesStoreKeyResponse.md)
|
|
265
|
+
- [DataTypesStoreKeyResponseWrapper](docs/DataTypesStoreKeyResponseWrapper.md)
|
|
262
266
|
- [DataTypesStoreRequestDto](docs/DataTypesStoreRequestDto.md)
|
|
263
267
|
- [DataTypesStoreResponse](docs/DataTypesStoreResponse.md)
|
|
264
268
|
- [DataTypesStoresListResponse](docs/DataTypesStoresListResponse.md)
|
package/api.ts
CHANGED
|
@@ -3258,6 +3258,50 @@ export interface DataTypesStore {
|
|
|
3258
3258
|
*/
|
|
3259
3259
|
'StoreName'?: string;
|
|
3260
3260
|
}
|
|
3261
|
+
/**
|
|
3262
|
+
*
|
|
3263
|
+
* @export
|
|
3264
|
+
* @interface DataTypesStoreKeyResponse
|
|
3265
|
+
*/
|
|
3266
|
+
export interface DataTypesStoreKeyResponse {
|
|
3267
|
+
/**
|
|
3268
|
+
*
|
|
3269
|
+
* @type {string}
|
|
3270
|
+
* @memberof DataTypesStoreKeyResponse
|
|
3271
|
+
*/
|
|
3272
|
+
'storeId'?: string;
|
|
3273
|
+
/**
|
|
3274
|
+
*
|
|
3275
|
+
* @type {string}
|
|
3276
|
+
* @memberof DataTypesStoreKeyResponse
|
|
3277
|
+
*/
|
|
3278
|
+
'storeSecret'?: string;
|
|
3279
|
+
}
|
|
3280
|
+
/**
|
|
3281
|
+
*
|
|
3282
|
+
* @export
|
|
3283
|
+
* @interface DataTypesStoreKeyResponseWrapper
|
|
3284
|
+
*/
|
|
3285
|
+
export interface DataTypesStoreKeyResponseWrapper {
|
|
3286
|
+
/**
|
|
3287
|
+
*
|
|
3288
|
+
* @type {DataTypesStoreKeyResponse}
|
|
3289
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3290
|
+
*/
|
|
3291
|
+
'data'?: DataTypesStoreKeyResponse;
|
|
3292
|
+
/**
|
|
3293
|
+
*
|
|
3294
|
+
* @type {string}
|
|
3295
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3296
|
+
*/
|
|
3297
|
+
'message'?: string;
|
|
3298
|
+
/**
|
|
3299
|
+
*
|
|
3300
|
+
* @type {number}
|
|
3301
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3302
|
+
*/
|
|
3303
|
+
'status'?: number;
|
|
3304
|
+
}
|
|
3261
3305
|
/**
|
|
3262
3306
|
*
|
|
3263
3307
|
* @export
|
|
@@ -9003,6 +9047,39 @@ export const OnboardingApiAxiosParamCreator = function (configuration?: Configur
|
|
|
9003
9047
|
|
|
9004
9048
|
|
|
9005
9049
|
|
|
9050
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9051
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9052
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
9053
|
+
|
|
9054
|
+
return {
|
|
9055
|
+
url: toPathString(localVarUrlObj),
|
|
9056
|
+
options: localVarRequestOptions,
|
|
9057
|
+
};
|
|
9058
|
+
},
|
|
9059
|
+
/**
|
|
9060
|
+
* Get store key
|
|
9061
|
+
* @summary Get store key
|
|
9062
|
+
* @param {*} [options] Override http request option.
|
|
9063
|
+
* @throws {RequiredError}
|
|
9064
|
+
*/
|
|
9065
|
+
adminV1UsersOnboardingStorekeyGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
9066
|
+
const localVarPath = `/admin/v1/users/onboarding/storekey`;
|
|
9067
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
9068
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
9069
|
+
let baseOptions;
|
|
9070
|
+
if (configuration) {
|
|
9071
|
+
baseOptions = configuration.baseOptions;
|
|
9072
|
+
}
|
|
9073
|
+
|
|
9074
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
9075
|
+
const localVarHeaderParameter = {} as any;
|
|
9076
|
+
const localVarQueryParameter = {} as any;
|
|
9077
|
+
|
|
9078
|
+
// authentication BearerAuth required
|
|
9079
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
9080
|
+
|
|
9081
|
+
|
|
9082
|
+
|
|
9006
9083
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9007
9084
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9008
9085
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -9046,6 +9123,39 @@ export const OnboardingApiAxiosParamCreator = function (configuration?: Configur
|
|
|
9046
9123
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
9047
9124
|
localVarRequestOptions.data = serializeDataIfNeeded(adminV1UsersOnboardingUploaddataPostRequest, localVarRequestOptions, configuration)
|
|
9048
9125
|
|
|
9126
|
+
return {
|
|
9127
|
+
url: toPathString(localVarUrlObj),
|
|
9128
|
+
options: localVarRequestOptions,
|
|
9129
|
+
};
|
|
9130
|
+
},
|
|
9131
|
+
/**
|
|
9132
|
+
* Get sample datasets
|
|
9133
|
+
* @summary Get sample datasets
|
|
9134
|
+
* @param {*} [options] Override http request option.
|
|
9135
|
+
* @throws {RequiredError}
|
|
9136
|
+
*/
|
|
9137
|
+
adminV1UsersSampledatasetsGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
9138
|
+
const localVarPath = `/admin/v1/users/sampledatasets`;
|
|
9139
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
9140
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
9141
|
+
let baseOptions;
|
|
9142
|
+
if (configuration) {
|
|
9143
|
+
baseOptions = configuration.baseOptions;
|
|
9144
|
+
}
|
|
9145
|
+
|
|
9146
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
9147
|
+
const localVarHeaderParameter = {} as any;
|
|
9148
|
+
const localVarQueryParameter = {} as any;
|
|
9149
|
+
|
|
9150
|
+
// authentication BearerAuth required
|
|
9151
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
9152
|
+
|
|
9153
|
+
|
|
9154
|
+
|
|
9155
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9156
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9157
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
9158
|
+
|
|
9049
9159
|
return {
|
|
9050
9160
|
url: toPathString(localVarUrlObj),
|
|
9051
9161
|
options: localVarRequestOptions,
|
|
@@ -9137,6 +9247,18 @@ export const OnboardingApiFp = function(configuration?: Configuration) {
|
|
|
9137
9247
|
const localVarOperationServerBasePath = operationServerMap['OnboardingApi.adminV1UsersOnboardingSearchGet']?.[localVarOperationServerIndex]?.url;
|
|
9138
9248
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9139
9249
|
},
|
|
9250
|
+
/**
|
|
9251
|
+
* Get store key
|
|
9252
|
+
* @summary Get store key
|
|
9253
|
+
* @param {*} [options] Override http request option.
|
|
9254
|
+
* @throws {RequiredError}
|
|
9255
|
+
*/
|
|
9256
|
+
async adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreKeyResponseWrapper>> {
|
|
9257
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1UsersOnboardingStorekeyGet(options);
|
|
9258
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9259
|
+
const localVarOperationServerBasePath = operationServerMap['OnboardingApi.adminV1UsersOnboardingStorekeyGet']?.[localVarOperationServerIndex]?.url;
|
|
9260
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9261
|
+
},
|
|
9140
9262
|
/**
|
|
9141
9263
|
* Upload source data
|
|
9142
9264
|
* @summary Upload source data
|
|
@@ -9150,6 +9272,18 @@ export const OnboardingApiFp = function(configuration?: Configuration) {
|
|
|
9150
9272
|
const localVarOperationServerBasePath = operationServerMap['OnboardingApi.adminV1UsersOnboardingUploaddataPost']?.[localVarOperationServerIndex]?.url;
|
|
9151
9273
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9152
9274
|
},
|
|
9275
|
+
/**
|
|
9276
|
+
* Get sample datasets
|
|
9277
|
+
* @summary Get sample datasets
|
|
9278
|
+
* @param {*} [options] Override http request option.
|
|
9279
|
+
* @throws {RequiredError}
|
|
9280
|
+
*/
|
|
9281
|
+
async adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
9282
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1UsersSampledatasetsGet(options);
|
|
9283
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9284
|
+
const localVarOperationServerBasePath = operationServerMap['OnboardingApi.adminV1UsersSampledatasetsGet']?.[localVarOperationServerIndex]?.url;
|
|
9285
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9286
|
+
},
|
|
9153
9287
|
}
|
|
9154
9288
|
};
|
|
9155
9289
|
|
|
@@ -9218,6 +9352,15 @@ export const OnboardingApiFactory = function (configuration?: Configuration, bas
|
|
|
9218
9352
|
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper> {
|
|
9219
9353
|
return localVarFp.adminV1UsersOnboardingSearchGet(q, options).then((request) => request(axios, basePath));
|
|
9220
9354
|
},
|
|
9355
|
+
/**
|
|
9356
|
+
* Get store key
|
|
9357
|
+
* @summary Get store key
|
|
9358
|
+
* @param {*} [options] Override http request option.
|
|
9359
|
+
* @throws {RequiredError}
|
|
9360
|
+
*/
|
|
9361
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreKeyResponseWrapper> {
|
|
9362
|
+
return localVarFp.adminV1UsersOnboardingStorekeyGet(options).then((request) => request(axios, basePath));
|
|
9363
|
+
},
|
|
9221
9364
|
/**
|
|
9222
9365
|
* Upload source data
|
|
9223
9366
|
* @summary Upload source data
|
|
@@ -9228,6 +9371,15 @@ export const OnboardingApiFactory = function (configuration?: Configuration, bas
|
|
|
9228
9371
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponseWrapper> {
|
|
9229
9372
|
return localVarFp.adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options).then((request) => request(axios, basePath));
|
|
9230
9373
|
},
|
|
9374
|
+
/**
|
|
9375
|
+
* Get sample datasets
|
|
9376
|
+
* @summary Get sample datasets
|
|
9377
|
+
* @param {*} [options] Override http request option.
|
|
9378
|
+
* @throws {RequiredError}
|
|
9379
|
+
*/
|
|
9380
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
9381
|
+
return localVarFp.adminV1UsersSampledatasetsGet(options).then((request) => request(axios, basePath));
|
|
9382
|
+
},
|
|
9231
9383
|
};
|
|
9232
9384
|
};
|
|
9233
9385
|
|
|
@@ -9308,6 +9460,17 @@ export class OnboardingApi extends BaseAPI {
|
|
|
9308
9460
|
return OnboardingApiFp(this.configuration).adminV1UsersOnboardingSearchGet(q, options).then((request) => request(this.axios, this.basePath));
|
|
9309
9461
|
}
|
|
9310
9462
|
|
|
9463
|
+
/**
|
|
9464
|
+
* Get store key
|
|
9465
|
+
* @summary Get store key
|
|
9466
|
+
* @param {*} [options] Override http request option.
|
|
9467
|
+
* @throws {RequiredError}
|
|
9468
|
+
* @memberof OnboardingApi
|
|
9469
|
+
*/
|
|
9470
|
+
public adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig) {
|
|
9471
|
+
return OnboardingApiFp(this.configuration).adminV1UsersOnboardingStorekeyGet(options).then((request) => request(this.axios, this.basePath));
|
|
9472
|
+
}
|
|
9473
|
+
|
|
9311
9474
|
/**
|
|
9312
9475
|
* Upload source data
|
|
9313
9476
|
* @summary Upload source data
|
|
@@ -9319,6 +9482,17 @@ export class OnboardingApi extends BaseAPI {
|
|
|
9319
9482
|
public adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig) {
|
|
9320
9483
|
return OnboardingApiFp(this.configuration).adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
9321
9484
|
}
|
|
9485
|
+
|
|
9486
|
+
/**
|
|
9487
|
+
* Get sample datasets
|
|
9488
|
+
* @summary Get sample datasets
|
|
9489
|
+
* @param {*} [options] Override http request option.
|
|
9490
|
+
* @throws {RequiredError}
|
|
9491
|
+
* @memberof OnboardingApi
|
|
9492
|
+
*/
|
|
9493
|
+
public adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig) {
|
|
9494
|
+
return OnboardingApiFp(this.configuration).adminV1UsersSampledatasetsGet(options).then((request) => request(this.axios, this.basePath));
|
|
9495
|
+
}
|
|
9322
9496
|
}
|
|
9323
9497
|
|
|
9324
9498
|
|
package/dist/api.d.ts
CHANGED
|
@@ -3253,6 +3253,50 @@ export interface DataTypesStore {
|
|
|
3253
3253
|
*/
|
|
3254
3254
|
'StoreName'?: string;
|
|
3255
3255
|
}
|
|
3256
|
+
/**
|
|
3257
|
+
*
|
|
3258
|
+
* @export
|
|
3259
|
+
* @interface DataTypesStoreKeyResponse
|
|
3260
|
+
*/
|
|
3261
|
+
export interface DataTypesStoreKeyResponse {
|
|
3262
|
+
/**
|
|
3263
|
+
*
|
|
3264
|
+
* @type {string}
|
|
3265
|
+
* @memberof DataTypesStoreKeyResponse
|
|
3266
|
+
*/
|
|
3267
|
+
'storeId'?: string;
|
|
3268
|
+
/**
|
|
3269
|
+
*
|
|
3270
|
+
* @type {string}
|
|
3271
|
+
* @memberof DataTypesStoreKeyResponse
|
|
3272
|
+
*/
|
|
3273
|
+
'storeSecret'?: string;
|
|
3274
|
+
}
|
|
3275
|
+
/**
|
|
3276
|
+
*
|
|
3277
|
+
* @export
|
|
3278
|
+
* @interface DataTypesStoreKeyResponseWrapper
|
|
3279
|
+
*/
|
|
3280
|
+
export interface DataTypesStoreKeyResponseWrapper {
|
|
3281
|
+
/**
|
|
3282
|
+
*
|
|
3283
|
+
* @type {DataTypesStoreKeyResponse}
|
|
3284
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3285
|
+
*/
|
|
3286
|
+
'data'?: DataTypesStoreKeyResponse;
|
|
3287
|
+
/**
|
|
3288
|
+
*
|
|
3289
|
+
* @type {string}
|
|
3290
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3291
|
+
*/
|
|
3292
|
+
'message'?: string;
|
|
3293
|
+
/**
|
|
3294
|
+
*
|
|
3295
|
+
* @type {number}
|
|
3296
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3297
|
+
*/
|
|
3298
|
+
'status'?: number;
|
|
3299
|
+
}
|
|
3256
3300
|
/**
|
|
3257
3301
|
*
|
|
3258
3302
|
* @export
|
|
@@ -6536,6 +6580,13 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
6536
6580
|
* @throws {RequiredError}
|
|
6537
6581
|
*/
|
|
6538
6582
|
adminV1UsersOnboardingSearchGet: (q: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6583
|
+
/**
|
|
6584
|
+
* Get store key
|
|
6585
|
+
* @summary Get store key
|
|
6586
|
+
* @param {*} [options] Override http request option.
|
|
6587
|
+
* @throws {RequiredError}
|
|
6588
|
+
*/
|
|
6589
|
+
adminV1UsersOnboardingStorekeyGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6539
6590
|
/**
|
|
6540
6591
|
* Upload source data
|
|
6541
6592
|
* @summary Upload source data
|
|
@@ -6544,6 +6595,13 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
6544
6595
|
* @throws {RequiredError}
|
|
6545
6596
|
*/
|
|
6546
6597
|
adminV1UsersOnboardingUploaddataPost: (adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6598
|
+
/**
|
|
6599
|
+
* Get sample datasets
|
|
6600
|
+
* @summary Get sample datasets
|
|
6601
|
+
* @param {*} [options] Override http request option.
|
|
6602
|
+
* @throws {RequiredError}
|
|
6603
|
+
*/
|
|
6604
|
+
adminV1UsersSampledatasetsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6547
6605
|
};
|
|
6548
6606
|
/**
|
|
6549
6607
|
* OnboardingApi - functional programming interface
|
|
@@ -6596,6 +6654,13 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6596
6654
|
* @throws {RequiredError}
|
|
6597
6655
|
*/
|
|
6598
6656
|
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>>;
|
|
6657
|
+
/**
|
|
6658
|
+
* Get store key
|
|
6659
|
+
* @summary Get store key
|
|
6660
|
+
* @param {*} [options] Override http request option.
|
|
6661
|
+
* @throws {RequiredError}
|
|
6662
|
+
*/
|
|
6663
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreKeyResponseWrapper>>;
|
|
6599
6664
|
/**
|
|
6600
6665
|
* Upload source data
|
|
6601
6666
|
* @summary Upload source data
|
|
@@ -6604,6 +6669,13 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6604
6669
|
* @throws {RequiredError}
|
|
6605
6670
|
*/
|
|
6606
6671
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponseWrapper>>;
|
|
6672
|
+
/**
|
|
6673
|
+
* Get sample datasets
|
|
6674
|
+
* @summary Get sample datasets
|
|
6675
|
+
* @param {*} [options] Override http request option.
|
|
6676
|
+
* @throws {RequiredError}
|
|
6677
|
+
*/
|
|
6678
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
6607
6679
|
};
|
|
6608
6680
|
/**
|
|
6609
6681
|
* OnboardingApi - factory interface
|
|
@@ -6656,6 +6728,13 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6656
6728
|
* @throws {RequiredError}
|
|
6657
6729
|
*/
|
|
6658
6730
|
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>;
|
|
6731
|
+
/**
|
|
6732
|
+
* Get store key
|
|
6733
|
+
* @summary Get store key
|
|
6734
|
+
* @param {*} [options] Override http request option.
|
|
6735
|
+
* @throws {RequiredError}
|
|
6736
|
+
*/
|
|
6737
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreKeyResponseWrapper>;
|
|
6659
6738
|
/**
|
|
6660
6739
|
* Upload source data
|
|
6661
6740
|
* @summary Upload source data
|
|
@@ -6664,6 +6743,13 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6664
6743
|
* @throws {RequiredError}
|
|
6665
6744
|
*/
|
|
6666
6745
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponseWrapper>;
|
|
6746
|
+
/**
|
|
6747
|
+
* Get sample datasets
|
|
6748
|
+
* @summary Get sample datasets
|
|
6749
|
+
* @param {*} [options] Override http request option.
|
|
6750
|
+
* @throws {RequiredError}
|
|
6751
|
+
*/
|
|
6752
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
6667
6753
|
};
|
|
6668
6754
|
/**
|
|
6669
6755
|
* OnboardingApi - object-oriented interface
|
|
@@ -6724,6 +6810,14 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6724
6810
|
* @memberof OnboardingApi
|
|
6725
6811
|
*/
|
|
6726
6812
|
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any>>;
|
|
6813
|
+
/**
|
|
6814
|
+
* Get store key
|
|
6815
|
+
* @summary Get store key
|
|
6816
|
+
* @param {*} [options] Override http request option.
|
|
6817
|
+
* @throws {RequiredError}
|
|
6818
|
+
* @memberof OnboardingApi
|
|
6819
|
+
*/
|
|
6820
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any>>;
|
|
6727
6821
|
/**
|
|
6728
6822
|
* Upload source data
|
|
6729
6823
|
* @summary Upload source data
|
|
@@ -6733,6 +6827,14 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6733
6827
|
* @memberof OnboardingApi
|
|
6734
6828
|
*/
|
|
6735
6829
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
6830
|
+
/**
|
|
6831
|
+
* Get sample datasets
|
|
6832
|
+
* @summary Get sample datasets
|
|
6833
|
+
* @param {*} [options] Override http request option.
|
|
6834
|
+
* @throws {RequiredError}
|
|
6835
|
+
* @memberof OnboardingApi
|
|
6836
|
+
*/
|
|
6837
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
6736
6838
|
}
|
|
6737
6839
|
/**
|
|
6738
6840
|
* OrganizationsApi - axios parameter creator
|
package/dist/api.js
CHANGED
|
@@ -4399,6 +4399,33 @@ const OnboardingApiAxiosParamCreator = function (configuration) {
|
|
|
4399
4399
|
options: localVarRequestOptions,
|
|
4400
4400
|
};
|
|
4401
4401
|
}),
|
|
4402
|
+
/**
|
|
4403
|
+
* Get store key
|
|
4404
|
+
* @summary Get store key
|
|
4405
|
+
* @param {*} [options] Override http request option.
|
|
4406
|
+
* @throws {RequiredError}
|
|
4407
|
+
*/
|
|
4408
|
+
adminV1UsersOnboardingStorekeyGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
4409
|
+
const localVarPath = `/admin/v1/users/onboarding/storekey`;
|
|
4410
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4411
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
4412
|
+
let baseOptions;
|
|
4413
|
+
if (configuration) {
|
|
4414
|
+
baseOptions = configuration.baseOptions;
|
|
4415
|
+
}
|
|
4416
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
4417
|
+
const localVarHeaderParameter = {};
|
|
4418
|
+
const localVarQueryParameter = {};
|
|
4419
|
+
// authentication BearerAuth required
|
|
4420
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
4421
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
4422
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4423
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4424
|
+
return {
|
|
4425
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
4426
|
+
options: localVarRequestOptions,
|
|
4427
|
+
};
|
|
4428
|
+
}),
|
|
4402
4429
|
/**
|
|
4403
4430
|
* Upload source data
|
|
4404
4431
|
* @summary Upload source data
|
|
@@ -4431,6 +4458,33 @@ const OnboardingApiAxiosParamCreator = function (configuration) {
|
|
|
4431
4458
|
options: localVarRequestOptions,
|
|
4432
4459
|
};
|
|
4433
4460
|
}),
|
|
4461
|
+
/**
|
|
4462
|
+
* Get sample datasets
|
|
4463
|
+
* @summary Get sample datasets
|
|
4464
|
+
* @param {*} [options] Override http request option.
|
|
4465
|
+
* @throws {RequiredError}
|
|
4466
|
+
*/
|
|
4467
|
+
adminV1UsersSampledatasetsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
4468
|
+
const localVarPath = `/admin/v1/users/sampledatasets`;
|
|
4469
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4470
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
4471
|
+
let baseOptions;
|
|
4472
|
+
if (configuration) {
|
|
4473
|
+
baseOptions = configuration.baseOptions;
|
|
4474
|
+
}
|
|
4475
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
4476
|
+
const localVarHeaderParameter = {};
|
|
4477
|
+
const localVarQueryParameter = {};
|
|
4478
|
+
// authentication BearerAuth required
|
|
4479
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
4480
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
4481
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4482
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4483
|
+
return {
|
|
4484
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
4485
|
+
options: localVarRequestOptions,
|
|
4486
|
+
};
|
|
4487
|
+
}),
|
|
4434
4488
|
};
|
|
4435
4489
|
};
|
|
4436
4490
|
exports.OnboardingApiAxiosParamCreator = OnboardingApiAxiosParamCreator;
|
|
@@ -4535,6 +4589,21 @@ const OnboardingApiFp = function (configuration) {
|
|
|
4535
4589
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4536
4590
|
});
|
|
4537
4591
|
},
|
|
4592
|
+
/**
|
|
4593
|
+
* Get store key
|
|
4594
|
+
* @summary Get store key
|
|
4595
|
+
* @param {*} [options] Override http request option.
|
|
4596
|
+
* @throws {RequiredError}
|
|
4597
|
+
*/
|
|
4598
|
+
adminV1UsersOnboardingStorekeyGet(options) {
|
|
4599
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4600
|
+
var _a, _b, _c;
|
|
4601
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1UsersOnboardingStorekeyGet(options);
|
|
4602
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4603
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OnboardingApi.adminV1UsersOnboardingStorekeyGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4604
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4605
|
+
});
|
|
4606
|
+
},
|
|
4538
4607
|
/**
|
|
4539
4608
|
* Upload source data
|
|
4540
4609
|
* @summary Upload source data
|
|
@@ -4551,6 +4620,21 @@ const OnboardingApiFp = function (configuration) {
|
|
|
4551
4620
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4552
4621
|
});
|
|
4553
4622
|
},
|
|
4623
|
+
/**
|
|
4624
|
+
* Get sample datasets
|
|
4625
|
+
* @summary Get sample datasets
|
|
4626
|
+
* @param {*} [options] Override http request option.
|
|
4627
|
+
* @throws {RequiredError}
|
|
4628
|
+
*/
|
|
4629
|
+
adminV1UsersSampledatasetsGet(options) {
|
|
4630
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4631
|
+
var _a, _b, _c;
|
|
4632
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1UsersSampledatasetsGet(options);
|
|
4633
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4634
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OnboardingApi.adminV1UsersSampledatasetsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4635
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4636
|
+
});
|
|
4637
|
+
},
|
|
4554
4638
|
};
|
|
4555
4639
|
};
|
|
4556
4640
|
exports.OnboardingApiFp = OnboardingApiFp;
|
|
@@ -4619,6 +4703,15 @@ const OnboardingApiFactory = function (configuration, basePath, axios) {
|
|
|
4619
4703
|
adminV1UsersOnboardingSearchGet(q, options) {
|
|
4620
4704
|
return localVarFp.adminV1UsersOnboardingSearchGet(q, options).then((request) => request(axios, basePath));
|
|
4621
4705
|
},
|
|
4706
|
+
/**
|
|
4707
|
+
* Get store key
|
|
4708
|
+
* @summary Get store key
|
|
4709
|
+
* @param {*} [options] Override http request option.
|
|
4710
|
+
* @throws {RequiredError}
|
|
4711
|
+
*/
|
|
4712
|
+
adminV1UsersOnboardingStorekeyGet(options) {
|
|
4713
|
+
return localVarFp.adminV1UsersOnboardingStorekeyGet(options).then((request) => request(axios, basePath));
|
|
4714
|
+
},
|
|
4622
4715
|
/**
|
|
4623
4716
|
* Upload source data
|
|
4624
4717
|
* @summary Upload source data
|
|
@@ -4629,6 +4722,15 @@ const OnboardingApiFactory = function (configuration, basePath, axios) {
|
|
|
4629
4722
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options) {
|
|
4630
4723
|
return localVarFp.adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options).then((request) => request(axios, basePath));
|
|
4631
4724
|
},
|
|
4725
|
+
/**
|
|
4726
|
+
* Get sample datasets
|
|
4727
|
+
* @summary Get sample datasets
|
|
4728
|
+
* @param {*} [options] Override http request option.
|
|
4729
|
+
* @throws {RequiredError}
|
|
4730
|
+
*/
|
|
4731
|
+
adminV1UsersSampledatasetsGet(options) {
|
|
4732
|
+
return localVarFp.adminV1UsersSampledatasetsGet(options).then((request) => request(axios, basePath));
|
|
4733
|
+
},
|
|
4632
4734
|
};
|
|
4633
4735
|
};
|
|
4634
4736
|
exports.OnboardingApiFactory = OnboardingApiFactory;
|
|
@@ -4703,6 +4805,16 @@ class OnboardingApi extends base_1.BaseAPI {
|
|
|
4703
4805
|
adminV1UsersOnboardingSearchGet(q, options) {
|
|
4704
4806
|
return (0, exports.OnboardingApiFp)(this.configuration).adminV1UsersOnboardingSearchGet(q, options).then((request) => request(this.axios, this.basePath));
|
|
4705
4807
|
}
|
|
4808
|
+
/**
|
|
4809
|
+
* Get store key
|
|
4810
|
+
* @summary Get store key
|
|
4811
|
+
* @param {*} [options] Override http request option.
|
|
4812
|
+
* @throws {RequiredError}
|
|
4813
|
+
* @memberof OnboardingApi
|
|
4814
|
+
*/
|
|
4815
|
+
adminV1UsersOnboardingStorekeyGet(options) {
|
|
4816
|
+
return (0, exports.OnboardingApiFp)(this.configuration).adminV1UsersOnboardingStorekeyGet(options).then((request) => request(this.axios, this.basePath));
|
|
4817
|
+
}
|
|
4706
4818
|
/**
|
|
4707
4819
|
* Upload source data
|
|
4708
4820
|
* @summary Upload source data
|
|
@@ -4714,6 +4826,16 @@ class OnboardingApi extends base_1.BaseAPI {
|
|
|
4714
4826
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options) {
|
|
4715
4827
|
return (0, exports.OnboardingApiFp)(this.configuration).adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4716
4828
|
}
|
|
4829
|
+
/**
|
|
4830
|
+
* Get sample datasets
|
|
4831
|
+
* @summary Get sample datasets
|
|
4832
|
+
* @param {*} [options] Override http request option.
|
|
4833
|
+
* @throws {RequiredError}
|
|
4834
|
+
* @memberof OnboardingApi
|
|
4835
|
+
*/
|
|
4836
|
+
adminV1UsersSampledatasetsGet(options) {
|
|
4837
|
+
return (0, exports.OnboardingApiFp)(this.configuration).adminV1UsersSampledatasetsGet(options).then((request) => request(this.axios, this.basePath));
|
|
4838
|
+
}
|
|
4717
4839
|
}
|
|
4718
4840
|
exports.OnboardingApi = OnboardingApi;
|
|
4719
4841
|
/**
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3253,6 +3253,50 @@ export interface DataTypesStore {
|
|
|
3253
3253
|
*/
|
|
3254
3254
|
'StoreName'?: string;
|
|
3255
3255
|
}
|
|
3256
|
+
/**
|
|
3257
|
+
*
|
|
3258
|
+
* @export
|
|
3259
|
+
* @interface DataTypesStoreKeyResponse
|
|
3260
|
+
*/
|
|
3261
|
+
export interface DataTypesStoreKeyResponse {
|
|
3262
|
+
/**
|
|
3263
|
+
*
|
|
3264
|
+
* @type {string}
|
|
3265
|
+
* @memberof DataTypesStoreKeyResponse
|
|
3266
|
+
*/
|
|
3267
|
+
'storeId'?: string;
|
|
3268
|
+
/**
|
|
3269
|
+
*
|
|
3270
|
+
* @type {string}
|
|
3271
|
+
* @memberof DataTypesStoreKeyResponse
|
|
3272
|
+
*/
|
|
3273
|
+
'storeSecret'?: string;
|
|
3274
|
+
}
|
|
3275
|
+
/**
|
|
3276
|
+
*
|
|
3277
|
+
* @export
|
|
3278
|
+
* @interface DataTypesStoreKeyResponseWrapper
|
|
3279
|
+
*/
|
|
3280
|
+
export interface DataTypesStoreKeyResponseWrapper {
|
|
3281
|
+
/**
|
|
3282
|
+
*
|
|
3283
|
+
* @type {DataTypesStoreKeyResponse}
|
|
3284
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3285
|
+
*/
|
|
3286
|
+
'data'?: DataTypesStoreKeyResponse;
|
|
3287
|
+
/**
|
|
3288
|
+
*
|
|
3289
|
+
* @type {string}
|
|
3290
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3291
|
+
*/
|
|
3292
|
+
'message'?: string;
|
|
3293
|
+
/**
|
|
3294
|
+
*
|
|
3295
|
+
* @type {number}
|
|
3296
|
+
* @memberof DataTypesStoreKeyResponseWrapper
|
|
3297
|
+
*/
|
|
3298
|
+
'status'?: number;
|
|
3299
|
+
}
|
|
3256
3300
|
/**
|
|
3257
3301
|
*
|
|
3258
3302
|
* @export
|
|
@@ -6536,6 +6580,13 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
6536
6580
|
* @throws {RequiredError}
|
|
6537
6581
|
*/
|
|
6538
6582
|
adminV1UsersOnboardingSearchGet: (q: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6583
|
+
/**
|
|
6584
|
+
* Get store key
|
|
6585
|
+
* @summary Get store key
|
|
6586
|
+
* @param {*} [options] Override http request option.
|
|
6587
|
+
* @throws {RequiredError}
|
|
6588
|
+
*/
|
|
6589
|
+
adminV1UsersOnboardingStorekeyGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6539
6590
|
/**
|
|
6540
6591
|
* Upload source data
|
|
6541
6592
|
* @summary Upload source data
|
|
@@ -6544,6 +6595,13 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
6544
6595
|
* @throws {RequiredError}
|
|
6545
6596
|
*/
|
|
6546
6597
|
adminV1UsersOnboardingUploaddataPost: (adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6598
|
+
/**
|
|
6599
|
+
* Get sample datasets
|
|
6600
|
+
* @summary Get sample datasets
|
|
6601
|
+
* @param {*} [options] Override http request option.
|
|
6602
|
+
* @throws {RequiredError}
|
|
6603
|
+
*/
|
|
6604
|
+
adminV1UsersSampledatasetsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6547
6605
|
};
|
|
6548
6606
|
/**
|
|
6549
6607
|
* OnboardingApi - functional programming interface
|
|
@@ -6596,6 +6654,13 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6596
6654
|
* @throws {RequiredError}
|
|
6597
6655
|
*/
|
|
6598
6656
|
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>>;
|
|
6657
|
+
/**
|
|
6658
|
+
* Get store key
|
|
6659
|
+
* @summary Get store key
|
|
6660
|
+
* @param {*} [options] Override http request option.
|
|
6661
|
+
* @throws {RequiredError}
|
|
6662
|
+
*/
|
|
6663
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreKeyResponseWrapper>>;
|
|
6599
6664
|
/**
|
|
6600
6665
|
* Upload source data
|
|
6601
6666
|
* @summary Upload source data
|
|
@@ -6604,6 +6669,13 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6604
6669
|
* @throws {RequiredError}
|
|
6605
6670
|
*/
|
|
6606
6671
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponseWrapper>>;
|
|
6672
|
+
/**
|
|
6673
|
+
* Get sample datasets
|
|
6674
|
+
* @summary Get sample datasets
|
|
6675
|
+
* @param {*} [options] Override http request option.
|
|
6676
|
+
* @throws {RequiredError}
|
|
6677
|
+
*/
|
|
6678
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
6607
6679
|
};
|
|
6608
6680
|
/**
|
|
6609
6681
|
* OnboardingApi - factory interface
|
|
@@ -6656,6 +6728,13 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6656
6728
|
* @throws {RequiredError}
|
|
6657
6729
|
*/
|
|
6658
6730
|
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>;
|
|
6731
|
+
/**
|
|
6732
|
+
* Get store key
|
|
6733
|
+
* @summary Get store key
|
|
6734
|
+
* @param {*} [options] Override http request option.
|
|
6735
|
+
* @throws {RequiredError}
|
|
6736
|
+
*/
|
|
6737
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreKeyResponseWrapper>;
|
|
6659
6738
|
/**
|
|
6660
6739
|
* Upload source data
|
|
6661
6740
|
* @summary Upload source data
|
|
@@ -6664,6 +6743,13 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6664
6743
|
* @throws {RequiredError}
|
|
6665
6744
|
*/
|
|
6666
6745
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponseWrapper>;
|
|
6746
|
+
/**
|
|
6747
|
+
* Get sample datasets
|
|
6748
|
+
* @summary Get sample datasets
|
|
6749
|
+
* @param {*} [options] Override http request option.
|
|
6750
|
+
* @throws {RequiredError}
|
|
6751
|
+
*/
|
|
6752
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
6667
6753
|
};
|
|
6668
6754
|
/**
|
|
6669
6755
|
* OnboardingApi - object-oriented interface
|
|
@@ -6724,6 +6810,14 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6724
6810
|
* @memberof OnboardingApi
|
|
6725
6811
|
*/
|
|
6726
6812
|
adminV1UsersOnboardingSearchGet(q: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any>>;
|
|
6813
|
+
/**
|
|
6814
|
+
* Get store key
|
|
6815
|
+
* @summary Get store key
|
|
6816
|
+
* @param {*} [options] Override http request option.
|
|
6817
|
+
* @throws {RequiredError}
|
|
6818
|
+
* @memberof OnboardingApi
|
|
6819
|
+
*/
|
|
6820
|
+
adminV1UsersOnboardingStorekeyGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreKeyResponseWrapper, any>>;
|
|
6727
6821
|
/**
|
|
6728
6822
|
* Upload source data
|
|
6729
6823
|
* @summary Upload source data
|
|
@@ -6733,6 +6827,14 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
6733
6827
|
* @memberof OnboardingApi
|
|
6734
6828
|
*/
|
|
6735
6829
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest: AdminV1UsersOnboardingUploaddataPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
6830
|
+
/**
|
|
6831
|
+
* Get sample datasets
|
|
6832
|
+
* @summary Get sample datasets
|
|
6833
|
+
* @param {*} [options] Override http request option.
|
|
6834
|
+
* @throws {RequiredError}
|
|
6835
|
+
* @memberof OnboardingApi
|
|
6836
|
+
*/
|
|
6837
|
+
adminV1UsersSampledatasetsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
6736
6838
|
}
|
|
6737
6839
|
/**
|
|
6738
6840
|
* OrganizationsApi - axios parameter creator
|
package/dist/esm/api.js
CHANGED
|
@@ -4359,6 +4359,33 @@ export const OnboardingApiAxiosParamCreator = function (configuration) {
|
|
|
4359
4359
|
options: localVarRequestOptions,
|
|
4360
4360
|
};
|
|
4361
4361
|
}),
|
|
4362
|
+
/**
|
|
4363
|
+
* Get store key
|
|
4364
|
+
* @summary Get store key
|
|
4365
|
+
* @param {*} [options] Override http request option.
|
|
4366
|
+
* @throws {RequiredError}
|
|
4367
|
+
*/
|
|
4368
|
+
adminV1UsersOnboardingStorekeyGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
4369
|
+
const localVarPath = `/admin/v1/users/onboarding/storekey`;
|
|
4370
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4371
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4372
|
+
let baseOptions;
|
|
4373
|
+
if (configuration) {
|
|
4374
|
+
baseOptions = configuration.baseOptions;
|
|
4375
|
+
}
|
|
4376
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
4377
|
+
const localVarHeaderParameter = {};
|
|
4378
|
+
const localVarQueryParameter = {};
|
|
4379
|
+
// authentication BearerAuth required
|
|
4380
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
4381
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4382
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4383
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4384
|
+
return {
|
|
4385
|
+
url: toPathString(localVarUrlObj),
|
|
4386
|
+
options: localVarRequestOptions,
|
|
4387
|
+
};
|
|
4388
|
+
}),
|
|
4362
4389
|
/**
|
|
4363
4390
|
* Upload source data
|
|
4364
4391
|
* @summary Upload source data
|
|
@@ -4391,6 +4418,33 @@ export const OnboardingApiAxiosParamCreator = function (configuration) {
|
|
|
4391
4418
|
options: localVarRequestOptions,
|
|
4392
4419
|
};
|
|
4393
4420
|
}),
|
|
4421
|
+
/**
|
|
4422
|
+
* Get sample datasets
|
|
4423
|
+
* @summary Get sample datasets
|
|
4424
|
+
* @param {*} [options] Override http request option.
|
|
4425
|
+
* @throws {RequiredError}
|
|
4426
|
+
*/
|
|
4427
|
+
adminV1UsersSampledatasetsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
4428
|
+
const localVarPath = `/admin/v1/users/sampledatasets`;
|
|
4429
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4430
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4431
|
+
let baseOptions;
|
|
4432
|
+
if (configuration) {
|
|
4433
|
+
baseOptions = configuration.baseOptions;
|
|
4434
|
+
}
|
|
4435
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
4436
|
+
const localVarHeaderParameter = {};
|
|
4437
|
+
const localVarQueryParameter = {};
|
|
4438
|
+
// authentication BearerAuth required
|
|
4439
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
4440
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4441
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4442
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4443
|
+
return {
|
|
4444
|
+
url: toPathString(localVarUrlObj),
|
|
4445
|
+
options: localVarRequestOptions,
|
|
4446
|
+
};
|
|
4447
|
+
}),
|
|
4394
4448
|
};
|
|
4395
4449
|
};
|
|
4396
4450
|
/**
|
|
@@ -4494,6 +4548,21 @@ export const OnboardingApiFp = function (configuration) {
|
|
|
4494
4548
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4495
4549
|
});
|
|
4496
4550
|
},
|
|
4551
|
+
/**
|
|
4552
|
+
* Get store key
|
|
4553
|
+
* @summary Get store key
|
|
4554
|
+
* @param {*} [options] Override http request option.
|
|
4555
|
+
* @throws {RequiredError}
|
|
4556
|
+
*/
|
|
4557
|
+
adminV1UsersOnboardingStorekeyGet(options) {
|
|
4558
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4559
|
+
var _a, _b, _c;
|
|
4560
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1UsersOnboardingStorekeyGet(options);
|
|
4561
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4562
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OnboardingApi.adminV1UsersOnboardingStorekeyGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4563
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4564
|
+
});
|
|
4565
|
+
},
|
|
4497
4566
|
/**
|
|
4498
4567
|
* Upload source data
|
|
4499
4568
|
* @summary Upload source data
|
|
@@ -4510,6 +4579,21 @@ export const OnboardingApiFp = function (configuration) {
|
|
|
4510
4579
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4511
4580
|
});
|
|
4512
4581
|
},
|
|
4582
|
+
/**
|
|
4583
|
+
* Get sample datasets
|
|
4584
|
+
* @summary Get sample datasets
|
|
4585
|
+
* @param {*} [options] Override http request option.
|
|
4586
|
+
* @throws {RequiredError}
|
|
4587
|
+
*/
|
|
4588
|
+
adminV1UsersSampledatasetsGet(options) {
|
|
4589
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
4590
|
+
var _a, _b, _c;
|
|
4591
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1UsersSampledatasetsGet(options);
|
|
4592
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
4593
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OnboardingApi.adminV1UsersSampledatasetsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
4594
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4595
|
+
});
|
|
4596
|
+
},
|
|
4513
4597
|
};
|
|
4514
4598
|
};
|
|
4515
4599
|
/**
|
|
@@ -4577,6 +4661,15 @@ export const OnboardingApiFactory = function (configuration, basePath, axios) {
|
|
|
4577
4661
|
adminV1UsersOnboardingSearchGet(q, options) {
|
|
4578
4662
|
return localVarFp.adminV1UsersOnboardingSearchGet(q, options).then((request) => request(axios, basePath));
|
|
4579
4663
|
},
|
|
4664
|
+
/**
|
|
4665
|
+
* Get store key
|
|
4666
|
+
* @summary Get store key
|
|
4667
|
+
* @param {*} [options] Override http request option.
|
|
4668
|
+
* @throws {RequiredError}
|
|
4669
|
+
*/
|
|
4670
|
+
adminV1UsersOnboardingStorekeyGet(options) {
|
|
4671
|
+
return localVarFp.adminV1UsersOnboardingStorekeyGet(options).then((request) => request(axios, basePath));
|
|
4672
|
+
},
|
|
4580
4673
|
/**
|
|
4581
4674
|
* Upload source data
|
|
4582
4675
|
* @summary Upload source data
|
|
@@ -4587,6 +4680,15 @@ export const OnboardingApiFactory = function (configuration, basePath, axios) {
|
|
|
4587
4680
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options) {
|
|
4588
4681
|
return localVarFp.adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options).then((request) => request(axios, basePath));
|
|
4589
4682
|
},
|
|
4683
|
+
/**
|
|
4684
|
+
* Get sample datasets
|
|
4685
|
+
* @summary Get sample datasets
|
|
4686
|
+
* @param {*} [options] Override http request option.
|
|
4687
|
+
* @throws {RequiredError}
|
|
4688
|
+
*/
|
|
4689
|
+
adminV1UsersSampledatasetsGet(options) {
|
|
4690
|
+
return localVarFp.adminV1UsersSampledatasetsGet(options).then((request) => request(axios, basePath));
|
|
4691
|
+
},
|
|
4590
4692
|
};
|
|
4591
4693
|
};
|
|
4592
4694
|
/**
|
|
@@ -4660,6 +4762,16 @@ export class OnboardingApi extends BaseAPI {
|
|
|
4660
4762
|
adminV1UsersOnboardingSearchGet(q, options) {
|
|
4661
4763
|
return OnboardingApiFp(this.configuration).adminV1UsersOnboardingSearchGet(q, options).then((request) => request(this.axios, this.basePath));
|
|
4662
4764
|
}
|
|
4765
|
+
/**
|
|
4766
|
+
* Get store key
|
|
4767
|
+
* @summary Get store key
|
|
4768
|
+
* @param {*} [options] Override http request option.
|
|
4769
|
+
* @throws {RequiredError}
|
|
4770
|
+
* @memberof OnboardingApi
|
|
4771
|
+
*/
|
|
4772
|
+
adminV1UsersOnboardingStorekeyGet(options) {
|
|
4773
|
+
return OnboardingApiFp(this.configuration).adminV1UsersOnboardingStorekeyGet(options).then((request) => request(this.axios, this.basePath));
|
|
4774
|
+
}
|
|
4663
4775
|
/**
|
|
4664
4776
|
* Upload source data
|
|
4665
4777
|
* @summary Upload source data
|
|
@@ -4671,6 +4783,16 @@ export class OnboardingApi extends BaseAPI {
|
|
|
4671
4783
|
adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options) {
|
|
4672
4784
|
return OnboardingApiFp(this.configuration).adminV1UsersOnboardingUploaddataPost(adminV1UsersOnboardingUploaddataPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4673
4785
|
}
|
|
4786
|
+
/**
|
|
4787
|
+
* Get sample datasets
|
|
4788
|
+
* @summary Get sample datasets
|
|
4789
|
+
* @param {*} [options] Override http request option.
|
|
4790
|
+
* @throws {RequiredError}
|
|
4791
|
+
* @memberof OnboardingApi
|
|
4792
|
+
*/
|
|
4793
|
+
adminV1UsersSampledatasetsGet(options) {
|
|
4794
|
+
return OnboardingApiFp(this.configuration).adminV1UsersSampledatasetsGet(options).then((request) => request(this.axios, this.basePath));
|
|
4795
|
+
}
|
|
4674
4796
|
}
|
|
4675
4797
|
/**
|
|
4676
4798
|
* OrganizationsApi - axios parameter creator
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|