@robosystems/client 0.2.41 → 0.2.42

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.
@@ -12,6 +12,8 @@ export interface Report {
12
12
  createdAt: string;
13
13
  lastGenerated: string | null;
14
14
  structures: Structure[];
15
+ /** Entity name (source company for shared reports, own entity for native) */
16
+ entityName: string | null;
15
17
  /** Non-null when this report was shared from another graph */
16
18
  sourceGraphId: string | null;
17
19
  sourceReportId: string | null;
@@ -56,6 +58,26 @@ export interface ShareResult {
56
58
  factCount: number;
57
59
  }>;
58
60
  }
61
+ export interface PublishList {
62
+ id: string;
63
+ name: string;
64
+ description: string | null;
65
+ memberCount: number;
66
+ createdBy: string;
67
+ createdAt: string;
68
+ updatedAt: string;
69
+ }
70
+ export interface PublishListDetail extends PublishList {
71
+ members: PublishListMember[];
72
+ }
73
+ export interface PublishListMember {
74
+ id: string;
75
+ targetGraphId: string;
76
+ targetGraphName: string | null;
77
+ targetOrgName: string | null;
78
+ addedBy: string;
79
+ addedAt: string;
80
+ }
59
81
  export interface CreateReportOptions {
60
82
  name: string;
61
83
  mappingId: string;
@@ -100,10 +122,22 @@ export declare class ReportClient {
100
122
  */
101
123
  delete(graphId: string, reportId: string): Promise<void>;
102
124
  /**
103
- * Share a published report to other graphs (snapshot copy).
125
+ * Share a published report to all members of a publish list (snapshot copy).
104
126
  */
105
- share(graphId: string, reportId: string, targetGraphIds: string[]): Promise<ShareResult>;
127
+ share(graphId: string, reportId: string, publishListId: string): Promise<ShareResult>;
106
128
  /** Check if a report was received via sharing (vs locally created). */
107
129
  isSharedReport(report: Report): boolean;
130
+ listPublishLists(graphId: string): Promise<PublishList[]>;
131
+ createPublishList(graphId: string, name: string, description?: string): Promise<PublishList>;
132
+ getPublishList(graphId: string, listId: string): Promise<PublishListDetail>;
133
+ updatePublishList(graphId: string, listId: string, updates: {
134
+ name?: string;
135
+ description?: string;
136
+ }): Promise<PublishList>;
137
+ deletePublishList(graphId: string, listId: string): Promise<void>;
138
+ addMembers(graphId: string, listId: string, targetGraphIds: string[]): Promise<PublishListMember[]>;
139
+ removeMember(graphId: string, listId: string, memberId: string): Promise<void>;
140
+ private _toPublishList;
141
+ private _toMember;
108
142
  private _toReport;
109
143
  }
@@ -129,12 +129,12 @@ class ReportClient {
129
129
  }
130
130
  }
131
131
  /**
132
- * Share a published report to other graphs (snapshot copy).
132
+ * Share a published report to all members of a publish list (snapshot copy).
133
133
  */
134
- async share(graphId, reportId, targetGraphIds) {
134
+ async share(graphId, reportId, publishListId) {
135
135
  const response = await (0, sdk_gen_1.shareReport)({
136
136
  path: { graph_id: graphId, report_id: reportId },
137
- body: { target_graph_ids: targetGraphIds },
137
+ body: { publish_list_id: publishListId },
138
138
  });
139
139
  if (response.error) {
140
140
  throw new Error(`Share report failed: ${JSON.stringify(response.error)}`);
@@ -154,6 +154,97 @@ class ReportClient {
154
154
  isSharedReport(report) {
155
155
  return report.sourceGraphId !== null;
156
156
  }
157
+ // ── Publish Lists ────────────────────────────────────────────────────
158
+ async listPublishLists(graphId) {
159
+ const response = await (0, sdk_gen_1.listPublishLists)({
160
+ path: { graph_id: graphId },
161
+ });
162
+ if (response.error) {
163
+ throw new Error(`List publish lists failed: ${JSON.stringify(response.error)}`);
164
+ }
165
+ const data = response.data;
166
+ return (data.publish_lists ?? []).map((pl) => this._toPublishList(pl));
167
+ }
168
+ async createPublishList(graphId, name, description) {
169
+ const response = await (0, sdk_gen_1.createPublishList)({
170
+ path: { graph_id: graphId },
171
+ body: { name, description: description ?? null },
172
+ });
173
+ if (response.error) {
174
+ throw new Error(`Create publish list failed: ${JSON.stringify(response.error)}`);
175
+ }
176
+ return this._toPublishList(response.data);
177
+ }
178
+ async getPublishList(graphId, listId) {
179
+ const response = await (0, sdk_gen_1.getPublishList)({
180
+ path: { graph_id: graphId, list_id: listId },
181
+ });
182
+ if (response.error) {
183
+ throw new Error(`Get publish list failed: ${JSON.stringify(response.error)}`);
184
+ }
185
+ const data = response.data;
186
+ return {
187
+ ...this._toPublishList(data),
188
+ members: (data.members ?? []).map((m) => this._toMember(m)),
189
+ };
190
+ }
191
+ async updatePublishList(graphId, listId, updates) {
192
+ const response = await (0, sdk_gen_1.updatePublishList)({
193
+ path: { graph_id: graphId, list_id: listId },
194
+ body: updates,
195
+ });
196
+ if (response.error) {
197
+ throw new Error(`Update publish list failed: ${JSON.stringify(response.error)}`);
198
+ }
199
+ return this._toPublishList(response.data);
200
+ }
201
+ async deletePublishList(graphId, listId) {
202
+ const response = await (0, sdk_gen_1.deletePublishList)({
203
+ path: { graph_id: graphId, list_id: listId },
204
+ });
205
+ if (response.error) {
206
+ throw new Error(`Delete publish list failed: ${JSON.stringify(response.error)}`);
207
+ }
208
+ }
209
+ async addMembers(graphId, listId, targetGraphIds) {
210
+ const response = await (0, sdk_gen_1.addPublishListMembers)({
211
+ path: { graph_id: graphId, list_id: listId },
212
+ body: { target_graph_ids: targetGraphIds },
213
+ });
214
+ if (response.error) {
215
+ throw new Error(`Add members failed: ${JSON.stringify(response.error)}`);
216
+ }
217
+ return (response.data ?? []).map((m) => this._toMember(m));
218
+ }
219
+ async removeMember(graphId, listId, memberId) {
220
+ const response = await (0, sdk_gen_1.removePublishListMember)({
221
+ path: { graph_id: graphId, list_id: listId, member_id: memberId },
222
+ });
223
+ if (response.error) {
224
+ throw new Error(`Remove member failed: ${JSON.stringify(response.error)}`);
225
+ }
226
+ }
227
+ _toPublishList(pl) {
228
+ return {
229
+ id: pl.id,
230
+ name: pl.name,
231
+ description: pl.description ?? null,
232
+ memberCount: pl.member_count ?? 0,
233
+ createdBy: pl.created_by,
234
+ createdAt: pl.created_at,
235
+ updatedAt: pl.updated_at,
236
+ };
237
+ }
238
+ _toMember(m) {
239
+ return {
240
+ id: m.id,
241
+ targetGraphId: m.target_graph_id,
242
+ targetGraphName: m.target_graph_name ?? null,
243
+ targetOrgName: m.target_org_name ?? null,
244
+ addedBy: m.added_by,
245
+ addedAt: m.added_at,
246
+ };
247
+ }
157
248
  _toReport(r) {
158
249
  return {
159
250
  id: r.id,
@@ -173,6 +264,7 @@ class ReportClient {
173
264
  name: s.name,
174
265
  structureType: s.structure_type,
175
266
  })),
267
+ entityName: r.entity_name ?? null,
176
268
  sourceGraphId: r.source_graph_id ?? null,
177
269
  sourceReportId: r.source_report_id ?? null,
178
270
  sharedAt: r.shared_at ?? null,
@@ -9,17 +9,28 @@
9
9
  */
10
10
 
11
11
  import {
12
+ addPublishListMembers,
13
+ createPublishList,
12
14
  createReport,
15
+ deletePublishList,
13
16
  deleteReport,
17
+ getPublishList,
14
18
  getReport,
15
19
  getStatement,
20
+ listPublishLists,
16
21
  listReports,
17
22
  regenerateReport,
23
+ removePublishListMember,
18
24
  shareReport,
25
+ updatePublishList,
19
26
  } from '../sdk.gen'
20
27
  import type {
21
28
  CreateReportRequest,
22
29
  FactRowResponse,
30
+ PublishListDetailResponse,
31
+ PublishListListResponse,
32
+ PublishListMemberResponse,
33
+ PublishListResponse,
23
34
  RegenerateReportRequest,
24
35
  ReportListResponse,
25
36
  ReportResponse,
@@ -45,6 +56,8 @@ export interface Report {
45
56
  createdAt: string
46
57
  lastGenerated: string | null
47
58
  structures: Structure[]
59
+ /** Entity name (source company for shared reports, own entity for native) */
60
+ entityName: string | null
48
61
  /** Non-null when this report was shared from another graph */
49
62
  sourceGraphId: string | null
50
63
  sourceReportId: string | null
@@ -95,6 +108,29 @@ export interface ShareResult {
95
108
  }>
96
109
  }
97
110
 
111
+ export interface PublishList {
112
+ id: string
113
+ name: string
114
+ description: string | null
115
+ memberCount: number
116
+ createdBy: string
117
+ createdAt: string
118
+ updatedAt: string
119
+ }
120
+
121
+ export interface PublishListDetail extends PublishList {
122
+ members: PublishListMember[]
123
+ }
124
+
125
+ export interface PublishListMember {
126
+ id: string
127
+ targetGraphId: string
128
+ targetGraphName: string | null
129
+ targetOrgName: string | null
130
+ addedBy: string
131
+ addedAt: string
132
+ }
133
+
98
134
  export interface CreateReportOptions {
99
135
  name: string
100
136
  mappingId: string
@@ -264,12 +300,12 @@ export class ReportClient {
264
300
  }
265
301
 
266
302
  /**
267
- * Share a published report to other graphs (snapshot copy).
303
+ * Share a published report to all members of a publish list (snapshot copy).
268
304
  */
269
- async share(graphId: string, reportId: string, targetGraphIds: string[]): Promise<ShareResult> {
305
+ async share(graphId: string, reportId: string, publishListId: string): Promise<ShareResult> {
270
306
  const response = await shareReport({
271
307
  path: { graph_id: graphId, report_id: reportId },
272
- body: { target_graph_ids: targetGraphIds },
308
+ body: { publish_list_id: publishListId },
273
309
  })
274
310
 
275
311
  if (response.error) {
@@ -293,6 +329,119 @@ export class ReportClient {
293
329
  return report.sourceGraphId !== null
294
330
  }
295
331
 
332
+ // ── Publish Lists ────────────────────────────────────────────────────
333
+
334
+ async listPublishLists(graphId: string): Promise<PublishList[]> {
335
+ const response = await listPublishLists({
336
+ path: { graph_id: graphId },
337
+ })
338
+ if (response.error) {
339
+ throw new Error(`List publish lists failed: ${JSON.stringify(response.error)}`)
340
+ }
341
+ const data = response.data as PublishListListResponse
342
+ return (data.publish_lists ?? []).map((pl) => this._toPublishList(pl))
343
+ }
344
+
345
+ async createPublishList(
346
+ graphId: string,
347
+ name: string,
348
+ description?: string
349
+ ): Promise<PublishList> {
350
+ const response = await createPublishList({
351
+ path: { graph_id: graphId },
352
+ body: { name, description: description ?? null },
353
+ })
354
+ if (response.error) {
355
+ throw new Error(`Create publish list failed: ${JSON.stringify(response.error)}`)
356
+ }
357
+ return this._toPublishList(response.data as PublishListResponse)
358
+ }
359
+
360
+ async getPublishList(graphId: string, listId: string): Promise<PublishListDetail> {
361
+ const response = await getPublishList({
362
+ path: { graph_id: graphId, list_id: listId },
363
+ })
364
+ if (response.error) {
365
+ throw new Error(`Get publish list failed: ${JSON.stringify(response.error)}`)
366
+ }
367
+ const data = response.data as PublishListDetailResponse
368
+ return {
369
+ ...this._toPublishList(data),
370
+ members: (data.members ?? []).map((m) => this._toMember(m)),
371
+ }
372
+ }
373
+
374
+ async updatePublishList(
375
+ graphId: string,
376
+ listId: string,
377
+ updates: { name?: string; description?: string }
378
+ ): Promise<PublishList> {
379
+ const response = await updatePublishList({
380
+ path: { graph_id: graphId, list_id: listId },
381
+ body: updates,
382
+ })
383
+ if (response.error) {
384
+ throw new Error(`Update publish list failed: ${JSON.stringify(response.error)}`)
385
+ }
386
+ return this._toPublishList(response.data as PublishListResponse)
387
+ }
388
+
389
+ async deletePublishList(graphId: string, listId: string): Promise<void> {
390
+ const response = await deletePublishList({
391
+ path: { graph_id: graphId, list_id: listId },
392
+ })
393
+ if (response.error) {
394
+ throw new Error(`Delete publish list failed: ${JSON.stringify(response.error)}`)
395
+ }
396
+ }
397
+
398
+ async addMembers(
399
+ graphId: string,
400
+ listId: string,
401
+ targetGraphIds: string[]
402
+ ): Promise<PublishListMember[]> {
403
+ const response = await addPublishListMembers({
404
+ path: { graph_id: graphId, list_id: listId },
405
+ body: { target_graph_ids: targetGraphIds },
406
+ })
407
+ if (response.error) {
408
+ throw new Error(`Add members failed: ${JSON.stringify(response.error)}`)
409
+ }
410
+ return ((response.data as PublishListMemberResponse[]) ?? []).map((m) => this._toMember(m))
411
+ }
412
+
413
+ async removeMember(graphId: string, listId: string, memberId: string): Promise<void> {
414
+ const response = await removePublishListMember({
415
+ path: { graph_id: graphId, list_id: listId, member_id: memberId },
416
+ })
417
+ if (response.error) {
418
+ throw new Error(`Remove member failed: ${JSON.stringify(response.error)}`)
419
+ }
420
+ }
421
+
422
+ private _toPublishList(pl: PublishListResponse): PublishList {
423
+ return {
424
+ id: pl.id,
425
+ name: pl.name,
426
+ description: pl.description ?? null,
427
+ memberCount: pl.member_count ?? 0,
428
+ createdBy: pl.created_by,
429
+ createdAt: pl.created_at,
430
+ updatedAt: pl.updated_at,
431
+ }
432
+ }
433
+
434
+ private _toMember(m: PublishListMemberResponse): PublishListMember {
435
+ return {
436
+ id: m.id,
437
+ targetGraphId: m.target_graph_id,
438
+ targetGraphName: m.target_graph_name ?? null,
439
+ targetOrgName: m.target_org_name ?? null,
440
+ addedBy: m.added_by,
441
+ addedAt: m.added_at,
442
+ }
443
+ }
444
+
296
445
  private _toReport(r: ReportResponse): Report {
297
446
  return {
298
447
  id: r.id,
@@ -312,6 +461,7 @@ export class ReportClient {
312
461
  name: s.name,
313
462
  structureType: s.structure_type,
314
463
  })),
464
+ entityName: r.entity_name ?? null,
315
465
  sourceGraphId: r.source_graph_id ?? null,
316
466
  sourceReportId: r.source_report_id ?? null,
317
467
  sharedAt: r.shared_at ?? null,
package/index.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
- export { autoMapElements, autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeRepositoryPlan, checkCreditBalance, checkPasswordStrength, checkStorageLimits, completeSsoAuth, createBackup, createCheckoutSession, createConnection, createFileUpload, createGraph, createMappingAssociation, createPortalSession, createPortfolio, createPosition, createReport, createRepositorySubscription, createSecurity, createStructure, createSubgraph, createTaxonomy, createUserApiKey, createView, deleteConnection, deleteDocument, deleteFile, deleteMappingAssociation, deletePortfolio, deletePosition, deleteReport, deleteSecurity, deleteSubgraph, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getLedgerAccountTree, getLedgerEntity, getLedgerSummary, getLedgerTransaction, getLedgerTrialBalance, getMappedTrialBalance, getMappingCoverage, getMappingDetail, getMaterializationStatus, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getPortfolio, getPosition, getReport, getReportingTaxonomy, getSecurity, getServiceOfferings, getServiceStatus, getStatement, getStorageUsage, getSubgraphInfo, getSubgraphQuota, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listElements, listFiles, listHoldings, listLedgerAccounts, listLedgerTransactions, listMappings, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listPortfolios, listPositions, listReports, listSecurities, listStructures, listSubgraphs, listTables, listTaxonomies, listUnmappedElements, listUserApiKeys, listUserOrgs, loginUser, logoutUser, materializeGraph, oauthCallback, type Options, queryTables, recommendAgent, refreshAuthSession, regenerateReport, registerUser, removeOrgMember, resendVerificationEmail, resetPassword, restoreBackup, revokeUserApiKey, searchDocuments, selectGraph, shareReport, ssoTokenExchange, streamOperationEvents, syncConnection, updateFile, updateLedgerEntity, updateOrg, updateOrgMemberRole, updatePortfolio, updatePosition, updateSecurity, updateUser, updateUserApiKey, updateUserPassword, uploadDocument, uploadDocumentsBulk, validateResetToken, validateSchema, verifyEmail } from './sdk.gen';
4
- export type { AccountInfo, AccountListResponse, AccountResponse, AccountTreeNode, AccountTreeResponse, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsData, AutoMapElementsError, AutoMapElementsErrors, AutoMapElementsResponses, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupRestoreRequest, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkDocumentUploadRequest, BulkDocumentUploadResponse, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeRepositoryPlanData, ChangeRepositoryPlanError, ChangeRepositoryPlanErrors, ChangeRepositoryPlanResponse, ChangeRepositoryPlanResponses, CheckCreditBalanceData, CheckCreditBalanceError, CheckCreditBalanceErrors, CheckCreditBalanceResponse, CheckCreditBalanceResponses, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, CheckStorageLimitsData, CheckStorageLimitsError, CheckStorageLimitsErrors, CheckStorageLimitsResponse, CheckStorageLimitsResponses, ClientOptions, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateAssociationRequest, CreateBackupData, CreateBackupError, CreateBackupErrors, CreateBackupResponses, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponses, CreateMappingAssociationData, CreateMappingAssociationError, CreateMappingAssociationErrors, CreateMappingAssociationResponse, CreateMappingAssociationResponses, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioData, CreatePortfolioError, CreatePortfolioErrors, CreatePortfolioRequest, CreatePortfolioResponse, CreatePortfolioResponses, CreatePositionData, CreatePositionError, CreatePositionErrors, CreatePositionRequest, CreatePositionResponse, CreatePositionResponses, CreateReportData, CreateReportError, CreateReportErrors, CreateReportRequest, CreateReportResponse, CreateReportResponses, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateSecurityData, CreateSecurityError, CreateSecurityErrors, CreateSecurityRequest, CreateSecurityResponse, CreateSecurityResponses, CreateStructureData, CreateStructureError, CreateStructureErrors, CreateStructureRequest, CreateStructureResponse, CreateStructureResponses, CreateSubgraphData, CreateSubgraphError, CreateSubgraphErrors, CreateSubgraphRequest, CreateSubgraphResponses, CreateTaxonomyData, CreateTaxonomyError, CreateTaxonomyErrors, CreateTaxonomyRequest, CreateTaxonomyResponse, CreateTaxonomyResponses, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewData, CreateViewError, CreateViewErrors, CreateViewRequest, CreateViewResponses, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteMappingAssociationData, DeleteMappingAssociationError, DeleteMappingAssociationErrors, DeleteMappingAssociationResponse, DeleteMappingAssociationResponses, DeletePortfolioData, DeletePortfolioError, DeletePortfolioErrors, DeletePortfolioResponse, DeletePortfolioResponses, DeletePositionData, DeletePositionError, DeletePositionErrors, DeletePositionResponse, DeletePositionResponses, DeleteReportData, DeleteReportError, DeleteReportErrors, DeleteReportResponse, DeleteReportResponses, DeleteSecurityData, DeleteSecurityError, DeleteSecurityErrors, DeleteSecurityResponse, DeleteSecurityResponses, DeleteSubgraphData, DeleteSubgraphError, DeleteSubgraphErrors, DeleteSubgraphRequest, DeleteSubgraphResponse, DeleteSubgraphResponse2, DeleteSubgraphResponses, DetailedTransactionsResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, ElementAssociationResponse, ElementListResponse, ElementResponse, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponse, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FactRowResponse, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusError, GetCheckoutStatusErrors, GetCheckoutStatusResponse, GetCheckoutStatusResponses, GetConnectionData, GetConnectionError, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsError, GetConnectionOptionsErrors, GetConnectionOptionsResponse, GetConnectionOptionsResponses, GetConnectionResponse, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryError, GetCreditSummaryErrors, GetCreditSummaryResponse, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserError, GetCurrentAuthUserErrors, GetCurrentAuthUserResponse, GetCurrentAuthUserResponses, GetCurrentUserData, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, GetLedgerAccountTreeData, GetLedgerAccountTreeError, GetLedgerAccountTreeErrors, GetLedgerAccountTreeResponse, GetLedgerAccountTreeResponses, GetLedgerEntityData, GetLedgerEntityError, GetLedgerEntityErrors, GetLedgerEntityResponse, GetLedgerEntityResponses, GetLedgerSummaryData, GetLedgerSummaryError, GetLedgerSummaryErrors, GetLedgerSummaryResponse, GetLedgerSummaryResponses, GetLedgerTransactionData, GetLedgerTransactionError, GetLedgerTransactionErrors, GetLedgerTransactionResponse, GetLedgerTransactionResponses, GetLedgerTrialBalanceData, GetLedgerTrialBalanceError, GetLedgerTrialBalanceErrors, GetLedgerTrialBalanceResponse, GetLedgerTrialBalanceResponses, GetMappedTrialBalanceData, GetMappedTrialBalanceError, GetMappedTrialBalanceErrors, GetMappedTrialBalanceResponses, GetMappingCoverageData, GetMappingCoverageError, GetMappingCoverageErrors, GetMappingCoverageResponse, GetMappingCoverageResponses, GetMappingDetailData, GetMappingDetailError, GetMappingDetailErrors, GetMappingDetailResponse, GetMappingDetailResponses, GetMaterializationStatusData, GetMaterializationStatusError, GetMaterializationStatusErrors, GetMaterializationStatusResponse, GetMaterializationStatusResponses, GetOperationStatusData, GetOperationStatusError, GetOperationStatusErrors, GetOperationStatusResponse, GetOperationStatusResponses, GetOrgBillingCustomerData, GetOrgBillingCustomerError, GetOrgBillingCustomerErrors, GetOrgBillingCustomerResponse, GetOrgBillingCustomerResponses, GetOrgData, GetOrgError, GetOrgErrors, GetOrgLimitsData, GetOrgLimitsError, GetOrgLimitsErrors, GetOrgLimitsResponse, GetOrgLimitsResponses, GetOrgResponse, GetOrgResponses, GetOrgSubscriptionData, GetOrgSubscriptionError, GetOrgSubscriptionErrors, GetOrgSubscriptionResponse, GetOrgSubscriptionResponses, GetOrgUpcomingInvoiceData, GetOrgUpcomingInvoiceError, GetOrgUpcomingInvoiceErrors, GetOrgUpcomingInvoiceResponse, GetOrgUpcomingInvoiceResponses, GetOrgUsageData, GetOrgUsageError, GetOrgUsageErrors, GetOrgUsageResponse, GetOrgUsageResponses, GetPasswordPolicyData, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetPortfolioData, GetPortfolioError, GetPortfolioErrors, GetPortfolioResponse, GetPortfolioResponses, GetPositionData, GetPositionError, GetPositionErrors, GetPositionResponse, GetPositionResponses, GetReportData, GetReportError, GetReportErrors, GetReportingTaxonomyData, GetReportingTaxonomyError, GetReportingTaxonomyErrors, GetReportingTaxonomyResponse, GetReportingTaxonomyResponses, GetReportResponse, GetReportResponses, GetSecurityData, GetSecurityError, GetSecurityErrors, GetSecurityResponse, GetSecurityResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetStatementData, GetStatementError, GetStatementErrors, GetStatementResponse, GetStatementResponses, GetStorageUsageData, GetStorageUsageError, GetStorageUsageErrors, GetStorageUsageResponse, GetStorageUsageResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HealthStatus, HoldingResponse, HoldingSecuritySummary, HoldingsListResponse, HttpValidationError, InitialEntityData, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, LedgerEntityResponse, LedgerEntryResponse, LedgerLineItemResponse, LedgerSummaryResponse, LedgerTransactionDetailResponse, LedgerTransactionListResponse, LedgerTransactionSummaryResponse, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListBackupsData, ListBackupsError, ListBackupsErrors, ListBackupsResponse, ListBackupsResponses, ListConnectionsData, ListConnectionsError, ListConnectionsErrors, ListConnectionsResponse, ListConnectionsResponses, ListCreditTransactionsData, ListCreditTransactionsError, ListCreditTransactionsErrors, ListCreditTransactionsResponse, ListCreditTransactionsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListElementsData, ListElementsError, ListElementsErrors, ListElementsResponse, ListElementsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListHoldingsData, ListHoldingsError, ListHoldingsErrors, ListHoldingsResponse, ListHoldingsResponses, ListLedgerAccountsData, ListLedgerAccountsError, ListLedgerAccountsErrors, ListLedgerAccountsResponse, ListLedgerAccountsResponses, ListLedgerTransactionsData, ListLedgerTransactionsError, ListLedgerTransactionsErrors, ListLedgerTransactionsResponse, ListLedgerTransactionsResponses, ListMappingsData, ListMappingsError, ListMappingsErrors, ListMappingsResponse, ListMappingsResponses, ListMcpToolsData, ListMcpToolsError, ListMcpToolsErrors, ListMcpToolsResponse, ListMcpToolsResponses, ListOrgGraphsData, ListOrgGraphsError, ListOrgGraphsErrors, ListOrgGraphsResponse, ListOrgGraphsResponses, ListOrgInvoicesData, ListOrgInvoicesError, ListOrgInvoicesErrors, ListOrgInvoicesResponse, ListOrgInvoicesResponses, ListOrgMembersData, ListOrgMembersError, ListOrgMembersErrors, ListOrgMembersResponse, ListOrgMembersResponses, ListOrgSubscriptionsData, ListOrgSubscriptionsError, ListOrgSubscriptionsErrors, ListOrgSubscriptionsResponse, ListOrgSubscriptionsResponses, ListPortfoliosData, ListPortfoliosError, ListPortfoliosErrors, ListPortfoliosResponse, ListPortfoliosResponses, ListPositionsData, ListPositionsError, ListPositionsErrors, ListPositionsResponse, ListPositionsResponses, ListReportsData, ListReportsError, ListReportsErrors, ListReportsResponse, ListReportsResponses, ListSecuritiesData, ListSecuritiesError, ListSecuritiesErrors, ListSecuritiesResponse, ListSecuritiesResponses, ListStructuresData, ListStructuresError, ListStructuresErrors, ListStructuresResponse, ListStructuresResponses, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListTaxonomiesData, ListTaxonomiesError, ListTaxonomiesErrors, ListTaxonomiesResponse, ListTaxonomiesResponses, ListUnmappedElementsData, ListUnmappedElementsError, ListUnmappedElementsErrors, ListUnmappedElementsResponse, ListUnmappedElementsResponses, ListUserApiKeysData, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsResponse, ListUserOrgsResponses, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserResponse, LogoutUserResponses, MappingCoverageResponse, MappingDetailResponse, MaterializeGraphData, MaterializeGraphError, MaterializeGraphErrors, MaterializeGraphResponse, MaterializeGraphResponses, MaterializeRequest, MaterializeResponse, MaterializeStatusResponse, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OperationCosts, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PaginationInfo, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PortalSessionResponse, PortfolioListResponse, PortfolioResponse, PositionListResponse, PositionResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportData, RegenerateReportError, RegenerateReportErrors, RegenerateReportRequest, RegenerateReportResponse, RegenerateReportResponses, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, ReportListResponse, ReportResponse, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupData, RestoreBackupError, RestoreBackupErrors, RestoreBackupResponses, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SecurityListResponse, SecurityResponse, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, ShareReportData, ShareReportError, ShareReportErrors, ShareReportRequest, ShareReportResponse, ShareReportResponse2, ShareReportResponses, ShareResultItem, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StatementResponse, StorageLimitResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, StructureListResponse, StructureResponse, StructureSummary, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SuggestedTarget, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TaxonomyListResponse, TaxonomyResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TrialBalanceResponse, TrialBalanceRow, UnmappedElementResponse, UpcomingInvoice, UpdateApiKeyRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateLedgerEntityData, UpdateLedgerEntityError, UpdateLedgerEntityErrors, UpdateLedgerEntityResponse, UpdateLedgerEntityResponses, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioData, UpdatePortfolioError, UpdatePortfolioErrors, UpdatePortfolioRequest, UpdatePortfolioResponse, UpdatePortfolioResponses, UpdatePositionData, UpdatePositionError, UpdatePositionErrors, UpdatePositionRequest, UpdatePositionResponse, UpdatePositionResponses, UpdateSecurityData, UpdateSecurityError, UpdateSecurityErrors, UpdateSecurityRequest, UpdateSecurityResponse, UpdateSecurityResponses, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UploadDocumentsBulkData, UploadDocumentsBulkError, UploadDocumentsBulkErrors, UploadDocumentsBulkResponse, UploadDocumentsBulkResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationCheckResponse, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
3
+ export { addPublishListMembers, autoMapElements, autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeRepositoryPlan, checkCreditBalance, checkPasswordStrength, checkStorageLimits, completeSsoAuth, createBackup, createCheckoutSession, createConnection, createFileUpload, createGraph, createMappingAssociation, createPortalSession, createPortfolio, createPosition, createPublishList, createReport, createRepositorySubscription, createSecurity, createStructure, createSubgraph, createTaxonomy, createUserApiKey, createView, deleteConnection, deleteDocument, deleteFile, deleteMappingAssociation, deletePortfolio, deletePosition, deletePublishList, deleteReport, deleteSecurity, deleteSubgraph, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getLedgerAccountTree, getLedgerEntity, getLedgerSummary, getLedgerTransaction, getLedgerTrialBalance, getMappedTrialBalance, getMappingCoverage, getMappingDetail, getMaterializationStatus, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getPortfolio, getPosition, getPublishList, getReport, getReportingTaxonomy, getSecurity, getServiceOfferings, getServiceStatus, getStatement, getStorageUsage, getSubgraphInfo, getSubgraphQuota, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listElements, listFiles, listHoldings, listLedgerAccounts, listLedgerEntities, listLedgerTransactions, listMappings, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listPortfolios, listPositions, listPublishLists, listReports, listSecurities, listStructures, listSubgraphs, listTables, listTaxonomies, listUnmappedElements, listUserApiKeys, listUserOrgs, loginUser, logoutUser, materializeGraph, oauthCallback, type Options, queryTables, recommendAgent, refreshAuthSession, regenerateReport, registerUser, removeOrgMember, removePublishListMember, resendVerificationEmail, resetPassword, restoreBackup, revokeUserApiKey, searchDocuments, selectGraph, shareReport, ssoTokenExchange, streamOperationEvents, syncConnection, updateFile, updateLedgerEntity, updateOrg, updateOrgMemberRole, updatePortfolio, updatePosition, updatePublishList, updateSecurity, updateUser, updateUserApiKey, updateUserPassword, uploadDocument, uploadDocumentsBulk, validateResetToken, validateSchema, verifyEmail } from './sdk.gen';
4
+ export type { AccountInfo, AccountListResponse, AccountResponse, AccountTreeNode, AccountTreeResponse, AddMembersRequest, AddPublishListMembersData, AddPublishListMembersError, AddPublishListMembersErrors, AddPublishListMembersResponse, AddPublishListMembersResponses, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsData, AutoMapElementsError, AutoMapElementsErrors, AutoMapElementsResponses, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupRestoreRequest, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkDocumentUploadRequest, BulkDocumentUploadResponse, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeRepositoryPlanData, ChangeRepositoryPlanError, ChangeRepositoryPlanErrors, ChangeRepositoryPlanResponse, ChangeRepositoryPlanResponses, CheckCreditBalanceData, CheckCreditBalanceError, CheckCreditBalanceErrors, CheckCreditBalanceResponse, CheckCreditBalanceResponses, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, CheckStorageLimitsData, CheckStorageLimitsError, CheckStorageLimitsErrors, CheckStorageLimitsResponse, CheckStorageLimitsResponses, ClientOptions, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateAssociationRequest, CreateBackupData, CreateBackupError, CreateBackupErrors, CreateBackupResponses, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponses, CreateMappingAssociationData, CreateMappingAssociationError, CreateMappingAssociationErrors, CreateMappingAssociationResponse, CreateMappingAssociationResponses, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioData, CreatePortfolioError, CreatePortfolioErrors, CreatePortfolioRequest, CreatePortfolioResponse, CreatePortfolioResponses, CreatePositionData, CreatePositionError, CreatePositionErrors, CreatePositionRequest, CreatePositionResponse, CreatePositionResponses, CreatePublishListData, CreatePublishListError, CreatePublishListErrors, CreatePublishListRequest, CreatePublishListResponse, CreatePublishListResponses, CreateReportData, CreateReportError, CreateReportErrors, CreateReportRequest, CreateReportResponse, CreateReportResponses, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateSecurityData, CreateSecurityError, CreateSecurityErrors, CreateSecurityRequest, CreateSecurityResponse, CreateSecurityResponses, CreateStructureData, CreateStructureError, CreateStructureErrors, CreateStructureRequest, CreateStructureResponse, CreateStructureResponses, CreateSubgraphData, CreateSubgraphError, CreateSubgraphErrors, CreateSubgraphRequest, CreateSubgraphResponses, CreateTaxonomyData, CreateTaxonomyError, CreateTaxonomyErrors, CreateTaxonomyRequest, CreateTaxonomyResponse, CreateTaxonomyResponses, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewData, CreateViewError, CreateViewErrors, CreateViewRequest, CreateViewResponses, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteMappingAssociationData, DeleteMappingAssociationError, DeleteMappingAssociationErrors, DeleteMappingAssociationResponse, DeleteMappingAssociationResponses, DeletePortfolioData, DeletePortfolioError, DeletePortfolioErrors, DeletePortfolioResponse, DeletePortfolioResponses, DeletePositionData, DeletePositionError, DeletePositionErrors, DeletePositionResponse, DeletePositionResponses, DeletePublishListData, DeletePublishListError, DeletePublishListErrors, DeletePublishListResponse, DeletePublishListResponses, DeleteReportData, DeleteReportError, DeleteReportErrors, DeleteReportResponse, DeleteReportResponses, DeleteSecurityData, DeleteSecurityError, DeleteSecurityErrors, DeleteSecurityResponse, DeleteSecurityResponses, DeleteSubgraphData, DeleteSubgraphError, DeleteSubgraphErrors, DeleteSubgraphRequest, DeleteSubgraphResponse, DeleteSubgraphResponse2, DeleteSubgraphResponses, DetailedTransactionsResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, ElementAssociationResponse, ElementListResponse, ElementResponse, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponse, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FactRowResponse, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusError, GetCheckoutStatusErrors, GetCheckoutStatusResponse, GetCheckoutStatusResponses, GetConnectionData, GetConnectionError, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsError, GetConnectionOptionsErrors, GetConnectionOptionsResponse, GetConnectionOptionsResponses, GetConnectionResponse, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryError, GetCreditSummaryErrors, GetCreditSummaryResponse, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserError, GetCurrentAuthUserErrors, GetCurrentAuthUserResponse, GetCurrentAuthUserResponses, GetCurrentUserData, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, GetLedgerAccountTreeData, GetLedgerAccountTreeError, GetLedgerAccountTreeErrors, GetLedgerAccountTreeResponse, GetLedgerAccountTreeResponses, GetLedgerEntityData, GetLedgerEntityError, GetLedgerEntityErrors, GetLedgerEntityResponse, GetLedgerEntityResponses, GetLedgerSummaryData, GetLedgerSummaryError, GetLedgerSummaryErrors, GetLedgerSummaryResponse, GetLedgerSummaryResponses, GetLedgerTransactionData, GetLedgerTransactionError, GetLedgerTransactionErrors, GetLedgerTransactionResponse, GetLedgerTransactionResponses, GetLedgerTrialBalanceData, GetLedgerTrialBalanceError, GetLedgerTrialBalanceErrors, GetLedgerTrialBalanceResponse, GetLedgerTrialBalanceResponses, GetMappedTrialBalanceData, GetMappedTrialBalanceError, GetMappedTrialBalanceErrors, GetMappedTrialBalanceResponses, GetMappingCoverageData, GetMappingCoverageError, GetMappingCoverageErrors, GetMappingCoverageResponse, GetMappingCoverageResponses, GetMappingDetailData, GetMappingDetailError, GetMappingDetailErrors, GetMappingDetailResponse, GetMappingDetailResponses, GetMaterializationStatusData, GetMaterializationStatusError, GetMaterializationStatusErrors, GetMaterializationStatusResponse, GetMaterializationStatusResponses, GetOperationStatusData, GetOperationStatusError, GetOperationStatusErrors, GetOperationStatusResponse, GetOperationStatusResponses, GetOrgBillingCustomerData, GetOrgBillingCustomerError, GetOrgBillingCustomerErrors, GetOrgBillingCustomerResponse, GetOrgBillingCustomerResponses, GetOrgData, GetOrgError, GetOrgErrors, GetOrgLimitsData, GetOrgLimitsError, GetOrgLimitsErrors, GetOrgLimitsResponse, GetOrgLimitsResponses, GetOrgResponse, GetOrgResponses, GetOrgSubscriptionData, GetOrgSubscriptionError, GetOrgSubscriptionErrors, GetOrgSubscriptionResponse, GetOrgSubscriptionResponses, GetOrgUpcomingInvoiceData, GetOrgUpcomingInvoiceError, GetOrgUpcomingInvoiceErrors, GetOrgUpcomingInvoiceResponse, GetOrgUpcomingInvoiceResponses, GetOrgUsageData, GetOrgUsageError, GetOrgUsageErrors, GetOrgUsageResponse, GetOrgUsageResponses, GetPasswordPolicyData, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetPortfolioData, GetPortfolioError, GetPortfolioErrors, GetPortfolioResponse, GetPortfolioResponses, GetPositionData, GetPositionError, GetPositionErrors, GetPositionResponse, GetPositionResponses, GetPublishListData, GetPublishListError, GetPublishListErrors, GetPublishListResponse, GetPublishListResponses, GetReportData, GetReportError, GetReportErrors, GetReportingTaxonomyData, GetReportingTaxonomyError, GetReportingTaxonomyErrors, GetReportingTaxonomyResponse, GetReportingTaxonomyResponses, GetReportResponse, GetReportResponses, GetSecurityData, GetSecurityError, GetSecurityErrors, GetSecurityResponse, GetSecurityResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetStatementData, GetStatementError, GetStatementErrors, GetStatementResponse, GetStatementResponses, GetStorageUsageData, GetStorageUsageError, GetStorageUsageErrors, GetStorageUsageResponse, GetStorageUsageResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HealthStatus, HoldingResponse, HoldingSecuritySummary, HoldingsListResponse, HttpValidationError, InitialEntityData, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, LedgerEntityResponse, LedgerEntryResponse, LedgerLineItemResponse, LedgerSummaryResponse, LedgerTransactionDetailResponse, LedgerTransactionListResponse, LedgerTransactionSummaryResponse, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListBackupsData, ListBackupsError, ListBackupsErrors, ListBackupsResponse, ListBackupsResponses, ListConnectionsData, ListConnectionsError, ListConnectionsErrors, ListConnectionsResponse, ListConnectionsResponses, ListCreditTransactionsData, ListCreditTransactionsError, ListCreditTransactionsErrors, ListCreditTransactionsResponse, ListCreditTransactionsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListElementsData, ListElementsError, ListElementsErrors, ListElementsResponse, ListElementsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListHoldingsData, ListHoldingsError, ListHoldingsErrors, ListHoldingsResponse, ListHoldingsResponses, ListLedgerAccountsData, ListLedgerAccountsError, ListLedgerAccountsErrors, ListLedgerAccountsResponse, ListLedgerAccountsResponses, ListLedgerEntitiesData, ListLedgerEntitiesError, ListLedgerEntitiesErrors, ListLedgerEntitiesResponse, ListLedgerEntitiesResponses, ListLedgerTransactionsData, ListLedgerTransactionsError, ListLedgerTransactionsErrors, ListLedgerTransactionsResponse, ListLedgerTransactionsResponses, ListMappingsData, ListMappingsError, ListMappingsErrors, ListMappingsResponse, ListMappingsResponses, ListMcpToolsData, ListMcpToolsError, ListMcpToolsErrors, ListMcpToolsResponse, ListMcpToolsResponses, ListOrgGraphsData, ListOrgGraphsError, ListOrgGraphsErrors, ListOrgGraphsResponse, ListOrgGraphsResponses, ListOrgInvoicesData, ListOrgInvoicesError, ListOrgInvoicesErrors, ListOrgInvoicesResponse, ListOrgInvoicesResponses, ListOrgMembersData, ListOrgMembersError, ListOrgMembersErrors, ListOrgMembersResponse, ListOrgMembersResponses, ListOrgSubscriptionsData, ListOrgSubscriptionsError, ListOrgSubscriptionsErrors, ListOrgSubscriptionsResponse, ListOrgSubscriptionsResponses, ListPortfoliosData, ListPortfoliosError, ListPortfoliosErrors, ListPortfoliosResponse, ListPortfoliosResponses, ListPositionsData, ListPositionsError, ListPositionsErrors, ListPositionsResponse, ListPositionsResponses, ListPublishListsData, ListPublishListsError, ListPublishListsErrors, ListPublishListsResponse, ListPublishListsResponses, ListReportsData, ListReportsError, ListReportsErrors, ListReportsResponse, ListReportsResponses, ListSecuritiesData, ListSecuritiesError, ListSecuritiesErrors, ListSecuritiesResponse, ListSecuritiesResponses, ListStructuresData, ListStructuresError, ListStructuresErrors, ListStructuresResponse, ListStructuresResponses, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListTaxonomiesData, ListTaxonomiesError, ListTaxonomiesErrors, ListTaxonomiesResponse, ListTaxonomiesResponses, ListUnmappedElementsData, ListUnmappedElementsError, ListUnmappedElementsErrors, ListUnmappedElementsResponse, ListUnmappedElementsResponses, ListUserApiKeysData, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsResponse, ListUserOrgsResponses, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserResponse, LogoutUserResponses, MappingCoverageResponse, MappingDetailResponse, MaterializeGraphData, MaterializeGraphError, MaterializeGraphErrors, MaterializeGraphResponse, MaterializeGraphResponses, MaterializeRequest, MaterializeResponse, MaterializeStatusResponse, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OperationCosts, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PaginationInfo, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PortalSessionResponse, PortfolioListResponse, PortfolioResponse, PositionListResponse, PositionResponse, PublishListDetailResponse, PublishListListResponse, PublishListMemberResponse, PublishListResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportData, RegenerateReportError, RegenerateReportErrors, RegenerateReportRequest, RegenerateReportResponse, RegenerateReportResponses, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberData, RemovePublishListMemberError, RemovePublishListMemberErrors, RemovePublishListMemberResponse, RemovePublishListMemberResponses, ReportListResponse, ReportResponse, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupData, RestoreBackupError, RestoreBackupErrors, RestoreBackupResponses, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SecurityListResponse, SecurityResponse, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, ShareReportData, ShareReportError, ShareReportErrors, ShareReportRequest, ShareReportResponse, ShareReportResponse2, ShareReportResponses, ShareResultItem, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StatementResponse, StorageLimitResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, StructureListResponse, StructureResponse, StructureSummary, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SuggestedTarget, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TaxonomyListResponse, TaxonomyResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TrialBalanceResponse, TrialBalanceRow, UnmappedElementResponse, UpcomingInvoice, UpdateApiKeyRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateLedgerEntityData, UpdateLedgerEntityError, UpdateLedgerEntityErrors, UpdateLedgerEntityResponse, UpdateLedgerEntityResponses, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioData, UpdatePortfolioError, UpdatePortfolioErrors, UpdatePortfolioRequest, UpdatePortfolioResponse, UpdatePortfolioResponses, UpdatePositionData, UpdatePositionError, UpdatePositionErrors, UpdatePositionRequest, UpdatePositionResponse, UpdatePositionResponses, UpdatePublishListData, UpdatePublishListError, UpdatePublishListErrors, UpdatePublishListRequest, UpdatePublishListResponse, UpdatePublishListResponses, UpdateSecurityData, UpdateSecurityError, UpdateSecurityErrors, UpdateSecurityRequest, UpdateSecurityResponse, UpdateSecurityResponses, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UploadDocumentsBulkData, UploadDocumentsBulkError, UploadDocumentsBulkErrors, UploadDocumentsBulkResponse, UploadDocumentsBulkResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationCheckResponse, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robosystems/client",
3
- "version": "0.2.41",
3
+ "version": "0.2.42",
4
4
  "description": "TypeScript client library for RoboSystems Financial Knowledge Graph API",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
package/sdk/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export { autoMapElements, autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeRepositoryPlan, checkCreditBalance, checkPasswordStrength, checkStorageLimits, completeSsoAuth, createBackup, createCheckoutSession, createConnection, createFileUpload, createGraph, createMappingAssociation, createPortalSession, createPortfolio, createPosition, createReport, createRepositorySubscription, createSecurity, createStructure, createSubgraph, createTaxonomy, createUserApiKey, createView, deleteConnection, deleteDocument, deleteFile, deleteMappingAssociation, deletePortfolio, deletePosition, deleteReport, deleteSecurity, deleteSubgraph, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getLedgerAccountTree, getLedgerEntity, getLedgerSummary, getLedgerTransaction, getLedgerTrialBalance, getMappedTrialBalance, getMappingCoverage, getMappingDetail, getMaterializationStatus, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getPortfolio, getPosition, getReport, getReportingTaxonomy, getSecurity, getServiceOfferings, getServiceStatus, getStatement, getStorageUsage, getSubgraphInfo, getSubgraphQuota, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listElements, listFiles, listHoldings, listLedgerAccounts, listLedgerTransactions, listMappings, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listPortfolios, listPositions, listReports, listSecurities, listStructures, listSubgraphs, listTables, listTaxonomies, listUnmappedElements, listUserApiKeys, listUserOrgs, loginUser, logoutUser, materializeGraph, oauthCallback, type Options, queryTables, recommendAgent, refreshAuthSession, regenerateReport, registerUser, removeOrgMember, resendVerificationEmail, resetPassword, restoreBackup, revokeUserApiKey, searchDocuments, selectGraph, shareReport, ssoTokenExchange, streamOperationEvents, syncConnection, updateFile, updateLedgerEntity, updateOrg, updateOrgMemberRole, updatePortfolio, updatePosition, updateSecurity, updateUser, updateUserApiKey, updateUserPassword, uploadDocument, uploadDocumentsBulk, validateResetToken, validateSchema, verifyEmail } from './sdk.gen';
2
- export type { AccountInfo, AccountListResponse, AccountResponse, AccountTreeNode, AccountTreeResponse, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsData, AutoMapElementsError, AutoMapElementsErrors, AutoMapElementsResponses, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupRestoreRequest, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkDocumentUploadRequest, BulkDocumentUploadResponse, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeRepositoryPlanData, ChangeRepositoryPlanError, ChangeRepositoryPlanErrors, ChangeRepositoryPlanResponse, ChangeRepositoryPlanResponses, CheckCreditBalanceData, CheckCreditBalanceError, CheckCreditBalanceErrors, CheckCreditBalanceResponse, CheckCreditBalanceResponses, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, CheckStorageLimitsData, CheckStorageLimitsError, CheckStorageLimitsErrors, CheckStorageLimitsResponse, CheckStorageLimitsResponses, ClientOptions, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateAssociationRequest, CreateBackupData, CreateBackupError, CreateBackupErrors, CreateBackupResponses, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponses, CreateMappingAssociationData, CreateMappingAssociationError, CreateMappingAssociationErrors, CreateMappingAssociationResponse, CreateMappingAssociationResponses, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioData, CreatePortfolioError, CreatePortfolioErrors, CreatePortfolioRequest, CreatePortfolioResponse, CreatePortfolioResponses, CreatePositionData, CreatePositionError, CreatePositionErrors, CreatePositionRequest, CreatePositionResponse, CreatePositionResponses, CreateReportData, CreateReportError, CreateReportErrors, CreateReportRequest, CreateReportResponse, CreateReportResponses, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateSecurityData, CreateSecurityError, CreateSecurityErrors, CreateSecurityRequest, CreateSecurityResponse, CreateSecurityResponses, CreateStructureData, CreateStructureError, CreateStructureErrors, CreateStructureRequest, CreateStructureResponse, CreateStructureResponses, CreateSubgraphData, CreateSubgraphError, CreateSubgraphErrors, CreateSubgraphRequest, CreateSubgraphResponses, CreateTaxonomyData, CreateTaxonomyError, CreateTaxonomyErrors, CreateTaxonomyRequest, CreateTaxonomyResponse, CreateTaxonomyResponses, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewData, CreateViewError, CreateViewErrors, CreateViewRequest, CreateViewResponses, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteMappingAssociationData, DeleteMappingAssociationError, DeleteMappingAssociationErrors, DeleteMappingAssociationResponse, DeleteMappingAssociationResponses, DeletePortfolioData, DeletePortfolioError, DeletePortfolioErrors, DeletePortfolioResponse, DeletePortfolioResponses, DeletePositionData, DeletePositionError, DeletePositionErrors, DeletePositionResponse, DeletePositionResponses, DeleteReportData, DeleteReportError, DeleteReportErrors, DeleteReportResponse, DeleteReportResponses, DeleteSecurityData, DeleteSecurityError, DeleteSecurityErrors, DeleteSecurityResponse, DeleteSecurityResponses, DeleteSubgraphData, DeleteSubgraphError, DeleteSubgraphErrors, DeleteSubgraphRequest, DeleteSubgraphResponse, DeleteSubgraphResponse2, DeleteSubgraphResponses, DetailedTransactionsResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, ElementAssociationResponse, ElementListResponse, ElementResponse, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponse, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FactRowResponse, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusError, GetCheckoutStatusErrors, GetCheckoutStatusResponse, GetCheckoutStatusResponses, GetConnectionData, GetConnectionError, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsError, GetConnectionOptionsErrors, GetConnectionOptionsResponse, GetConnectionOptionsResponses, GetConnectionResponse, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryError, GetCreditSummaryErrors, GetCreditSummaryResponse, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserError, GetCurrentAuthUserErrors, GetCurrentAuthUserResponse, GetCurrentAuthUserResponses, GetCurrentUserData, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, GetLedgerAccountTreeData, GetLedgerAccountTreeError, GetLedgerAccountTreeErrors, GetLedgerAccountTreeResponse, GetLedgerAccountTreeResponses, GetLedgerEntityData, GetLedgerEntityError, GetLedgerEntityErrors, GetLedgerEntityResponse, GetLedgerEntityResponses, GetLedgerSummaryData, GetLedgerSummaryError, GetLedgerSummaryErrors, GetLedgerSummaryResponse, GetLedgerSummaryResponses, GetLedgerTransactionData, GetLedgerTransactionError, GetLedgerTransactionErrors, GetLedgerTransactionResponse, GetLedgerTransactionResponses, GetLedgerTrialBalanceData, GetLedgerTrialBalanceError, GetLedgerTrialBalanceErrors, GetLedgerTrialBalanceResponse, GetLedgerTrialBalanceResponses, GetMappedTrialBalanceData, GetMappedTrialBalanceError, GetMappedTrialBalanceErrors, GetMappedTrialBalanceResponses, GetMappingCoverageData, GetMappingCoverageError, GetMappingCoverageErrors, GetMappingCoverageResponse, GetMappingCoverageResponses, GetMappingDetailData, GetMappingDetailError, GetMappingDetailErrors, GetMappingDetailResponse, GetMappingDetailResponses, GetMaterializationStatusData, GetMaterializationStatusError, GetMaterializationStatusErrors, GetMaterializationStatusResponse, GetMaterializationStatusResponses, GetOperationStatusData, GetOperationStatusError, GetOperationStatusErrors, GetOperationStatusResponse, GetOperationStatusResponses, GetOrgBillingCustomerData, GetOrgBillingCustomerError, GetOrgBillingCustomerErrors, GetOrgBillingCustomerResponse, GetOrgBillingCustomerResponses, GetOrgData, GetOrgError, GetOrgErrors, GetOrgLimitsData, GetOrgLimitsError, GetOrgLimitsErrors, GetOrgLimitsResponse, GetOrgLimitsResponses, GetOrgResponse, GetOrgResponses, GetOrgSubscriptionData, GetOrgSubscriptionError, GetOrgSubscriptionErrors, GetOrgSubscriptionResponse, GetOrgSubscriptionResponses, GetOrgUpcomingInvoiceData, GetOrgUpcomingInvoiceError, GetOrgUpcomingInvoiceErrors, GetOrgUpcomingInvoiceResponse, GetOrgUpcomingInvoiceResponses, GetOrgUsageData, GetOrgUsageError, GetOrgUsageErrors, GetOrgUsageResponse, GetOrgUsageResponses, GetPasswordPolicyData, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetPortfolioData, GetPortfolioError, GetPortfolioErrors, GetPortfolioResponse, GetPortfolioResponses, GetPositionData, GetPositionError, GetPositionErrors, GetPositionResponse, GetPositionResponses, GetReportData, GetReportError, GetReportErrors, GetReportingTaxonomyData, GetReportingTaxonomyError, GetReportingTaxonomyErrors, GetReportingTaxonomyResponse, GetReportingTaxonomyResponses, GetReportResponse, GetReportResponses, GetSecurityData, GetSecurityError, GetSecurityErrors, GetSecurityResponse, GetSecurityResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetStatementData, GetStatementError, GetStatementErrors, GetStatementResponse, GetStatementResponses, GetStorageUsageData, GetStorageUsageError, GetStorageUsageErrors, GetStorageUsageResponse, GetStorageUsageResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HealthStatus, HoldingResponse, HoldingSecuritySummary, HoldingsListResponse, HttpValidationError, InitialEntityData, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, LedgerEntityResponse, LedgerEntryResponse, LedgerLineItemResponse, LedgerSummaryResponse, LedgerTransactionDetailResponse, LedgerTransactionListResponse, LedgerTransactionSummaryResponse, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListBackupsData, ListBackupsError, ListBackupsErrors, ListBackupsResponse, ListBackupsResponses, ListConnectionsData, ListConnectionsError, ListConnectionsErrors, ListConnectionsResponse, ListConnectionsResponses, ListCreditTransactionsData, ListCreditTransactionsError, ListCreditTransactionsErrors, ListCreditTransactionsResponse, ListCreditTransactionsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListElementsData, ListElementsError, ListElementsErrors, ListElementsResponse, ListElementsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListHoldingsData, ListHoldingsError, ListHoldingsErrors, ListHoldingsResponse, ListHoldingsResponses, ListLedgerAccountsData, ListLedgerAccountsError, ListLedgerAccountsErrors, ListLedgerAccountsResponse, ListLedgerAccountsResponses, ListLedgerTransactionsData, ListLedgerTransactionsError, ListLedgerTransactionsErrors, ListLedgerTransactionsResponse, ListLedgerTransactionsResponses, ListMappingsData, ListMappingsError, ListMappingsErrors, ListMappingsResponse, ListMappingsResponses, ListMcpToolsData, ListMcpToolsError, ListMcpToolsErrors, ListMcpToolsResponse, ListMcpToolsResponses, ListOrgGraphsData, ListOrgGraphsError, ListOrgGraphsErrors, ListOrgGraphsResponse, ListOrgGraphsResponses, ListOrgInvoicesData, ListOrgInvoicesError, ListOrgInvoicesErrors, ListOrgInvoicesResponse, ListOrgInvoicesResponses, ListOrgMembersData, ListOrgMembersError, ListOrgMembersErrors, ListOrgMembersResponse, ListOrgMembersResponses, ListOrgSubscriptionsData, ListOrgSubscriptionsError, ListOrgSubscriptionsErrors, ListOrgSubscriptionsResponse, ListOrgSubscriptionsResponses, ListPortfoliosData, ListPortfoliosError, ListPortfoliosErrors, ListPortfoliosResponse, ListPortfoliosResponses, ListPositionsData, ListPositionsError, ListPositionsErrors, ListPositionsResponse, ListPositionsResponses, ListReportsData, ListReportsError, ListReportsErrors, ListReportsResponse, ListReportsResponses, ListSecuritiesData, ListSecuritiesError, ListSecuritiesErrors, ListSecuritiesResponse, ListSecuritiesResponses, ListStructuresData, ListStructuresError, ListStructuresErrors, ListStructuresResponse, ListStructuresResponses, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListTaxonomiesData, ListTaxonomiesError, ListTaxonomiesErrors, ListTaxonomiesResponse, ListTaxonomiesResponses, ListUnmappedElementsData, ListUnmappedElementsError, ListUnmappedElementsErrors, ListUnmappedElementsResponse, ListUnmappedElementsResponses, ListUserApiKeysData, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsResponse, ListUserOrgsResponses, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserResponse, LogoutUserResponses, MappingCoverageResponse, MappingDetailResponse, MaterializeGraphData, MaterializeGraphError, MaterializeGraphErrors, MaterializeGraphResponse, MaterializeGraphResponses, MaterializeRequest, MaterializeResponse, MaterializeStatusResponse, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OperationCosts, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PaginationInfo, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PortalSessionResponse, PortfolioListResponse, PortfolioResponse, PositionListResponse, PositionResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportData, RegenerateReportError, RegenerateReportErrors, RegenerateReportRequest, RegenerateReportResponse, RegenerateReportResponses, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, ReportListResponse, ReportResponse, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupData, RestoreBackupError, RestoreBackupErrors, RestoreBackupResponses, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SecurityListResponse, SecurityResponse, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, ShareReportData, ShareReportError, ShareReportErrors, ShareReportRequest, ShareReportResponse, ShareReportResponse2, ShareReportResponses, ShareResultItem, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StatementResponse, StorageLimitResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, StructureListResponse, StructureResponse, StructureSummary, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SuggestedTarget, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TaxonomyListResponse, TaxonomyResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TrialBalanceResponse, TrialBalanceRow, UnmappedElementResponse, UpcomingInvoice, UpdateApiKeyRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateLedgerEntityData, UpdateLedgerEntityError, UpdateLedgerEntityErrors, UpdateLedgerEntityResponse, UpdateLedgerEntityResponses, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioData, UpdatePortfolioError, UpdatePortfolioErrors, UpdatePortfolioRequest, UpdatePortfolioResponse, UpdatePortfolioResponses, UpdatePositionData, UpdatePositionError, UpdatePositionErrors, UpdatePositionRequest, UpdatePositionResponse, UpdatePositionResponses, UpdateSecurityData, UpdateSecurityError, UpdateSecurityErrors, UpdateSecurityRequest, UpdateSecurityResponse, UpdateSecurityResponses, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UploadDocumentsBulkData, UploadDocumentsBulkError, UploadDocumentsBulkErrors, UploadDocumentsBulkResponse, UploadDocumentsBulkResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationCheckResponse, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
1
+ export { addPublishListMembers, autoMapElements, autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeRepositoryPlan, checkCreditBalance, checkPasswordStrength, checkStorageLimits, completeSsoAuth, createBackup, createCheckoutSession, createConnection, createFileUpload, createGraph, createMappingAssociation, createPortalSession, createPortfolio, createPosition, createPublishList, createReport, createRepositorySubscription, createSecurity, createStructure, createSubgraph, createTaxonomy, createUserApiKey, createView, deleteConnection, deleteDocument, deleteFile, deleteMappingAssociation, deletePortfolio, deletePosition, deletePublishList, deleteReport, deleteSecurity, deleteSubgraph, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getLedgerAccountTree, getLedgerEntity, getLedgerSummary, getLedgerTransaction, getLedgerTrialBalance, getMappedTrialBalance, getMappingCoverage, getMappingDetail, getMaterializationStatus, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getPortfolio, getPosition, getPublishList, getReport, getReportingTaxonomy, getSecurity, getServiceOfferings, getServiceStatus, getStatement, getStorageUsage, getSubgraphInfo, getSubgraphQuota, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listElements, listFiles, listHoldings, listLedgerAccounts, listLedgerEntities, listLedgerTransactions, listMappings, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listPortfolios, listPositions, listPublishLists, listReports, listSecurities, listStructures, listSubgraphs, listTables, listTaxonomies, listUnmappedElements, listUserApiKeys, listUserOrgs, loginUser, logoutUser, materializeGraph, oauthCallback, type Options, queryTables, recommendAgent, refreshAuthSession, regenerateReport, registerUser, removeOrgMember, removePublishListMember, resendVerificationEmail, resetPassword, restoreBackup, revokeUserApiKey, searchDocuments, selectGraph, shareReport, ssoTokenExchange, streamOperationEvents, syncConnection, updateFile, updateLedgerEntity, updateOrg, updateOrgMemberRole, updatePortfolio, updatePosition, updatePublishList, updateSecurity, updateUser, updateUserApiKey, updateUserPassword, uploadDocument, uploadDocumentsBulk, validateResetToken, validateSchema, verifyEmail } from './sdk.gen';
2
+ export type { AccountInfo, AccountListResponse, AccountResponse, AccountTreeNode, AccountTreeResponse, AddMembersRequest, AddPublishListMembersData, AddPublishListMembersError, AddPublishListMembersErrors, AddPublishListMembersResponse, AddPublishListMembersResponses, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsData, AutoMapElementsError, AutoMapElementsErrors, AutoMapElementsResponses, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupRestoreRequest, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkDocumentUploadRequest, BulkDocumentUploadResponse, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeRepositoryPlanData, ChangeRepositoryPlanError, ChangeRepositoryPlanErrors, ChangeRepositoryPlanResponse, ChangeRepositoryPlanResponses, CheckCreditBalanceData, CheckCreditBalanceError, CheckCreditBalanceErrors, CheckCreditBalanceResponse, CheckCreditBalanceResponses, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, CheckStorageLimitsData, CheckStorageLimitsError, CheckStorageLimitsErrors, CheckStorageLimitsResponse, CheckStorageLimitsResponses, ClientOptions, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateAssociationRequest, CreateBackupData, CreateBackupError, CreateBackupErrors, CreateBackupResponses, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponses, CreateMappingAssociationData, CreateMappingAssociationError, CreateMappingAssociationErrors, CreateMappingAssociationResponse, CreateMappingAssociationResponses, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioData, CreatePortfolioError, CreatePortfolioErrors, CreatePortfolioRequest, CreatePortfolioResponse, CreatePortfolioResponses, CreatePositionData, CreatePositionError, CreatePositionErrors, CreatePositionRequest, CreatePositionResponse, CreatePositionResponses, CreatePublishListData, CreatePublishListError, CreatePublishListErrors, CreatePublishListRequest, CreatePublishListResponse, CreatePublishListResponses, CreateReportData, CreateReportError, CreateReportErrors, CreateReportRequest, CreateReportResponse, CreateReportResponses, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateSecurityData, CreateSecurityError, CreateSecurityErrors, CreateSecurityRequest, CreateSecurityResponse, CreateSecurityResponses, CreateStructureData, CreateStructureError, CreateStructureErrors, CreateStructureRequest, CreateStructureResponse, CreateStructureResponses, CreateSubgraphData, CreateSubgraphError, CreateSubgraphErrors, CreateSubgraphRequest, CreateSubgraphResponses, CreateTaxonomyData, CreateTaxonomyError, CreateTaxonomyErrors, CreateTaxonomyRequest, CreateTaxonomyResponse, CreateTaxonomyResponses, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewData, CreateViewError, CreateViewErrors, CreateViewRequest, CreateViewResponses, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteMappingAssociationData, DeleteMappingAssociationError, DeleteMappingAssociationErrors, DeleteMappingAssociationResponse, DeleteMappingAssociationResponses, DeletePortfolioData, DeletePortfolioError, DeletePortfolioErrors, DeletePortfolioResponse, DeletePortfolioResponses, DeletePositionData, DeletePositionError, DeletePositionErrors, DeletePositionResponse, DeletePositionResponses, DeletePublishListData, DeletePublishListError, DeletePublishListErrors, DeletePublishListResponse, DeletePublishListResponses, DeleteReportData, DeleteReportError, DeleteReportErrors, DeleteReportResponse, DeleteReportResponses, DeleteSecurityData, DeleteSecurityError, DeleteSecurityErrors, DeleteSecurityResponse, DeleteSecurityResponses, DeleteSubgraphData, DeleteSubgraphError, DeleteSubgraphErrors, DeleteSubgraphRequest, DeleteSubgraphResponse, DeleteSubgraphResponse2, DeleteSubgraphResponses, DetailedTransactionsResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, ElementAssociationResponse, ElementListResponse, ElementResponse, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponse, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FactRowResponse, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusError, GetCheckoutStatusErrors, GetCheckoutStatusResponse, GetCheckoutStatusResponses, GetConnectionData, GetConnectionError, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsError, GetConnectionOptionsErrors, GetConnectionOptionsResponse, GetConnectionOptionsResponses, GetConnectionResponse, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryError, GetCreditSummaryErrors, GetCreditSummaryResponse, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserError, GetCurrentAuthUserErrors, GetCurrentAuthUserResponse, GetCurrentAuthUserResponses, GetCurrentUserData, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, GetLedgerAccountTreeData, GetLedgerAccountTreeError, GetLedgerAccountTreeErrors, GetLedgerAccountTreeResponse, GetLedgerAccountTreeResponses, GetLedgerEntityData, GetLedgerEntityError, GetLedgerEntityErrors, GetLedgerEntityResponse, GetLedgerEntityResponses, GetLedgerSummaryData, GetLedgerSummaryError, GetLedgerSummaryErrors, GetLedgerSummaryResponse, GetLedgerSummaryResponses, GetLedgerTransactionData, GetLedgerTransactionError, GetLedgerTransactionErrors, GetLedgerTransactionResponse, GetLedgerTransactionResponses, GetLedgerTrialBalanceData, GetLedgerTrialBalanceError, GetLedgerTrialBalanceErrors, GetLedgerTrialBalanceResponse, GetLedgerTrialBalanceResponses, GetMappedTrialBalanceData, GetMappedTrialBalanceError, GetMappedTrialBalanceErrors, GetMappedTrialBalanceResponses, GetMappingCoverageData, GetMappingCoverageError, GetMappingCoverageErrors, GetMappingCoverageResponse, GetMappingCoverageResponses, GetMappingDetailData, GetMappingDetailError, GetMappingDetailErrors, GetMappingDetailResponse, GetMappingDetailResponses, GetMaterializationStatusData, GetMaterializationStatusError, GetMaterializationStatusErrors, GetMaterializationStatusResponse, GetMaterializationStatusResponses, GetOperationStatusData, GetOperationStatusError, GetOperationStatusErrors, GetOperationStatusResponse, GetOperationStatusResponses, GetOrgBillingCustomerData, GetOrgBillingCustomerError, GetOrgBillingCustomerErrors, GetOrgBillingCustomerResponse, GetOrgBillingCustomerResponses, GetOrgData, GetOrgError, GetOrgErrors, GetOrgLimitsData, GetOrgLimitsError, GetOrgLimitsErrors, GetOrgLimitsResponse, GetOrgLimitsResponses, GetOrgResponse, GetOrgResponses, GetOrgSubscriptionData, GetOrgSubscriptionError, GetOrgSubscriptionErrors, GetOrgSubscriptionResponse, GetOrgSubscriptionResponses, GetOrgUpcomingInvoiceData, GetOrgUpcomingInvoiceError, GetOrgUpcomingInvoiceErrors, GetOrgUpcomingInvoiceResponse, GetOrgUpcomingInvoiceResponses, GetOrgUsageData, GetOrgUsageError, GetOrgUsageErrors, GetOrgUsageResponse, GetOrgUsageResponses, GetPasswordPolicyData, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetPortfolioData, GetPortfolioError, GetPortfolioErrors, GetPortfolioResponse, GetPortfolioResponses, GetPositionData, GetPositionError, GetPositionErrors, GetPositionResponse, GetPositionResponses, GetPublishListData, GetPublishListError, GetPublishListErrors, GetPublishListResponse, GetPublishListResponses, GetReportData, GetReportError, GetReportErrors, GetReportingTaxonomyData, GetReportingTaxonomyError, GetReportingTaxonomyErrors, GetReportingTaxonomyResponse, GetReportingTaxonomyResponses, GetReportResponse, GetReportResponses, GetSecurityData, GetSecurityError, GetSecurityErrors, GetSecurityResponse, GetSecurityResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetStatementData, GetStatementError, GetStatementErrors, GetStatementResponse, GetStatementResponses, GetStorageUsageData, GetStorageUsageError, GetStorageUsageErrors, GetStorageUsageResponse, GetStorageUsageResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HealthStatus, HoldingResponse, HoldingSecuritySummary, HoldingsListResponse, HttpValidationError, InitialEntityData, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, LedgerEntityResponse, LedgerEntryResponse, LedgerLineItemResponse, LedgerSummaryResponse, LedgerTransactionDetailResponse, LedgerTransactionListResponse, LedgerTransactionSummaryResponse, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListBackupsData, ListBackupsError, ListBackupsErrors, ListBackupsResponse, ListBackupsResponses, ListConnectionsData, ListConnectionsError, ListConnectionsErrors, ListConnectionsResponse, ListConnectionsResponses, ListCreditTransactionsData, ListCreditTransactionsError, ListCreditTransactionsErrors, ListCreditTransactionsResponse, ListCreditTransactionsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListElementsData, ListElementsError, ListElementsErrors, ListElementsResponse, ListElementsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListHoldingsData, ListHoldingsError, ListHoldingsErrors, ListHoldingsResponse, ListHoldingsResponses, ListLedgerAccountsData, ListLedgerAccountsError, ListLedgerAccountsErrors, ListLedgerAccountsResponse, ListLedgerAccountsResponses, ListLedgerEntitiesData, ListLedgerEntitiesError, ListLedgerEntitiesErrors, ListLedgerEntitiesResponse, ListLedgerEntitiesResponses, ListLedgerTransactionsData, ListLedgerTransactionsError, ListLedgerTransactionsErrors, ListLedgerTransactionsResponse, ListLedgerTransactionsResponses, ListMappingsData, ListMappingsError, ListMappingsErrors, ListMappingsResponse, ListMappingsResponses, ListMcpToolsData, ListMcpToolsError, ListMcpToolsErrors, ListMcpToolsResponse, ListMcpToolsResponses, ListOrgGraphsData, ListOrgGraphsError, ListOrgGraphsErrors, ListOrgGraphsResponse, ListOrgGraphsResponses, ListOrgInvoicesData, ListOrgInvoicesError, ListOrgInvoicesErrors, ListOrgInvoicesResponse, ListOrgInvoicesResponses, ListOrgMembersData, ListOrgMembersError, ListOrgMembersErrors, ListOrgMembersResponse, ListOrgMembersResponses, ListOrgSubscriptionsData, ListOrgSubscriptionsError, ListOrgSubscriptionsErrors, ListOrgSubscriptionsResponse, ListOrgSubscriptionsResponses, ListPortfoliosData, ListPortfoliosError, ListPortfoliosErrors, ListPortfoliosResponse, ListPortfoliosResponses, ListPositionsData, ListPositionsError, ListPositionsErrors, ListPositionsResponse, ListPositionsResponses, ListPublishListsData, ListPublishListsError, ListPublishListsErrors, ListPublishListsResponse, ListPublishListsResponses, ListReportsData, ListReportsError, ListReportsErrors, ListReportsResponse, ListReportsResponses, ListSecuritiesData, ListSecuritiesError, ListSecuritiesErrors, ListSecuritiesResponse, ListSecuritiesResponses, ListStructuresData, ListStructuresError, ListStructuresErrors, ListStructuresResponse, ListStructuresResponses, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListTaxonomiesData, ListTaxonomiesError, ListTaxonomiesErrors, ListTaxonomiesResponse, ListTaxonomiesResponses, ListUnmappedElementsData, ListUnmappedElementsError, ListUnmappedElementsErrors, ListUnmappedElementsResponse, ListUnmappedElementsResponses, ListUserApiKeysData, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsResponse, ListUserOrgsResponses, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserResponse, LogoutUserResponses, MappingCoverageResponse, MappingDetailResponse, MaterializeGraphData, MaterializeGraphError, MaterializeGraphErrors, MaterializeGraphResponse, MaterializeGraphResponses, MaterializeRequest, MaterializeResponse, MaterializeStatusResponse, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OperationCosts, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PaginationInfo, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PortalSessionResponse, PortfolioListResponse, PortfolioResponse, PositionListResponse, PositionResponse, PublishListDetailResponse, PublishListListResponse, PublishListMemberResponse, PublishListResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportData, RegenerateReportError, RegenerateReportErrors, RegenerateReportRequest, RegenerateReportResponse, RegenerateReportResponses, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberData, RemovePublishListMemberError, RemovePublishListMemberErrors, RemovePublishListMemberResponse, RemovePublishListMemberResponses, ReportListResponse, ReportResponse, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupData, RestoreBackupError, RestoreBackupErrors, RestoreBackupResponses, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SecurityListResponse, SecurityResponse, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, ShareReportData, ShareReportError, ShareReportErrors, ShareReportRequest, ShareReportResponse, ShareReportResponse2, ShareReportResponses, ShareResultItem, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StatementResponse, StorageLimitResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, StructureListResponse, StructureResponse, StructureSummary, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SuggestedTarget, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TaxonomyListResponse, TaxonomyResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TrialBalanceResponse, TrialBalanceRow, UnmappedElementResponse, UpcomingInvoice, UpdateApiKeyRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateLedgerEntityData, UpdateLedgerEntityError, UpdateLedgerEntityErrors, UpdateLedgerEntityResponse, UpdateLedgerEntityResponses, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioData, UpdatePortfolioError, UpdatePortfolioErrors, UpdatePortfolioRequest, UpdatePortfolioResponse, UpdatePortfolioResponses, UpdatePositionData, UpdatePositionError, UpdatePositionErrors, UpdatePositionRequest, UpdatePositionResponse, UpdatePositionResponses, UpdatePublishListData, UpdatePublishListError, UpdatePublishListErrors, UpdatePublishListRequest, UpdatePublishListResponse, UpdatePublishListResponses, UpdateSecurityData, UpdateSecurityError, UpdateSecurityErrors, UpdateSecurityRequest, UpdateSecurityResponse, UpdateSecurityResponses, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UploadDocumentsBulkData, UploadDocumentsBulkError, UploadDocumentsBulkErrors, UploadDocumentsBulkResponse, UploadDocumentsBulkResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationCheckResponse, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';