@gooddata/sdk-backend-tiger 11.28.0-alpha.1 → 11.28.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/backend/features/feature.d.ts.map +1 -1
- package/esm/backend/features/feature.js +1 -0
- package/esm/backend/features/feature.js.map +1 -1
- package/esm/backend/geo/index.d.ts +1 -0
- package/esm/backend/geo/index.d.ts.map +1 -1
- package/esm/backend/geo/index.js +24 -0
- package/esm/backend/geo/index.js.map +1 -1
- package/esm/backend/index.d.ts +4 -0
- package/esm/backend/index.d.ts.map +1 -1
- package/esm/backend/index.js +30 -5
- package/esm/backend/index.js.map +1 -1
- package/esm/backend/organization/settings.d.ts +2 -0
- package/esm/backend/organization/settings.d.ts.map +1 -1
- package/esm/backend/organization/settings.js +6 -0
- package/esm/backend/organization/settings.js.map +1 -1
- package/esm/backend/tigerSpecificFunctionsProxy.d.ts +36 -0
- package/esm/backend/tigerSpecificFunctionsProxy.d.ts.map +1 -0
- package/esm/backend/tigerSpecificFunctionsProxy.js +70 -0
- package/esm/backend/tigerSpecificFunctionsProxy.js.map +1 -0
- package/esm/backend/uiFeatures.d.ts +3 -0
- package/esm/backend/uiFeatures.d.ts.map +1 -1
- package/esm/backend/uiFeatures.js +3 -0
- package/esm/backend/uiFeatures.js.map +1 -1
- package/esm/backend/workspace/execution/executionResult.d.ts +2 -1
- package/esm/backend/workspace/execution/executionResult.d.ts.map +1 -1
- package/esm/backend/workspace/execution/executionResult.js +13 -10
- package/esm/backend/workspace/execution/executionResult.js.map +1 -1
- package/esm/backend/workspace/genAI/AnalyticsCatalogService.js.map +1 -1
- package/esm/backend/workspace/genAI/ChatThread.d.ts.map +1 -1
- package/esm/backend/workspace/genAI/ChatThread.js +62 -5
- package/esm/backend/workspace/genAI/ChatThread.js.map +1 -1
- package/esm/index.d.ts +1 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -0
- package/esm/index.js.map +1 -1
- package/esm/sdk-backend-tiger.d.ts +36 -0
- package/package.json +10 -10
|
@@ -148,6 +148,15 @@ export declare class ContextDeferredAuthProvider extends TigerAuthProviderBase {
|
|
|
148
148
|
externalProviderId?: string;
|
|
149
149
|
}): string;
|
|
150
150
|
|
|
151
|
+
/**
|
|
152
|
+
* Creates a proxy that dynamically delegates every method call to the
|
|
153
|
+
* underlying {@link TigerSpecificFunctions} implementation.
|
|
154
|
+
*
|
|
155
|
+
* @internal
|
|
156
|
+
* @deprecated Tiger-specific functions are legacy and will be removed.
|
|
157
|
+
*/
|
|
158
|
+
export declare function createTigerSpecificFunctionsProxy(initialImplementation?: TigerSpecificFunctions): ITigerSpecificFunctionsProxyResult;
|
|
159
|
+
|
|
151
160
|
/**
|
|
152
161
|
* @internal
|
|
153
162
|
*/
|
|
@@ -425,6 +434,33 @@ export declare class ContextDeferredAuthProvider extends TigerAuthProviderBase {
|
|
|
425
434
|
*/
|
|
426
435
|
export declare const isTigerType: (obj: unknown) => obj is TigerObjectType;
|
|
427
436
|
|
|
437
|
+
/**
|
|
438
|
+
* Result of creating a tiger-specific functions proxy.
|
|
439
|
+
* Separates the consumer API (`functions`) from the owner API
|
|
440
|
+
* (`updateImplementation`).
|
|
441
|
+
*
|
|
442
|
+
* @internal
|
|
443
|
+
* @deprecated Tiger-specific functions are legacy and will be removed.
|
|
444
|
+
*/
|
|
445
|
+
export declare interface ITigerSpecificFunctionsProxyResult {
|
|
446
|
+
/**
|
|
447
|
+
* The proxied functions object. Every method defined on
|
|
448
|
+
* {@link TigerSpecificFunctions} is always callable on this object — if
|
|
449
|
+
* the underlying implementation is not (yet) set, the method logs a
|
|
450
|
+
* warning and returns `undefined`.
|
|
451
|
+
*
|
|
452
|
+
* Pass this to consumers; do not expose `updateImplementation`.
|
|
453
|
+
*/
|
|
454
|
+
readonly functions: TigerSpecificFunctions;
|
|
455
|
+
/**
|
|
456
|
+
* Replace the underlying implementation. Typically called from the
|
|
457
|
+
* `onTigerSpecificFunctionsReady` callback. Safe to call multiple times
|
|
458
|
+
* (e.g., when `withAuthentication` re-triggers the callback with a newly
|
|
459
|
+
* authenticated backend).
|
|
460
|
+
*/
|
|
461
|
+
updateImplementation(impl: TigerSpecificFunctions): void;
|
|
462
|
+
}
|
|
463
|
+
|
|
428
464
|
/**
|
|
429
465
|
* Handler that will be called by a JWT authentication provider before the JWT
|
|
430
466
|
* is about to expire. The handler will receive a method that can be used to set a new JWT value.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-backend-tiger",
|
|
3
|
-
"version": "11.28.0-alpha.
|
|
3
|
+
"version": "11.28.0-alpha.3",
|
|
4
4
|
"description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"ts-invariant": "0.10.3",
|
|
34
34
|
"tslib": "2.8.1",
|
|
35
35
|
"uuid": "11.1.0",
|
|
36
|
-
"@gooddata/api-client-tiger": "11.28.0-alpha.
|
|
37
|
-
"@gooddata/sdk-backend-base": "11.28.0-alpha.
|
|
38
|
-
"@gooddata/sdk-
|
|
39
|
-
"@gooddata/
|
|
40
|
-
"@gooddata/
|
|
36
|
+
"@gooddata/api-client-tiger": "11.28.0-alpha.3",
|
|
37
|
+
"@gooddata/sdk-backend-base": "11.28.0-alpha.3",
|
|
38
|
+
"@gooddata/sdk-model": "11.28.0-alpha.3",
|
|
39
|
+
"@gooddata/sdk-backend-spi": "11.28.0-alpha.3",
|
|
40
|
+
"@gooddata/util": "11.28.0-alpha.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@gooddata/fixtures": "3.3.12",
|
|
@@ -64,10 +64,10 @@
|
|
|
64
64
|
"oxlint-tsgolint": "0.11.4",
|
|
65
65
|
"typescript": "5.9.3",
|
|
66
66
|
"vitest": "4.1.0",
|
|
67
|
-
"@gooddata/catalog-export": "11.28.0-alpha.
|
|
68
|
-
"@gooddata/eslint-config": "11.28.0-alpha.
|
|
69
|
-
"@gooddata/oxlint-config": "11.28.0-alpha.
|
|
70
|
-
"@gooddata/reference-workspace": "11.28.0-alpha.
|
|
67
|
+
"@gooddata/catalog-export": "11.28.0-alpha.3",
|
|
68
|
+
"@gooddata/eslint-config": "11.28.0-alpha.3",
|
|
69
|
+
"@gooddata/oxlint-config": "11.28.0-alpha.3",
|
|
70
|
+
"@gooddata/reference-workspace": "11.28.0-alpha.3"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"_phase:build": "npm run build",
|