@gooddata/api-client-tiger 11.13.0-alpha.5 → 11.13.0

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.
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.13.0-alpha.5";
1
+ export declare const LIB_VERSION = "11.13.0";
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
@@ -1 +1 @@
1
- {"version":3,"file":"__version.d.ts","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,oBAAoB,CAAC;AAE7C,eAAO,MAAM,eAAe,kDAAkD,CAAC;AAE/E,eAAO,MAAM,QAAQ,+BAA+B,CAAC"}
1
+ {"version":3,"file":"__version.d.ts","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,YAAY,CAAC;AAErC,eAAO,MAAM,eAAe,kDAAkD,CAAC;AAE/E,eAAO,MAAM,QAAQ,+BAA+B,CAAC"}
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.13.0-alpha.5";
3
+ export const LIB_VERSION = "11.13.0";
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
@@ -1 +1 @@
1
- {"version":3,"file":"__version.js","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,6DAA6D;AAE7D,MAAM,CAAC,MAAM,WAAW,GAAG,iBAAiB,CAAC;AAE7C,MAAM,CAAC,MAAM,eAAe,GAAG,+CAA+C,CAAC;AAE/E,MAAM,CAAC,MAAM,QAAQ,GAAG,4BAA4B,CAAC"}
1
+ {"version":3,"file":"__version.js","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,6DAA6D;AAE7D,MAAM,CAAC,MAAM,WAAW,GAAG,SAAS,CAAC;AAErC,MAAM,CAAC,MAAM,eAAe,GAAG,+CAA+C,CAAC;AAE/E,MAAM,CAAC,MAAM,QAAQ,GAAG,4BAA4B,CAAC"}
@@ -2776,6 +2776,64 @@ export declare interface ActionsApiMetadataSyncRequest {
2776
2776
  readonly workspaceId: string;
2777
2777
  }
2778
2778
 
2779
+ /**
2780
+ * Request parameters for outlierDetection operation in ActionsApi.
2781
+ * @export
2782
+ * @interface ActionsApiOutlierDetectionRequest
2783
+ */
2784
+ declare interface ActionsApiOutlierDetectionRequest {
2785
+ /**
2786
+ * Workspace identifier
2787
+ * @type {string}
2788
+ * @memberof ActionsApiOutlierDetection
2789
+ */
2790
+ readonly workspaceId: string;
2791
+ /**
2792
+ *
2793
+ * @type {OutlierDetectionRequest}
2794
+ * @memberof ActionsApiOutlierDetection
2795
+ */
2796
+ readonly outlierDetectionRequest: OutlierDetectionRequest;
2797
+ /**
2798
+ * Ignore all caches during execution of current request.
2799
+ * @type {boolean}
2800
+ * @memberof ActionsApiOutlierDetection
2801
+ */
2802
+ readonly skipCache?: boolean;
2803
+ }
2804
+
2805
+ /**
2806
+ * Request parameters for outlierDetectionResult operation in ActionsApi.
2807
+ * @export
2808
+ * @interface ActionsApiOutlierDetectionResultRequest
2809
+ */
2810
+ declare interface ActionsApiOutlierDetectionResultRequest {
2811
+ /**
2812
+ * Workspace identifier
2813
+ * @type {string}
2814
+ * @memberof ActionsApiOutlierDetectionResult
2815
+ */
2816
+ readonly workspaceId: string;
2817
+ /**
2818
+ * Result ID
2819
+ * @type {string}
2820
+ * @memberof ActionsApiOutlierDetectionResult
2821
+ */
2822
+ readonly resultId: string;
2823
+ /**
2824
+ *
2825
+ * @type {number}
2826
+ * @memberof ActionsApiOutlierDetectionResult
2827
+ */
2828
+ readonly offset?: number;
2829
+ /**
2830
+ *
2831
+ * @type {number}
2832
+ * @memberof ActionsApiOutlierDetectionResult
2833
+ */
2834
+ readonly limit?: number;
2835
+ }
2836
+
2779
2837
  /**
2780
2838
  * Request parameters for overriddenChildEntities operation in ActionsApi.
2781
2839
  * @export
@@ -4801,6 +4859,24 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
4801
4859
  * @memberof ActionsApi
4802
4860
  */
4803
4861
  memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<AfmMemoryItemCreatedByUsers>;
4862
+ /**
4863
+ * (BETA) Computes outlier detection for the provided execution definition.
4864
+ * @summary (BETA) Outlier Detection
4865
+ * @param {ActionsApiOutlierDetectionRequest} requestParameters Request parameters.
4866
+ * @param {*} [options] Override http request option.
4867
+ * @throws {RequiredError}
4868
+ * @memberof ActionsApi
4869
+ */
4870
+ outlierDetection(requestParameters: ActionsApiOutlierDetectionRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResponse>;
4871
+ /**
4872
+ * (BETA) Gets outlier detection result.
4873
+ * @summary (BETA) Outlier Detection Result
4874
+ * @param {ActionsApiOutlierDetectionResultRequest} requestParameters Request parameters.
4875
+ * @param {*} [options] Override http request option.
4876
+ * @throws {RequiredError}
4877
+ * @memberof ActionsApi
4878
+ */
4879
+ outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
4804
4880
  /**
4805
4881
  * Returns a list of available LLM Endpoints
4806
4882
  * @summary Get Active LLM Endpoints for this workspace
@@ -5131,6 +5207,24 @@ export declare interface AfmActionsApiInterface {
5131
5207
  * @memberof ActionsApiInterface
5132
5208
  */
5133
5209
  memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<AfmMemoryItemCreatedByUsers>;
5210
+ /**
5211
+ * (BETA) Computes outlier detection for the provided execution definition.
5212
+ * @summary (BETA) Outlier Detection
5213
+ * @param {ActionsApiOutlierDetectionRequest} requestParameters Request parameters.
5214
+ * @param {*} [options] Override http request option.
5215
+ * @throws {RequiredError}
5216
+ * @memberof ActionsApiInterface
5217
+ */
5218
+ outlierDetection(requestParameters: ActionsApiOutlierDetectionRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResponse>;
5219
+ /**
5220
+ * (BETA) Gets outlier detection result.
5221
+ * @summary (BETA) Outlier Detection Result
5222
+ * @param {ActionsApiOutlierDetectionResultRequest} requestParameters Request parameters.
5223
+ * @param {*} [options] Override http request option.
5224
+ * @throws {RequiredError}
5225
+ * @memberof ActionsApiInterface
5226
+ */
5227
+ outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
5134
5228
  /**
5135
5229
  * Returns a list of available LLM Endpoints
5136
5230
  * @summary Get Active LLM Endpoints for this workspace
@@ -5344,7 +5438,7 @@ export declare interface AfmChangeAnalysisRequest {
5344
5438
  /**
5345
5439
  * Optional filters to apply.
5346
5440
  */
5347
- filters?: Array<ChangeAnalysisRequestFiltersInner>;
5441
+ filters?: Array<OutlierDetectionRequestFiltersInner>;
5348
5442
  /**
5349
5443
  * Auxiliary measures
5350
5444
  */
@@ -11976,18 +12070,13 @@ declare interface ChangeAnalysisParams {
11976
12070
  /**
11977
12071
  * Optional filters to apply
11978
12072
  */
11979
- filters: Array<ChangeAnalysisRequestFiltersInner>;
12073
+ filters: Array<OutlierDetectionRequestFiltersInner>;
11980
12074
  /**
11981
12075
  * Whether to use smart attribute selection
11982
12076
  */
11983
12077
  useSmartAttributeSelection: boolean;
11984
12078
  }
11985
12079
 
11986
- /**
11987
- * @type ChangeAnalysisRequestFiltersInner
11988
- */
11989
- declare type ChangeAnalysisRequestFiltersInner = AbstractMeasureValueFilter | AfmFilterDefinitionForSimpleMeasure | AfmInlineFilterDefinition;
11990
-
11991
12080
  /**
11992
12081
  * Response for change analysis computation
11993
12082
  */
@@ -12042,6 +12131,7 @@ export declare interface ChatHistoryInteraction {
12042
12131
  * User feedback.
12043
12132
  */
12044
12133
  userFeedback?: ChatHistoryInteractionUserFeedbackEnum;
12134
+ reasoning?: Reasoning;
12045
12135
  }
12046
12136
 
12047
12137
  export declare type ChatHistoryInteractionUserFeedbackEnum = "POSITIVE" | "NEGATIVE" | "NONE";
@@ -12157,6 +12247,7 @@ export declare interface ChatResult {
12157
12247
  * Chat History interaction ID. Unique ID for each interaction.
12158
12248
  */
12159
12249
  chatHistoryInteractionId?: string;
12250
+ reasoning?: Reasoning;
12160
12251
  }
12161
12252
 
12162
12253
  /**
@@ -13209,7 +13300,7 @@ export declare interface CreatedVisualizations {
13209
13300
  */
13210
13301
  objects: Array<CreatedVisualization>;
13211
13302
  /**
13212
- * Reasoning from LLM. Description of how and why the answer was generated.
13303
+ * DEPRECATED: Use top-level reasoning.steps instead. Reasoning from LLM. Description of how and why the answer was generated.
13213
13304
  */
13214
13305
  reasoning: string;
13215
13306
  /**
@@ -40234,7 +40325,7 @@ export declare interface FoundObjects {
40234
40325
  */
40235
40326
  objects: Array<SearchResultObject>;
40236
40327
  /**
40237
- * Reasoning from LLM. Description of how and why the answer was generated.
40328
+ * DEPRECATED: Use top-level reasoning.steps instead. Reasoning from LLM. Description of how and why the answer was generated.
40238
40329
  */
40239
40330
  reasoning: string;
40240
40331
  }
@@ -42099,6 +42190,7 @@ export declare interface ITigerClient extends ITigerClientBase {
42099
42190
  declarativeLayout: ReturnType<typeof tigerLayoutClientFactory>;
42100
42191
  entities: ReturnType<typeof tigerEntitiesObjectsClientFactory>;
42101
42192
  profile: ReturnType<typeof tigerProfileClientFactory>;
42193
+ locationStyle: ReturnType<typeof tigerLocationStyleClientFactory>;
42102
42194
  actions: ReturnType<typeof tigerActionsClientFactory>;
42103
42195
  authActions: ReturnType<typeof tigerAuthActionsClientFactory>;
42104
42196
  scanModel: ReturnType<typeof tigerScanModelClientFactory>;
@@ -51894,6 +51986,21 @@ export declare interface LocalIdentifier {
51894
51986
  title?: string | null;
51895
51987
  }
51896
51988
 
51989
+ /**
51990
+ * Interface describing available operations for location service style endpoint.
51991
+ */
51992
+ export declare interface LocationStyleApiInterface {
51993
+ /**
51994
+ * Loads the default MapLibre style document configured for the organization.
51995
+ */
51996
+ getDefaultStyle(): Promise<LocationStyleDocument>;
51997
+ }
51998
+
51999
+ /**
52000
+ * Basic representation of a MapLibre style document returned by Tiger.
52001
+ */
52002
+ export declare type LocationStyleDocument = Record<string, unknown>;
52003
+
51897
52004
  /**
51898
52005
  * @type ManageDashboardPermissionsRequestInner
51899
52006
  */
@@ -61454,6 +61561,43 @@ export declare class OrganizationUtilities {
61454
61561
  static mergeEntitiesResults<T extends OrganizationGetEntitiesResult>(pages: T[]): T;
61455
61562
  }
61456
61563
 
61564
+ declare interface OutlierDetectionRequest {
61565
+ measures: Array<AfmMeasureItem>;
61566
+ dateAttribute: AfmAttributeItem;
61567
+ /**
61568
+ * Optional filters to apply
61569
+ */
61570
+ filters?: Array<OutlierDetectionRequestFiltersInner>;
61571
+ /**
61572
+ * Sensitivity level for outlier detection
61573
+ */
61574
+ sensitivity: OutlierDetectionRequestSensitivityEnum;
61575
+ /**
61576
+ * Date granularity for anomaly detection. Only time-based granularities are supported (HOUR, DAY, WEEK, MONTH, QUARTER, YEAR).
61577
+ */
61578
+ granularity: OutlierDetectionRequestGranularityEnum;
61579
+ }
61580
+
61581
+ /**
61582
+ * @type OutlierDetectionRequestFiltersInner
61583
+ */
61584
+ declare type OutlierDetectionRequestFiltersInner = AbstractMeasureValueFilter | AfmFilterDefinitionForSimpleMeasure | AfmInlineFilterDefinition;
61585
+
61586
+ declare type OutlierDetectionRequestGranularityEnum = "HOUR" | "DAY" | "WEEK" | "MONTH" | "QUARTER" | "YEAR";
61587
+
61588
+ declare type OutlierDetectionRequestSensitivityEnum = "LOW" | "MEDIUM" | "HIGH";
61589
+
61590
+ declare interface OutlierDetectionResponse {
61591
+ links: ExecutionLinks;
61592
+ }
61593
+
61594
+ declare interface OutlierDetectionResult {
61595
+ attribute: Array<string>;
61596
+ values: {
61597
+ [key: string]: Array<number | null> | null;
61598
+ } | null;
61599
+ }
61600
+
61457
61601
  export declare interface Over {
61458
61602
  attributes: Array<IdentifierRef>;
61459
61603
  }
@@ -63335,6 +63479,34 @@ export declare interface ReadCsvFileManifestsResponse {
63335
63479
  manifest: CsvManifestBody;
63336
63480
  }
63337
63481
 
63482
+ /**
63483
+ * Reasoning wrapper containing steps taken during request handling.
63484
+ */
63485
+ declare interface Reasoning {
63486
+ /**
63487
+ * Steps taken during processing, showing the AI\'s reasoning process.
63488
+ */
63489
+ steps: Array<ReasoningStep>;
63490
+ /**
63491
+ * Final answer/reasoning from the use case result.
63492
+ */
63493
+ answer?: string;
63494
+ }
63495
+
63496
+ /**
63497
+ * Steps taken during processing, showing the AI\'s reasoning process.
63498
+ */
63499
+ declare interface ReasoningStep {
63500
+ /**
63501
+ * Title describing this reasoning step.
63502
+ */
63503
+ title: string;
63504
+ /**
63505
+ * Detailed thoughts/messages within this step.
63506
+ */
63507
+ thoughts: Array<Thought>;
63508
+ }
63509
+
63338
63510
  /**
63339
63511
  * A reference identifier.
63340
63512
  */
@@ -64123,7 +64295,7 @@ export declare interface SearchResult {
64123
64295
  results: Array<SearchResultObject>;
64124
64296
  relationships: Array<SearchRelationshipObject>;
64125
64297
  /**
64126
- * If something is not working properly this field will contain explanation.
64298
+ * DEPRECATED: Use top-level reasoning.steps instead. If something is not working properly this field will contain explanation.
64127
64299
  */
64128
64300
  reasoning: string;
64129
64301
  }
@@ -65089,6 +65261,16 @@ export declare interface TestResponse {
65089
65261
  queryDurationMillis?: TestQueryDuration;
65090
65262
  }
65091
65263
 
65264
+ /**
65265
+ * Detailed thoughts/messages within this step.
65266
+ */
65267
+ declare interface Thought {
65268
+ /**
65269
+ * The text content of this thought.
65270
+ */
65271
+ text: string;
65272
+ }
65273
+
65092
65274
  export declare const tigerActionsClientFactory: (axios: AxiosInstance) => ActionsApiInterface;
65093
65275
 
65094
65276
  export declare const tigerAfmExplainClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "explainAFM">;
@@ -65141,6 +65323,11 @@ export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) =>
65141
65323
 
65142
65324
  export declare const tigerLayoutClientFactory: (axios: AxiosInstance) => LayoutApiInterface;
65143
65325
 
65326
+ /**
65327
+ * Factory producing a typed client for interacting with the location style endpoint.
65328
+ */
65329
+ export declare const tigerLocationStyleClientFactory: (axios: AxiosInstance) => LocationStyleApiInterface;
65330
+
65144
65331
  export declare const tigerProfileClientFactory: (axios: AxiosInstance) => ProfileApiInterface;
65145
65332
 
65146
65333
  export declare const tigerResultClientFactory: (axios: AxiosInstance) => ResultActionsApiInterface;
@@ -0,0 +1,3 @@
1
+ export { LocationStyleApi_GetDefaultStyle, tigerLocationStyleClientFactory } from "../../locationStyle.js";
2
+ export type { LocationStyleApiInterface, LocationStyleDocument } from "../../locationStyle.js";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api-endpoints/locationStyle/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gCAAgC,EAAE,+BAA+B,EAAE,MAAM,wBAAwB,CAAC;AAC3G,YAAY,EAAE,yBAAyB,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAC"}
@@ -0,0 +1,3 @@
1
+ // (C) 2025 GoodData Corporation
2
+ export { LocationStyleApi_GetDefaultStyle, tigerLocationStyleClientFactory } from "../../locationStyle.js";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/api-endpoints/locationStyle/index.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,OAAO,EAAE,gCAAgC,EAAE,+BAA+B,EAAE,MAAM,wBAAwB,CAAC"}
package/esm/client.d.ts CHANGED
@@ -10,6 +10,7 @@ import { tigerExportClientFactory } from "./export.js";
10
10
  import { tigerGenAIClientFactory } from "./genAI.js";
11
11
  import { LabelElementsBaseApi, LabelElementsConfiguration, LabelElementsConfigurationParameters, LabelElementsRequestArgs, tigerLabelElementsClientFactory } from "./labelElements.js";
12
12
  import { tigerLayoutClientFactory } from "./layout.js";
13
+ import { LocationStyleApiInterface, LocationStyleDocument, tigerLocationStyleClientFactory } from "./locationStyle.js";
13
14
  import { FeatureContext, ILiveFeatures, IStaticFeatures, IUserProfile, ProfileApiInterface, isLiveFeatures, isStaticFeatures, tigerProfileClientFactory } from "./profile.js";
14
15
  import { ResultActionsApiInterface, tigerGeoCollectionsClientFactory, tigerResultClientFactory } from "./result.js";
15
16
  import { ScanModelActionsApiInterface, ScanModelBaseApi, ScanModelConfiguration, ScanModelConfigurationParameters, ScanModelRequestArgs, tigerScanModelClientFactory } from "./scanModel.js";
@@ -17,8 +18,8 @@ import { tigerSmartFunctionsClientFactory } from "./smartFunctions.js";
17
18
  import { tigerUserManagementClientFactory } from "./userManagement.js";
18
19
  import { tigerValidDescendantsClientFactory } from "./validDescendants.js";
19
20
  import { tigerValidObjectsClientFactory } from "./validObjects.js";
20
- export type { MetadataConfigurationParameters, MetadataRequestArgs, LabelElementsConfigurationParameters, LabelElementsRequestArgs, ProfileApiInterface, IUserProfile, ILiveFeatures, IStaticFeatures, FeatureContext, ScanModelConfigurationParameters, ScanModelRequestArgs, ScanModelActionsApiInterface, ResultActionsApiInterface, };
21
- export { tigerExecutionClientFactory, tigerExecutionResultClientFactory, tigerLabelElementsClientFactory, tigerValidObjectsClientFactory, tigerValidDescendantsClientFactory, tigerLayoutClientFactory, tigerAfmExplainClientFactory, tigerProfileClientFactory, tigerActionsClientFactory, tigerAuthActionsClientFactory, tigerScanModelClientFactory, tigerExportClientFactory, tigerAutomationClientFactory, tigerResultClientFactory, tigerUserManagementClientFactory, tigerSmartFunctionsClientFactory, tigerGenAIClientFactory, MetadataConfiguration, MetadataBaseApi, LabelElementsConfiguration, LabelElementsBaseApi, isLiveFeatures, isStaticFeatures, ScanModelConfiguration, ScanModelBaseApi, };
21
+ export type { MetadataConfigurationParameters, MetadataRequestArgs, LabelElementsConfigurationParameters, LabelElementsRequestArgs, ProfileApiInterface, IUserProfile, ILiveFeatures, IStaticFeatures, FeatureContext, LocationStyleApiInterface, LocationStyleDocument, ScanModelConfigurationParameters, ScanModelRequestArgs, ScanModelActionsApiInterface, ResultActionsApiInterface, };
22
+ export { tigerExecutionClientFactory, tigerExecutionResultClientFactory, tigerLabelElementsClientFactory, tigerValidObjectsClientFactory, tigerValidDescendantsClientFactory, tigerLayoutClientFactory, tigerAfmExplainClientFactory, tigerProfileClientFactory, tigerLocationStyleClientFactory, tigerActionsClientFactory, tigerAuthActionsClientFactory, tigerScanModelClientFactory, tigerExportClientFactory, tigerAutomationClientFactory, tigerResultClientFactory, tigerUserManagementClientFactory, tigerSmartFunctionsClientFactory, tigerGenAIClientFactory, MetadataConfiguration, MetadataBaseApi, LabelElementsConfiguration, LabelElementsBaseApi, isLiveFeatures, isStaticFeatures, ScanModelConfiguration, ScanModelBaseApi, };
22
23
  export interface ITigerClientBase {
23
24
  axios: AxiosInstance;
24
25
  basePath: string;
@@ -47,6 +48,7 @@ export interface ITigerClient extends ITigerClientBase {
47
48
  declarativeLayout: ReturnType<typeof tigerLayoutClientFactory>;
48
49
  entities: ReturnType<typeof tigerEntitiesObjectsClientFactory>;
49
50
  profile: ReturnType<typeof tigerProfileClientFactory>;
51
+ locationStyle: ReturnType<typeof tigerLocationStyleClientFactory>;
50
52
  actions: ReturnType<typeof tigerActionsClientFactory>;
51
53
  authActions: ReturnType<typeof tigerAuthActionsClientFactory>;
52
54
  scanModel: ReturnType<typeof tigerScanModelClientFactory>;
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,EAAE,yBAAyB,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,4BAA4B,EAAE,MAAM,iBAAiB,CAAC;AAE/D,OAAO,EACH,eAAe,EACf,qBAAqB,EACrB,+BAA+B,EAC/B,mBAAmB,EACnB,iCAAiC,EACpC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,2BAA2B,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,iCAAiC,EAAE,MAAM,sBAAsB,CAAC;AACzE,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EACH,oBAAoB,EACpB,0BAA0B,EAC1B,oCAAoC,EACpC,wBAAwB,EACxB,+BAA+B,EAClC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EACH,yBAAyB,EACzB,qBAAqB,EACrB,+BAA+B,EAClC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACH,cAAc,EACd,aAAa,EACb,eAAe,EACf,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,gBAAgB,EAChB,yBAAyB,EAC5B,MAAM,cAAc,CAAC;AACtB,OAAO,EACH,yBAAyB,EACzB,gCAAgC,EAChC,wBAAwB,EAC3B,MAAM,aAAa,CAAC;AACrB,OAAO,EACH,4BAA4B,EAC5B,gBAAgB,EAChB,sBAAsB,EACtB,gCAAgC,EAChC,oBAAoB,EACpB,2BAA2B,EAC9B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,gCAAgC,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,gCAAgC,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,kCAAkC,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,8BAA8B,EAAE,MAAM,mBAAmB,CAAC;AAEnE,YAAY,EACR,+BAA+B,EAC/B,mBAAmB,EACnB,oCAAoC,EACpC,wBAAwB,EACxB,mBAAmB,EACnB,YAAY,EACZ,aAAa,EACb,eAAe,EACf,cAAc,EACd,yBAAyB,EACzB,qBAAqB,EACrB,gCAAgC,EAChC,oBAAoB,EACpB,4BAA4B,EAC5B,yBAAyB,GAC5B,CAAC;AACF,OAAO,EACH,2BAA2B,EAE3B,iCAAiC,EACjC,+BAA+B,EAC/B,8BAA8B,EAC9B,kCAAkC,EAClC,wBAAwB,EACxB,4BAA4B,EAC5B,yBAAyB,EACzB,+BAA+B,EAC/B,yBAAyB,EACzB,6BAA6B,EAC7B,2BAA2B,EAC3B,wBAAwB,EACxB,4BAA4B,EAC5B,wBAAwB,EACxB,gCAAgC,EAChC,gCAAgC,EAChC,uBAAuB,EACvB,qBAAqB,EACrB,eAAe,EACf,0BAA0B,EAC1B,oBAAoB,EACpB,cAAc,EACd,gBAAgB,EAChB,sBAAsB,EACtB,gBAAgB,GACnB,CAAC;AAEF,MAAM,WAAW,gBAAgB;IAC7B,KAAK,EAAE,aAAa,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;OAMG;IACH,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,KAAK,IAAI,CAAC;CACpD;AAED;;;;GAIG;AACH,MAAM,WAAW,YAAa,SAAQ,gBAAgB;IAClD,UAAU,EAAE,UAAU,CAAC,OAAO,4BAA4B,CAAC,CAAC;IAC5D,SAAS,EAAE,UAAU,CAAC,OAAO,2BAA2B,CAAC,CAAC;IAC1D,eAAe,EAAE,UAAU,CAAC,OAAO,iCAAiC,CAAC,CAAC;IACtE,aAAa,EAAE,UAAU,CAAC,OAAO,+BAA+B,CAAC,CAAC;IAClE,YAAY,EAAE,UAAU,CAAC,OAAO,8BAA8B,CAAC,CAAC;IAChE,gBAAgB,EAAE,UAAU,CAAC,OAAO,kCAAkC,CAAC,CAAC;IACxE,OAAO,EAAE,UAAU,CAAC,OAAO,4BAA4B,CAAC,CAAC;IACzD,iBAAiB,EAAE,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;IAC/D,QAAQ,EAAE,UAAU,CAAC,OAAO,iCAAiC,CAAC,CAAC;IAC/D,OAAO,EAAE,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC;IACtD,aAAa,EAAE,UAAU,CAAC,OAAO,+BAA+B,CAAC,CAAC;IAClE,OAAO,EAAE,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC;IACtD,WAAW,EAAE,UAAU,CAAC,OAAO,6BAA6B,CAAC,CAAC;IAC9D,SAAS,EAAE,UAAU,CAAC,OAAO,2BAA2B,CAAC,CAAC;IAC1D,MAAM,EAAE,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;IACpD,MAAM,EAAE,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;IACpD,cAAc,EAAE,UAAU,CAAC,OAAO,gCAAgC,CAAC,CAAC;IACpE,cAAc,EAAE,UAAU,CAAC,OAAO,gCAAgC,CAAC,CAAC;IAEpE;;OAEG;IACH,cAAc,EAAE,UAAU,CAAC,OAAO,gCAAgC,CAAC,CAAC;IAEpE;;OAEG;IACH,KAAK,EAAE,UAAU,CAAC,OAAO,uBAAuB,CAAC,CAAC;IAElD;;;;;;OAMG;IACH,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,KAAK,IAAI,CAAC;CACpD;AAED;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,GAAI,OAAO,aAAa,KAAG,YAiDzD,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB,GAAI,OAAO,aAAa,EAAE,WAAU,MAAW,KAAG,gBAQpF,CAAC"}
package/esm/client.js CHANGED
@@ -11,6 +11,7 @@ import { tigerExportClientFactory } from "./export.js";
11
11
  import { tigerGenAIClientFactory } from "./genAI.js";
12
12
  import { LabelElementsBaseApi, LabelElementsConfiguration, tigerLabelElementsClientFactory, } from "./labelElements.js";
13
13
  import { tigerLayoutClientFactory } from "./layout.js";
14
+ import { tigerLocationStyleClientFactory, } from "./locationStyle.js";
14
15
  import { isLiveFeatures, isStaticFeatures, tigerProfileClientFactory, } from "./profile.js";
15
16
  import { tigerGeoCollectionsClientFactory, tigerResultClientFactory, } from "./result.js";
16
17
  import { ScanModelBaseApi, ScanModelConfiguration, tigerScanModelClientFactory, } from "./scanModel.js";
@@ -20,7 +21,7 @@ import { tigerValidDescendantsClientFactory } from "./validDescendants.js";
20
21
  import { tigerValidObjectsClientFactory } from "./validObjects.js";
21
22
  export { tigerExecutionClientFactory,
22
23
  // tigerEntitiesObjectsClientFactory,
23
- tigerExecutionResultClientFactory, tigerLabelElementsClientFactory, tigerValidObjectsClientFactory, tigerValidDescendantsClientFactory, tigerLayoutClientFactory, tigerAfmExplainClientFactory, tigerProfileClientFactory, tigerActionsClientFactory, tigerAuthActionsClientFactory, tigerScanModelClientFactory, tigerExportClientFactory, tigerAutomationClientFactory, tigerResultClientFactory, tigerUserManagementClientFactory, tigerSmartFunctionsClientFactory, tigerGenAIClientFactory, MetadataConfiguration, MetadataBaseApi, LabelElementsConfiguration, LabelElementsBaseApi, isLiveFeatures, isStaticFeatures, ScanModelConfiguration, ScanModelBaseApi, };
24
+ tigerExecutionResultClientFactory, tigerLabelElementsClientFactory, tigerValidObjectsClientFactory, tigerValidDescendantsClientFactory, tigerLayoutClientFactory, tigerAfmExplainClientFactory, tigerProfileClientFactory, tigerLocationStyleClientFactory, tigerActionsClientFactory, tigerAuthActionsClientFactory, tigerScanModelClientFactory, tigerExportClientFactory, tigerAutomationClientFactory, tigerResultClientFactory, tigerUserManagementClientFactory, tigerSmartFunctionsClientFactory, tigerGenAIClientFactory, MetadataConfiguration, MetadataBaseApi, LabelElementsConfiguration, LabelElementsBaseApi, isLiveFeatures, isStaticFeatures, ScanModelConfiguration, ScanModelBaseApi, };
24
25
  /**
25
26
  * Tiger execution client
26
27
  *
@@ -36,6 +37,7 @@ export const tigerClientFactory = (axios) => {
36
37
  const explain = tigerAfmExplainClientFactory(axios);
37
38
  const entities = tigerEntitiesObjectsClientFactory(axios);
38
39
  const profile = tigerProfileClientFactory(axios);
40
+ const locationStyle = tigerLocationStyleClientFactory(axios);
39
41
  const actions = tigerActionsClientFactory(axios);
40
42
  const authActions = tigerAuthActionsClientFactory(axios);
41
43
  const scanModel = tigerScanModelClientFactory(axios);
@@ -59,6 +61,7 @@ export const tigerClientFactory = (axios) => {
59
61
  explain,
60
62
  entities,
61
63
  profile,
64
+ locationStyle,
62
65
  actions,
63
66
  authActions,
64
67
  scanModel,
package/esm/client.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAIrC,OAAO,EAAE,yBAAyB,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAAE,4BAA4B,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,YAAY,CAAC;AACxD,OAAO,EACH,eAAe,EACf,qBAAqB,EAGrB,iCAAiC,GACpC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,2BAA2B,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,iCAAiC,EAAE,MAAM,sBAAsB,CAAC;AACzE,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EACH,oBAAoB,EACpB,0BAA0B,EAG1B,+BAA+B,GAClC,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAMH,cAAc,EACd,gBAAgB,EAChB,yBAAyB,GAC5B,MAAM,cAAc,CAAC;AACtB,OAAO,EAEH,gCAAgC,EAChC,wBAAwB,GAC3B,MAAM,aAAa,CAAC;AACrB,OAAO,EAEH,gBAAgB,EAChB,sBAAsB,EAGtB,2BAA2B,GAC9B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,gCAAgC,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,gCAAgC,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,kCAAkC,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,8BAA8B,EAAE,MAAM,mBAAmB,CAAC;AAiBnE,OAAO,EACH,2BAA2B;AAC3B,wCAAwC;AACxC,iCAAiC,EACjC,+BAA+B,EAC/B,8BAA8B,EAC9B,kCAAkC,EAClC,wBAAwB,EACxB,4BAA4B,EAC5B,yBAAyB,EACzB,yBAAyB,EACzB,6BAA6B,EAC7B,2BAA2B,EAC3B,wBAAwB,EACxB,4BAA4B,EAC5B,wBAAwB,EACxB,gCAAgC,EAChC,gCAAgC,EAChC,uBAAuB,EACvB,qBAAqB,EACrB,eAAe,EACf,0BAA0B,EAC1B,oBAAoB,EACpB,cAAc,EACd,gBAAgB,EAChB,sBAAsB,EACtB,gBAAgB,GACnB,CAAC;AA2DF;;;;GAIG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,KAAoB,EAAgB,EAAE;IACrE,MAAM,SAAS,GAAG,2BAA2B,CAAC,KAAK,CAAC,CAAC;IACrD,MAAM,eAAe,GAAG,iCAAiC,CAAC,KAAK,CAAC,CAAC;IACjE,MAAM,aAAa,GAAG,+BAA+B,CAAC,KAAK,CAAC,CAAC;IAC7D,MAAM,YAAY,GAAG,8BAA8B,CAAC,KAAK,CAAC,CAAC;IAC3D,MAAM,gBAAgB,GAAG,kCAAkC,CAAC,KAAK,CAAC,CAAC;IACnE,MAAM,iBAAiB,GAAG,wBAAwB,CAAC,KAAK,CAAC,CAAC;IAC1D,MAAM,OAAO,GAAG,4BAA4B,CAAC,KAAK,CAAC,CAAC;IACpD,MAAM,QAAQ,GAAG,iCAAiC,CAAC,KAAK,CAAC,CAAC;IAC1D,MAAM,OAAO,GAAG,yBAAyB,CAAC,KAAK,CAAC,CAAC;IACjD,MAAM,OAAO,GAAG,yBAAyB,CAAC,KAAK,CAAC,CAAC;IACjD,MAAM,WAAW,GAAG,6BAA6B,CAAC,KAAK,CAAC,CAAC;IACzD,MAAM,SAAS,GAAG,2BAA2B,CAAC,KAAK,CAAC,CAAC;IACrD,MAAM,aAAa,GAAG,wBAAwB,CAAC,KAAK,CAAC,CAAC;IACtD,MAAM,MAAM,GAAG,wBAAwB,CAAC,KAAK,CAAC,CAAC;IAC/C,MAAM,cAAc,GAAG,gCAAgC,CAAC,KAAK,CAAC,CAAC;IAC/D,MAAM,cAAc,GAAG,gCAAgC,CAAC,KAAK,CAAC,CAAC;IAC/D,MAAM,KAAK,GAAG,uBAAuB,CAAC,KAAK,CAAC,CAAC;IAC7C,MAAM,UAAU,GAAG,4BAA4B,CAAC,KAAK,CAAC,CAAC;IACvD,MAAM,cAAc,GAAG,gCAAgC,CAAC,KAAK,CAAC,CAAC;IAE/D,OAAO;QACH,KAAK;QACL,QAAQ,EAAE,EAAE;QACZ,UAAU;QACV,SAAS;QACT,eAAe;QACf,aAAa;QACb,YAAY;QACZ,gBAAgB;QAChB,iBAAiB;QACjB,OAAO;QACP,QAAQ;QACR,OAAO;QACP,OAAO;QACP,WAAW;QACX,SAAS;QACT,MAAM;QACN,cAAc;QACd,WAAW,EAAE,CAAC,KAAyB,EAAQ,EAAE;YAC7C,0BAA0B,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;QAC7C,CAAC;QACD,MAAM,EAAE,aAAa;QACrB,cAAc;QACd,KAAK;QACL,cAAc;KACjB,CAAC;AACN,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,KAAoB,EAAE,WAAmB,EAAE,EAAoB,EAAE;IACpG,OAAO;QACH,KAAK;QACL,QAAQ;QACR,WAAW,EAAE,CAAC,KAAyB,EAAQ,EAAE;YAC7C,0BAA0B,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;QAC7C,CAAC;KACJ,CAAC;AACN,CAAC,CAAC"}
1
+ {"version":3,"file":"client.js","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}