@robosystems/client 0.3.8 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/LedgerClient.d.ts +27 -14
- package/artifacts/LedgerClient.js +59 -39
- package/artifacts/LedgerClient.ts +89 -62
- package/artifacts/graphql/generated/graphql.d.ts +256 -65
- package/artifacts/graphql/generated/graphql.js +276 -117
- package/artifacts/graphql/generated/graphql.ts +541 -186
- package/artifacts/graphql/queries/ledger/informationBlock.d.ts +15 -0
- package/artifacts/graphql/queries/ledger/informationBlock.js +125 -0
- package/artifacts/graphql/queries/ledger/informationBlock.ts +124 -0
- package/index.ts +2 -2
- package/package.json +1 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +7 -6
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +23 -15
- package/sdk/sdk.gen.js +46 -29
- package/sdk/sdk.gen.ts +42 -25
- package/sdk/types.gen.d.ts +217 -203
- package/sdk/types.gen.ts +226 -208
- package/sdk.gen.d.ts +23 -15
- package/sdk.gen.js +46 -29
- package/sdk.gen.ts +42 -25
- package/types.gen.d.ts +217 -203
- package/types.gen.ts +226 -208
- package/artifacts/graphql/queries/ledger/scheduleFacts.d.ts +0 -7
- package/artifacts/graphql/queries/ledger/scheduleFacts.js +0 -24
- package/artifacts/graphql/queries/ledger/scheduleFacts.ts +0 -22
- package/artifacts/graphql/queries/ledger/schedules.d.ts +0 -6
- package/artifacts/graphql/queries/ledger/schedules.js +0 -24
- package/artifacts/graphql/queries/ledger/schedules.ts +0 -22
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Information Block envelope — the cross-block-type read that replaces
|
|
3
|
+
* block-specific reads like `scheduleFacts` and (eventually)
|
|
4
|
+
* `statement`. Returns the assembled envelope with bundled atoms
|
|
5
|
+
* (elements, connections, facts) plus the typed artifact mechanics
|
|
6
|
+
* branch. See `local/docs/specs/information-block.md` §2.
|
|
7
|
+
*/
|
|
8
|
+
export declare const GET_INFORMATION_BLOCK: string;
|
|
9
|
+
/**
|
|
10
|
+
* List Information Block envelopes with optional block_type + category
|
|
11
|
+
* filters. Each returned envelope has the same shape as the
|
|
12
|
+
* single-block read, so callers can page through ready-to-render
|
|
13
|
+
* blocks.
|
|
14
|
+
*/
|
|
15
|
+
export declare const LIST_INFORMATION_BLOCKS: string;
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LIST_INFORMATION_BLOCKS = exports.GET_INFORMATION_BLOCK = void 0;
|
|
4
|
+
const graphql_request_1 = require("graphql-request");
|
|
5
|
+
/**
|
|
6
|
+
* Information Block envelope — the cross-block-type read that replaces
|
|
7
|
+
* block-specific reads like `scheduleFacts` and (eventually)
|
|
8
|
+
* `statement`. Returns the assembled envelope with bundled atoms
|
|
9
|
+
* (elements, connections, facts) plus the typed artifact mechanics
|
|
10
|
+
* branch. See `local/docs/specs/information-block.md` §2.
|
|
11
|
+
*/
|
|
12
|
+
exports.GET_INFORMATION_BLOCK = (0, graphql_request_1.gql) `
|
|
13
|
+
query GetInformationBlock($id: ID!) {
|
|
14
|
+
informationBlock(id: $id) {
|
|
15
|
+
id
|
|
16
|
+
blockType
|
|
17
|
+
name
|
|
18
|
+
displayName
|
|
19
|
+
category
|
|
20
|
+
taxonomyId
|
|
21
|
+
taxonomyName
|
|
22
|
+
informationModel {
|
|
23
|
+
conceptArrangement
|
|
24
|
+
memberArrangement
|
|
25
|
+
}
|
|
26
|
+
artifact {
|
|
27
|
+
topic
|
|
28
|
+
parentheticalNote
|
|
29
|
+
template
|
|
30
|
+
mechanics
|
|
31
|
+
}
|
|
32
|
+
elements {
|
|
33
|
+
id
|
|
34
|
+
qname
|
|
35
|
+
name
|
|
36
|
+
code
|
|
37
|
+
elementType
|
|
38
|
+
isAbstract
|
|
39
|
+
isMonetary
|
|
40
|
+
balanceType
|
|
41
|
+
periodType
|
|
42
|
+
}
|
|
43
|
+
connections {
|
|
44
|
+
id
|
|
45
|
+
fromElementId
|
|
46
|
+
toElementId
|
|
47
|
+
associationType
|
|
48
|
+
arcrole
|
|
49
|
+
orderValue
|
|
50
|
+
weight
|
|
51
|
+
}
|
|
52
|
+
facts {
|
|
53
|
+
id
|
|
54
|
+
elementId
|
|
55
|
+
value
|
|
56
|
+
periodStart
|
|
57
|
+
periodEnd
|
|
58
|
+
periodType
|
|
59
|
+
unit
|
|
60
|
+
factScope
|
|
61
|
+
factSetId
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
`;
|
|
66
|
+
/**
|
|
67
|
+
* List Information Block envelopes with optional block_type + category
|
|
68
|
+
* filters. Each returned envelope has the same shape as the
|
|
69
|
+
* single-block read, so callers can page through ready-to-render
|
|
70
|
+
* blocks.
|
|
71
|
+
*/
|
|
72
|
+
exports.LIST_INFORMATION_BLOCKS = (0, graphql_request_1.gql) `
|
|
73
|
+
query ListInformationBlocks($blockType: String, $category: String, $limit: Int, $offset: Int) {
|
|
74
|
+
informationBlocks(blockType: $blockType, category: $category, limit: $limit, offset: $offset) {
|
|
75
|
+
id
|
|
76
|
+
blockType
|
|
77
|
+
name
|
|
78
|
+
displayName
|
|
79
|
+
category
|
|
80
|
+
taxonomyId
|
|
81
|
+
taxonomyName
|
|
82
|
+
informationModel {
|
|
83
|
+
conceptArrangement
|
|
84
|
+
memberArrangement
|
|
85
|
+
}
|
|
86
|
+
artifact {
|
|
87
|
+
topic
|
|
88
|
+
parentheticalNote
|
|
89
|
+
template
|
|
90
|
+
mechanics
|
|
91
|
+
}
|
|
92
|
+
elements {
|
|
93
|
+
id
|
|
94
|
+
qname
|
|
95
|
+
name
|
|
96
|
+
code
|
|
97
|
+
elementType
|
|
98
|
+
isAbstract
|
|
99
|
+
isMonetary
|
|
100
|
+
balanceType
|
|
101
|
+
periodType
|
|
102
|
+
}
|
|
103
|
+
connections {
|
|
104
|
+
id
|
|
105
|
+
fromElementId
|
|
106
|
+
toElementId
|
|
107
|
+
associationType
|
|
108
|
+
arcrole
|
|
109
|
+
orderValue
|
|
110
|
+
weight
|
|
111
|
+
}
|
|
112
|
+
facts {
|
|
113
|
+
id
|
|
114
|
+
elementId
|
|
115
|
+
value
|
|
116
|
+
periodStart
|
|
117
|
+
periodEnd
|
|
118
|
+
periodType
|
|
119
|
+
unit
|
|
120
|
+
factScope
|
|
121
|
+
factSetId
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
`;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { gql } from 'graphql-request'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Information Block envelope — the cross-block-type read that replaces
|
|
5
|
+
* block-specific reads like `scheduleFacts` and (eventually)
|
|
6
|
+
* `statement`. Returns the assembled envelope with bundled atoms
|
|
7
|
+
* (elements, connections, facts) plus the typed artifact mechanics
|
|
8
|
+
* branch. See `local/docs/specs/information-block.md` §2.
|
|
9
|
+
*/
|
|
10
|
+
export const GET_INFORMATION_BLOCK = gql`
|
|
11
|
+
query GetInformationBlock($id: ID!) {
|
|
12
|
+
informationBlock(id: $id) {
|
|
13
|
+
id
|
|
14
|
+
blockType
|
|
15
|
+
name
|
|
16
|
+
displayName
|
|
17
|
+
category
|
|
18
|
+
taxonomyId
|
|
19
|
+
taxonomyName
|
|
20
|
+
informationModel {
|
|
21
|
+
conceptArrangement
|
|
22
|
+
memberArrangement
|
|
23
|
+
}
|
|
24
|
+
artifact {
|
|
25
|
+
topic
|
|
26
|
+
parentheticalNote
|
|
27
|
+
template
|
|
28
|
+
mechanics
|
|
29
|
+
}
|
|
30
|
+
elements {
|
|
31
|
+
id
|
|
32
|
+
qname
|
|
33
|
+
name
|
|
34
|
+
code
|
|
35
|
+
elementType
|
|
36
|
+
isAbstract
|
|
37
|
+
isMonetary
|
|
38
|
+
balanceType
|
|
39
|
+
periodType
|
|
40
|
+
}
|
|
41
|
+
connections {
|
|
42
|
+
id
|
|
43
|
+
fromElementId
|
|
44
|
+
toElementId
|
|
45
|
+
associationType
|
|
46
|
+
arcrole
|
|
47
|
+
orderValue
|
|
48
|
+
weight
|
|
49
|
+
}
|
|
50
|
+
facts {
|
|
51
|
+
id
|
|
52
|
+
elementId
|
|
53
|
+
value
|
|
54
|
+
periodStart
|
|
55
|
+
periodEnd
|
|
56
|
+
periodType
|
|
57
|
+
unit
|
|
58
|
+
factScope
|
|
59
|
+
factSetId
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
`
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* List Information Block envelopes with optional block_type + category
|
|
67
|
+
* filters. Each returned envelope has the same shape as the
|
|
68
|
+
* single-block read, so callers can page through ready-to-render
|
|
69
|
+
* blocks.
|
|
70
|
+
*/
|
|
71
|
+
export const LIST_INFORMATION_BLOCKS = gql`
|
|
72
|
+
query ListInformationBlocks($blockType: String, $category: String, $limit: Int, $offset: Int) {
|
|
73
|
+
informationBlocks(blockType: $blockType, category: $category, limit: $limit, offset: $offset) {
|
|
74
|
+
id
|
|
75
|
+
blockType
|
|
76
|
+
name
|
|
77
|
+
displayName
|
|
78
|
+
category
|
|
79
|
+
taxonomyId
|
|
80
|
+
taxonomyName
|
|
81
|
+
informationModel {
|
|
82
|
+
conceptArrangement
|
|
83
|
+
memberArrangement
|
|
84
|
+
}
|
|
85
|
+
artifact {
|
|
86
|
+
topic
|
|
87
|
+
parentheticalNote
|
|
88
|
+
template
|
|
89
|
+
mechanics
|
|
90
|
+
}
|
|
91
|
+
elements {
|
|
92
|
+
id
|
|
93
|
+
qname
|
|
94
|
+
name
|
|
95
|
+
code
|
|
96
|
+
elementType
|
|
97
|
+
isAbstract
|
|
98
|
+
isMonetary
|
|
99
|
+
balanceType
|
|
100
|
+
periodType
|
|
101
|
+
}
|
|
102
|
+
connections {
|
|
103
|
+
id
|
|
104
|
+
fromElementId
|
|
105
|
+
toElementId
|
|
106
|
+
associationType
|
|
107
|
+
arcrole
|
|
108
|
+
orderValue
|
|
109
|
+
weight
|
|
110
|
+
}
|
|
111
|
+
facts {
|
|
112
|
+
id
|
|
113
|
+
elementId
|
|
114
|
+
value
|
|
115
|
+
periodStart
|
|
116
|
+
periodEnd
|
|
117
|
+
periodType
|
|
118
|
+
unit
|
|
119
|
+
factScope
|
|
120
|
+
factSetId
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
`
|
package/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
-
export { autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createCheckoutSession, createConnection, createFileUpload, createGraph, createPortalSession, createRepositorySubscription, createUserApiKey, deleteConnection, deleteDocument, deleteFile, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getServiceOfferings, getServiceStatus, getSubgraphInfo, getSubgraphQuota, handleHttpGetExtensionsGraphIdGraphqlGet, handleHttpPostExtensionsGraphIdGraphqlPost, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listFiles, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listSubgraphs, listTables, listUserApiKeys, listUserOrgs, loginUser, logoutUser, oauthCallback, opAddPublishListMembers, opAutoMapElements, opBuildFactGrid, opChangeTier, opClosePeriod, opCreateAssociations, opCreateBackup, opCreateClosingEntry, opCreateElement, opCreateJournalEntry, opCreateManualClosingEntry, opCreateMappingAssociation, opCreatePortfolio, opCreatePosition, opCreatePublishList, opCreateReport,
|
|
4
|
-
export type { AccountInfo, AddPublishListMembersOperation, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsOperation, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkAssociationItem, BulkCreateAssociationsRequest, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, ChangeTierOp, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClientOptions, ClosePeriodOperation, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateClosingEntryOperation, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateElementRequest, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponse, CreateGraphResponses, CreateJournalEntryRequest, CreateManualClosingEntryRequest, CreateMappingAssociationOperation, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioRequest, CreatePositionRequest, CreatePublishListRequest, CreateReportRequest, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateScheduleRequest, CreateSecurityRequest, CreateStructureRequest, CreateSubgraphRequest, CreateTaxonomyRequest, CreateTransactionRequest, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewRequest, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteAssociationRequest, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteElementRequest, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteJournalEntryRequest, DeleteMappingAssociationOperation, DeletePortfolioOperation, DeletePositionOperation, DeletePublishListOperation, DeleteReportOperation, DeleteScheduleRequest, DeleteSecurityOperation, DeleteStructureRequest, DeleteSubgraphOp, DeleteTaxonomyRequest, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, EntryTemplateRequest, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, FinancialStatementAnalysisRequest, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsError, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigError, GetCaptchaConfigErrors, 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, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityError, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsError, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, 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, GetPasswordPolicyError, GetPasswordPolicyErrors, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HandleHttpGetExtensionsGraphIdGraphqlGetData, HandleHttpGetExtensionsGraphIdGraphqlGetError, HandleHttpGetExtensionsGraphIdGraphqlGetErrors, HandleHttpGetExtensionsGraphIdGraphqlGetResponses, HandleHttpPostExtensionsGraphIdGraphqlPostData, HandleHttpPostExtensionsGraphIdGraphqlPostError, HandleHttpPostExtensionsGraphIdGraphqlPostErrors, HandleHttpPostExtensionsGraphIdGraphqlPostResponses, HealthStatus, HttpValidationError, InitialEntityData, InitializeLedgerRequest, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, JournalEntryLineItemInput, LinkEntityTaxonomyRequest, 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, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, 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, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListUserApiKeysData, ListUserApiKeysError, ListUserApiKeysErrors, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsError, ListUserOrgsErrors, ListUserOrgsResponse, ListUserOrgsResponses, LiveFinancialStatementRequest, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserError, LogoutUserErrors, LogoutUserResponse, LogoutUserResponses, ManualLineItemRequest, MaterializeOp, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OpAddPublishListMembersData, OpAddPublishListMembersError, OpAddPublishListMembersErrors, OpAddPublishListMembersResponse, OpAddPublishListMembersResponses, OpAutoMapElementsData, OpAutoMapElementsError, OpAutoMapElementsErrors, OpAutoMapElementsResponse, OpAutoMapElementsResponses, OpBuildFactGridData, OpBuildFactGridError, OpBuildFactGridErrors, OpBuildFactGridResponse, OpBuildFactGridResponses, OpChangeTierData, OpChangeTierError, OpChangeTierErrors, OpChangeTierResponse, OpChangeTierResponses, OpClosePeriodData, OpClosePeriodError, OpClosePeriodErrors, OpClosePeriodResponse, OpClosePeriodResponses, OpCreateAssociationsData, OpCreateAssociationsError, OpCreateAssociationsErrors, OpCreateAssociationsResponse, OpCreateAssociationsResponses, OpCreateBackupData, OpCreateBackupError, OpCreateBackupErrors, OpCreateBackupResponse, OpCreateBackupResponses, OpCreateClosingEntryData, OpCreateClosingEntryError, OpCreateClosingEntryErrors, OpCreateClosingEntryResponse, OpCreateClosingEntryResponses, OpCreateElementData, OpCreateElementError, OpCreateElementErrors, OpCreateElementResponse, OpCreateElementResponses, OpCreateJournalEntryData, OpCreateJournalEntryError, OpCreateJournalEntryErrors, OpCreateJournalEntryResponse, OpCreateJournalEntryResponses, OpCreateManualClosingEntryData, OpCreateManualClosingEntryError, OpCreateManualClosingEntryErrors, OpCreateManualClosingEntryResponse, OpCreateManualClosingEntryResponses, OpCreateMappingAssociationData, OpCreateMappingAssociationError, OpCreateMappingAssociationErrors, OpCreateMappingAssociationResponse, OpCreateMappingAssociationResponses, OpCreatePortfolioData, OpCreatePortfolioError, OpCreatePortfolioErrors, OpCreatePortfolioResponse, OpCreatePortfolioResponses, OpCreatePositionData, OpCreatePositionError, OpCreatePositionErrors, OpCreatePositionResponse, OpCreatePositionResponses, OpCreatePublishListData, OpCreatePublishListError, OpCreatePublishListErrors, OpCreatePublishListResponse, OpCreatePublishListResponses, OpCreateReportData, OpCreateReportError, OpCreateReportErrors, OpCreateReportResponse, OpCreateReportResponses, OpCreateScheduleData, OpCreateScheduleError, OpCreateScheduleErrors, OpCreateScheduleResponse, OpCreateScheduleResponses, OpCreateSecurityData, OpCreateSecurityError, OpCreateSecurityErrors, OpCreateSecurityResponse, OpCreateSecurityResponses, OpCreateStructureData, OpCreateStructureError, OpCreateStructureErrors, OpCreateStructureResponse, OpCreateStructureResponses, OpCreateSubgraphData, OpCreateSubgraphError, OpCreateSubgraphErrors, OpCreateSubgraphResponse, OpCreateSubgraphResponses, OpCreateTaxonomyData, OpCreateTaxonomyError, OpCreateTaxonomyErrors, OpCreateTaxonomyResponse, OpCreateTaxonomyResponses, OpCreateTransactionData, OpCreateTransactionError, OpCreateTransactionErrors, OpCreateTransactionResponse, OpCreateTransactionResponses, OpDeleteAssociationData, OpDeleteAssociationError, OpDeleteAssociationErrors, OpDeleteAssociationResponse, OpDeleteAssociationResponses, OpDeleteElementData, OpDeleteElementError, OpDeleteElementErrors, OpDeleteElementResponse, OpDeleteElementResponses, OpDeleteJournalEntryData, OpDeleteJournalEntryError, OpDeleteJournalEntryErrors, OpDeleteJournalEntryResponse, OpDeleteJournalEntryResponses, OpDeleteMappingAssociationData, OpDeleteMappingAssociationError, OpDeleteMappingAssociationErrors, OpDeleteMappingAssociationResponse, OpDeleteMappingAssociationResponses, OpDeletePortfolioData, OpDeletePortfolioError, OpDeletePortfolioErrors, OpDeletePortfolioResponse, OpDeletePortfolioResponses, OpDeletePositionData, OpDeletePositionError, OpDeletePositionErrors, OpDeletePositionResponse, OpDeletePositionResponses, OpDeletePublishListData, OpDeletePublishListError, OpDeletePublishListErrors, OpDeletePublishListResponse, OpDeletePublishListResponses, OpDeleteReportData, OpDeleteReportError, OpDeleteReportErrors, OpDeleteReportResponse, OpDeleteReportResponses, OpDeleteScheduleData, OpDeleteScheduleError, OpDeleteScheduleErrors, OpDeleteScheduleResponse, OpDeleteScheduleResponses, OpDeleteSecurityData, OpDeleteSecurityError, OpDeleteSecurityErrors, OpDeleteSecurityResponse, OpDeleteSecurityResponses, OpDeleteStructureData, OpDeleteStructureError, OpDeleteStructureErrors, OpDeleteStructureResponse, OpDeleteStructureResponses, OpDeleteSubgraphData, OpDeleteSubgraphError, OpDeleteSubgraphErrors, OpDeleteSubgraphResponse, OpDeleteSubgraphResponses, OpDeleteTaxonomyData, OpDeleteTaxonomyError, OpDeleteTaxonomyErrors, OpDeleteTaxonomyResponse, OpDeleteTaxonomyResponses, OperationCosts, OperationEnvelope, OperationError, OpFinancialStatementAnalysisData, OpFinancialStatementAnalysisError, OpFinancialStatementAnalysisErrors, OpFinancialStatementAnalysisResponse, OpFinancialStatementAnalysisResponses, OpInitializeLedgerData, OpInitializeLedgerError, OpInitializeLedgerErrors, OpInitializeLedgerResponse, OpInitializeLedgerResponses, OpLinkEntityTaxonomyData, OpLinkEntityTaxonomyError, OpLinkEntityTaxonomyErrors, OpLinkEntityTaxonomyResponse, OpLinkEntityTaxonomyResponses, OpLiveFinancialStatementData, OpLiveFinancialStatementError, OpLiveFinancialStatementErrors, OpLiveFinancialStatementResponse, OpLiveFinancialStatementResponses, OpMaterializeData, OpMaterializeError, OpMaterializeErrors, OpMaterializeResponse, OpMaterializeResponses, OpRegenerateReportData, OpRegenerateReportError, OpRegenerateReportErrors, OpRegenerateReportResponse, OpRegenerateReportResponses, OpRemovePublishListMemberData, OpRemovePublishListMemberError, OpRemovePublishListMemberErrors, OpRemovePublishListMemberResponse, OpRemovePublishListMemberResponses, OpReopenPeriodData, OpReopenPeriodError, OpReopenPeriodErrors, OpReopenPeriodResponse, OpReopenPeriodResponses, OpRestoreBackupData, OpRestoreBackupError, OpRestoreBackupErrors, OpRestoreBackupResponse, OpRestoreBackupResponses, OpReverseJournalEntryData, OpReverseJournalEntryError, OpReverseJournalEntryErrors, OpReverseJournalEntryResponse, OpReverseJournalEntryResponses, OpSetCloseTargetData, OpSetCloseTargetError, OpSetCloseTargetErrors, OpSetCloseTargetResponse, OpSetCloseTargetResponses, OpShareReportData, OpShareReportError, OpShareReportErrors, OpShareReportResponse, OpShareReportResponses, OpTruncateScheduleData, OpTruncateScheduleError, OpTruncateScheduleErrors, OpTruncateScheduleResponse, OpTruncateScheduleResponses, OpUpdateAssociationData, OpUpdateAssociationError, OpUpdateAssociationErrors, OpUpdateAssociationResponse, OpUpdateAssociationResponses, OpUpdateElementData, OpUpdateElementError, OpUpdateElementErrors, OpUpdateElementResponse, OpUpdateElementResponses, OpUpdateEntityData, OpUpdateEntityError, OpUpdateEntityErrors, OpUpdateEntityResponse, OpUpdateEntityResponses, OpUpdateJournalEntryData, OpUpdateJournalEntryError, OpUpdateJournalEntryErrors, OpUpdateJournalEntryResponse, OpUpdateJournalEntryResponses, OpUpdatePortfolioData, OpUpdatePortfolioError, OpUpdatePortfolioErrors, OpUpdatePortfolioResponse, OpUpdatePortfolioResponses, OpUpdatePositionData, OpUpdatePositionError, OpUpdatePositionErrors, OpUpdatePositionResponse, OpUpdatePositionResponses, OpUpdatePublishListData, OpUpdatePublishListError, OpUpdatePublishListErrors, OpUpdatePublishListResponse, OpUpdatePublishListResponses, OpUpdateScheduleData, OpUpdateScheduleError, OpUpdateScheduleErrors, OpUpdateScheduleResponse, OpUpdateScheduleResponses, OpUpdateSecurityData, OpUpdateSecurityError, OpUpdateSecurityErrors, OpUpdateSecurityResponse, OpUpdateSecurityResponses, OpUpdateStructureData, OpUpdateStructureError, OpUpdateStructureErrors, OpUpdateStructureResponse, OpUpdateStructureResponses, OpUpdateTaxonomyData, OpUpdateTaxonomyError, OpUpdateTaxonomyErrors, OpUpdateTaxonomyResponse, OpUpdateTaxonomyResponses, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PeriodSpec, PortalSessionResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportOperation, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberOperation, ReopenPeriodOperation, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupOp, ReverseJournalEntryRequest, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, ScheduleMetadataRequest, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, SetCloseTargetOperation, ShareReportOperation, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TruncateScheduleOperation, UpcomingInvoice, UpdateApiKeyRequest, UpdateAssociationRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateElementRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateJournalEntryRequest, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioOperation, UpdatePositionOperation, UpdatePublishListOperation, UpdateScheduleRequest, UpdateSecurityOperation, UpdateStructureRequest, UpdateTaxonomyRequest, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
|
|
3
|
+
export { autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createCheckoutSession, createConnection, createFileUpload, createGraph, createPortalSession, createRepositorySubscription, createUserApiKey, deleteConnection, deleteDocument, deleteFile, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getServiceOfferings, getServiceStatus, getSubgraphInfo, getSubgraphQuota, handleHttpGetExtensionsGraphIdGraphqlGet, handleHttpPostExtensionsGraphIdGraphqlPost, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listFiles, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listSubgraphs, listTables, listUserApiKeys, listUserOrgs, loginUser, logoutUser, oauthCallback, opAddPublishListMembers, opAutoMapElements, opBuildFactGrid, opChangeTier, opClosePeriod, opCreateAssociations, opCreateBackup, opCreateClosingEntry, opCreateElement, opCreateInformationBlock, opCreateJournalEntry, opCreateManualClosingEntry, opCreateMappingAssociation, opCreatePortfolio, opCreatePosition, opCreatePublishList, opCreateReport, opCreateSecurity, opCreateStructure, opCreateSubgraph, opCreateTaxonomy, opCreateTransaction, opDeleteAssociation, opDeleteElement, opDeleteInformationBlock, opDeleteJournalEntry, opDeleteMappingAssociation, opDeletePortfolio, opDeletePosition, opDeletePublishList, opDeleteReport, opDeleteSecurity, opDeleteStructure, opDeleteSubgraph, opDeleteTaxonomy, opEvaluateRules, opFinancialStatementAnalysis, opInitializeLedger, opLinkEntityTaxonomy, opLiveFinancialStatement, opMaterialize, opRegenerateReport, opRemovePublishListMember, opReopenPeriod, opRestoreBackup, opReverseJournalEntry, opSetCloseTarget, opShareReport, type Options, opTruncateSchedule, opUpdateAssociation, opUpdateElement, opUpdateEntity, opUpdateInformationBlock, opUpdateJournalEntry, opUpdatePortfolio, opUpdatePosition, opUpdatePublishList, opUpdateSecurity, opUpdateStructure, opUpdateTaxonomy, queryTables, recommendAgent, refreshAuthSession, registerUser, removeOrgMember, resendVerificationEmail, resetPassword, revokeUserApiKey, searchDocuments, selectGraph, ssoTokenExchange, streamOperationEvents, syncConnection, updateDocument, updateFile, updateOrg, updateOrgMemberRole, updateUser, updateUserApiKey, updateUserPassword, uploadDocument, validateResetToken, validateSchema, verifyEmail } from './sdk.gen';
|
|
4
|
+
export type { AccountInfo, AddPublishListMembersOperation, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsOperation, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkAssociationItem, BulkCreateAssociationsRequest, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, ChangeTierOp, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClientOptions, ClosePeriodOperation, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateClosingEntryOperation, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateElementRequest, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponse, CreateGraphResponses, CreateInformationBlockRequest, CreateJournalEntryRequest, CreateManualClosingEntryRequest, CreateMappingAssociationOperation, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioRequest, CreatePositionRequest, CreatePublishListRequest, CreateReportRequest, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateSecurityRequest, CreateStructureRequest, CreateSubgraphRequest, CreateTaxonomyRequest, CreateTransactionRequest, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewRequest, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteAssociationRequest, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteElementRequest, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteInformationBlockRequest, DeleteJournalEntryRequest, DeleteMappingAssociationOperation, DeletePortfolioOperation, DeletePositionOperation, DeletePublishListOperation, DeleteReportOperation, DeleteSecurityOperation, DeleteStructureRequest, DeleteSubgraphOp, DeleteTaxonomyRequest, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, ErrorResponse, EvaluateRulesRequest, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, FinancialStatementAnalysisRequest, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsError, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigError, GetCaptchaConfigErrors, 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, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityError, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsError, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, 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, GetPasswordPolicyError, GetPasswordPolicyErrors, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HandleHttpGetExtensionsGraphIdGraphqlGetData, HandleHttpGetExtensionsGraphIdGraphqlGetError, HandleHttpGetExtensionsGraphIdGraphqlGetErrors, HandleHttpGetExtensionsGraphIdGraphqlGetResponses, HandleHttpPostExtensionsGraphIdGraphqlPostData, HandleHttpPostExtensionsGraphIdGraphqlPostError, HandleHttpPostExtensionsGraphIdGraphqlPostErrors, HandleHttpPostExtensionsGraphIdGraphqlPostResponses, HealthStatus, HttpValidationError, InitialEntityData, InitializeLedgerRequest, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, JournalEntryLineItemInput, LinkEntityTaxonomyRequest, 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, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, 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, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListUserApiKeysData, ListUserApiKeysError, ListUserApiKeysErrors, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsError, ListUserOrgsErrors, ListUserOrgsResponse, ListUserOrgsResponses, LiveFinancialStatementRequest, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserError, LogoutUserErrors, LogoutUserResponse, LogoutUserResponses, ManualLineItemRequest, MaterializeOp, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OpAddPublishListMembersData, OpAddPublishListMembersError, OpAddPublishListMembersErrors, OpAddPublishListMembersResponse, OpAddPublishListMembersResponses, OpAutoMapElementsData, OpAutoMapElementsError, OpAutoMapElementsErrors, OpAutoMapElementsResponse, OpAutoMapElementsResponses, OpBuildFactGridData, OpBuildFactGridError, OpBuildFactGridErrors, OpBuildFactGridResponse, OpBuildFactGridResponses, OpChangeTierData, OpChangeTierError, OpChangeTierErrors, OpChangeTierResponse, OpChangeTierResponses, OpClosePeriodData, OpClosePeriodError, OpClosePeriodErrors, OpClosePeriodResponse, OpClosePeriodResponses, OpCreateAssociationsData, OpCreateAssociationsError, OpCreateAssociationsErrors, OpCreateAssociationsResponse, OpCreateAssociationsResponses, OpCreateBackupData, OpCreateBackupError, OpCreateBackupErrors, OpCreateBackupResponse, OpCreateBackupResponses, OpCreateClosingEntryData, OpCreateClosingEntryError, OpCreateClosingEntryErrors, OpCreateClosingEntryResponse, OpCreateClosingEntryResponses, OpCreateElementData, OpCreateElementError, OpCreateElementErrors, OpCreateElementResponse, OpCreateElementResponses, OpCreateInformationBlockData, OpCreateInformationBlockError, OpCreateInformationBlockErrors, OpCreateInformationBlockResponse, OpCreateInformationBlockResponses, OpCreateJournalEntryData, OpCreateJournalEntryError, OpCreateJournalEntryErrors, OpCreateJournalEntryResponse, OpCreateJournalEntryResponses, OpCreateManualClosingEntryData, OpCreateManualClosingEntryError, OpCreateManualClosingEntryErrors, OpCreateManualClosingEntryResponse, OpCreateManualClosingEntryResponses, OpCreateMappingAssociationData, OpCreateMappingAssociationError, OpCreateMappingAssociationErrors, OpCreateMappingAssociationResponse, OpCreateMappingAssociationResponses, OpCreatePortfolioData, OpCreatePortfolioError, OpCreatePortfolioErrors, OpCreatePortfolioResponse, OpCreatePortfolioResponses, OpCreatePositionData, OpCreatePositionError, OpCreatePositionErrors, OpCreatePositionResponse, OpCreatePositionResponses, OpCreatePublishListData, OpCreatePublishListError, OpCreatePublishListErrors, OpCreatePublishListResponse, OpCreatePublishListResponses, OpCreateReportData, OpCreateReportError, OpCreateReportErrors, OpCreateReportResponse, OpCreateReportResponses, OpCreateSecurityData, OpCreateSecurityError, OpCreateSecurityErrors, OpCreateSecurityResponse, OpCreateSecurityResponses, OpCreateStructureData, OpCreateStructureError, OpCreateStructureErrors, OpCreateStructureResponse, OpCreateStructureResponses, OpCreateSubgraphData, OpCreateSubgraphError, OpCreateSubgraphErrors, OpCreateSubgraphResponse, OpCreateSubgraphResponses, OpCreateTaxonomyData, OpCreateTaxonomyError, OpCreateTaxonomyErrors, OpCreateTaxonomyResponse, OpCreateTaxonomyResponses, OpCreateTransactionData, OpCreateTransactionError, OpCreateTransactionErrors, OpCreateTransactionResponse, OpCreateTransactionResponses, OpDeleteAssociationData, OpDeleteAssociationError, OpDeleteAssociationErrors, OpDeleteAssociationResponse, OpDeleteAssociationResponses, OpDeleteElementData, OpDeleteElementError, OpDeleteElementErrors, OpDeleteElementResponse, OpDeleteElementResponses, OpDeleteInformationBlockData, OpDeleteInformationBlockError, OpDeleteInformationBlockErrors, OpDeleteInformationBlockResponse, OpDeleteInformationBlockResponses, OpDeleteJournalEntryData, OpDeleteJournalEntryError, OpDeleteJournalEntryErrors, OpDeleteJournalEntryResponse, OpDeleteJournalEntryResponses, OpDeleteMappingAssociationData, OpDeleteMappingAssociationError, OpDeleteMappingAssociationErrors, OpDeleteMappingAssociationResponse, OpDeleteMappingAssociationResponses, OpDeletePortfolioData, OpDeletePortfolioError, OpDeletePortfolioErrors, OpDeletePortfolioResponse, OpDeletePortfolioResponses, OpDeletePositionData, OpDeletePositionError, OpDeletePositionErrors, OpDeletePositionResponse, OpDeletePositionResponses, OpDeletePublishListData, OpDeletePublishListError, OpDeletePublishListErrors, OpDeletePublishListResponse, OpDeletePublishListResponses, OpDeleteReportData, OpDeleteReportError, OpDeleteReportErrors, OpDeleteReportResponse, OpDeleteReportResponses, OpDeleteSecurityData, OpDeleteSecurityError, OpDeleteSecurityErrors, OpDeleteSecurityResponse, OpDeleteSecurityResponses, OpDeleteStructureData, OpDeleteStructureError, OpDeleteStructureErrors, OpDeleteStructureResponse, OpDeleteStructureResponses, OpDeleteSubgraphData, OpDeleteSubgraphError, OpDeleteSubgraphErrors, OpDeleteSubgraphResponse, OpDeleteSubgraphResponses, OpDeleteTaxonomyData, OpDeleteTaxonomyError, OpDeleteTaxonomyErrors, OpDeleteTaxonomyResponse, OpDeleteTaxonomyResponses, OperationCosts, OperationEnvelope, OperationError, OpEvaluateRulesData, OpEvaluateRulesError, OpEvaluateRulesErrors, OpEvaluateRulesResponse, OpEvaluateRulesResponses, OpFinancialStatementAnalysisData, OpFinancialStatementAnalysisError, OpFinancialStatementAnalysisErrors, OpFinancialStatementAnalysisResponse, OpFinancialStatementAnalysisResponses, OpInitializeLedgerData, OpInitializeLedgerError, OpInitializeLedgerErrors, OpInitializeLedgerResponse, OpInitializeLedgerResponses, OpLinkEntityTaxonomyData, OpLinkEntityTaxonomyError, OpLinkEntityTaxonomyErrors, OpLinkEntityTaxonomyResponse, OpLinkEntityTaxonomyResponses, OpLiveFinancialStatementData, OpLiveFinancialStatementError, OpLiveFinancialStatementErrors, OpLiveFinancialStatementResponse, OpLiveFinancialStatementResponses, OpMaterializeData, OpMaterializeError, OpMaterializeErrors, OpMaterializeResponse, OpMaterializeResponses, OpRegenerateReportData, OpRegenerateReportError, OpRegenerateReportErrors, OpRegenerateReportResponse, OpRegenerateReportResponses, OpRemovePublishListMemberData, OpRemovePublishListMemberError, OpRemovePublishListMemberErrors, OpRemovePublishListMemberResponse, OpRemovePublishListMemberResponses, OpReopenPeriodData, OpReopenPeriodError, OpReopenPeriodErrors, OpReopenPeriodResponse, OpReopenPeriodResponses, OpRestoreBackupData, OpRestoreBackupError, OpRestoreBackupErrors, OpRestoreBackupResponse, OpRestoreBackupResponses, OpReverseJournalEntryData, OpReverseJournalEntryError, OpReverseJournalEntryErrors, OpReverseJournalEntryResponse, OpReverseJournalEntryResponses, OpSetCloseTargetData, OpSetCloseTargetError, OpSetCloseTargetErrors, OpSetCloseTargetResponse, OpSetCloseTargetResponses, OpShareReportData, OpShareReportError, OpShareReportErrors, OpShareReportResponse, OpShareReportResponses, OpTruncateScheduleData, OpTruncateScheduleError, OpTruncateScheduleErrors, OpTruncateScheduleResponse, OpTruncateScheduleResponses, OpUpdateAssociationData, OpUpdateAssociationError, OpUpdateAssociationErrors, OpUpdateAssociationResponse, OpUpdateAssociationResponses, OpUpdateElementData, OpUpdateElementError, OpUpdateElementErrors, OpUpdateElementResponse, OpUpdateElementResponses, OpUpdateEntityData, OpUpdateEntityError, OpUpdateEntityErrors, OpUpdateEntityResponse, OpUpdateEntityResponses, OpUpdateInformationBlockData, OpUpdateInformationBlockError, OpUpdateInformationBlockErrors, OpUpdateInformationBlockResponse, OpUpdateInformationBlockResponses, OpUpdateJournalEntryData, OpUpdateJournalEntryError, OpUpdateJournalEntryErrors, OpUpdateJournalEntryResponse, OpUpdateJournalEntryResponses, OpUpdatePortfolioData, OpUpdatePortfolioError, OpUpdatePortfolioErrors, OpUpdatePortfolioResponse, OpUpdatePortfolioResponses, OpUpdatePositionData, OpUpdatePositionError, OpUpdatePositionErrors, OpUpdatePositionResponse, OpUpdatePositionResponses, OpUpdatePublishListData, OpUpdatePublishListError, OpUpdatePublishListErrors, OpUpdatePublishListResponse, OpUpdatePublishListResponses, OpUpdateSecurityData, OpUpdateSecurityError, OpUpdateSecurityErrors, OpUpdateSecurityResponse, OpUpdateSecurityResponses, OpUpdateStructureData, OpUpdateStructureError, OpUpdateStructureErrors, OpUpdateStructureResponse, OpUpdateStructureResponses, OpUpdateTaxonomyData, OpUpdateTaxonomyError, OpUpdateTaxonomyErrors, OpUpdateTaxonomyResponse, OpUpdateTaxonomyResponses, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PeriodSpec, PortalSessionResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportOperation, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberOperation, ReopenPeriodOperation, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupOp, ReverseJournalEntryRequest, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, SetCloseTargetOperation, ShareReportOperation, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TruncateScheduleOperation, UpcomingInvoice, UpdateApiKeyRequest, UpdateAssociationRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateElementRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateInformationBlockRequest, UpdateJournalEntryRequest, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioOperation, UpdatePositionOperation, UpdatePublishListOperation, UpdateSecurityOperation, UpdateStructureRequest, UpdateTaxonomyRequest, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
|
package/package.json
CHANGED
package/sdk/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createCheckoutSession, createConnection, createFileUpload, createGraph, createPortalSession, createRepositorySubscription, createUserApiKey, deleteConnection, deleteDocument, deleteFile, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getServiceOfferings, getServiceStatus, getSubgraphInfo, getSubgraphQuota, handleHttpGetExtensionsGraphIdGraphqlGet, handleHttpPostExtensionsGraphIdGraphqlPost, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listFiles, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listSubgraphs, listTables, listUserApiKeys, listUserOrgs, loginUser, logoutUser, oauthCallback, opAddPublishListMembers, opAutoMapElements, opBuildFactGrid, opChangeTier, opClosePeriod, opCreateAssociations, opCreateBackup, opCreateClosingEntry, opCreateElement, opCreateJournalEntry, opCreateManualClosingEntry, opCreateMappingAssociation, opCreatePortfolio, opCreatePosition, opCreatePublishList, opCreateReport,
|
|
2
|
-
export type { AccountInfo, AddPublishListMembersOperation, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsOperation, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkAssociationItem, BulkCreateAssociationsRequest, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, ChangeTierOp, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClientOptions, ClosePeriodOperation, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateClosingEntryOperation, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateElementRequest, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponse, CreateGraphResponses, CreateJournalEntryRequest, CreateManualClosingEntryRequest, CreateMappingAssociationOperation, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioRequest, CreatePositionRequest, CreatePublishListRequest, CreateReportRequest, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateScheduleRequest, CreateSecurityRequest, CreateStructureRequest, CreateSubgraphRequest, CreateTaxonomyRequest, CreateTransactionRequest, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewRequest, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteAssociationRequest, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteElementRequest, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteJournalEntryRequest, DeleteMappingAssociationOperation, DeletePortfolioOperation, DeletePositionOperation, DeletePublishListOperation, DeleteReportOperation, DeleteScheduleRequest, DeleteSecurityOperation, DeleteStructureRequest, DeleteSubgraphOp, DeleteTaxonomyRequest, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, EntryTemplateRequest, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, FinancialStatementAnalysisRequest, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsError, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigError, GetCaptchaConfigErrors, 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, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityError, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsError, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, 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, GetPasswordPolicyError, GetPasswordPolicyErrors, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HandleHttpGetExtensionsGraphIdGraphqlGetData, HandleHttpGetExtensionsGraphIdGraphqlGetError, HandleHttpGetExtensionsGraphIdGraphqlGetErrors, HandleHttpGetExtensionsGraphIdGraphqlGetResponses, HandleHttpPostExtensionsGraphIdGraphqlPostData, HandleHttpPostExtensionsGraphIdGraphqlPostError, HandleHttpPostExtensionsGraphIdGraphqlPostErrors, HandleHttpPostExtensionsGraphIdGraphqlPostResponses, HealthStatus, HttpValidationError, InitialEntityData, InitializeLedgerRequest, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, JournalEntryLineItemInput, LinkEntityTaxonomyRequest, 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, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, 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, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListUserApiKeysData, ListUserApiKeysError, ListUserApiKeysErrors, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsError, ListUserOrgsErrors, ListUserOrgsResponse, ListUserOrgsResponses, LiveFinancialStatementRequest, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserError, LogoutUserErrors, LogoutUserResponse, LogoutUserResponses, ManualLineItemRequest, MaterializeOp, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OpAddPublishListMembersData, OpAddPublishListMembersError, OpAddPublishListMembersErrors, OpAddPublishListMembersResponse, OpAddPublishListMembersResponses, OpAutoMapElementsData, OpAutoMapElementsError, OpAutoMapElementsErrors, OpAutoMapElementsResponse, OpAutoMapElementsResponses, OpBuildFactGridData, OpBuildFactGridError, OpBuildFactGridErrors, OpBuildFactGridResponse, OpBuildFactGridResponses, OpChangeTierData, OpChangeTierError, OpChangeTierErrors, OpChangeTierResponse, OpChangeTierResponses, OpClosePeriodData, OpClosePeriodError, OpClosePeriodErrors, OpClosePeriodResponse, OpClosePeriodResponses, OpCreateAssociationsData, OpCreateAssociationsError, OpCreateAssociationsErrors, OpCreateAssociationsResponse, OpCreateAssociationsResponses, OpCreateBackupData, OpCreateBackupError, OpCreateBackupErrors, OpCreateBackupResponse, OpCreateBackupResponses, OpCreateClosingEntryData, OpCreateClosingEntryError, OpCreateClosingEntryErrors, OpCreateClosingEntryResponse, OpCreateClosingEntryResponses, OpCreateElementData, OpCreateElementError, OpCreateElementErrors, OpCreateElementResponse, OpCreateElementResponses, OpCreateJournalEntryData, OpCreateJournalEntryError, OpCreateJournalEntryErrors, OpCreateJournalEntryResponse, OpCreateJournalEntryResponses, OpCreateManualClosingEntryData, OpCreateManualClosingEntryError, OpCreateManualClosingEntryErrors, OpCreateManualClosingEntryResponse, OpCreateManualClosingEntryResponses, OpCreateMappingAssociationData, OpCreateMappingAssociationError, OpCreateMappingAssociationErrors, OpCreateMappingAssociationResponse, OpCreateMappingAssociationResponses, OpCreatePortfolioData, OpCreatePortfolioError, OpCreatePortfolioErrors, OpCreatePortfolioResponse, OpCreatePortfolioResponses, OpCreatePositionData, OpCreatePositionError, OpCreatePositionErrors, OpCreatePositionResponse, OpCreatePositionResponses, OpCreatePublishListData, OpCreatePublishListError, OpCreatePublishListErrors, OpCreatePublishListResponse, OpCreatePublishListResponses, OpCreateReportData, OpCreateReportError, OpCreateReportErrors, OpCreateReportResponse, OpCreateReportResponses, OpCreateScheduleData, OpCreateScheduleError, OpCreateScheduleErrors, OpCreateScheduleResponse, OpCreateScheduleResponses, OpCreateSecurityData, OpCreateSecurityError, OpCreateSecurityErrors, OpCreateSecurityResponse, OpCreateSecurityResponses, OpCreateStructureData, OpCreateStructureError, OpCreateStructureErrors, OpCreateStructureResponse, OpCreateStructureResponses, OpCreateSubgraphData, OpCreateSubgraphError, OpCreateSubgraphErrors, OpCreateSubgraphResponse, OpCreateSubgraphResponses, OpCreateTaxonomyData, OpCreateTaxonomyError, OpCreateTaxonomyErrors, OpCreateTaxonomyResponse, OpCreateTaxonomyResponses, OpCreateTransactionData, OpCreateTransactionError, OpCreateTransactionErrors, OpCreateTransactionResponse, OpCreateTransactionResponses, OpDeleteAssociationData, OpDeleteAssociationError, OpDeleteAssociationErrors, OpDeleteAssociationResponse, OpDeleteAssociationResponses, OpDeleteElementData, OpDeleteElementError, OpDeleteElementErrors, OpDeleteElementResponse, OpDeleteElementResponses, OpDeleteJournalEntryData, OpDeleteJournalEntryError, OpDeleteJournalEntryErrors, OpDeleteJournalEntryResponse, OpDeleteJournalEntryResponses, OpDeleteMappingAssociationData, OpDeleteMappingAssociationError, OpDeleteMappingAssociationErrors, OpDeleteMappingAssociationResponse, OpDeleteMappingAssociationResponses, OpDeletePortfolioData, OpDeletePortfolioError, OpDeletePortfolioErrors, OpDeletePortfolioResponse, OpDeletePortfolioResponses, OpDeletePositionData, OpDeletePositionError, OpDeletePositionErrors, OpDeletePositionResponse, OpDeletePositionResponses, OpDeletePublishListData, OpDeletePublishListError, OpDeletePublishListErrors, OpDeletePublishListResponse, OpDeletePublishListResponses, OpDeleteReportData, OpDeleteReportError, OpDeleteReportErrors, OpDeleteReportResponse, OpDeleteReportResponses, OpDeleteScheduleData, OpDeleteScheduleError, OpDeleteScheduleErrors, OpDeleteScheduleResponse, OpDeleteScheduleResponses, OpDeleteSecurityData, OpDeleteSecurityError, OpDeleteSecurityErrors, OpDeleteSecurityResponse, OpDeleteSecurityResponses, OpDeleteStructureData, OpDeleteStructureError, OpDeleteStructureErrors, OpDeleteStructureResponse, OpDeleteStructureResponses, OpDeleteSubgraphData, OpDeleteSubgraphError, OpDeleteSubgraphErrors, OpDeleteSubgraphResponse, OpDeleteSubgraphResponses, OpDeleteTaxonomyData, OpDeleteTaxonomyError, OpDeleteTaxonomyErrors, OpDeleteTaxonomyResponse, OpDeleteTaxonomyResponses, OperationCosts, OperationEnvelope, OperationError, OpFinancialStatementAnalysisData, OpFinancialStatementAnalysisError, OpFinancialStatementAnalysisErrors, OpFinancialStatementAnalysisResponse, OpFinancialStatementAnalysisResponses, OpInitializeLedgerData, OpInitializeLedgerError, OpInitializeLedgerErrors, OpInitializeLedgerResponse, OpInitializeLedgerResponses, OpLinkEntityTaxonomyData, OpLinkEntityTaxonomyError, OpLinkEntityTaxonomyErrors, OpLinkEntityTaxonomyResponse, OpLinkEntityTaxonomyResponses, OpLiveFinancialStatementData, OpLiveFinancialStatementError, OpLiveFinancialStatementErrors, OpLiveFinancialStatementResponse, OpLiveFinancialStatementResponses, OpMaterializeData, OpMaterializeError, OpMaterializeErrors, OpMaterializeResponse, OpMaterializeResponses, OpRegenerateReportData, OpRegenerateReportError, OpRegenerateReportErrors, OpRegenerateReportResponse, OpRegenerateReportResponses, OpRemovePublishListMemberData, OpRemovePublishListMemberError, OpRemovePublishListMemberErrors, OpRemovePublishListMemberResponse, OpRemovePublishListMemberResponses, OpReopenPeriodData, OpReopenPeriodError, OpReopenPeriodErrors, OpReopenPeriodResponse, OpReopenPeriodResponses, OpRestoreBackupData, OpRestoreBackupError, OpRestoreBackupErrors, OpRestoreBackupResponse, OpRestoreBackupResponses, OpReverseJournalEntryData, OpReverseJournalEntryError, OpReverseJournalEntryErrors, OpReverseJournalEntryResponse, OpReverseJournalEntryResponses, OpSetCloseTargetData, OpSetCloseTargetError, OpSetCloseTargetErrors, OpSetCloseTargetResponse, OpSetCloseTargetResponses, OpShareReportData, OpShareReportError, OpShareReportErrors, OpShareReportResponse, OpShareReportResponses, OpTruncateScheduleData, OpTruncateScheduleError, OpTruncateScheduleErrors, OpTruncateScheduleResponse, OpTruncateScheduleResponses, OpUpdateAssociationData, OpUpdateAssociationError, OpUpdateAssociationErrors, OpUpdateAssociationResponse, OpUpdateAssociationResponses, OpUpdateElementData, OpUpdateElementError, OpUpdateElementErrors, OpUpdateElementResponse, OpUpdateElementResponses, OpUpdateEntityData, OpUpdateEntityError, OpUpdateEntityErrors, OpUpdateEntityResponse, OpUpdateEntityResponses, OpUpdateJournalEntryData, OpUpdateJournalEntryError, OpUpdateJournalEntryErrors, OpUpdateJournalEntryResponse, OpUpdateJournalEntryResponses, OpUpdatePortfolioData, OpUpdatePortfolioError, OpUpdatePortfolioErrors, OpUpdatePortfolioResponse, OpUpdatePortfolioResponses, OpUpdatePositionData, OpUpdatePositionError, OpUpdatePositionErrors, OpUpdatePositionResponse, OpUpdatePositionResponses, OpUpdatePublishListData, OpUpdatePublishListError, OpUpdatePublishListErrors, OpUpdatePublishListResponse, OpUpdatePublishListResponses, OpUpdateScheduleData, OpUpdateScheduleError, OpUpdateScheduleErrors, OpUpdateScheduleResponse, OpUpdateScheduleResponses, OpUpdateSecurityData, OpUpdateSecurityError, OpUpdateSecurityErrors, OpUpdateSecurityResponse, OpUpdateSecurityResponses, OpUpdateStructureData, OpUpdateStructureError, OpUpdateStructureErrors, OpUpdateStructureResponse, OpUpdateStructureResponses, OpUpdateTaxonomyData, OpUpdateTaxonomyError, OpUpdateTaxonomyErrors, OpUpdateTaxonomyResponse, OpUpdateTaxonomyResponses, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PeriodSpec, PortalSessionResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportOperation, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberOperation, ReopenPeriodOperation, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupOp, ReverseJournalEntryRequest, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, ScheduleMetadataRequest, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, SetCloseTargetOperation, ShareReportOperation, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TruncateScheduleOperation, UpcomingInvoice, UpdateApiKeyRequest, UpdateAssociationRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateElementRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateJournalEntryRequest, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioOperation, UpdatePositionOperation, UpdatePublishListOperation, UpdateScheduleRequest, UpdateSecurityOperation, UpdateStructureRequest, UpdateTaxonomyRequest, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
|
|
1
|
+
export { autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createCheckoutSession, createConnection, createFileUpload, createGraph, createPortalSession, createRepositorySubscription, createUserApiKey, deleteConnection, deleteDocument, deleteFile, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getServiceOfferings, getServiceStatus, getSubgraphInfo, getSubgraphQuota, handleHttpGetExtensionsGraphIdGraphqlGet, handleHttpPostExtensionsGraphIdGraphqlPost, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listFiles, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listSubgraphs, listTables, listUserApiKeys, listUserOrgs, loginUser, logoutUser, oauthCallback, opAddPublishListMembers, opAutoMapElements, opBuildFactGrid, opChangeTier, opClosePeriod, opCreateAssociations, opCreateBackup, opCreateClosingEntry, opCreateElement, opCreateInformationBlock, opCreateJournalEntry, opCreateManualClosingEntry, opCreateMappingAssociation, opCreatePortfolio, opCreatePosition, opCreatePublishList, opCreateReport, opCreateSecurity, opCreateStructure, opCreateSubgraph, opCreateTaxonomy, opCreateTransaction, opDeleteAssociation, opDeleteElement, opDeleteInformationBlock, opDeleteJournalEntry, opDeleteMappingAssociation, opDeletePortfolio, opDeletePosition, opDeletePublishList, opDeleteReport, opDeleteSecurity, opDeleteStructure, opDeleteSubgraph, opDeleteTaxonomy, opEvaluateRules, opFinancialStatementAnalysis, opInitializeLedger, opLinkEntityTaxonomy, opLiveFinancialStatement, opMaterialize, opRegenerateReport, opRemovePublishListMember, opReopenPeriod, opRestoreBackup, opReverseJournalEntry, opSetCloseTarget, opShareReport, type Options, opTruncateSchedule, opUpdateAssociation, opUpdateElement, opUpdateEntity, opUpdateInformationBlock, opUpdateJournalEntry, opUpdatePortfolio, opUpdatePosition, opUpdatePublishList, opUpdateSecurity, opUpdateStructure, opUpdateTaxonomy, queryTables, recommendAgent, refreshAuthSession, registerUser, removeOrgMember, resendVerificationEmail, resetPassword, revokeUserApiKey, searchDocuments, selectGraph, ssoTokenExchange, streamOperationEvents, syncConnection, updateDocument, updateFile, updateOrg, updateOrgMemberRole, updateUser, updateUserApiKey, updateUserPassword, uploadDocument, validateResetToken, validateSchema, verifyEmail } from './sdk.gen';
|
|
2
|
+
export type { AccountInfo, AddPublishListMembersOperation, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsOperation, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkAssociationItem, BulkCreateAssociationsRequest, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, ChangeTierOp, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClientOptions, ClosePeriodOperation, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateClosingEntryOperation, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateElementRequest, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponse, CreateGraphResponses, CreateInformationBlockRequest, CreateJournalEntryRequest, CreateManualClosingEntryRequest, CreateMappingAssociationOperation, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioRequest, CreatePositionRequest, CreatePublishListRequest, CreateReportRequest, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateSecurityRequest, CreateStructureRequest, CreateSubgraphRequest, CreateTaxonomyRequest, CreateTransactionRequest, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewRequest, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteAssociationRequest, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteElementRequest, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteInformationBlockRequest, DeleteJournalEntryRequest, DeleteMappingAssociationOperation, DeletePortfolioOperation, DeletePositionOperation, DeletePublishListOperation, DeleteReportOperation, DeleteSecurityOperation, DeleteStructureRequest, DeleteSubgraphOp, DeleteTaxonomyRequest, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, ErrorResponse, EvaluateRulesRequest, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, FinancialStatementAnalysisRequest, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsError, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigError, GetCaptchaConfigErrors, 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, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityError, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsError, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, 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, GetPasswordPolicyError, GetPasswordPolicyErrors, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HandleHttpGetExtensionsGraphIdGraphqlGetData, HandleHttpGetExtensionsGraphIdGraphqlGetError, HandleHttpGetExtensionsGraphIdGraphqlGetErrors, HandleHttpGetExtensionsGraphIdGraphqlGetResponses, HandleHttpPostExtensionsGraphIdGraphqlPostData, HandleHttpPostExtensionsGraphIdGraphqlPostError, HandleHttpPostExtensionsGraphIdGraphqlPostErrors, HandleHttpPostExtensionsGraphIdGraphqlPostResponses, HealthStatus, HttpValidationError, InitialEntityData, InitializeLedgerRequest, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, JournalEntryLineItemInput, LinkEntityTaxonomyRequest, 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, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, 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, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListUserApiKeysData, ListUserApiKeysError, ListUserApiKeysErrors, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsError, ListUserOrgsErrors, ListUserOrgsResponse, ListUserOrgsResponses, LiveFinancialStatementRequest, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserError, LogoutUserErrors, LogoutUserResponse, LogoutUserResponses, ManualLineItemRequest, MaterializeOp, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OpAddPublishListMembersData, OpAddPublishListMembersError, OpAddPublishListMembersErrors, OpAddPublishListMembersResponse, OpAddPublishListMembersResponses, OpAutoMapElementsData, OpAutoMapElementsError, OpAutoMapElementsErrors, OpAutoMapElementsResponse, OpAutoMapElementsResponses, OpBuildFactGridData, OpBuildFactGridError, OpBuildFactGridErrors, OpBuildFactGridResponse, OpBuildFactGridResponses, OpChangeTierData, OpChangeTierError, OpChangeTierErrors, OpChangeTierResponse, OpChangeTierResponses, OpClosePeriodData, OpClosePeriodError, OpClosePeriodErrors, OpClosePeriodResponse, OpClosePeriodResponses, OpCreateAssociationsData, OpCreateAssociationsError, OpCreateAssociationsErrors, OpCreateAssociationsResponse, OpCreateAssociationsResponses, OpCreateBackupData, OpCreateBackupError, OpCreateBackupErrors, OpCreateBackupResponse, OpCreateBackupResponses, OpCreateClosingEntryData, OpCreateClosingEntryError, OpCreateClosingEntryErrors, OpCreateClosingEntryResponse, OpCreateClosingEntryResponses, OpCreateElementData, OpCreateElementError, OpCreateElementErrors, OpCreateElementResponse, OpCreateElementResponses, OpCreateInformationBlockData, OpCreateInformationBlockError, OpCreateInformationBlockErrors, OpCreateInformationBlockResponse, OpCreateInformationBlockResponses, OpCreateJournalEntryData, OpCreateJournalEntryError, OpCreateJournalEntryErrors, OpCreateJournalEntryResponse, OpCreateJournalEntryResponses, OpCreateManualClosingEntryData, OpCreateManualClosingEntryError, OpCreateManualClosingEntryErrors, OpCreateManualClosingEntryResponse, OpCreateManualClosingEntryResponses, OpCreateMappingAssociationData, OpCreateMappingAssociationError, OpCreateMappingAssociationErrors, OpCreateMappingAssociationResponse, OpCreateMappingAssociationResponses, OpCreatePortfolioData, OpCreatePortfolioError, OpCreatePortfolioErrors, OpCreatePortfolioResponse, OpCreatePortfolioResponses, OpCreatePositionData, OpCreatePositionError, OpCreatePositionErrors, OpCreatePositionResponse, OpCreatePositionResponses, OpCreatePublishListData, OpCreatePublishListError, OpCreatePublishListErrors, OpCreatePublishListResponse, OpCreatePublishListResponses, OpCreateReportData, OpCreateReportError, OpCreateReportErrors, OpCreateReportResponse, OpCreateReportResponses, OpCreateSecurityData, OpCreateSecurityError, OpCreateSecurityErrors, OpCreateSecurityResponse, OpCreateSecurityResponses, OpCreateStructureData, OpCreateStructureError, OpCreateStructureErrors, OpCreateStructureResponse, OpCreateStructureResponses, OpCreateSubgraphData, OpCreateSubgraphError, OpCreateSubgraphErrors, OpCreateSubgraphResponse, OpCreateSubgraphResponses, OpCreateTaxonomyData, OpCreateTaxonomyError, OpCreateTaxonomyErrors, OpCreateTaxonomyResponse, OpCreateTaxonomyResponses, OpCreateTransactionData, OpCreateTransactionError, OpCreateTransactionErrors, OpCreateTransactionResponse, OpCreateTransactionResponses, OpDeleteAssociationData, OpDeleteAssociationError, OpDeleteAssociationErrors, OpDeleteAssociationResponse, OpDeleteAssociationResponses, OpDeleteElementData, OpDeleteElementError, OpDeleteElementErrors, OpDeleteElementResponse, OpDeleteElementResponses, OpDeleteInformationBlockData, OpDeleteInformationBlockError, OpDeleteInformationBlockErrors, OpDeleteInformationBlockResponse, OpDeleteInformationBlockResponses, OpDeleteJournalEntryData, OpDeleteJournalEntryError, OpDeleteJournalEntryErrors, OpDeleteJournalEntryResponse, OpDeleteJournalEntryResponses, OpDeleteMappingAssociationData, OpDeleteMappingAssociationError, OpDeleteMappingAssociationErrors, OpDeleteMappingAssociationResponse, OpDeleteMappingAssociationResponses, OpDeletePortfolioData, OpDeletePortfolioError, OpDeletePortfolioErrors, OpDeletePortfolioResponse, OpDeletePortfolioResponses, OpDeletePositionData, OpDeletePositionError, OpDeletePositionErrors, OpDeletePositionResponse, OpDeletePositionResponses, OpDeletePublishListData, OpDeletePublishListError, OpDeletePublishListErrors, OpDeletePublishListResponse, OpDeletePublishListResponses, OpDeleteReportData, OpDeleteReportError, OpDeleteReportErrors, OpDeleteReportResponse, OpDeleteReportResponses, OpDeleteSecurityData, OpDeleteSecurityError, OpDeleteSecurityErrors, OpDeleteSecurityResponse, OpDeleteSecurityResponses, OpDeleteStructureData, OpDeleteStructureError, OpDeleteStructureErrors, OpDeleteStructureResponse, OpDeleteStructureResponses, OpDeleteSubgraphData, OpDeleteSubgraphError, OpDeleteSubgraphErrors, OpDeleteSubgraphResponse, OpDeleteSubgraphResponses, OpDeleteTaxonomyData, OpDeleteTaxonomyError, OpDeleteTaxonomyErrors, OpDeleteTaxonomyResponse, OpDeleteTaxonomyResponses, OperationCosts, OperationEnvelope, OperationError, OpEvaluateRulesData, OpEvaluateRulesError, OpEvaluateRulesErrors, OpEvaluateRulesResponse, OpEvaluateRulesResponses, OpFinancialStatementAnalysisData, OpFinancialStatementAnalysisError, OpFinancialStatementAnalysisErrors, OpFinancialStatementAnalysisResponse, OpFinancialStatementAnalysisResponses, OpInitializeLedgerData, OpInitializeLedgerError, OpInitializeLedgerErrors, OpInitializeLedgerResponse, OpInitializeLedgerResponses, OpLinkEntityTaxonomyData, OpLinkEntityTaxonomyError, OpLinkEntityTaxonomyErrors, OpLinkEntityTaxonomyResponse, OpLinkEntityTaxonomyResponses, OpLiveFinancialStatementData, OpLiveFinancialStatementError, OpLiveFinancialStatementErrors, OpLiveFinancialStatementResponse, OpLiveFinancialStatementResponses, OpMaterializeData, OpMaterializeError, OpMaterializeErrors, OpMaterializeResponse, OpMaterializeResponses, OpRegenerateReportData, OpRegenerateReportError, OpRegenerateReportErrors, OpRegenerateReportResponse, OpRegenerateReportResponses, OpRemovePublishListMemberData, OpRemovePublishListMemberError, OpRemovePublishListMemberErrors, OpRemovePublishListMemberResponse, OpRemovePublishListMemberResponses, OpReopenPeriodData, OpReopenPeriodError, OpReopenPeriodErrors, OpReopenPeriodResponse, OpReopenPeriodResponses, OpRestoreBackupData, OpRestoreBackupError, OpRestoreBackupErrors, OpRestoreBackupResponse, OpRestoreBackupResponses, OpReverseJournalEntryData, OpReverseJournalEntryError, OpReverseJournalEntryErrors, OpReverseJournalEntryResponse, OpReverseJournalEntryResponses, OpSetCloseTargetData, OpSetCloseTargetError, OpSetCloseTargetErrors, OpSetCloseTargetResponse, OpSetCloseTargetResponses, OpShareReportData, OpShareReportError, OpShareReportErrors, OpShareReportResponse, OpShareReportResponses, OpTruncateScheduleData, OpTruncateScheduleError, OpTruncateScheduleErrors, OpTruncateScheduleResponse, OpTruncateScheduleResponses, OpUpdateAssociationData, OpUpdateAssociationError, OpUpdateAssociationErrors, OpUpdateAssociationResponse, OpUpdateAssociationResponses, OpUpdateElementData, OpUpdateElementError, OpUpdateElementErrors, OpUpdateElementResponse, OpUpdateElementResponses, OpUpdateEntityData, OpUpdateEntityError, OpUpdateEntityErrors, OpUpdateEntityResponse, OpUpdateEntityResponses, OpUpdateInformationBlockData, OpUpdateInformationBlockError, OpUpdateInformationBlockErrors, OpUpdateInformationBlockResponse, OpUpdateInformationBlockResponses, OpUpdateJournalEntryData, OpUpdateJournalEntryError, OpUpdateJournalEntryErrors, OpUpdateJournalEntryResponse, OpUpdateJournalEntryResponses, OpUpdatePortfolioData, OpUpdatePortfolioError, OpUpdatePortfolioErrors, OpUpdatePortfolioResponse, OpUpdatePortfolioResponses, OpUpdatePositionData, OpUpdatePositionError, OpUpdatePositionErrors, OpUpdatePositionResponse, OpUpdatePositionResponses, OpUpdatePublishListData, OpUpdatePublishListError, OpUpdatePublishListErrors, OpUpdatePublishListResponse, OpUpdatePublishListResponses, OpUpdateSecurityData, OpUpdateSecurityError, OpUpdateSecurityErrors, OpUpdateSecurityResponse, OpUpdateSecurityResponses, OpUpdateStructureData, OpUpdateStructureError, OpUpdateStructureErrors, OpUpdateStructureResponse, OpUpdateStructureResponses, OpUpdateTaxonomyData, OpUpdateTaxonomyError, OpUpdateTaxonomyErrors, OpUpdateTaxonomyResponse, OpUpdateTaxonomyResponses, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PeriodSpec, PortalSessionResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportOperation, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberOperation, ReopenPeriodOperation, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupOp, ReverseJournalEntryRequest, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, SetCloseTargetOperation, ShareReportOperation, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TruncateScheduleOperation, UpcomingInvoice, UpdateApiKeyRequest, UpdateAssociationRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateElementRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateInformationBlockRequest, UpdateJournalEntryRequest, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioOperation, UpdatePositionOperation, UpdatePublishListOperation, UpdateSecurityOperation, UpdateStructureRequest, UpdateTaxonomyRequest, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
|
package/sdk/index.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.getOrgBillingCustomer = exports.getOrg = exports.getOperationStatus = exports.getGraphUsageAnalytics = exports.getGraphSubscription = exports.getGraphSchema = exports.getGraphs = exports.getGraphMetrics = exports.getGraphLimits = exports.getGraphCapacity = exports.getFile = exports.getDocumentSection = exports.getDocument = exports.getDatabaseInfo = exports.getDatabaseHealth = exports.getCurrentUser = exports.getCurrentAuthUser = exports.getCreditSummary = exports.getConnectionOptions = exports.getConnection = exports.getCheckoutStatus = exports.getCaptchaConfig = exports.getBackupStats = exports.getBackupDownloadUrl = exports.getAvailableGraphTiers = exports.getAvailableExtensions = exports.getAgentMetadata = exports.generateSsoToken = exports.forgotPassword = exports.exportGraphSchema = exports.executeSpecificAgent = exports.executeCypherQuery = exports.deleteFile = exports.deleteDocument = exports.deleteConnection = exports.createUserApiKey = exports.createRepositorySubscription = exports.createPortalSession = exports.createGraph = exports.createFileUpload = exports.createConnection = exports.createCheckoutSession = exports.completeSsoAuth = exports.checkPasswordStrength = exports.changeSubscriptionPlan = exports.cancelOrgSubscription = exports.cancelOperation = exports.callMcpTool = exports.batchProcessQueries = exports.autoSelectAgent = void 0;
|
|
5
|
-
exports.opCreateStructure = exports.opCreateSecurity = exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.verifyEmail = exports.validateSchema = exports.validateResetToken = exports.uploadDocument = exports.updateUserPassword = exports.updateUserApiKey = exports.updateUser = exports.updateOrgMemberRole = exports.updateOrg = exports.updateFile = exports.updateDocument = exports.syncConnection = exports.streamOperationEvents = exports.ssoTokenExchange = void 0;
|
|
5
|
+
exports.opCreateStructure = exports.opCreateSecurity = exports.opCreateReport = exports.opCreatePublishList = exports.opCreatePosition = exports.opCreatePortfolio = exports.opCreateMappingAssociation = exports.opCreateManualClosingEntry = exports.opCreateJournalEntry = exports.opCreateInformationBlock = exports.opCreateElement = exports.opCreateClosingEntry = exports.opCreateBackup = exports.opCreateAssociations = exports.opClosePeriod = exports.opChangeTier = exports.opBuildFactGrid = exports.opAutoMapElements = exports.opAddPublishListMembers = exports.oauthCallback = exports.logoutUser = exports.loginUser = exports.listUserOrgs = exports.listUserApiKeys = exports.listTables = exports.listSubgraphs = exports.listOrgSubscriptions = exports.listOrgMembers = exports.listOrgInvoices = exports.listOrgGraphs = exports.listMcpTools = exports.listFiles = exports.listDocuments = exports.listCreditTransactions = exports.listConnections = exports.listBackups = exports.listAgents = exports.inviteOrgMember = exports.initOAuth = exports.handleHttpPostExtensionsGraphIdGraphqlPost = exports.handleHttpGetExtensionsGraphIdGraphqlGet = exports.getSubgraphQuota = exports.getSubgraphInfo = exports.getServiceStatus = exports.getServiceOfferings = exports.getPasswordPolicy = exports.getOrgUsage = exports.getOrgUpcomingInvoice = exports.getOrgSubscription = exports.getOrgLimits = void 0;
|
|
6
|
+
exports.searchDocuments = exports.revokeUserApiKey = exports.resetPassword = exports.resendVerificationEmail = exports.removeOrgMember = exports.registerUser = exports.refreshAuthSession = exports.recommendAgent = exports.queryTables = exports.opUpdateTaxonomy = exports.opUpdateStructure = exports.opUpdateSecurity = exports.opUpdatePublishList = exports.opUpdatePosition = exports.opUpdatePortfolio = exports.opUpdateJournalEntry = exports.opUpdateInformationBlock = exports.opUpdateEntity = exports.opUpdateElement = exports.opUpdateAssociation = exports.opTruncateSchedule = exports.opShareReport = exports.opSetCloseTarget = exports.opReverseJournalEntry = exports.opRestoreBackup = exports.opReopenPeriod = exports.opRemovePublishListMember = exports.opRegenerateReport = exports.opMaterialize = exports.opLiveFinancialStatement = exports.opLinkEntityTaxonomy = exports.opInitializeLedger = exports.opFinancialStatementAnalysis = exports.opEvaluateRules = exports.opDeleteTaxonomy = exports.opDeleteSubgraph = exports.opDeleteStructure = exports.opDeleteSecurity = exports.opDeleteReport = exports.opDeletePublishList = exports.opDeletePosition = exports.opDeletePortfolio = exports.opDeleteMappingAssociation = exports.opDeleteJournalEntry = exports.opDeleteInformationBlock = exports.opDeleteElement = exports.opDeleteAssociation = exports.opCreateTransaction = exports.opCreateTaxonomy = exports.opCreateSubgraph = void 0;
|
|
7
|
+
exports.verifyEmail = exports.validateSchema = exports.validateResetToken = exports.uploadDocument = exports.updateUserPassword = exports.updateUserApiKey = exports.updateUser = exports.updateOrgMemberRole = exports.updateOrg = exports.updateFile = exports.updateDocument = exports.syncConnection = exports.streamOperationEvents = exports.ssoTokenExchange = exports.selectGraph = void 0;
|
|
8
8
|
var sdk_gen_1 = require("./sdk.gen");
|
|
9
9
|
Object.defineProperty(exports, "autoSelectAgent", { enumerable: true, get: function () { return sdk_gen_1.autoSelectAgent; } });
|
|
10
10
|
Object.defineProperty(exports, "batchProcessQueries", { enumerable: true, get: function () { return sdk_gen_1.batchProcessQueries; } });
|
|
@@ -96,6 +96,7 @@ Object.defineProperty(exports, "opCreateAssociations", { enumerable: true, get:
|
|
|
96
96
|
Object.defineProperty(exports, "opCreateBackup", { enumerable: true, get: function () { return sdk_gen_1.opCreateBackup; } });
|
|
97
97
|
Object.defineProperty(exports, "opCreateClosingEntry", { enumerable: true, get: function () { return sdk_gen_1.opCreateClosingEntry; } });
|
|
98
98
|
Object.defineProperty(exports, "opCreateElement", { enumerable: true, get: function () { return sdk_gen_1.opCreateElement; } });
|
|
99
|
+
Object.defineProperty(exports, "opCreateInformationBlock", { enumerable: true, get: function () { return sdk_gen_1.opCreateInformationBlock; } });
|
|
99
100
|
Object.defineProperty(exports, "opCreateJournalEntry", { enumerable: true, get: function () { return sdk_gen_1.opCreateJournalEntry; } });
|
|
100
101
|
Object.defineProperty(exports, "opCreateManualClosingEntry", { enumerable: true, get: function () { return sdk_gen_1.opCreateManualClosingEntry; } });
|
|
101
102
|
Object.defineProperty(exports, "opCreateMappingAssociation", { enumerable: true, get: function () { return sdk_gen_1.opCreateMappingAssociation; } });
|
|
@@ -103,7 +104,6 @@ Object.defineProperty(exports, "opCreatePortfolio", { enumerable: true, get: fun
|
|
|
103
104
|
Object.defineProperty(exports, "opCreatePosition", { enumerable: true, get: function () { return sdk_gen_1.opCreatePosition; } });
|
|
104
105
|
Object.defineProperty(exports, "opCreatePublishList", { enumerable: true, get: function () { return sdk_gen_1.opCreatePublishList; } });
|
|
105
106
|
Object.defineProperty(exports, "opCreateReport", { enumerable: true, get: function () { return sdk_gen_1.opCreateReport; } });
|
|
106
|
-
Object.defineProperty(exports, "opCreateSchedule", { enumerable: true, get: function () { return sdk_gen_1.opCreateSchedule; } });
|
|
107
107
|
Object.defineProperty(exports, "opCreateSecurity", { enumerable: true, get: function () { return sdk_gen_1.opCreateSecurity; } });
|
|
108
108
|
Object.defineProperty(exports, "opCreateStructure", { enumerable: true, get: function () { return sdk_gen_1.opCreateStructure; } });
|
|
109
109
|
Object.defineProperty(exports, "opCreateSubgraph", { enumerable: true, get: function () { return sdk_gen_1.opCreateSubgraph; } });
|
|
@@ -111,17 +111,18 @@ Object.defineProperty(exports, "opCreateTaxonomy", { enumerable: true, get: func
|
|
|
111
111
|
Object.defineProperty(exports, "opCreateTransaction", { enumerable: true, get: function () { return sdk_gen_1.opCreateTransaction; } });
|
|
112
112
|
Object.defineProperty(exports, "opDeleteAssociation", { enumerable: true, get: function () { return sdk_gen_1.opDeleteAssociation; } });
|
|
113
113
|
Object.defineProperty(exports, "opDeleteElement", { enumerable: true, get: function () { return sdk_gen_1.opDeleteElement; } });
|
|
114
|
+
Object.defineProperty(exports, "opDeleteInformationBlock", { enumerable: true, get: function () { return sdk_gen_1.opDeleteInformationBlock; } });
|
|
114
115
|
Object.defineProperty(exports, "opDeleteJournalEntry", { enumerable: true, get: function () { return sdk_gen_1.opDeleteJournalEntry; } });
|
|
115
116
|
Object.defineProperty(exports, "opDeleteMappingAssociation", { enumerable: true, get: function () { return sdk_gen_1.opDeleteMappingAssociation; } });
|
|
116
117
|
Object.defineProperty(exports, "opDeletePortfolio", { enumerable: true, get: function () { return sdk_gen_1.opDeletePortfolio; } });
|
|
117
118
|
Object.defineProperty(exports, "opDeletePosition", { enumerable: true, get: function () { return sdk_gen_1.opDeletePosition; } });
|
|
118
119
|
Object.defineProperty(exports, "opDeletePublishList", { enumerable: true, get: function () { return sdk_gen_1.opDeletePublishList; } });
|
|
119
120
|
Object.defineProperty(exports, "opDeleteReport", { enumerable: true, get: function () { return sdk_gen_1.opDeleteReport; } });
|
|
120
|
-
Object.defineProperty(exports, "opDeleteSchedule", { enumerable: true, get: function () { return sdk_gen_1.opDeleteSchedule; } });
|
|
121
121
|
Object.defineProperty(exports, "opDeleteSecurity", { enumerable: true, get: function () { return sdk_gen_1.opDeleteSecurity; } });
|
|
122
122
|
Object.defineProperty(exports, "opDeleteStructure", { enumerable: true, get: function () { return sdk_gen_1.opDeleteStructure; } });
|
|
123
123
|
Object.defineProperty(exports, "opDeleteSubgraph", { enumerable: true, get: function () { return sdk_gen_1.opDeleteSubgraph; } });
|
|
124
124
|
Object.defineProperty(exports, "opDeleteTaxonomy", { enumerable: true, get: function () { return sdk_gen_1.opDeleteTaxonomy; } });
|
|
125
|
+
Object.defineProperty(exports, "opEvaluateRules", { enumerable: true, get: function () { return sdk_gen_1.opEvaluateRules; } });
|
|
125
126
|
Object.defineProperty(exports, "opFinancialStatementAnalysis", { enumerable: true, get: function () { return sdk_gen_1.opFinancialStatementAnalysis; } });
|
|
126
127
|
Object.defineProperty(exports, "opInitializeLedger", { enumerable: true, get: function () { return sdk_gen_1.opInitializeLedger; } });
|
|
127
128
|
Object.defineProperty(exports, "opLinkEntityTaxonomy", { enumerable: true, get: function () { return sdk_gen_1.opLinkEntityTaxonomy; } });
|
|
@@ -138,11 +139,11 @@ Object.defineProperty(exports, "opTruncateSchedule", { enumerable: true, get: fu
|
|
|
138
139
|
Object.defineProperty(exports, "opUpdateAssociation", { enumerable: true, get: function () { return sdk_gen_1.opUpdateAssociation; } });
|
|
139
140
|
Object.defineProperty(exports, "opUpdateElement", { enumerable: true, get: function () { return sdk_gen_1.opUpdateElement; } });
|
|
140
141
|
Object.defineProperty(exports, "opUpdateEntity", { enumerable: true, get: function () { return sdk_gen_1.opUpdateEntity; } });
|
|
142
|
+
Object.defineProperty(exports, "opUpdateInformationBlock", { enumerable: true, get: function () { return sdk_gen_1.opUpdateInformationBlock; } });
|
|
141
143
|
Object.defineProperty(exports, "opUpdateJournalEntry", { enumerable: true, get: function () { return sdk_gen_1.opUpdateJournalEntry; } });
|
|
142
144
|
Object.defineProperty(exports, "opUpdatePortfolio", { enumerable: true, get: function () { return sdk_gen_1.opUpdatePortfolio; } });
|
|
143
145
|
Object.defineProperty(exports, "opUpdatePosition", { enumerable: true, get: function () { return sdk_gen_1.opUpdatePosition; } });
|
|
144
146
|
Object.defineProperty(exports, "opUpdatePublishList", { enumerable: true, get: function () { return sdk_gen_1.opUpdatePublishList; } });
|
|
145
|
-
Object.defineProperty(exports, "opUpdateSchedule", { enumerable: true, get: function () { return sdk_gen_1.opUpdateSchedule; } });
|
|
146
147
|
Object.defineProperty(exports, "opUpdateSecurity", { enumerable: true, get: function () { return sdk_gen_1.opUpdateSecurity; } });
|
|
147
148
|
Object.defineProperty(exports, "opUpdateStructure", { enumerable: true, get: function () { return sdk_gen_1.opUpdateStructure; } });
|
|
148
149
|
Object.defineProperty(exports, "opUpdateTaxonomy", { enumerable: true, get: function () { return sdk_gen_1.opUpdateTaxonomy; } });
|