@seekora-ai/admin-api 1.1.42 → 1.1.43
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 +12 -2
- package/api.ts +730 -0
- package/dist/api.d.ts +458 -0
- package/dist/api.js +538 -1
- package/dist/esm/api.d.ts +458 -0
- package/dist/esm/api.js +524 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.43.tgz +0 -0
- package/seekora-ai-admin-api-1.1.42.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -10455,6 +10455,56 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
|
|
|
10455
10455
|
*/
|
|
10456
10456
|
'status'?: number;
|
|
10457
10457
|
}
|
|
10458
|
+
/**
|
|
10459
|
+
*
|
|
10460
|
+
* @export
|
|
10461
|
+
* @interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse
|
|
10462
|
+
*/
|
|
10463
|
+
export interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse {
|
|
10464
|
+
/**
|
|
10465
|
+
*
|
|
10466
|
+
* @type {DataTypesPublicCreateStoreResponse}
|
|
10467
|
+
* @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
|
|
10468
|
+
*/
|
|
10469
|
+
'data'?: DataTypesPublicCreateStoreResponse;
|
|
10470
|
+
/**
|
|
10471
|
+
*
|
|
10472
|
+
* @type {string}
|
|
10473
|
+
* @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
|
|
10474
|
+
*/
|
|
10475
|
+
'message'?: string;
|
|
10476
|
+
/**
|
|
10477
|
+
*
|
|
10478
|
+
* @type {number}
|
|
10479
|
+
* @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
|
|
10480
|
+
*/
|
|
10481
|
+
'status'?: number;
|
|
10482
|
+
}
|
|
10483
|
+
/**
|
|
10484
|
+
*
|
|
10485
|
+
* @export
|
|
10486
|
+
* @interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse
|
|
10487
|
+
*/
|
|
10488
|
+
export interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse {
|
|
10489
|
+
/**
|
|
10490
|
+
*
|
|
10491
|
+
* @type {DataTypesPublicStoreInfoResponse}
|
|
10492
|
+
* @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
|
|
10493
|
+
*/
|
|
10494
|
+
'data'?: DataTypesPublicStoreInfoResponse;
|
|
10495
|
+
/**
|
|
10496
|
+
*
|
|
10497
|
+
* @type {string}
|
|
10498
|
+
* @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
|
|
10499
|
+
*/
|
|
10500
|
+
'message'?: string;
|
|
10501
|
+
/**
|
|
10502
|
+
*
|
|
10503
|
+
* @type {number}
|
|
10504
|
+
* @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
|
|
10505
|
+
*/
|
|
10506
|
+
'status'?: number;
|
|
10507
|
+
}
|
|
10458
10508
|
/**
|
|
10459
10509
|
*
|
|
10460
10510
|
* @export
|
|
@@ -16658,6 +16708,88 @@ export interface DataTypesProfileResponseWrapper {
|
|
|
16658
16708
|
*/
|
|
16659
16709
|
'status'?: number;
|
|
16660
16710
|
}
|
|
16711
|
+
/**
|
|
16712
|
+
*
|
|
16713
|
+
* @export
|
|
16714
|
+
* @interface DataTypesPublicCreateStoreRequest
|
|
16715
|
+
*/
|
|
16716
|
+
export interface DataTypesPublicCreateStoreRequest {
|
|
16717
|
+
/**
|
|
16718
|
+
* Optional: array of documents to import immediately
|
|
16719
|
+
* @type {Array<{ [key: string]: any; }>}
|
|
16720
|
+
* @memberof DataTypesPublicCreateStoreRequest
|
|
16721
|
+
*/
|
|
16722
|
+
'dataset'?: Array<{
|
|
16723
|
+
[key: string]: any;
|
|
16724
|
+
}>;
|
|
16725
|
+
/**
|
|
16726
|
+
*
|
|
16727
|
+
* @type {string}
|
|
16728
|
+
* @memberof DataTypesPublicCreateStoreRequest
|
|
16729
|
+
*/
|
|
16730
|
+
'industry'?: string;
|
|
16731
|
+
/**
|
|
16732
|
+
*
|
|
16733
|
+
* @type {string}
|
|
16734
|
+
* @memberof DataTypesPublicCreateStoreRequest
|
|
16735
|
+
*/
|
|
16736
|
+
'location'?: string;
|
|
16737
|
+
/**
|
|
16738
|
+
*
|
|
16739
|
+
* @type {string}
|
|
16740
|
+
* @memberof DataTypesPublicCreateStoreRequest
|
|
16741
|
+
*/
|
|
16742
|
+
'storeName': string;
|
|
16743
|
+
}
|
|
16744
|
+
/**
|
|
16745
|
+
*
|
|
16746
|
+
* @export
|
|
16747
|
+
* @interface DataTypesPublicCreateStoreResponse
|
|
16748
|
+
*/
|
|
16749
|
+
export interface DataTypesPublicCreateStoreResponse {
|
|
16750
|
+
/**
|
|
16751
|
+
* Job ID if dataset was imported
|
|
16752
|
+
* @type {string}
|
|
16753
|
+
* @memberof DataTypesPublicCreateStoreResponse
|
|
16754
|
+
*/
|
|
16755
|
+
'importJobId'?: string;
|
|
16756
|
+
/**
|
|
16757
|
+
* Number of documents imported
|
|
16758
|
+
* @type {number}
|
|
16759
|
+
* @memberof DataTypesPublicCreateStoreResponse
|
|
16760
|
+
*/
|
|
16761
|
+
'importedCount'?: number;
|
|
16762
|
+
/**
|
|
16763
|
+
*
|
|
16764
|
+
* @type {number}
|
|
16765
|
+
* @memberof DataTypesPublicCreateStoreResponse
|
|
16766
|
+
*/
|
|
16767
|
+
'storeId'?: number;
|
|
16768
|
+
/**
|
|
16769
|
+
*
|
|
16770
|
+
* @type {string}
|
|
16771
|
+
* @memberof DataTypesPublicCreateStoreResponse
|
|
16772
|
+
*/
|
|
16773
|
+
'storeName'?: string;
|
|
16774
|
+
/**
|
|
16775
|
+
*
|
|
16776
|
+
* @type {string}
|
|
16777
|
+
* @memberof DataTypesPublicCreateStoreResponse
|
|
16778
|
+
*/
|
|
16779
|
+
'xStoreId'?: string;
|
|
16780
|
+
/**
|
|
16781
|
+
*
|
|
16782
|
+
* @type {string}
|
|
16783
|
+
* @memberof DataTypesPublicCreateStoreResponse
|
|
16784
|
+
*/
|
|
16785
|
+
'xStoreSecret'?: string;
|
|
16786
|
+
/**
|
|
16787
|
+
*
|
|
16788
|
+
* @type {string}
|
|
16789
|
+
* @memberof DataTypesPublicCreateStoreResponse
|
|
16790
|
+
*/
|
|
16791
|
+
'xStoreWriteSecret'?: string;
|
|
16792
|
+
}
|
|
16661
16793
|
/**
|
|
16662
16794
|
*
|
|
16663
16795
|
* @export
|
|
@@ -16743,6 +16875,49 @@ export interface DataTypesPublicSearchRequest {
|
|
|
16743
16875
|
*/
|
|
16744
16876
|
'widget_mode'?: boolean;
|
|
16745
16877
|
}
|
|
16878
|
+
/**
|
|
16879
|
+
*
|
|
16880
|
+
* @export
|
|
16881
|
+
* @interface DataTypesPublicStoreInfoResponse
|
|
16882
|
+
*/
|
|
16883
|
+
export interface DataTypesPublicStoreInfoResponse {
|
|
16884
|
+
/**
|
|
16885
|
+
*
|
|
16886
|
+
* @type {string}
|
|
16887
|
+
* @memberof DataTypesPublicStoreInfoResponse
|
|
16888
|
+
*/
|
|
16889
|
+
'createdAt'?: string;
|
|
16890
|
+
/**
|
|
16891
|
+
*
|
|
16892
|
+
* @type {boolean}
|
|
16893
|
+
* @memberof DataTypesPublicStoreInfoResponse
|
|
16894
|
+
*/
|
|
16895
|
+
'isActive'?: boolean;
|
|
16896
|
+
/**
|
|
16897
|
+
*
|
|
16898
|
+
* @type {string}
|
|
16899
|
+
* @memberof DataTypesPublicStoreInfoResponse
|
|
16900
|
+
*/
|
|
16901
|
+
'location'?: string;
|
|
16902
|
+
/**
|
|
16903
|
+
*
|
|
16904
|
+
* @type {number}
|
|
16905
|
+
* @memberof DataTypesPublicStoreInfoResponse
|
|
16906
|
+
*/
|
|
16907
|
+
'storeId'?: number;
|
|
16908
|
+
/**
|
|
16909
|
+
*
|
|
16910
|
+
* @type {string}
|
|
16911
|
+
* @memberof DataTypesPublicStoreInfoResponse
|
|
16912
|
+
*/
|
|
16913
|
+
'storeName'?: string;
|
|
16914
|
+
/**
|
|
16915
|
+
*
|
|
16916
|
+
* @type {string}
|
|
16917
|
+
* @memberof DataTypesPublicStoreInfoResponse
|
|
16918
|
+
*/
|
|
16919
|
+
'xStoreId'?: string;
|
|
16920
|
+
}
|
|
16746
16921
|
/**
|
|
16747
16922
|
*
|
|
16748
16923
|
* @export
|
|
@@ -41682,6 +41857,289 @@ export declare class RolesApi extends BaseAPI {
|
|
|
41682
41857
|
*/
|
|
41683
41858
|
adminRolesRoleIdPermissionsPut(roleId: number, dataTypesUpdateRolePermissionsRequest: DataTypesUpdateRolePermissionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
41684
41859
|
}
|
|
41860
|
+
/**
|
|
41861
|
+
* SDKStoreConfigApi - axios parameter creator
|
|
41862
|
+
* @export
|
|
41863
|
+
*/
|
|
41864
|
+
export declare const SDKStoreConfigApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
41865
|
+
/**
|
|
41866
|
+
* Retrieves the store configuration using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
|
|
41867
|
+
* @summary Get Store Config (Public SDK API)
|
|
41868
|
+
* @param {string} xStoreid Store ID
|
|
41869
|
+
* @param {string} xStoresecret Store Read Secret (for read operations)
|
|
41870
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41871
|
+
* @param {*} [options] Override http request option.
|
|
41872
|
+
* @throws {RequiredError}
|
|
41873
|
+
*/
|
|
41874
|
+
apiV1StoresXStoreIDConfigGet: (xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41875
|
+
/**
|
|
41876
|
+
* Updates the store configuration using x-store ID and write secret. Supports partial updates. This is a public API for SDK integration. Requires write secret for security.
|
|
41877
|
+
* @summary Update Store Config (Public SDK API)
|
|
41878
|
+
* @param {string} xStoreid Store ID
|
|
41879
|
+
* @param {string} xStoreWriteSecret Store Write Secret (required for write operations)
|
|
41880
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41881
|
+
* @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
|
|
41882
|
+
* @param {*} [options] Override http request option.
|
|
41883
|
+
* @throws {RequiredError}
|
|
41884
|
+
*/
|
|
41885
|
+
apiV1StoresXStoreIDConfigPut: (xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41886
|
+
/**
|
|
41887
|
+
* Get metadata about all configurable fields for store configuration. This is a public API for SDK integration.
|
|
41888
|
+
* @summary Get Store Config Schema (Public SDK API)
|
|
41889
|
+
* @param {string} xStoreid Store ID
|
|
41890
|
+
* @param {string} xStoresecret Store Secret
|
|
41891
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41892
|
+
* @param {*} [options] Override http request option.
|
|
41893
|
+
* @throws {RequiredError}
|
|
41894
|
+
*/
|
|
41895
|
+
apiV1StoresXStoreIDConfigSchemaGet: (xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41896
|
+
};
|
|
41897
|
+
/**
|
|
41898
|
+
* SDKStoreConfigApi - functional programming interface
|
|
41899
|
+
* @export
|
|
41900
|
+
*/
|
|
41901
|
+
export declare const SDKStoreConfigApiFp: (configuration?: Configuration) => {
|
|
41902
|
+
/**
|
|
41903
|
+
* Retrieves the store configuration using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
|
|
41904
|
+
* @summary Get Store Config (Public SDK API)
|
|
41905
|
+
* @param {string} xStoreid Store ID
|
|
41906
|
+
* @param {string} xStoresecret Store Read Secret (for read operations)
|
|
41907
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41908
|
+
* @param {*} [options] Override http request option.
|
|
41909
|
+
* @throws {RequiredError}
|
|
41910
|
+
*/
|
|
41911
|
+
apiV1StoresXStoreIDConfigGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>>;
|
|
41912
|
+
/**
|
|
41913
|
+
* Updates the store configuration using x-store ID and write secret. Supports partial updates. This is a public API for SDK integration. Requires write secret for security.
|
|
41914
|
+
* @summary Update Store Config (Public SDK API)
|
|
41915
|
+
* @param {string} xStoreid Store ID
|
|
41916
|
+
* @param {string} xStoreWriteSecret Store Write Secret (required for write operations)
|
|
41917
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41918
|
+
* @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
|
|
41919
|
+
* @param {*} [options] Override http request option.
|
|
41920
|
+
* @throws {RequiredError}
|
|
41921
|
+
*/
|
|
41922
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>>;
|
|
41923
|
+
/**
|
|
41924
|
+
* Get metadata about all configurable fields for store configuration. This is a public API for SDK integration.
|
|
41925
|
+
* @summary Get Store Config Schema (Public SDK API)
|
|
41926
|
+
* @param {string} xStoreid Store ID
|
|
41927
|
+
* @param {string} xStoresecret Store Secret
|
|
41928
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41929
|
+
* @param {*} [options] Override http request option.
|
|
41930
|
+
* @throws {RequiredError}
|
|
41931
|
+
*/
|
|
41932
|
+
apiV1StoresXStoreIDConfigSchemaGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesConfigurationSchemaResponseWrapper>>;
|
|
41933
|
+
};
|
|
41934
|
+
/**
|
|
41935
|
+
* SDKStoreConfigApi - factory interface
|
|
41936
|
+
* @export
|
|
41937
|
+
*/
|
|
41938
|
+
export declare const SDKStoreConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
41939
|
+
/**
|
|
41940
|
+
* Retrieves the store configuration using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
|
|
41941
|
+
* @summary Get Store Config (Public SDK API)
|
|
41942
|
+
* @param {string} xStoreid Store ID
|
|
41943
|
+
* @param {string} xStoresecret Store Read Secret (for read operations)
|
|
41944
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41945
|
+
* @param {*} [options] Override http request option.
|
|
41946
|
+
* @throws {RequiredError}
|
|
41947
|
+
*/
|
|
41948
|
+
apiV1StoresXStoreIDConfigGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse>;
|
|
41949
|
+
/**
|
|
41950
|
+
* Updates the store configuration using x-store ID and write secret. Supports partial updates. This is a public API for SDK integration. Requires write secret for security.
|
|
41951
|
+
* @summary Update Store Config (Public SDK API)
|
|
41952
|
+
* @param {string} xStoreid Store ID
|
|
41953
|
+
* @param {string} xStoreWriteSecret Store Write Secret (required for write operations)
|
|
41954
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41955
|
+
* @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
|
|
41956
|
+
* @param {*} [options] Override http request option.
|
|
41957
|
+
* @throws {RequiredError}
|
|
41958
|
+
*/
|
|
41959
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper>;
|
|
41960
|
+
/**
|
|
41961
|
+
* Get metadata about all configurable fields for store configuration. This is a public API for SDK integration.
|
|
41962
|
+
* @summary Get Store Config Schema (Public SDK API)
|
|
41963
|
+
* @param {string} xStoreid Store ID
|
|
41964
|
+
* @param {string} xStoresecret Store Secret
|
|
41965
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41966
|
+
* @param {*} [options] Override http request option.
|
|
41967
|
+
* @throws {RequiredError}
|
|
41968
|
+
*/
|
|
41969
|
+
apiV1StoresXStoreIDConfigSchemaGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesConfigurationSchemaResponseWrapper>;
|
|
41970
|
+
};
|
|
41971
|
+
/**
|
|
41972
|
+
* SDKStoreConfigApi - object-oriented interface
|
|
41973
|
+
* @export
|
|
41974
|
+
* @class SDKStoreConfigApi
|
|
41975
|
+
* @extends {BaseAPI}
|
|
41976
|
+
*/
|
|
41977
|
+
export declare class SDKStoreConfigApi extends BaseAPI {
|
|
41978
|
+
/**
|
|
41979
|
+
* Retrieves the store configuration using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
|
|
41980
|
+
* @summary Get Store Config (Public SDK API)
|
|
41981
|
+
* @param {string} xStoreid Store ID
|
|
41982
|
+
* @param {string} xStoresecret Store Read Secret (for read operations)
|
|
41983
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41984
|
+
* @param {*} [options] Override http request option.
|
|
41985
|
+
* @throws {RequiredError}
|
|
41986
|
+
* @memberof SDKStoreConfigApi
|
|
41987
|
+
*/
|
|
41988
|
+
apiV1StoresXStoreIDConfigGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse, any, {}>>;
|
|
41989
|
+
/**
|
|
41990
|
+
* Updates the store configuration using x-store ID and write secret. Supports partial updates. This is a public API for SDK integration. Requires write secret for security.
|
|
41991
|
+
* @summary Update Store Config (Public SDK API)
|
|
41992
|
+
* @param {string} xStoreid Store ID
|
|
41993
|
+
* @param {string} xStoreWriteSecret Store Write Secret (required for write operations)
|
|
41994
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
41995
|
+
* @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
|
|
41996
|
+
* @param {*} [options] Override http request option.
|
|
41997
|
+
* @throws {RequiredError}
|
|
41998
|
+
* @memberof SDKStoreConfigApi
|
|
41999
|
+
*/
|
|
42000
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
42001
|
+
/**
|
|
42002
|
+
* Get metadata about all configurable fields for store configuration. This is a public API for SDK integration.
|
|
42003
|
+
* @summary Get Store Config Schema (Public SDK API)
|
|
42004
|
+
* @param {string} xStoreid Store ID
|
|
42005
|
+
* @param {string} xStoresecret Store Secret
|
|
42006
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
42007
|
+
* @param {*} [options] Override http request option.
|
|
42008
|
+
* @throws {RequiredError}
|
|
42009
|
+
* @memberof SDKStoreConfigApi
|
|
42010
|
+
*/
|
|
42011
|
+
apiV1StoresXStoreIDConfigSchemaGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesConfigurationSchemaResponseWrapper, any, {}>>;
|
|
42012
|
+
}
|
|
42013
|
+
/**
|
|
42014
|
+
* SDKStoreCreationApi - axios parameter creator
|
|
42015
|
+
* @export
|
|
42016
|
+
*/
|
|
42017
|
+
export declare const SDKStoreCreationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
42018
|
+
/**
|
|
42019
|
+
* Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
|
|
42020
|
+
* @summary Create Store (Public SDK API)
|
|
42021
|
+
* @param {string} authorization Bearer JWT Token
|
|
42022
|
+
* @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
|
|
42023
|
+
* @param {*} [options] Override http request option.
|
|
42024
|
+
* @throws {RequiredError}
|
|
42025
|
+
*/
|
|
42026
|
+
apiV1StoresPost: (authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42027
|
+
};
|
|
42028
|
+
/**
|
|
42029
|
+
* SDKStoreCreationApi - functional programming interface
|
|
42030
|
+
* @export
|
|
42031
|
+
*/
|
|
42032
|
+
export declare const SDKStoreCreationApiFp: (configuration?: Configuration) => {
|
|
42033
|
+
/**
|
|
42034
|
+
* Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
|
|
42035
|
+
* @summary Create Store (Public SDK API)
|
|
42036
|
+
* @param {string} authorization Bearer JWT Token
|
|
42037
|
+
* @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
|
|
42038
|
+
* @param {*} [options] Override http request option.
|
|
42039
|
+
* @throws {RequiredError}
|
|
42040
|
+
*/
|
|
42041
|
+
apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPublicCreateStoreResponse>>;
|
|
42042
|
+
};
|
|
42043
|
+
/**
|
|
42044
|
+
* SDKStoreCreationApi - factory interface
|
|
42045
|
+
* @export
|
|
42046
|
+
*/
|
|
42047
|
+
export declare const SDKStoreCreationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
42048
|
+
/**
|
|
42049
|
+
* Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
|
|
42050
|
+
* @summary Create Store (Public SDK API)
|
|
42051
|
+
* @param {string} authorization Bearer JWT Token
|
|
42052
|
+
* @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
|
|
42053
|
+
* @param {*} [options] Override http request option.
|
|
42054
|
+
* @throws {RequiredError}
|
|
42055
|
+
*/
|
|
42056
|
+
apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPublicCreateStoreResponse>;
|
|
42057
|
+
};
|
|
42058
|
+
/**
|
|
42059
|
+
* SDKStoreCreationApi - object-oriented interface
|
|
42060
|
+
* @export
|
|
42061
|
+
* @class SDKStoreCreationApi
|
|
42062
|
+
* @extends {BaseAPI}
|
|
42063
|
+
*/
|
|
42064
|
+
export declare class SDKStoreCreationApi extends BaseAPI {
|
|
42065
|
+
/**
|
|
42066
|
+
* Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
|
|
42067
|
+
* @summary Create Store (Public SDK API)
|
|
42068
|
+
* @param {string} authorization Bearer JWT Token
|
|
42069
|
+
* @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
|
|
42070
|
+
* @param {*} [options] Override http request option.
|
|
42071
|
+
* @throws {RequiredError}
|
|
42072
|
+
* @memberof SDKStoreCreationApi
|
|
42073
|
+
*/
|
|
42074
|
+
apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPublicCreateStoreResponse, any, {}>>;
|
|
42075
|
+
}
|
|
42076
|
+
/**
|
|
42077
|
+
* SDKStoreInfoApi - axios parameter creator
|
|
42078
|
+
* @export
|
|
42079
|
+
*/
|
|
42080
|
+
export declare const SDKStoreInfoApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
42081
|
+
/**
|
|
42082
|
+
* Retrieves basic store information (name, location, status) using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
|
|
42083
|
+
* @summary Get Store Info (Public SDK API)
|
|
42084
|
+
* @param {string} xStoreid Store ID
|
|
42085
|
+
* @param {string} xStoresecret Store Read Secret (for read operations)
|
|
42086
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
42087
|
+
* @param {*} [options] Override http request option.
|
|
42088
|
+
* @throws {RequiredError}
|
|
42089
|
+
*/
|
|
42090
|
+
apiV1StoresXStoreIDGet: (xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42091
|
+
};
|
|
42092
|
+
/**
|
|
42093
|
+
* SDKStoreInfoApi - functional programming interface
|
|
42094
|
+
* @export
|
|
42095
|
+
*/
|
|
42096
|
+
export declare const SDKStoreInfoApiFp: (configuration?: Configuration) => {
|
|
42097
|
+
/**
|
|
42098
|
+
* Retrieves basic store information (name, location, status) using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
|
|
42099
|
+
* @summary Get Store Info (Public SDK API)
|
|
42100
|
+
* @param {string} xStoreid Store ID
|
|
42101
|
+
* @param {string} xStoresecret Store Read Secret (for read operations)
|
|
42102
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
42103
|
+
* @param {*} [options] Override http request option.
|
|
42104
|
+
* @throws {RequiredError}
|
|
42105
|
+
*/
|
|
42106
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPublicStoreInfoResponse>>;
|
|
42107
|
+
};
|
|
42108
|
+
/**
|
|
42109
|
+
* SDKStoreInfoApi - factory interface
|
|
42110
|
+
* @export
|
|
42111
|
+
*/
|
|
42112
|
+
export declare const SDKStoreInfoApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
42113
|
+
/**
|
|
42114
|
+
* Retrieves basic store information (name, location, status) using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
|
|
42115
|
+
* @summary Get Store Info (Public SDK API)
|
|
42116
|
+
* @param {string} xStoreid Store ID
|
|
42117
|
+
* @param {string} xStoresecret Store Read Secret (for read operations)
|
|
42118
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
42119
|
+
* @param {*} [options] Override http request option.
|
|
42120
|
+
* @throws {RequiredError}
|
|
42121
|
+
*/
|
|
42122
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPublicStoreInfoResponse>;
|
|
42123
|
+
};
|
|
42124
|
+
/**
|
|
42125
|
+
* SDKStoreInfoApi - object-oriented interface
|
|
42126
|
+
* @export
|
|
42127
|
+
* @class SDKStoreInfoApi
|
|
42128
|
+
* @extends {BaseAPI}
|
|
42129
|
+
*/
|
|
42130
|
+
export declare class SDKStoreInfoApi extends BaseAPI {
|
|
42131
|
+
/**
|
|
42132
|
+
* Retrieves basic store information (name, location, status) using x-store ID and read secret. This is a public API for SDK integration. Uses read secret (x-storesecret).
|
|
42133
|
+
* @summary Get Store Info (Public SDK API)
|
|
42134
|
+
* @param {string} xStoreid Store ID
|
|
42135
|
+
* @param {string} xStoresecret Store Read Secret (for read operations)
|
|
42136
|
+
* @param {string} xStoreID X-Store ID (must match x-storeid header)
|
|
42137
|
+
* @param {*} [options] Override http request option.
|
|
42138
|
+
* @throws {RequiredError}
|
|
42139
|
+
* @memberof SDKStoreInfoApi
|
|
42140
|
+
*/
|
|
42141
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPublicStoreInfoResponse, any, {}>>;
|
|
42142
|
+
}
|
|
41685
42143
|
/**
|
|
41686
42144
|
* SearchApi - axios parameter creator
|
|
41687
42145
|
* @export
|