@robosystems/client 0.1.21 → 0.1.23
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/extensions/CopyClient.d.ts +1 -0
- package/extensions/CopyClient.js +4 -1
- package/extensions/CopyClient.ts +6 -1
- package/extensions/OperationClient.d.ts +1 -0
- package/extensions/OperationClient.ts +2 -0
- package/extensions/QueryClient.d.ts +1 -0
- package/extensions/QueryClient.js +2 -1
- package/extensions/QueryClient.ts +4 -1
- package/extensions/SSEClient.d.ts +14 -0
- package/extensions/SSEClient.js +7 -1
- package/extensions/SSEClient.ts +22 -1
- package/extensions/config.d.ts +25 -0
- package/extensions/config.js +78 -0
- package/extensions/config.ts +84 -0
- package/extensions/hooks.js +16 -0
- package/extensions/hooks.ts +27 -1
- package/extensions/index.d.ts +2 -0
- package/extensions/index.js +14 -0
- package/extensions/index.ts +28 -1
- package/package.json +1 -1
- package/sdk/sdk.gen.d.ts +11 -16
- package/sdk/sdk.gen.js +95 -110
- package/sdk/sdk.gen.ts +94 -109
- package/sdk/types.gen.d.ts +623 -214
- package/sdk/types.gen.ts +629 -226
- package/sdk-extensions/CopyClient.d.ts +1 -0
- package/sdk-extensions/CopyClient.js +4 -1
- package/sdk-extensions/CopyClient.ts +6 -1
- package/sdk-extensions/OperationClient.d.ts +1 -0
- package/sdk-extensions/OperationClient.ts +2 -0
- package/sdk-extensions/QueryClient.d.ts +1 -0
- package/sdk-extensions/QueryClient.js +2 -1
- package/sdk-extensions/QueryClient.ts +4 -1
- package/sdk-extensions/SSEClient.d.ts +14 -0
- package/sdk-extensions/SSEClient.js +7 -1
- package/sdk-extensions/SSEClient.ts +22 -1
- package/sdk-extensions/config.d.ts +25 -0
- package/sdk-extensions/config.js +78 -0
- package/sdk-extensions/config.ts +84 -0
- package/sdk-extensions/hooks.js +16 -0
- package/sdk-extensions/hooks.ts +27 -1
- package/sdk-extensions/index.d.ts +2 -0
- package/sdk-extensions/index.js +14 -0
- package/sdk-extensions/index.ts +28 -1
- package/sdk.gen.d.ts +11 -16
- package/sdk.gen.js +95 -110
- package/sdk.gen.ts +94 -109
- package/types.gen.d.ts +623 -214
- package/types.gen.ts +629 -226
package/extensions/index.js
CHANGED
|
@@ -20,6 +20,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
21
|
exports.copyFromS3 = exports.streamQuery = exports.executeQuery = exports.monitorOperation = exports.extensions = exports.useStreamingQuery = exports.useSDKClients = exports.useQuery = exports.useOperation = exports.useMultipleOperations = exports.useCopy = exports.SSEClient = exports.QueryClient = exports.OperationClient = exports.CopyClient = exports.RoboSystemsExtensions = void 0;
|
|
22
22
|
const client_gen_1 = require("../client.gen");
|
|
23
|
+
const config_1 = require("./config");
|
|
23
24
|
const CopyClient_1 = require("./CopyClient");
|
|
24
25
|
Object.defineProperty(exports, "CopyClient", { enumerable: true, get: function () { return CopyClient_1.CopyClient; } });
|
|
25
26
|
const OperationClient_1 = require("./OperationClient");
|
|
@@ -32,23 +33,34 @@ class RoboSystemsExtensions {
|
|
|
32
33
|
constructor(config = {}) {
|
|
33
34
|
// Get base URL from SDK client config or use provided/default
|
|
34
35
|
const sdkConfig = client_gen_1.client.getConfig();
|
|
36
|
+
// Extract JWT token using centralized logic
|
|
37
|
+
const token = config.token || (0, config_1.extractTokenFromSDKClient)();
|
|
35
38
|
this.config = {
|
|
36
39
|
baseUrl: config.baseUrl || sdkConfig.baseUrl || 'http://localhost:8000',
|
|
37
40
|
credentials: config.credentials || 'include',
|
|
41
|
+
token,
|
|
42
|
+
headers: config.headers,
|
|
38
43
|
maxRetries: config.maxRetries || 5,
|
|
39
44
|
retryDelay: config.retryDelay || 1000,
|
|
40
45
|
};
|
|
41
46
|
this.copy = new CopyClient_1.CopyClient({
|
|
42
47
|
baseUrl: this.config.baseUrl,
|
|
43
48
|
credentials: this.config.credentials,
|
|
49
|
+
token: this.config.token,
|
|
50
|
+
headers: this.config.headers,
|
|
44
51
|
});
|
|
45
52
|
this.query = new QueryClient_1.QueryClient({
|
|
46
53
|
baseUrl: this.config.baseUrl,
|
|
47
54
|
credentials: this.config.credentials,
|
|
55
|
+
token: this.config.token,
|
|
56
|
+
headers: this.config.headers,
|
|
48
57
|
});
|
|
49
58
|
this.operations = new OperationClient_1.OperationClient({
|
|
50
59
|
baseUrl: this.config.baseUrl,
|
|
51
60
|
credentials: this.config.credentials,
|
|
61
|
+
token: this.config.token,
|
|
62
|
+
maxRetries: this.config.maxRetries,
|
|
63
|
+
retryDelay: this.config.retryDelay,
|
|
52
64
|
});
|
|
53
65
|
}
|
|
54
66
|
/**
|
|
@@ -64,6 +76,8 @@ class RoboSystemsExtensions {
|
|
|
64
76
|
return new SSEClient_1.SSEClient({
|
|
65
77
|
baseUrl: this.config.baseUrl,
|
|
66
78
|
credentials: this.config.credentials,
|
|
79
|
+
token: this.config.token,
|
|
80
|
+
headers: this.config.headers,
|
|
67
81
|
maxRetries: this.config.maxRetries,
|
|
68
82
|
retryDelay: this.config.retryDelay,
|
|
69
83
|
});
|
package/extensions/index.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { client } from '../client.gen'
|
|
7
|
+
import { extractTokenFromSDKClient } from './config'
|
|
7
8
|
import { CopyClient } from './CopyClient'
|
|
8
9
|
import { OperationClient } from './OperationClient'
|
|
9
10
|
import { QueryClient } from './QueryClient'
|
|
@@ -12,23 +13,40 @@ import { SSEClient } from './SSEClient'
|
|
|
12
13
|
export interface RoboSystemsExtensionConfig {
|
|
13
14
|
baseUrl?: string
|
|
14
15
|
credentials?: 'include' | 'same-origin' | 'omit'
|
|
16
|
+
token?: string // JWT token for authentication
|
|
17
|
+
headers?: Record<string, string>
|
|
15
18
|
maxRetries?: number
|
|
16
19
|
retryDelay?: number
|
|
17
20
|
}
|
|
18
21
|
|
|
22
|
+
// Properly typed configuration interface
|
|
23
|
+
interface ResolvedConfig {
|
|
24
|
+
baseUrl: string
|
|
25
|
+
credentials: 'include' | 'same-origin' | 'omit'
|
|
26
|
+
token?: string
|
|
27
|
+
headers?: Record<string, string>
|
|
28
|
+
maxRetries: number
|
|
29
|
+
retryDelay: number
|
|
30
|
+
}
|
|
31
|
+
|
|
19
32
|
export class RoboSystemsExtensions {
|
|
20
33
|
public readonly copy: CopyClient
|
|
21
34
|
public readonly query: QueryClient
|
|
22
35
|
public readonly operations: OperationClient
|
|
23
|
-
private config:
|
|
36
|
+
private config: ResolvedConfig
|
|
24
37
|
|
|
25
38
|
constructor(config: RoboSystemsExtensionConfig = {}) {
|
|
26
39
|
// Get base URL from SDK client config or use provided/default
|
|
27
40
|
const sdkConfig = client.getConfig()
|
|
28
41
|
|
|
42
|
+
// Extract JWT token using centralized logic
|
|
43
|
+
const token = config.token || extractTokenFromSDKClient()
|
|
44
|
+
|
|
29
45
|
this.config = {
|
|
30
46
|
baseUrl: config.baseUrl || sdkConfig.baseUrl || 'http://localhost:8000',
|
|
31
47
|
credentials: config.credentials || 'include',
|
|
48
|
+
token,
|
|
49
|
+
headers: config.headers,
|
|
32
50
|
maxRetries: config.maxRetries || 5,
|
|
33
51
|
retryDelay: config.retryDelay || 1000,
|
|
34
52
|
}
|
|
@@ -36,16 +54,23 @@ export class RoboSystemsExtensions {
|
|
|
36
54
|
this.copy = new CopyClient({
|
|
37
55
|
baseUrl: this.config.baseUrl,
|
|
38
56
|
credentials: this.config.credentials,
|
|
57
|
+
token: this.config.token,
|
|
58
|
+
headers: this.config.headers,
|
|
39
59
|
})
|
|
40
60
|
|
|
41
61
|
this.query = new QueryClient({
|
|
42
62
|
baseUrl: this.config.baseUrl,
|
|
43
63
|
credentials: this.config.credentials,
|
|
64
|
+
token: this.config.token,
|
|
65
|
+
headers: this.config.headers,
|
|
44
66
|
})
|
|
45
67
|
|
|
46
68
|
this.operations = new OperationClient({
|
|
47
69
|
baseUrl: this.config.baseUrl,
|
|
48
70
|
credentials: this.config.credentials,
|
|
71
|
+
token: this.config.token,
|
|
72
|
+
maxRetries: this.config.maxRetries,
|
|
73
|
+
retryDelay: this.config.retryDelay,
|
|
49
74
|
})
|
|
50
75
|
}
|
|
51
76
|
|
|
@@ -63,6 +88,8 @@ export class RoboSystemsExtensions {
|
|
|
63
88
|
return new SSEClient({
|
|
64
89
|
baseUrl: this.config.baseUrl,
|
|
65
90
|
credentials: this.config.credentials,
|
|
91
|
+
token: this.config.token,
|
|
92
|
+
headers: this.config.headers,
|
|
66
93
|
maxRetries: this.config.maxRetries,
|
|
67
94
|
retryDelay: this.config.retryDelay,
|
|
68
95
|
})
|
package/package.json
CHANGED
package/sdk/sdk.gen.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Options as ClientOptions, TDataShape, Client } from './client';
|
|
2
|
-
import type { RegisterUserData, RegisterUserResponses, RegisterUserErrors, LoginUserData, LoginUserResponses, LoginUserErrors, LogoutUserData, LogoutUserResponses, LogoutUserErrors, GetCurrentAuthUserData, GetCurrentAuthUserResponses, GetCurrentAuthUserErrors, RefreshAuthSessionData, RefreshAuthSessionResponses, RefreshAuthSessionErrors, ResendVerificationEmailData, ResendVerificationEmailResponses, ResendVerificationEmailErrors, VerifyEmailData, VerifyEmailResponses, VerifyEmailErrors, GetPasswordPolicyData, GetPasswordPolicyResponses, CheckPasswordStrengthData, CheckPasswordStrengthResponses, CheckPasswordStrengthErrors, ForgotPasswordData, ForgotPasswordResponses, ForgotPasswordErrors, ValidateResetTokenData, ValidateResetTokenResponses, ValidateResetTokenErrors, ResetPasswordData, ResetPasswordResponses, ResetPasswordErrors, GenerateSsoTokenData, GenerateSsoTokenResponses, GenerateSsoTokenErrors,
|
|
2
|
+
import type { RegisterUserData, RegisterUserResponses, RegisterUserErrors, LoginUserData, LoginUserResponses, LoginUserErrors, LogoutUserData, LogoutUserResponses, LogoutUserErrors, GetCurrentAuthUserData, GetCurrentAuthUserResponses, GetCurrentAuthUserErrors, RefreshAuthSessionData, RefreshAuthSessionResponses, RefreshAuthSessionErrors, ResendVerificationEmailData, ResendVerificationEmailResponses, ResendVerificationEmailErrors, VerifyEmailData, VerifyEmailResponses, VerifyEmailErrors, GetPasswordPolicyData, GetPasswordPolicyResponses, CheckPasswordStrengthData, CheckPasswordStrengthResponses, CheckPasswordStrengthErrors, ForgotPasswordData, ForgotPasswordResponses, ForgotPasswordErrors, ValidateResetTokenData, ValidateResetTokenResponses, ValidateResetTokenErrors, ResetPasswordData, ResetPasswordResponses, ResetPasswordErrors, GenerateSsoTokenData, GenerateSsoTokenResponses, GenerateSsoTokenErrors, SsoTokenExchangeData, SsoTokenExchangeResponses, SsoTokenExchangeErrors, CompleteSsoAuthData, CompleteSsoAuthResponses, CompleteSsoAuthErrors, GetCaptchaConfigData, GetCaptchaConfigResponses, GetServiceStatusData, GetServiceStatusResponses, GetCurrentUserData, GetCurrentUserResponses, GetCurrentUserErrors, UpdateUserData, UpdateUserResponses, UpdateUserErrors, GetAllCreditSummariesData, GetAllCreditSummariesResponses, GetAllCreditSummariesErrors, UpdateUserPasswordData, UpdateUserPasswordResponses, UpdateUserPasswordErrors, ListUserApiKeysData, ListUserApiKeysResponses, ListUserApiKeysErrors, CreateUserApiKeyData, CreateUserApiKeyResponses, CreateUserApiKeyErrors, RevokeUserApiKeyData, RevokeUserApiKeyResponses, RevokeUserApiKeyErrors, UpdateUserApiKeyData, UpdateUserApiKeyResponses, UpdateUserApiKeyErrors, GetUserLimitsData, GetUserLimitsResponses, GetUserLimitsErrors, GetUserUsageData, GetUserUsageResponses, GetUserUsageErrors, GetAllSharedRepositoryLimitsData, GetAllSharedRepositoryLimitsResponses, GetAllSharedRepositoryLimitsErrors, GetSharedRepositoryLimitsData, GetSharedRepositoryLimitsResponses, GetSharedRepositoryLimitsErrors, GetUserUsageOverviewData, GetUserUsageOverviewResponses, GetUserUsageOverviewErrors, GetDetailedUserAnalyticsData, GetDetailedUserAnalyticsResponses, GetDetailedUserAnalyticsErrors, GetUserSharedSubscriptionsData, GetUserSharedSubscriptionsResponses, GetUserSharedSubscriptionsErrors, SubscribeToSharedRepositoryData, SubscribeToSharedRepositoryResponses, SubscribeToSharedRepositoryErrors, UpgradeSharedRepositorySubscriptionData, UpgradeSharedRepositorySubscriptionResponses, UpgradeSharedRepositorySubscriptionErrors, CancelSharedRepositorySubscriptionData, CancelSharedRepositorySubscriptionResponses, CancelSharedRepositorySubscriptionErrors, GetSharedRepositoryCreditsData, GetSharedRepositoryCreditsResponses, GetSharedRepositoryCreditsErrors, GetRepositoryCreditsData, GetRepositoryCreditsResponses, GetRepositoryCreditsErrors, GetConnectionOptionsData, GetConnectionOptionsResponses, GetConnectionOptionsErrors, SyncConnectionData, SyncConnectionResponses, SyncConnectionErrors, CreateLinkTokenData, CreateLinkTokenResponses, CreateLinkTokenErrors, ExchangeLinkTokenData, ExchangeLinkTokenResponses, ExchangeLinkTokenErrors, InitOAuthData, InitOAuthResponses, InitOAuthErrors, OauthCallbackData, OauthCallbackResponses, OauthCallbackErrors, ListConnectionsData, ListConnectionsResponses, ListConnectionsErrors, CreateConnectionData, CreateConnectionResponses, CreateConnectionErrors, DeleteConnectionData, DeleteConnectionResponses, DeleteConnectionErrors, GetConnectionData, GetConnectionResponses, GetConnectionErrors, AutoSelectAgentData, AutoSelectAgentResponses, AutoSelectAgentErrors, ExecuteSpecificAgentData, ExecuteSpecificAgentResponses, ExecuteSpecificAgentErrors, BatchProcessQueriesData, BatchProcessQueriesResponses, BatchProcessQueriesErrors, ListAgentsData, ListAgentsResponses, ListAgentsErrors, GetAgentMetadataData, GetAgentMetadataResponses, GetAgentMetadataErrors, RecommendAgentData, RecommendAgentResponses, RecommendAgentErrors, ListMcpToolsData, ListMcpToolsResponses, ListMcpToolsErrors, CallMcpToolData, CallMcpToolResponses, CallMcpToolErrors, ListBackupsData, ListBackupsResponses, ListBackupsErrors, CreateBackupData, CreateBackupResponses, CreateBackupErrors, ExportBackupData, ExportBackupResponses, ExportBackupErrors, GetBackupDownloadUrlData, GetBackupDownloadUrlResponses, GetBackupDownloadUrlErrors, RestoreBackupData, RestoreBackupResponses, RestoreBackupErrors, GetBackupStatsData, GetBackupStatsResponses, GetBackupStatsErrors, GetGraphMetricsData, GetGraphMetricsResponses, GetGraphMetricsErrors, GetGraphUsageStatsData, GetGraphUsageStatsResponses, GetGraphUsageStatsErrors, ExecuteCypherQueryData, ExecuteCypherQueryResponses, ExecuteCypherQueryErrors, GetGraphSchemaInfoData, GetGraphSchemaInfoResponses, GetGraphSchemaInfoErrors, ValidateSchemaData, ValidateSchemaResponses, ValidateSchemaErrors, ExportGraphSchemaData, ExportGraphSchemaResponses, ExportGraphSchemaErrors, ListSchemaExtensionsData, ListSchemaExtensionsResponses, ListSchemaExtensionsErrors, GetCurrentGraphBillData, GetCurrentGraphBillResponses, GetCurrentGraphBillErrors, GetGraphUsageDetailsData, GetGraphUsageDetailsResponses, GetGraphUsageDetailsErrors, GetGraphBillingHistoryData, GetGraphBillingHistoryResponses, GetGraphBillingHistoryErrors, GetGraphMonthlyBillData, GetGraphMonthlyBillResponses, GetGraphMonthlyBillErrors, GetCreditSummaryData, GetCreditSummaryResponses, GetCreditSummaryErrors, ListCreditTransactionsData, ListCreditTransactionsResponses, ListCreditTransactionsErrors, CheckCreditBalanceData, CheckCreditBalanceResponses, CheckCreditBalanceErrors, GetStorageUsageData, GetStorageUsageResponses, GetStorageUsageErrors, CheckStorageLimitsData, CheckStorageLimitsResponses, CheckStorageLimitsErrors, GetDatabaseHealthData, GetDatabaseHealthResponses, GetDatabaseHealthErrors, GetDatabaseInfoData, GetDatabaseInfoResponses, GetDatabaseInfoErrors, GetGraphLimitsData, GetGraphLimitsResponses, GetGraphLimitsErrors, ListSubgraphsData, ListSubgraphsResponses, ListSubgraphsErrors, CreateSubgraphData, CreateSubgraphResponses, CreateSubgraphErrors, DeleteSubgraphData, DeleteSubgraphResponses, DeleteSubgraphErrors, GetSubgraphInfoData, GetSubgraphInfoResponses, GetSubgraphInfoErrors, GetSubgraphQuotaData, GetSubgraphQuotaResponses, GetSubgraphQuotaErrors, CopyDataToGraphData, CopyDataToGraphResponses, CopyDataToGraphErrors, GetGraphsData, GetGraphsResponses, GetGraphsErrors, CreateGraphData, CreateGraphResponses, CreateGraphErrors, GetAvailableExtensionsData, GetAvailableExtensionsResponses, SelectGraphData, SelectGraphResponses, SelectGraphErrors, GetServiceOfferingsData, GetServiceOfferingsResponses, GetServiceOfferingsErrors, StreamOperationEventsData, StreamOperationEventsResponses, StreamOperationEventsErrors, GetOperationStatusData, GetOperationStatusResponses, GetOperationStatusErrors, CancelOperationData, CancelOperationResponses, CancelOperationErrors } from './types.gen';
|
|
3
3
|
export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = ClientOptions<TData, ThrowOnError> & {
|
|
4
4
|
/**
|
|
5
5
|
* You can provide a client instance returned by `createClient()` instead of
|
|
@@ -78,11 +78,6 @@ export declare const resetPassword: <ThrowOnError extends boolean = false>(optio
|
|
|
78
78
|
* Generate a temporary SSO token for cross-app authentication.
|
|
79
79
|
*/
|
|
80
80
|
export declare const generateSsoToken: <ThrowOnError extends boolean = false>(options?: Options<GenerateSsoTokenData, ThrowOnError>) => import("./client").RequestResult<GenerateSsoTokenResponses, GenerateSsoTokenErrors, ThrowOnError, "fields">;
|
|
81
|
-
/**
|
|
82
|
-
* SSO Login
|
|
83
|
-
* Authenticate user with SSO token and establish session.
|
|
84
|
-
*/
|
|
85
|
-
export declare const ssoLogin: <ThrowOnError extends boolean = false>(options: Options<SsoLoginData, ThrowOnError>) => import("./client").RequestResult<SsoLoginResponses, SsoLoginErrors, ThrowOnError, "fields">;
|
|
86
81
|
/**
|
|
87
82
|
* SSO Token Exchange
|
|
88
83
|
* Exchange SSO token for secure session handoff to target application.
|
|
@@ -113,16 +108,6 @@ export declare const getCurrentUser: <ThrowOnError extends boolean = false>(opti
|
|
|
113
108
|
* Update the current user's profile information.
|
|
114
109
|
*/
|
|
115
110
|
export declare const updateUser: <ThrowOnError extends boolean = false>(options: Options<UpdateUserData, ThrowOnError>) => import("./client").RequestResult<UpdateUserResponses, UpdateUserErrors, ThrowOnError, "fields">;
|
|
116
|
-
/**
|
|
117
|
-
* Get User Graphs
|
|
118
|
-
* Get all graph databases accessible to the current user.
|
|
119
|
-
*/
|
|
120
|
-
export declare const getUserGraphs: <ThrowOnError extends boolean = false>(options?: Options<GetUserGraphsData, ThrowOnError>) => import("./client").RequestResult<GetUserGraphsResponses, GetUserGraphsErrors, ThrowOnError, "fields">;
|
|
121
|
-
/**
|
|
122
|
-
* Select User Graph
|
|
123
|
-
* Select a specific graph as the active graph for the user.
|
|
124
|
-
*/
|
|
125
|
-
export declare const selectUserGraph: <ThrowOnError extends boolean = false>(options: Options<SelectUserGraphData, ThrowOnError>) => import("./client").RequestResult<SelectUserGraphResponses, SelectUserGraphErrors, ThrowOnError, "fields">;
|
|
126
111
|
/**
|
|
127
112
|
* Get All Credit Summaries
|
|
128
113
|
* Get credit summaries for all graphs owned by the user.
|
|
@@ -1195,6 +1180,11 @@ export declare const getSubgraphQuota: <ThrowOnError extends boolean = false>(op
|
|
|
1195
1180
|
* All copy operations are performed asynchronously with progress monitoring.
|
|
1196
1181
|
*/
|
|
1197
1182
|
export declare const copyDataToGraph: <ThrowOnError extends boolean = false>(options: Options<CopyDataToGraphData, ThrowOnError>) => import("./client").RequestResult<CopyDataToGraphResponses, CopyDataToGraphErrors, ThrowOnError, "fields">;
|
|
1183
|
+
/**
|
|
1184
|
+
* Get User Graphs
|
|
1185
|
+
* Get all graph databases accessible to the current user.
|
|
1186
|
+
*/
|
|
1187
|
+
export declare const getGraphs: <ThrowOnError extends boolean = false>(options?: Options<GetGraphsData, ThrowOnError>) => import("./client").RequestResult<GetGraphsResponses, GetGraphsErrors, ThrowOnError, "fields">;
|
|
1198
1188
|
/**
|
|
1199
1189
|
* Create New Graph Database
|
|
1200
1190
|
* Create a new graph database with specified schema and optionally an initial entity.
|
|
@@ -1244,6 +1234,11 @@ export declare const createGraph: <ThrowOnError extends boolean = false>(options
|
|
|
1244
1234
|
* List all available schema extensions for graph creation
|
|
1245
1235
|
*/
|
|
1246
1236
|
export declare const getAvailableExtensions: <ThrowOnError extends boolean = false>(options?: Options<GetAvailableExtensionsData, ThrowOnError>) => import("./client").RequestResult<GetAvailableExtensionsResponses, unknown, ThrowOnError, "fields">;
|
|
1237
|
+
/**
|
|
1238
|
+
* Select Graph
|
|
1239
|
+
* Select a specific graph as the active graph for the user.
|
|
1240
|
+
*/
|
|
1241
|
+
export declare const selectGraph: <ThrowOnError extends boolean = false>(options: Options<SelectGraphData, ThrowOnError>) => import("./client").RequestResult<SelectGraphResponses, SelectGraphErrors, ThrowOnError, "fields">;
|
|
1247
1242
|
/**
|
|
1248
1243
|
* Get Service Offerings
|
|
1249
1244
|
* Get comprehensive information about all subscription offerings.
|