@gooddata/sdk-backend-base 11.40.0-alpha.1 → 11.40.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type IOrganization, type IOrganizationAgentsService, type IOrganizationAutomationService, type IOrganizationExportTemplatesService, type IOrganizationGenAIService, type
|
|
1
|
+
import { type IOrganization, type IOrganizationAgentsService, type IOrganizationAutomationService, type IOrganizationExportTemplatesService, type IOrganizationGenAIService, type IOrganizationLlmProvidersService, type IOrganizationNotificationChannelService, type IOrganizationNotificationService, type IOrganizationPermissionService, type IOrganizationSettingsService, type IOrganizationStylingService, type IOrganizationUserService, type ISecuritySettingsService } from "@gooddata/sdk-backend-spi";
|
|
2
2
|
import { type IOrganizationDescriptor, type IOrganizationDescriptorUpdate } from "@gooddata/sdk-model";
|
|
3
3
|
import { type DecoratorFactories } from "./types.js";
|
|
4
4
|
export declare class OrganizationDecorator implements IOrganization {
|
|
@@ -14,7 +14,6 @@ export declare class OrganizationDecorator implements IOrganization {
|
|
|
14
14
|
users(): IOrganizationUserService;
|
|
15
15
|
permissions(): IOrganizationPermissionService;
|
|
16
16
|
notificationChannels(): IOrganizationNotificationChannelService;
|
|
17
|
-
llmEndpoints(): IOrganizationLlmEndpointsService;
|
|
18
17
|
llmProviders(): IOrganizationLlmProvidersService;
|
|
19
18
|
notifications(): IOrganizationNotificationService;
|
|
20
19
|
automations(): IOrganizationAutomationService;
|
|
@@ -638,23 +638,6 @@ class DummyWorkspaceCatalogWithAvailableItems {
|
|
|
638
638
|
return [];
|
|
639
639
|
}
|
|
640
640
|
}
|
|
641
|
-
class DummyLlmEndpointsQuery {
|
|
642
|
-
withSize(_size) {
|
|
643
|
-
return this;
|
|
644
|
-
}
|
|
645
|
-
withPage(_page) {
|
|
646
|
-
return this;
|
|
647
|
-
}
|
|
648
|
-
withSorting(_sort) {
|
|
649
|
-
return this;
|
|
650
|
-
}
|
|
651
|
-
query() {
|
|
652
|
-
return Promise.resolve(createEmptyPagedResource());
|
|
653
|
-
}
|
|
654
|
-
queryAll() {
|
|
655
|
-
return Promise.resolve([]);
|
|
656
|
-
}
|
|
657
|
-
}
|
|
658
641
|
class DummyLlmProvidersQuery {
|
|
659
642
|
withSize(_size) {
|
|
660
643
|
return this;
|
|
@@ -837,31 +820,6 @@ class DummyOrganization {
|
|
|
837
820
|
},
|
|
838
821
|
};
|
|
839
822
|
}
|
|
840
|
-
llmEndpoints() {
|
|
841
|
-
const dummyEndpoint = {
|
|
842
|
-
id: "dummyLlmEndpoint",
|
|
843
|
-
title: "Dummy Llm Endpoint",
|
|
844
|
-
provider: "OPENAI",
|
|
845
|
-
model: "gpt-4o-mini",
|
|
846
|
-
};
|
|
847
|
-
return {
|
|
848
|
-
getCount: () => Promise.resolve(0),
|
|
849
|
-
getEndpointsQuery: () => new DummyLlmEndpointsQuery(),
|
|
850
|
-
deleteLlmEndpoint: () => Promise.resolve(),
|
|
851
|
-
getLlmEndpoint: () => Promise.resolve({
|
|
852
|
-
...dummyEndpoint,
|
|
853
|
-
}),
|
|
854
|
-
createLlmEndpoint: () => Promise.resolve({
|
|
855
|
-
...dummyEndpoint,
|
|
856
|
-
}),
|
|
857
|
-
updateLlmEndpoint: () => Promise.resolve({
|
|
858
|
-
...dummyEndpoint,
|
|
859
|
-
}),
|
|
860
|
-
patchLlmEndpoint: () => Promise.resolve({
|
|
861
|
-
...dummyEndpoint,
|
|
862
|
-
}),
|
|
863
|
-
};
|
|
864
|
-
}
|
|
865
823
|
llmProviders() {
|
|
866
824
|
const dummyProvider = {
|
|
867
825
|
id: "dummyLlmProvider",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-backend-base",
|
|
3
|
-
"version": "11.40.0-alpha.
|
|
3
|
+
"version": "11.40.0-alpha.3",
|
|
4
4
|
"description": "GoodData.UI SDK - Base for backend implementations",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"ts-invariant": "0.10.3",
|
|
30
30
|
"tslib": "2.8.1",
|
|
31
31
|
"uuid": "11.1.0",
|
|
32
|
-
"@gooddata/sdk-backend-spi": "11.40.0-alpha.
|
|
33
|
-
"@gooddata/sdk-model": "11.40.0-alpha.
|
|
34
|
-
"@gooddata/util": "11.40.0-alpha.
|
|
32
|
+
"@gooddata/sdk-backend-spi": "11.40.0-alpha.3",
|
|
33
|
+
"@gooddata/sdk-model": "11.40.0-alpha.3",
|
|
34
|
+
"@gooddata/util": "11.40.0-alpha.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"oxlint-tsgolint": "0.11.4",
|
|
57
57
|
"typescript": "5.9.3",
|
|
58
58
|
"vitest": "4.1.0",
|
|
59
|
-
"@gooddata/eslint-config": "11.40.0-alpha.
|
|
60
|
-
"@gooddata/oxlint-config": "11.40.0-alpha.
|
|
61
|
-
"@gooddata/reference-workspace": "11.40.0-alpha.
|
|
59
|
+
"@gooddata/eslint-config": "11.40.0-alpha.3",
|
|
60
|
+
"@gooddata/oxlint-config": "11.40.0-alpha.3",
|
|
61
|
+
"@gooddata/reference-workspace": "11.40.0-alpha.3"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"_phase:build": "npm run build",
|