@gooddata/api-client-tiger 11.8.0-alpha.1 → 11.8.0-alpha.3
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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +230 -73
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +191 -10
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +147 -8
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +169 -5
- package/esm/generated/metadata-json-api/api.d.ts +86 -62
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +40 -34
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9842 -9771
- package/esm/generated/scan-json-api/api.d.ts +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +3 -2
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
package/esm/__version.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "11.8.0-alpha.
|
|
1
|
+
export declare const LIB_VERSION = "11.8.0-alpha.3";
|
|
2
2
|
export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
|
|
3
3
|
export declare const LIB_NAME = "@gooddata/api-client-tiger";
|
|
4
4
|
//# sourceMappingURL=__version.d.ts.map
|
package/esm/__version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// (C) 2021 GoodData Corporation
|
|
2
2
|
// DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
|
|
3
|
-
export const LIB_VERSION = "11.8.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "11.8.0-alpha.3";
|
|
4
4
|
export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
|
|
5
5
|
export const LIB_NAME = "@gooddata/api-client-tiger";
|
|
6
6
|
//# sourceMappingURL=__version.js.map
|
|
@@ -2870,6 +2870,20 @@ export declare interface ActionsApiManageWorkspacePermissionsRequest {
|
|
|
2870
2870
|
readonly workspacePermissionAssignment: Array<WorkspacePermissionAssignment>;
|
|
2871
2871
|
}
|
|
2872
2872
|
|
|
2873
|
+
/**
|
|
2874
|
+
* Request parameters for memoryCreatedByUsers operation in ActionsApi.
|
|
2875
|
+
* @export
|
|
2876
|
+
* @interface ActionsApiMemoryCreatedByUsersRequest
|
|
2877
|
+
*/
|
|
2878
|
+
declare interface ActionsApiMemoryCreatedByUsersRequest {
|
|
2879
|
+
/**
|
|
2880
|
+
* Workspace identifier
|
|
2881
|
+
* @type {string}
|
|
2882
|
+
* @memberof ActionsApiMemoryCreatedByUsers
|
|
2883
|
+
*/
|
|
2884
|
+
readonly workspaceId: string;
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2873
2887
|
/**
|
|
2874
2888
|
* Request parameters for metadataSync operation in ActionsApi.
|
|
2875
2889
|
* @export
|
|
@@ -5099,7 +5113,7 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5099
5113
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmValidObjectsResponse, any, {}>>;
|
|
5100
5114
|
/**
|
|
5101
5115
|
* Returns a list of Users who created any object for this workspace
|
|
5102
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5116
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5103
5117
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5104
5118
|
* @param {*} [options] Override http request option.
|
|
5105
5119
|
* @throws {RequiredError}
|
|
@@ -5169,6 +5183,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5169
5183
|
* @memberof ActionsApi
|
|
5170
5184
|
*/
|
|
5171
5185
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<KeyDriversResult, any, {}>>;
|
|
5186
|
+
/**
|
|
5187
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
5188
|
+
* @summary Get AI Memory CreatedBy Users
|
|
5189
|
+
* @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
|
|
5190
|
+
* @param {*} [options] Override http request option.
|
|
5191
|
+
* @throws {RequiredError}
|
|
5192
|
+
* @memberof ActionsApi
|
|
5193
|
+
*/
|
|
5194
|
+
memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmMemoryItemCreatedByUsers, any, {}>>;
|
|
5172
5195
|
/**
|
|
5173
5196
|
* Returns a list of available LLM Endpoints
|
|
5174
5197
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5397,7 +5420,7 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5397
5420
|
computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5398
5421
|
/**
|
|
5399
5422
|
* Returns a list of Users who created any object for this workspace
|
|
5400
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5423
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5401
5424
|
* @param {string} workspaceId Workspace identifier
|
|
5402
5425
|
* @param {*} [options] Override http request option.
|
|
5403
5426
|
* @throws {RequiredError}
|
|
@@ -5473,6 +5496,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5473
5496
|
* @throws {RequiredError}
|
|
5474
5497
|
*/
|
|
5475
5498
|
keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5499
|
+
/**
|
|
5500
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
5501
|
+
* @summary Get AI Memory CreatedBy Users
|
|
5502
|
+
* @param {string} workspaceId Workspace identifier
|
|
5503
|
+
* @param {*} [options] Override http request option.
|
|
5504
|
+
* @throws {RequiredError}
|
|
5505
|
+
*/
|
|
5506
|
+
memoryCreatedByUsers: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5476
5507
|
/**
|
|
5477
5508
|
* Returns a list of available LLM Endpoints
|
|
5478
5509
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5673,7 +5704,7 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5673
5704
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
5674
5705
|
/**
|
|
5675
5706
|
* Returns a list of Users who created any object for this workspace
|
|
5676
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5707
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5677
5708
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5678
5709
|
* @param {*} [options] Override http request option.
|
|
5679
5710
|
* @throws {RequiredError}
|
|
@@ -5735,6 +5766,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5735
5766
|
* @throws {RequiredError}
|
|
5736
5767
|
*/
|
|
5737
5768
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
5769
|
+
/**
|
|
5770
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
5771
|
+
* @summary Get AI Memory CreatedBy Users
|
|
5772
|
+
* @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
|
|
5773
|
+
* @param {*} [options] Override http request option.
|
|
5774
|
+
* @throws {RequiredError}
|
|
5775
|
+
*/
|
|
5776
|
+
memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<AfmMemoryItemCreatedByUsers>;
|
|
5738
5777
|
/**
|
|
5739
5778
|
* Returns a list of available LLM Endpoints
|
|
5740
5779
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5956,7 +5995,7 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5956
5995
|
computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
|
|
5957
5996
|
/**
|
|
5958
5997
|
* Returns a list of Users who created any object for this workspace
|
|
5959
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5998
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5960
5999
|
* @param {string} workspaceId Workspace identifier
|
|
5961
6000
|
* @param {*} [options] Override http request option.
|
|
5962
6001
|
* @throws {RequiredError}
|
|
@@ -6032,6 +6071,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
6032
6071
|
* @throws {RequiredError}
|
|
6033
6072
|
*/
|
|
6034
6073
|
keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
|
|
6074
|
+
/**
|
|
6075
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
6076
|
+
* @summary Get AI Memory CreatedBy Users
|
|
6077
|
+
* @param {string} workspaceId Workspace identifier
|
|
6078
|
+
* @param {*} [options] Override http request option.
|
|
6079
|
+
* @throws {RequiredError}
|
|
6080
|
+
*/
|
|
6081
|
+
memoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmMemoryItemCreatedByUsers>>;
|
|
6035
6082
|
/**
|
|
6036
6083
|
* Returns a list of available LLM Endpoints
|
|
6037
6084
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6283,7 +6330,7 @@ export declare interface AfmActionsApiInterface {
|
|
|
6283
6330
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
6284
6331
|
/**
|
|
6285
6332
|
* Returns a list of Users who created any object for this workspace
|
|
6286
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
6333
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
6287
6334
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
6288
6335
|
* @param {*} [options] Override http request option.
|
|
6289
6336
|
* @throws {RequiredError}
|
|
@@ -6353,6 +6400,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6353
6400
|
* @memberof ActionsApiInterface
|
|
6354
6401
|
*/
|
|
6355
6402
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
6403
|
+
/**
|
|
6404
|
+
* Returns a list of Users who created any memory item for this workspace
|
|
6405
|
+
* @summary Get AI Memory CreatedBy Users
|
|
6406
|
+
* @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
|
|
6407
|
+
* @param {*} [options] Override http request option.
|
|
6408
|
+
* @throws {RequiredError}
|
|
6409
|
+
* @memberof ActionsApiInterface
|
|
6410
|
+
*/
|
|
6411
|
+
memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<AfmMemoryItemCreatedByUsers>;
|
|
6356
6412
|
/**
|
|
6357
6413
|
* Returns a list of available LLM Endpoints
|
|
6358
6414
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6723,6 +6779,35 @@ export declare interface AfmMeasureItem {
|
|
|
6723
6779
|
definition: AfmMeasureDefinition;
|
|
6724
6780
|
}
|
|
6725
6781
|
|
|
6782
|
+
export declare interface AfmMemoryItemCreatedByUsers {
|
|
6783
|
+
/**
|
|
6784
|
+
* Users who created memory item
|
|
6785
|
+
*/
|
|
6786
|
+
users: Array<AfmMemoryItemUser>;
|
|
6787
|
+
/**
|
|
6788
|
+
* Reasoning for error states
|
|
6789
|
+
*/
|
|
6790
|
+
reasoning: string;
|
|
6791
|
+
}
|
|
6792
|
+
|
|
6793
|
+
/**
|
|
6794
|
+
* Users who created memory item
|
|
6795
|
+
*/
|
|
6796
|
+
export declare interface AfmMemoryItemUser {
|
|
6797
|
+
/**
|
|
6798
|
+
* User ID of the user who created memory item
|
|
6799
|
+
*/
|
|
6800
|
+
userId: string;
|
|
6801
|
+
/**
|
|
6802
|
+
* First name of the user who created memory item
|
|
6803
|
+
*/
|
|
6804
|
+
firstname: string;
|
|
6805
|
+
/**
|
|
6806
|
+
* Last name of the user who created memory item
|
|
6807
|
+
*/
|
|
6808
|
+
lastname: string;
|
|
6809
|
+
}
|
|
6810
|
+
|
|
6726
6811
|
/**
|
|
6727
6812
|
* Individual change analysis data item
|
|
6728
6813
|
*/
|
|
@@ -6763,6 +6848,14 @@ export declare interface AfmMetricValueChange {
|
|
|
6763
6848
|
* Whether the change is statistically significant
|
|
6764
6849
|
*/
|
|
6765
6850
|
isSignificantChange: boolean;
|
|
6851
|
+
/**
|
|
6852
|
+
* The overall metric value in the analyzed period
|
|
6853
|
+
*/
|
|
6854
|
+
overallMetricValueInAnalyzedPeriod: number;
|
|
6855
|
+
/**
|
|
6856
|
+
* The overall metric value in the reference period
|
|
6857
|
+
*/
|
|
6858
|
+
overallMetricValueInReferencePeriod: number;
|
|
6766
6859
|
}
|
|
6767
6860
|
|
|
6768
6861
|
/**
|
|
@@ -9263,6 +9356,7 @@ export declare const AttributeHeaderAttributeHeaderValueTypeEnum: {
|
|
|
9263
9356
|
readonly GEO: "GEO";
|
|
9264
9357
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
9265
9358
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
9359
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
9266
9360
|
readonly IMAGE: "IMAGE";
|
|
9267
9361
|
};
|
|
9268
9362
|
|
|
@@ -14046,6 +14140,34 @@ export declare interface CacheUsageData {
|
|
|
14046
14140
|
};
|
|
14047
14141
|
}
|
|
14048
14142
|
|
|
14143
|
+
/**
|
|
14144
|
+
* Change analysis specification.
|
|
14145
|
+
*/
|
|
14146
|
+
declare interface ChangeAnalysisParams {
|
|
14147
|
+
measure: AfmMeasureItem;
|
|
14148
|
+
dateAttribute: AfmAttributeItem;
|
|
14149
|
+
/**
|
|
14150
|
+
* The reference time period
|
|
14151
|
+
*/
|
|
14152
|
+
referencePeriod: string;
|
|
14153
|
+
/**
|
|
14154
|
+
* The analyzed time period
|
|
14155
|
+
*/
|
|
14156
|
+
analyzedPeriod: string;
|
|
14157
|
+
/**
|
|
14158
|
+
* Attributes to analyze for significant changes
|
|
14159
|
+
*/
|
|
14160
|
+
attributes: Array<AfmAttributeItem>;
|
|
14161
|
+
/**
|
|
14162
|
+
* Optional filters to apply
|
|
14163
|
+
*/
|
|
14164
|
+
filters: Array<ChangeAnalysisRequestFiltersInner>;
|
|
14165
|
+
/**
|
|
14166
|
+
* Whether to use smart attribute selection
|
|
14167
|
+
*/
|
|
14168
|
+
useSmartAttributeSelection: boolean;
|
|
14169
|
+
}
|
|
14170
|
+
|
|
14049
14171
|
/**
|
|
14050
14172
|
* Request for change analysis computation
|
|
14051
14173
|
*/
|
|
@@ -14131,6 +14253,7 @@ export declare interface ChatHistoryInteraction {
|
|
|
14131
14253
|
errorResponse?: string;
|
|
14132
14254
|
foundObjects?: FoundObjects;
|
|
14133
14255
|
createdVisualizations?: CreatedVisualizations;
|
|
14256
|
+
changeAnalysisParams?: ChangeAnalysisParams;
|
|
14134
14257
|
/**
|
|
14135
14258
|
* User feedback.
|
|
14136
14259
|
*/
|
|
@@ -14167,6 +14290,10 @@ export declare interface ChatHistoryRequest {
|
|
|
14167
14290
|
* Response state indicating the outcome of the AI interaction.
|
|
14168
14291
|
*/
|
|
14169
14292
|
responseState?: ChatHistoryRequestResponseStateEnum;
|
|
14293
|
+
/**
|
|
14294
|
+
* User text feedback for the interaction.
|
|
14295
|
+
*/
|
|
14296
|
+
userTextFeedback?: string;
|
|
14170
14297
|
}
|
|
14171
14298
|
|
|
14172
14299
|
export declare const ChatHistoryRequestResponseStateEnum: {
|
|
@@ -14252,6 +14379,7 @@ export declare interface ChatResult {
|
|
|
14252
14379
|
errorResponse?: string;
|
|
14253
14380
|
foundObjects?: FoundObjects;
|
|
14254
14381
|
createdVisualizations?: CreatedVisualizations;
|
|
14382
|
+
changeAnalysisParams?: ChangeAnalysisParams;
|
|
14255
14383
|
/**
|
|
14256
14384
|
* Chat History thread suffix appended to ID generated by backend. Enables more chat windows.
|
|
14257
14385
|
*/
|
|
@@ -14339,6 +14467,7 @@ export declare const ColumnOverrideLabelTypeEnum: {
|
|
|
14339
14467
|
readonly GEO: "GEO";
|
|
14340
14468
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
14341
14469
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
14470
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
14342
14471
|
readonly IMAGE: "IMAGE";
|
|
14343
14472
|
};
|
|
14344
14473
|
|
|
@@ -20932,6 +21061,7 @@ export declare interface DeclarativeLabel {
|
|
|
20932
21061
|
* Determines if the label is hidden from AI features.
|
|
20933
21062
|
*/
|
|
20934
21063
|
isHidden?: boolean;
|
|
21064
|
+
geoAreaConfig?: GeoAreaConfig;
|
|
20935
21065
|
}
|
|
20936
21066
|
|
|
20937
21067
|
export declare const DeclarativeLabelSourceColumnDataTypeEnum: {
|
|
@@ -20952,6 +21082,7 @@ export declare const DeclarativeLabelValueTypeEnum: {
|
|
|
20952
21082
|
readonly GEO: "GEO";
|
|
20953
21083
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
20954
21084
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
21085
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
20955
21086
|
readonly IMAGE: "IMAGE";
|
|
20956
21087
|
};
|
|
20957
21088
|
|
|
@@ -21376,6 +21507,7 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
21376
21507
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
21377
21508
|
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
21378
21509
|
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
21510
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
21379
21511
|
};
|
|
21380
21512
|
|
|
21381
21513
|
export declare type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
|
|
@@ -43062,6 +43194,18 @@ export declare interface GenerateLogicalDataModelApiInterface {
|
|
|
43062
43194
|
generateLogicalModel(requestParameters: GenerateLogicalDataModelApiGenerateLogicalModelRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeModel>;
|
|
43063
43195
|
}
|
|
43064
43196
|
|
|
43197
|
+
/**
|
|
43198
|
+
* Configuration specific to geo area labels.
|
|
43199
|
+
*/
|
|
43200
|
+
export declare interface GeoAreaConfig {
|
|
43201
|
+
collection: GeoCollection;
|
|
43202
|
+
}
|
|
43203
|
+
|
|
43204
|
+
export declare interface GeoCollection {
|
|
43205
|
+
id: string;
|
|
43206
|
+
matchingProperty?: string;
|
|
43207
|
+
}
|
|
43208
|
+
|
|
43065
43209
|
declare const GetQualityIssuesResponseStatusEnum: {
|
|
43066
43210
|
readonly RUNNING: "RUNNING";
|
|
43067
43211
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -48784,9 +48928,17 @@ export declare interface JsonApiLabelOutAttributes {
|
|
|
48784
48928
|
sourceColumnDataType?: JsonApiLabelOutAttributesSourceColumnDataTypeEnum;
|
|
48785
48929
|
valueType?: JsonApiLabelOutAttributesValueTypeEnum;
|
|
48786
48930
|
isHidden?: boolean;
|
|
48931
|
+
geoAreaConfig?: JsonApiLabelOutAttributesGeoAreaConfig;
|
|
48787
48932
|
areRelationsValid?: boolean;
|
|
48788
48933
|
}
|
|
48789
48934
|
|
|
48935
|
+
/**
|
|
48936
|
+
* Configuration specific to geo area labels.
|
|
48937
|
+
*/
|
|
48938
|
+
export declare interface JsonApiLabelOutAttributesGeoAreaConfig {
|
|
48939
|
+
collection: GeoCollection;
|
|
48940
|
+
}
|
|
48941
|
+
|
|
48790
48942
|
export declare const JsonApiLabelOutAttributesSourceColumnDataTypeEnum: {
|
|
48791
48943
|
readonly INT: "INT";
|
|
48792
48944
|
readonly STRING: "STRING";
|
|
@@ -48805,6 +48957,7 @@ export declare const JsonApiLabelOutAttributesValueTypeEnum: {
|
|
|
48805
48957
|
readonly GEO: "GEO";
|
|
48806
48958
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
48807
48959
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
48960
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
48808
48961
|
readonly IMAGE: "IMAGE";
|
|
48809
48962
|
};
|
|
48810
48963
|
|
|
@@ -50014,7 +50167,7 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
50014
50167
|
* API identifier of an object
|
|
50015
50168
|
*/
|
|
50016
50169
|
id: string;
|
|
50017
|
-
attributes?:
|
|
50170
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50018
50171
|
}
|
|
50019
50172
|
|
|
50020
50173
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
@@ -50039,54 +50192,9 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
50039
50192
|
* API identifier of an object
|
|
50040
50193
|
*/
|
|
50041
50194
|
id: string;
|
|
50042
|
-
attributes?:
|
|
50043
|
-
}
|
|
50044
|
-
|
|
50045
|
-
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
50046
|
-
/**
|
|
50047
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50048
|
-
*/
|
|
50049
|
-
content?: object;
|
|
50050
|
-
type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
50195
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50051
50196
|
}
|
|
50052
50197
|
|
|
50053
|
-
export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
|
|
50054
|
-
readonly TIMEZONE: "TIMEZONE";
|
|
50055
|
-
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50056
|
-
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50057
|
-
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50058
|
-
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50059
|
-
readonly LOCALE: "LOCALE";
|
|
50060
|
-
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50061
|
-
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50062
|
-
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50063
|
-
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50064
|
-
readonly WEEK_START: "WEEK_START";
|
|
50065
|
-
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50066
|
-
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50067
|
-
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50068
|
-
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50069
|
-
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50070
|
-
readonly ALERT: "ALERT";
|
|
50071
|
-
readonly SEPARATORS: "SEPARATORS";
|
|
50072
|
-
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50073
|
-
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50074
|
-
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50075
|
-
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50076
|
-
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50077
|
-
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
50078
|
-
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50079
|
-
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50080
|
-
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50081
|
-
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50082
|
-
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50083
|
-
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
50084
|
-
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
50085
|
-
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
50086
|
-
};
|
|
50087
|
-
|
|
50088
|
-
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = (typeof JsonApiOrganizationSettingOutAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
|
|
50089
|
-
|
|
50090
50198
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
50091
50199
|
data: JsonApiOrganizationSettingOut;
|
|
50092
50200
|
links?: ObjectLinks;
|
|
@@ -50116,7 +50224,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
50116
50224
|
* API identifier of an object
|
|
50117
50225
|
*/
|
|
50118
50226
|
id: string;
|
|
50119
|
-
attributes?:
|
|
50227
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50120
50228
|
links?: ObjectLinks;
|
|
50121
50229
|
}
|
|
50122
50230
|
|
|
@@ -50138,7 +50246,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
50138
50246
|
* API identifier of an object
|
|
50139
50247
|
*/
|
|
50140
50248
|
id: string;
|
|
50141
|
-
attributes?:
|
|
50249
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50142
50250
|
}
|
|
50143
50251
|
|
|
50144
50252
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -50518,14 +50626,7 @@ export declare interface JsonApiUserGroupOutList {
|
|
|
50518
50626
|
}
|
|
50519
50627
|
|
|
50520
50628
|
export declare interface JsonApiUserGroupOutRelationships {
|
|
50521
|
-
parents?:
|
|
50522
|
-
}
|
|
50523
|
-
|
|
50524
|
-
export declare interface JsonApiUserGroupOutRelationshipsParents {
|
|
50525
|
-
/**
|
|
50526
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50527
|
-
*/
|
|
50528
|
-
data: Array<JsonApiUserGroupLinkage>;
|
|
50629
|
+
parents?: JsonApiUserOutRelationshipsUserGroups;
|
|
50529
50630
|
}
|
|
50530
50631
|
|
|
50531
50632
|
export declare const JsonApiUserGroupOutTypeEnum: {
|
|
@@ -50740,7 +50841,14 @@ export declare interface JsonApiUserOutList {
|
|
|
50740
50841
|
}
|
|
50741
50842
|
|
|
50742
50843
|
export declare interface JsonApiUserOutRelationships {
|
|
50743
|
-
userGroups?:
|
|
50844
|
+
userGroups?: JsonApiUserOutRelationshipsUserGroups;
|
|
50845
|
+
}
|
|
50846
|
+
|
|
50847
|
+
export declare interface JsonApiUserOutRelationshipsUserGroups {
|
|
50848
|
+
/**
|
|
50849
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
50850
|
+
*/
|
|
50851
|
+
data: Array<JsonApiUserGroupLinkage>;
|
|
50744
50852
|
}
|
|
50745
50853
|
|
|
50746
50854
|
export declare const JsonApiUserOutTypeEnum: {
|
|
@@ -50807,9 +50915,55 @@ export declare interface JsonApiUserSettingIn {
|
|
|
50807
50915
|
* API identifier of an object
|
|
50808
50916
|
*/
|
|
50809
50917
|
id: string;
|
|
50810
|
-
attributes?:
|
|
50918
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50919
|
+
}
|
|
50920
|
+
|
|
50921
|
+
export declare interface JsonApiUserSettingInAttributes {
|
|
50922
|
+
/**
|
|
50923
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
50924
|
+
*/
|
|
50925
|
+
content?: object;
|
|
50926
|
+
type?: JsonApiUserSettingInAttributesTypeEnum;
|
|
50811
50927
|
}
|
|
50812
50928
|
|
|
50929
|
+
export declare const JsonApiUserSettingInAttributesTypeEnum: {
|
|
50930
|
+
readonly TIMEZONE: "TIMEZONE";
|
|
50931
|
+
readonly ACTIVE_THEME: "ACTIVE_THEME";
|
|
50932
|
+
readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
|
|
50933
|
+
readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
|
|
50934
|
+
readonly WHITE_LABELING: "WHITE_LABELING";
|
|
50935
|
+
readonly LOCALE: "LOCALE";
|
|
50936
|
+
readonly METADATA_LOCALE: "METADATA_LOCALE";
|
|
50937
|
+
readonly FORMAT_LOCALE: "FORMAT_LOCALE";
|
|
50938
|
+
readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
|
|
50939
|
+
readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
|
|
50940
|
+
readonly WEEK_START: "WEEK_START";
|
|
50941
|
+
readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
|
|
50942
|
+
readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
|
|
50943
|
+
readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
|
|
50944
|
+
readonly OPENAI_CONFIG: "OPENAI_CONFIG";
|
|
50945
|
+
readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
|
|
50946
|
+
readonly ALERT: "ALERT";
|
|
50947
|
+
readonly SEPARATORS: "SEPARATORS";
|
|
50948
|
+
readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
|
|
50949
|
+
readonly JIT_PROVISIONING: "JIT_PROVISIONING";
|
|
50950
|
+
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
50951
|
+
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
50952
|
+
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
50953
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
50954
|
+
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
50955
|
+
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
50956
|
+
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
50957
|
+
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
50958
|
+
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
50959
|
+
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
50960
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
50961
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
50962
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
50963
|
+
};
|
|
50964
|
+
|
|
50965
|
+
export declare type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
|
|
50966
|
+
|
|
50813
50967
|
export declare interface JsonApiUserSettingInDocument {
|
|
50814
50968
|
data: JsonApiUserSettingIn;
|
|
50815
50969
|
}
|
|
@@ -50832,7 +50986,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
50832
50986
|
* API identifier of an object
|
|
50833
50987
|
*/
|
|
50834
50988
|
id: string;
|
|
50835
|
-
attributes?:
|
|
50989
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50836
50990
|
}
|
|
50837
50991
|
|
|
50838
50992
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -50864,7 +51018,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
50864
51018
|
* API identifier of an object
|
|
50865
51019
|
*/
|
|
50866
51020
|
id: string;
|
|
50867
|
-
attributes?:
|
|
51021
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
50868
51022
|
links?: ObjectLinks;
|
|
50869
51023
|
}
|
|
50870
51024
|
|
|
@@ -51743,7 +51897,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
51743
51897
|
* API identifier of an object
|
|
51744
51898
|
*/
|
|
51745
51899
|
id: string;
|
|
51746
|
-
attributes?:
|
|
51900
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51747
51901
|
}
|
|
51748
51902
|
|
|
51749
51903
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -51769,7 +51923,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
51769
51923
|
*/
|
|
51770
51924
|
id: string;
|
|
51771
51925
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51772
|
-
attributes?:
|
|
51926
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51773
51927
|
}
|
|
51774
51928
|
|
|
51775
51929
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -51802,7 +51956,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
51802
51956
|
*/
|
|
51803
51957
|
id: string;
|
|
51804
51958
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
51805
|
-
attributes?:
|
|
51959
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51806
51960
|
links?: ObjectLinks;
|
|
51807
51961
|
}
|
|
51808
51962
|
|
|
@@ -51824,7 +51978,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
51824
51978
|
* API identifier of an object
|
|
51825
51979
|
*/
|
|
51826
51980
|
id: string;
|
|
51827
|
-
attributes?:
|
|
51981
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51828
51982
|
}
|
|
51829
51983
|
|
|
51830
51984
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -51849,7 +52003,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
51849
52003
|
* API identifier of an object
|
|
51850
52004
|
*/
|
|
51851
52005
|
id?: string;
|
|
51852
|
-
attributes?:
|
|
52006
|
+
attributes?: JsonApiUserSettingInAttributes;
|
|
51853
52007
|
}
|
|
51854
52008
|
|
|
51855
52009
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -52353,6 +52507,7 @@ export declare const KeyDriversDimensionValueTypeEnum: {
|
|
|
52353
52507
|
readonly GEO: "GEO";
|
|
52354
52508
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
52355
52509
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
52510
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
52356
52511
|
readonly IMAGE: "IMAGE";
|
|
52357
52512
|
};
|
|
52358
52513
|
|
|
@@ -68549,6 +68704,7 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
68549
68704
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
68550
68705
|
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
68551
68706
|
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
68707
|
+
readonly DATA_LOCALE: "DATA_LOCALE";
|
|
68552
68708
|
};
|
|
68553
68709
|
|
|
68554
68710
|
export declare type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
|
|
@@ -68697,6 +68853,7 @@ export declare const RouteResultUseCaseEnum: {
|
|
|
68697
68853
|
readonly CREATE_VISUALIZATION: "CREATE_VISUALIZATION";
|
|
68698
68854
|
readonly EXTEND_VISUALIZATION: "EXTEND_VISUALIZATION";
|
|
68699
68855
|
readonly HOWTO: "HOWTO";
|
|
68856
|
+
readonly CHANGE_ANALYSIS: "CHANGE_ANALYSIS";
|
|
68700
68857
|
};
|
|
68701
68858
|
|
|
68702
68859
|
export declare type RouteResultUseCaseEnum = (typeof RouteResultUseCaseEnum)[keyof typeof RouteResultUseCaseEnum];
|
|
@@ -68974,7 +69131,7 @@ export declare interface ScanModelDeclarativeColumn {
|
|
|
68974
69131
|
*/
|
|
68975
69132
|
referencedTableColumn?: string;
|
|
68976
69133
|
/**
|
|
68977
|
-
* Column description
|
|
69134
|
+
* Column description/comment from database
|
|
68978
69135
|
*/
|
|
68979
69136
|
description?: string;
|
|
68980
69137
|
}
|
|
@@ -70346,7 +70503,7 @@ export declare const tigerExportClientFactory: (axios: AxiosInstance) => Actions
|
|
|
70346
70503
|
/**
|
|
70347
70504
|
* Tiger GenAI client factory
|
|
70348
70505
|
*/
|
|
70349
|
-
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy">;
|
|
70506
|
+
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy" | "memoryCreatedByUsers">;
|
|
70350
70507
|
|
|
70351
70508
|
export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeLabelElementsPost">;
|
|
70352
70509
|
|
package/esm/genAI.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { ActionsApiInterface } from "./generated/afm-rest-api/index.js";
|
|
|
3
3
|
/**
|
|
4
4
|
* Tiger GenAI client factory
|
|
5
5
|
*/
|
|
6
|
-
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<ActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy">;
|
|
6
|
+
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<ActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy" | "memoryCreatedByUsers">;
|
|
7
7
|
//# sourceMappingURL=genAI.d.ts.map
|
package/esm/genAI.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"genAI.d.ts","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,EAAc,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAChC,OAAO,aAAa,KACrB,IAAI,CACH,mBAAmB,EACjB,UAAU,GACV,QAAQ,GACR,cAAc,GACd,eAAe,GACf,qBAAqB,GACrB,yBAAyB,GACzB,kBAAkB,GAClB,mCAAmC,GACnC,iCAAiC,GACjC,MAAM,GACN,WAAW,
|
|
1
|
+
{"version":3,"file":"genAI.d.ts","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,EAAc,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAChC,OAAO,aAAa,KACrB,IAAI,CACH,mBAAmB,EACjB,UAAU,GACV,QAAQ,GACR,cAAc,GACd,eAAe,GACf,qBAAqB,GACrB,yBAAyB,GACzB,kBAAkB,GAClB,mCAAmC,GACnC,iCAAiC,GACjC,MAAM,GACN,WAAW,GACX,sBAAsB,CACa,CAAC"}
|
package/esm/genAI.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"genAI.js","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAIrC,OAAO,EAAE,UAAU,EAAuB,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACnC,KAAoB,
|
|
1
|
+
{"version":3,"file":"genAI.js","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAIrC,OAAO,EAAE,UAAU,EAAuB,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACnC,KAAoB,EAetB,EAAE,CAAC,IAAI,UAAU,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC"}
|