@robosystems/client 0.3.34 → 0.3.36

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.
@@ -53,6 +53,27 @@ export type StatementRow = StatementData['rows'][number];
53
53
  export type PublishList = NonNullable<ListLedgerPublishListsQuery['publishLists']>['publishLists'][number];
54
54
  export type PublishListDetail = NonNullable<GetLedgerPublishListQuery['publishList']>;
55
55
  export type PublishListMember = PublishListDetail['members'][number];
56
+ /**
57
+ * Presigned-URL response for a Report bundle download.
58
+ *
59
+ * Returned by ``LedgerClient.getReportBundleDownloadUrl`` — the
60
+ * ``downloadUrl`` is a time-limited URL that streams the
61
+ * serialization artifact directly from object storage. Browser
62
+ * callers typically follow the URL via ``window.location.href`` or
63
+ * an anchor element to trigger the file download.
64
+ */
65
+ export interface ReportBundleDownloadResponse {
66
+ /** Presigned URL that streams the bundle directly from S3. */
67
+ downloadUrl: string;
68
+ /** ISO-8601 UTC instant at which the presigned URL stops working. */
69
+ expiresAt: string;
70
+ /** MIME type of the artifact behind the URL. */
71
+ contentType: string;
72
+ /** Serialization flavor — ``jsonld`` is the Phase 1a default. */
73
+ format: string;
74
+ /** Bundle generation number stamped on the Report. */
75
+ generationCount: number;
76
+ }
56
77
  export interface PeriodSpecInput {
57
78
  start: string;
58
79
  end: string;
@@ -562,6 +583,55 @@ export declare class LedgerClient {
562
583
  regenerateReport(graphId: string, reportId: string, periodStart?: string, periodEnd?: string): Promise<ReportOperationAck<ReportResponse>>;
563
584
  /** Delete a report and its generated facts. */
564
585
  deleteReport(graphId: string, reportId: string): Promise<DeleteResult>;
586
+ /**
587
+ * Get a short-lived presigned URL for downloading a published
588
+ * Report's serialization bundle.
589
+ *
590
+ * Phase 1a only resolves the JSON-LD flavor; reserved RDF and XBRL
591
+ * flavors return HTTP 400 until their producers ship. Reports
592
+ * published before the serialization feature shipped will resolve
593
+ * to a 404 — those Reports have no stamped bundle_url and must be
594
+ * regenerated to produce one.
595
+ *
596
+ * The returned ``downloadUrl`` is a presigned S3 URL valid for
597
+ * ``expiresIn`` seconds (default 300, max 3600). Browser callers
598
+ * typically navigate to it via ``window.location.href`` (or assign
599
+ * to an `<a href>` and click) to trigger the file download; the
600
+ * server-set Content-Disposition forces "attachment" with a
601
+ * versioned filename.
602
+ *
603
+ * @param graphId Graph identifier owning the Report.
604
+ * @param reportId Report identifier (rpt_-prefixed ULID).
605
+ * @param options.format Serialization flavor — defaults to ``'jsonld'``.
606
+ * @param options.expiresIn Presigned URL lifetime, in seconds.
607
+ */
608
+ getReportBundleDownloadUrl(graphId: string, reportId: string, options?: {
609
+ format?: string;
610
+ expiresIn?: number;
611
+ }): Promise<ReportBundleDownloadResponse>;
612
+ /**
613
+ * Download the Report's serialization bundle as an XBRL 2.1 zip.
614
+ *
615
+ * Rebuilds the bundle on the server and streams the zip body
616
+ * directly — no S3 presigned URL is involved (XBRL is on-demand
617
+ * emit, per the serialization spec). The returned ``Blob`` can be
618
+ * saved via URL.createObjectURL + a temporary anchor click to
619
+ * trigger the browser download dialog.
620
+ *
621
+ * The zip contains five files: ``instance.xml``, ``report.xsd``,
622
+ * ``report-pre.xml``, ``report-cal.xml``, ``report-def.xml``.
623
+ *
624
+ * @param graphId Graph identifier owning the Report.
625
+ * @param reportId Report identifier (rpt_-prefixed ULID).
626
+ * @param options.flavor XBRL flavor (default ``'xbrl-2.1'``).
627
+ */
628
+ getReportBundleXbrlZip(graphId: string, reportId: string, options?: {
629
+ flavor?: string;
630
+ }): Promise<{
631
+ blob: Blob;
632
+ filename: string;
633
+ generationCount: number | null;
634
+ }>;
565
635
  /**
566
636
  * Share a published report to every member of a publish list. Each
567
637
  * target graph receives a snapshot copy of the report's facts.
@@ -618,5 +688,14 @@ export declare class LedgerClient {
618
688
  * sign that a synchronous operation failed silently.
619
689
  */
620
690
  private requireResult;
691
+ /**
692
+ * Resolve the current bearer token / API key for non-GraphQL REST
693
+ * calls. Mirrors the GraphQL client's behaviour — dynamic
694
+ * ``tokenProvider`` is consulted first (so JWT rotation flows
695
+ * naturally), then the static ``token`` config. Returns ``null``
696
+ * when no credential is configured; the caller decides whether to
697
+ * proceed anonymously or short-circuit with an error.
698
+ */
699
+ private resolveToken;
621
700
  }
622
701
  export {};
@@ -764,6 +764,120 @@ class LedgerClient {
764
764
  }));
765
765
  return (envelope.result ?? { deleted: true });
766
766
  }
767
+ /**
768
+ * Get a short-lived presigned URL for downloading a published
769
+ * Report's serialization bundle.
770
+ *
771
+ * Phase 1a only resolves the JSON-LD flavor; reserved RDF and XBRL
772
+ * flavors return HTTP 400 until their producers ship. Reports
773
+ * published before the serialization feature shipped will resolve
774
+ * to a 404 — those Reports have no stamped bundle_url and must be
775
+ * regenerated to produce one.
776
+ *
777
+ * The returned ``downloadUrl`` is a presigned S3 URL valid for
778
+ * ``expiresIn`` seconds (default 300, max 3600). Browser callers
779
+ * typically navigate to it via ``window.location.href`` (or assign
780
+ * to an `<a href>` and click) to trigger the file download; the
781
+ * server-set Content-Disposition forces "attachment" with a
782
+ * versioned filename.
783
+ *
784
+ * @param graphId Graph identifier owning the Report.
785
+ * @param reportId Report identifier (rpt_-prefixed ULID).
786
+ * @param options.format Serialization flavor — defaults to ``'jsonld'``.
787
+ * @param options.expiresIn Presigned URL lifetime, in seconds.
788
+ */
789
+ async getReportBundleDownloadUrl(graphId, reportId, options = {}) {
790
+ const format = options.format ?? 'jsonld';
791
+ const expiresIn = options.expiresIn ?? 300;
792
+ const url = `${this.config.baseUrl.replace(/\/$/, '')}` +
793
+ `/extensions/roboledger/${encodeURIComponent(graphId)}` +
794
+ `/reports/${encodeURIComponent(reportId)}/download` +
795
+ `?format=${encodeURIComponent(format)}&expires_in=${expiresIn}`;
796
+ const headers = new Headers({ Accept: 'application/json', ...(this.config.headers ?? {}) });
797
+ const token = await this.resolveToken();
798
+ if (token) {
799
+ // ``rfs…`` long-lived keys go in X-API-Key; everything else is
800
+ // a short-lived JWT. Mirrors the GraphQL client behaviour at
801
+ // ``clients/graphql/client.ts``.
802
+ if (token.startsWith('rfs')) {
803
+ headers.set('X-API-Key', token);
804
+ }
805
+ else {
806
+ headers.set('Authorization', `Bearer ${token}`);
807
+ }
808
+ }
809
+ const response = await fetch(url, {
810
+ method: 'GET',
811
+ headers,
812
+ credentials: this.config.credentials,
813
+ });
814
+ if (!response.ok) {
815
+ const body = await response.text();
816
+ throw new Error(`Get report bundle download URL failed (${response.status}): ${body}`);
817
+ }
818
+ const raw = (await response.json());
819
+ return {
820
+ downloadUrl: raw.download_url,
821
+ expiresAt: raw.expires_at,
822
+ contentType: raw.content_type,
823
+ format: raw.format,
824
+ generationCount: raw.generation_count,
825
+ };
826
+ }
827
+ /**
828
+ * Download the Report's serialization bundle as an XBRL 2.1 zip.
829
+ *
830
+ * Rebuilds the bundle on the server and streams the zip body
831
+ * directly — no S3 presigned URL is involved (XBRL is on-demand
832
+ * emit, per the serialization spec). The returned ``Blob`` can be
833
+ * saved via URL.createObjectURL + a temporary anchor click to
834
+ * trigger the browser download dialog.
835
+ *
836
+ * The zip contains five files: ``instance.xml``, ``report.xsd``,
837
+ * ``report-pre.xml``, ``report-cal.xml``, ``report-def.xml``.
838
+ *
839
+ * @param graphId Graph identifier owning the Report.
840
+ * @param reportId Report identifier (rpt_-prefixed ULID).
841
+ * @param options.flavor XBRL flavor (default ``'xbrl-2.1'``).
842
+ */
843
+ async getReportBundleXbrlZip(graphId, reportId, options = {}) {
844
+ const flavor = options.flavor ?? 'xbrl-2.1';
845
+ const url = `${this.config.baseUrl.replace(/\/$/, '')}` +
846
+ `/extensions/roboledger/${encodeURIComponent(graphId)}` +
847
+ `/reports/${encodeURIComponent(reportId)}/download` +
848
+ `?format=${encodeURIComponent(flavor)}`;
849
+ const headers = new Headers({
850
+ Accept: 'application/zip',
851
+ ...(this.config.headers ?? {}),
852
+ });
853
+ const token = await this.resolveToken();
854
+ if (token) {
855
+ if (token.startsWith('rfs')) {
856
+ headers.set('X-API-Key', token);
857
+ }
858
+ else {
859
+ headers.set('Authorization', `Bearer ${token}`);
860
+ }
861
+ }
862
+ const response = await fetch(url, {
863
+ method: 'GET',
864
+ headers,
865
+ credentials: this.config.credentials,
866
+ });
867
+ if (!response.ok) {
868
+ const body = await response.text();
869
+ throw new Error(`Get report bundle XBRL zip failed (${response.status}): ${body}`);
870
+ }
871
+ const blob = await response.blob();
872
+ // Parse Content-Disposition for the server-suggested filename;
873
+ // fall back to a sensible default if absent.
874
+ const disposition = response.headers.get('Content-Disposition') ?? '';
875
+ const filenameMatch = disposition.match(/filename="?([^";]+)"?/i);
876
+ const filename = filenameMatch ? filenameMatch[1] : `${reportId}.zip`;
877
+ const generationHeader = response.headers.get('X-Bundle-Generation');
878
+ const generationCount = generationHeader ? Number.parseInt(generationHeader, 10) : null;
879
+ return { blob, filename, generationCount };
880
+ }
767
881
  /**
768
882
  * Share a published report to every member of a publish list. Each
769
883
  * target graph receives a snapshot copy of the report's facts.
@@ -910,6 +1024,27 @@ class LedgerClient {
910
1024
  }
911
1025
  return result;
912
1026
  }
1027
+ /**
1028
+ * Resolve the current bearer token / API key for non-GraphQL REST
1029
+ * calls. Mirrors the GraphQL client's behaviour — dynamic
1030
+ * ``tokenProvider`` is consulted first (so JWT rotation flows
1031
+ * naturally), then the static ``token`` config. Returns ``null``
1032
+ * when no credential is configured; the caller decides whether to
1033
+ * proceed anonymously or short-circuit with an error.
1034
+ */
1035
+ async resolveToken() {
1036
+ if (this.config.tokenProvider) {
1037
+ try {
1038
+ const token = await this.config.tokenProvider();
1039
+ return token ?? null;
1040
+ }
1041
+ catch (err) {
1042
+ console.warn('[RoboSystems SDK] tokenProvider threw — sending unauthenticated request:', err);
1043
+ return null;
1044
+ }
1045
+ }
1046
+ return this.config.token ?? null;
1047
+ }
913
1048
  }
914
1049
  exports.LedgerClient = LedgerClient;
915
1050
  // ── Module-private conversion helpers ─────────────────────────────────
@@ -280,6 +280,36 @@ export type PublishList = NonNullable<
280
280
  export type PublishListDetail = NonNullable<GetLedgerPublishListQuery['publishList']>
281
281
  export type PublishListMember = PublishListDetail['members'][number]
282
282
 
283
+ /**
284
+ * Presigned-URL response for a Report bundle download.
285
+ *
286
+ * Returned by ``LedgerClient.getReportBundleDownloadUrl`` — the
287
+ * ``downloadUrl`` is a time-limited URL that streams the
288
+ * serialization artifact directly from object storage. Browser
289
+ * callers typically follow the URL via ``window.location.href`` or
290
+ * an anchor element to trigger the file download.
291
+ */
292
+ export interface ReportBundleDownloadResponse {
293
+ /** Presigned URL that streams the bundle directly from S3. */
294
+ downloadUrl: string
295
+ /** ISO-8601 UTC instant at which the presigned URL stops working. */
296
+ expiresAt: string
297
+ /** MIME type of the artifact behind the URL. */
298
+ contentType: string
299
+ /** Serialization flavor — ``jsonld`` is the Phase 1a default. */
300
+ format: string
301
+ /** Bundle generation number stamped on the Report. */
302
+ generationCount: number
303
+ }
304
+
305
+ interface RawReportBundleDownloadResponse {
306
+ download_url: string
307
+ expires_at: string
308
+ content_type: string
309
+ format: string
310
+ generation_count: number
311
+ }
312
+
283
313
  export interface PeriodSpecInput {
284
314
  start: string
285
315
  end: string
@@ -1869,6 +1899,130 @@ export class LedgerClient {
1869
1899
  return (envelope.result ?? { deleted: true }) as DeleteResult
1870
1900
  }
1871
1901
 
1902
+ /**
1903
+ * Get a short-lived presigned URL for downloading a published
1904
+ * Report's serialization bundle.
1905
+ *
1906
+ * Phase 1a only resolves the JSON-LD flavor; reserved RDF and XBRL
1907
+ * flavors return HTTP 400 until their producers ship. Reports
1908
+ * published before the serialization feature shipped will resolve
1909
+ * to a 404 — those Reports have no stamped bundle_url and must be
1910
+ * regenerated to produce one.
1911
+ *
1912
+ * The returned ``downloadUrl`` is a presigned S3 URL valid for
1913
+ * ``expiresIn`` seconds (default 300, max 3600). Browser callers
1914
+ * typically navigate to it via ``window.location.href`` (or assign
1915
+ * to an `<a href>` and click) to trigger the file download; the
1916
+ * server-set Content-Disposition forces "attachment" with a
1917
+ * versioned filename.
1918
+ *
1919
+ * @param graphId Graph identifier owning the Report.
1920
+ * @param reportId Report identifier (rpt_-prefixed ULID).
1921
+ * @param options.format Serialization flavor — defaults to ``'jsonld'``.
1922
+ * @param options.expiresIn Presigned URL lifetime, in seconds.
1923
+ */
1924
+ async getReportBundleDownloadUrl(
1925
+ graphId: string,
1926
+ reportId: string,
1927
+ options: { format?: string; expiresIn?: number } = {}
1928
+ ): Promise<ReportBundleDownloadResponse> {
1929
+ const format = options.format ?? 'jsonld'
1930
+ const expiresIn = options.expiresIn ?? 300
1931
+ const url =
1932
+ `${this.config.baseUrl.replace(/\/$/, '')}` +
1933
+ `/extensions/roboledger/${encodeURIComponent(graphId)}` +
1934
+ `/reports/${encodeURIComponent(reportId)}/download` +
1935
+ `?format=${encodeURIComponent(format)}&expires_in=${expiresIn}`
1936
+ const headers = new Headers({ Accept: 'application/json', ...(this.config.headers ?? {}) })
1937
+ const token = await this.resolveToken()
1938
+ if (token) {
1939
+ // ``rfs…`` long-lived keys go in X-API-Key; everything else is
1940
+ // a short-lived JWT. Mirrors the GraphQL client behaviour at
1941
+ // ``clients/graphql/client.ts``.
1942
+ if (token.startsWith('rfs')) {
1943
+ headers.set('X-API-Key', token)
1944
+ } else {
1945
+ headers.set('Authorization', `Bearer ${token}`)
1946
+ }
1947
+ }
1948
+ const response = await fetch(url, {
1949
+ method: 'GET',
1950
+ headers,
1951
+ credentials: this.config.credentials,
1952
+ })
1953
+ if (!response.ok) {
1954
+ const body = await response.text()
1955
+ throw new Error(`Get report bundle download URL failed (${response.status}): ${body}`)
1956
+ }
1957
+ const raw = (await response.json()) as RawReportBundleDownloadResponse
1958
+ return {
1959
+ downloadUrl: raw.download_url,
1960
+ expiresAt: raw.expires_at,
1961
+ contentType: raw.content_type,
1962
+ format: raw.format,
1963
+ generationCount: raw.generation_count,
1964
+ }
1965
+ }
1966
+
1967
+ /**
1968
+ * Download the Report's serialization bundle as an XBRL 2.1 zip.
1969
+ *
1970
+ * Rebuilds the bundle on the server and streams the zip body
1971
+ * directly — no S3 presigned URL is involved (XBRL is on-demand
1972
+ * emit, per the serialization spec). The returned ``Blob`` can be
1973
+ * saved via URL.createObjectURL + a temporary anchor click to
1974
+ * trigger the browser download dialog.
1975
+ *
1976
+ * The zip contains five files: ``instance.xml``, ``report.xsd``,
1977
+ * ``report-pre.xml``, ``report-cal.xml``, ``report-def.xml``.
1978
+ *
1979
+ * @param graphId Graph identifier owning the Report.
1980
+ * @param reportId Report identifier (rpt_-prefixed ULID).
1981
+ * @param options.flavor XBRL flavor (default ``'xbrl-2.1'``).
1982
+ */
1983
+ async getReportBundleXbrlZip(
1984
+ graphId: string,
1985
+ reportId: string,
1986
+ options: { flavor?: string } = {}
1987
+ ): Promise<{ blob: Blob; filename: string; generationCount: number | null }> {
1988
+ const flavor = options.flavor ?? 'xbrl-2.1'
1989
+ const url =
1990
+ `${this.config.baseUrl.replace(/\/$/, '')}` +
1991
+ `/extensions/roboledger/${encodeURIComponent(graphId)}` +
1992
+ `/reports/${encodeURIComponent(reportId)}/download` +
1993
+ `?format=${encodeURIComponent(flavor)}`
1994
+ const headers = new Headers({
1995
+ Accept: 'application/zip',
1996
+ ...(this.config.headers ?? {}),
1997
+ })
1998
+ const token = await this.resolveToken()
1999
+ if (token) {
2000
+ if (token.startsWith('rfs')) {
2001
+ headers.set('X-API-Key', token)
2002
+ } else {
2003
+ headers.set('Authorization', `Bearer ${token}`)
2004
+ }
2005
+ }
2006
+ const response = await fetch(url, {
2007
+ method: 'GET',
2008
+ headers,
2009
+ credentials: this.config.credentials,
2010
+ })
2011
+ if (!response.ok) {
2012
+ const body = await response.text()
2013
+ throw new Error(`Get report bundle XBRL zip failed (${response.status}): ${body}`)
2014
+ }
2015
+ const blob = await response.blob()
2016
+ // Parse Content-Disposition for the server-suggested filename;
2017
+ // fall back to a sensible default if absent.
2018
+ const disposition = response.headers.get('Content-Disposition') ?? ''
2019
+ const filenameMatch = disposition.match(/filename="?([^";]+)"?/i)
2020
+ const filename = filenameMatch ? filenameMatch[1] : `${reportId}.zip`
2021
+ const generationHeader = response.headers.get('X-Bundle-Generation')
2022
+ const generationCount = generationHeader ? Number.parseInt(generationHeader, 10) : null
2023
+ return { blob, filename, generationCount }
2024
+ }
2025
+
1872
2026
  /**
1873
2027
  * Share a published report to every member of a publish list. Each
1874
2028
  * target graph receives a snapshot copy of the report's facts.
@@ -2095,6 +2249,30 @@ export class LedgerClient {
2095
2249
  }
2096
2250
  return result
2097
2251
  }
2252
+
2253
+ /**
2254
+ * Resolve the current bearer token / API key for non-GraphQL REST
2255
+ * calls. Mirrors the GraphQL client's behaviour — dynamic
2256
+ * ``tokenProvider`` is consulted first (so JWT rotation flows
2257
+ * naturally), then the static ``token`` config. Returns ``null``
2258
+ * when no credential is configured; the caller decides whether to
2259
+ * proceed anonymously or short-circuit with an error.
2260
+ */
2261
+ private async resolveToken(): Promise<string | null> {
2262
+ if (this.config.tokenProvider) {
2263
+ try {
2264
+ const token = await this.config.tokenProvider()
2265
+ return token ?? null
2266
+ } catch (err) {
2267
+ console.warn(
2268
+ '[RoboSystems SDK] tokenProvider threw — sending unauthenticated request:',
2269
+ err
2270
+ )
2271
+ return null
2272
+ }
2273
+ }
2274
+ return this.config.token ?? null
2275
+ }
2098
2276
  }
2099
2277
 
2100
2278
  // ── Module-private conversion helpers ─────────────────────────────────
package/index.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
- export { autoSelectOperator, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, cancelRepositorySubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createCheckoutSession, createConnection, createFileUpload, createGraph, createPortalSession, createRepositorySubscription, createUserApiKey, deleteConnection, deleteDocument, deleteFile, executeCypherQuery, executeSpecificOperator, exportGraphSchema, forgotPassword, generateSsoToken, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getOperationStatus, getOperatorMetadata, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getServiceOfferings, getServiceStatus, getSubgraphInfo, getSubgraphQuota, handleHttpGetExtensionsGraphIdGraphqlGet, handleHttpPostExtensionsGraphIdGraphqlPost, initOAuth, inviteOrgMember, listBackups, listConnections, listCreditTransactions, listDocuments, listFiles, listMcpTools, listOperators, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listSubgraphs, listTables, listUserApiKeys, listUserOrgs, loginUser, logoutUser, oauthCallback, opAddPublishListMembers, opAutoMapElements, opBuildFactGrid, opChangeReportingStyle, opChangeTier, opClosePeriod, opCreateAgent, opCreateBackup, opCreateEventBlock, opCreateEventHandler, opCreateInformationBlock, opCreateMappingAssociation, opCreatePortfolioBlock, opCreatePublishList, opCreateReport, opCreateSecurity, opCreateSubgraph, opCreateTaxonomyBlock, opDeleteGraph, opDeleteInformationBlock, opDeleteJournalEntry, opDeleteMappingAssociation, opDeletePortfolioBlock, opDeletePublishList, opDeleteReport, opDeleteSecurity, opDeleteSubgraph, opDeleteTaxonomyBlock, opEvaluateRules, opExecuteEventBlock, opFileReport, opFinancialStatementAnalysis, opInitializeLedger, opLinkEntityTaxonomy, opLiveFinancialStatement, opMaterialize, opPreviewEventBlock, opRegenerateReport, opRemovePublishListMember, opReopenPeriod, opRestoreBackup, opSetCloseTarget, opShareReport, type Options, opTransitionFilingStatus, opUpdateAgent, opUpdateEntity, opUpdateEventBlock, opUpdateEventHandler, opUpdateInformationBlock, opUpdateJournalEntry, opUpdatePortfolioBlock, opUpdatePublishList, opUpdateSecurity, opUpdateTaxonomyBlock, queryTables, recommendOperator, 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, ApiKeyInfo, ApiKeysResponse, ArtifactResponse, AssociationResponse, AttributionFilter, AuthResponse, AutoMapElementsOperation, AutoSelectOperatorData, AutoSelectOperatorError, AutoSelectOperatorErrors, AutoSelectOperatorResponse, AutoSelectOperatorResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchOperatorRequest, BatchOperatorResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, CancelRepositorySubscriptionData, CancelRepositorySubscriptionError, CancelRepositorySubscriptionErrors, CancelRepositorySubscriptionResponse, CancelRepositorySubscriptionResponses, CancelSubscriptionRequest, ChangeReportingStyleOp, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, ChangeTierOp, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClassificationLite, ClientOptions, ClosePeriodOperation, ClosePeriodResponse, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionLite, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateAgentRequest, CreateApiKeyRequest, CreateApiKeyResponse, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateEventBlockRequest, CreateEventHandlerRequest, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponse, CreateGraphResponses, CreateInformationBlockRequest, CreateLegacyArm, CreateMappingAssociationOperation, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioBlockRequest, CreatePublishListRequest, CreateReportRequest, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateRollforwardArm, CreateRollforwardRequest, CreateScheduleArm, CreateScheduleRequest, CreateSecurityRequest, CreateSubgraphRequest, CreateTaxonomyBlockRequest, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewRequest, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteGraphOp, DeleteInformationBlockRequest, DeleteInformationBlockResponse, DeleteJournalEntryRequest, DeleteLegacyArm, DeleteMappingAssociationOperation, DeletePortfolioBlockOperation, DeletePortfolioBlockResponse, DeletePublishListOperation, DeleteReportOperation, DeleteResult, DeleteRollforwardArm, DeleteRollforwardRequest, DeleteScheduleArm, DeleteScheduleRequest, DeleteSecurityOperation, DeleteSubgraphOp, DeleteTaxonomyBlockRequest, DeleteTaxonomyBlockResponse, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, ElementLite, ElementUpdatePatch, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, EntityLite, EntityTaxonomyResponse, EntryTemplateRequest, ErrorResponse, EvaluateRulesRequest, EvaluateRulesResponse, EventBlockEnvelope, EventHandlerResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteEventBlockRequest, ExecuteEventBlockResponse, ExecuteSpecificOperatorData, ExecuteSpecificOperatorError, ExecuteSpecificOperatorErrors, ExecuteSpecificOperatorResponse, ExecuteSpecificOperatorResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FactLite, FactSetLite, FileInfo, FileLayerStatus, FileReportRequest, FileStatusUpdate, FileUploadRequest, FileUploadResponse, FinancialStatementAnalysisRequest, FiscalCalendarResponse, FiscalPeriodSummary, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, 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, GetOperatorMetadataData, GetOperatorMetadataError, GetOperatorMetadataErrors, GetOperatorMetadataResponse, GetOperatorMetadataResponses, 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, InformationBlockEnvelope, InformationModelResponse, InitialEntityData, InitializeLedgerRequest, InitializeLedgerResponse, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, JournalEntryLineItemInput, JournalEntryLineItemResponse, JournalEntryResponse, LedgerAgentResponse, LedgerEntityResponse, LineItemMetadataPredicate, LinkEntityTaxonomyRequest, 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, ListOperatorsData, ListOperatorsError, ListOperatorsErrors, ListOperatorsResponse, ListOperatorsResponses, 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, MaterializeOp, McpToolCall, McpToolsResponse, MetricMechanics, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OpAddPublishListMembersData, OpAddPublishListMembersError, OpAddPublishListMembersErrors, OpAddPublishListMembersResponse, OpAddPublishListMembersResponses, OpAutoMapElementsData, OpAutoMapElementsError, OpAutoMapElementsErrors, OpAutoMapElementsResponse, OpAutoMapElementsResponses, OpBuildFactGridData, OpBuildFactGridError, OpBuildFactGridErrors, OpBuildFactGridResponse, OpBuildFactGridResponses, OpChangeReportingStyleData, OpChangeReportingStyleError, OpChangeReportingStyleErrors, OpChangeReportingStyleResponse, OpChangeReportingStyleResponses, OpChangeTierData, OpChangeTierError, OpChangeTierErrors, OpChangeTierResponse, OpChangeTierResponses, OpClosePeriodData, OpClosePeriodError, OpClosePeriodErrors, OpClosePeriodResponse, OpClosePeriodResponses, OpCreateAgentData, OpCreateAgentError, OpCreateAgentErrors, OpCreateAgentResponse, OpCreateAgentResponses, OpCreateBackupData, OpCreateBackupError, OpCreateBackupErrors, OpCreateBackupResponse, OpCreateBackupResponses, OpCreateEventBlockData, OpCreateEventBlockError, OpCreateEventBlockErrors, OpCreateEventBlockResponse, OpCreateEventBlockResponses, OpCreateEventHandlerData, OpCreateEventHandlerError, OpCreateEventHandlerErrors, OpCreateEventHandlerResponse, OpCreateEventHandlerResponses, OpCreateInformationBlockData, OpCreateInformationBlockError, OpCreateInformationBlockErrors, OpCreateInformationBlockResponse, OpCreateInformationBlockResponses, OpCreateMappingAssociationData, OpCreateMappingAssociationError, OpCreateMappingAssociationErrors, OpCreateMappingAssociationResponse, OpCreateMappingAssociationResponses, OpCreatePortfolioBlockData, OpCreatePortfolioBlockError, OpCreatePortfolioBlockErrors, OpCreatePortfolioBlockResponse, OpCreatePortfolioBlockResponses, OpCreatePublishListData, OpCreatePublishListError, OpCreatePublishListErrors, OpCreatePublishListResponse, OpCreatePublishListResponses, OpCreateReportData, OpCreateReportError, OpCreateReportErrors, OpCreateReportResponse, OpCreateReportResponses, OpCreateSecurityData, OpCreateSecurityError, OpCreateSecurityErrors, OpCreateSecurityResponse, OpCreateSecurityResponses, OpCreateSubgraphData, OpCreateSubgraphError, OpCreateSubgraphErrors, OpCreateSubgraphResponse, OpCreateSubgraphResponses, OpCreateTaxonomyBlockData, OpCreateTaxonomyBlockError, OpCreateTaxonomyBlockErrors, OpCreateTaxonomyBlockResponse, OpCreateTaxonomyBlockResponses, OpDeleteGraphData, OpDeleteGraphError, OpDeleteGraphErrors, OpDeleteGraphResponse, OpDeleteGraphResponses, OpDeleteInformationBlockData, OpDeleteInformationBlockError, OpDeleteInformationBlockErrors, OpDeleteInformationBlockResponse, OpDeleteInformationBlockResponses, OpDeleteJournalEntryData, OpDeleteJournalEntryError, OpDeleteJournalEntryErrors, OpDeleteJournalEntryResponse, OpDeleteJournalEntryResponses, OpDeleteMappingAssociationData, OpDeleteMappingAssociationError, OpDeleteMappingAssociationErrors, OpDeleteMappingAssociationResponse, OpDeleteMappingAssociationResponses, OpDeletePortfolioBlockData, OpDeletePortfolioBlockError, OpDeletePortfolioBlockErrors, OpDeletePortfolioBlockResponse, OpDeletePortfolioBlockResponses, OpDeletePublishListData, OpDeletePublishListError, OpDeletePublishListErrors, OpDeletePublishListResponse, OpDeletePublishListResponses, OpDeleteReportData, OpDeleteReportError, OpDeleteReportErrors, OpDeleteReportResponse, OpDeleteReportResponses, OpDeleteSecurityData, OpDeleteSecurityError, OpDeleteSecurityErrors, OpDeleteSecurityResponse, OpDeleteSecurityResponses, OpDeleteSubgraphData, OpDeleteSubgraphError, OpDeleteSubgraphErrors, OpDeleteSubgraphResponse, OpDeleteSubgraphResponses, OpDeleteTaxonomyBlockData, OpDeleteTaxonomyBlockError, OpDeleteTaxonomyBlockErrors, OpDeleteTaxonomyBlockResponse, OpDeleteTaxonomyBlockResponses, OperationCosts, OperationEnvelope, OperationEnvelopeAssociationResponse, OperationEnvelopeClosePeriodResponse, OperationEnvelopeDeleteInformationBlockResponse, OperationEnvelopeDeletePortfolioBlockResponse, OperationEnvelopeDeleteResult, OperationEnvelopeDeleteTaxonomyBlockResponse, OperationEnvelopeEntityTaxonomyResponse, OperationEnvelopeEvaluateRulesResponse, OperationEnvelopeEventBlockEnvelope, OperationEnvelopeEventHandlerResponse, OperationEnvelopeExecuteEventBlockResponse, OperationEnvelopeFiscalCalendarResponse, OperationEnvelopeInformationBlockEnvelope, OperationEnvelopeInitializeLedgerResponse, OperationEnvelopeJournalEntryResponse, OperationEnvelopeLedgerAgentResponse, OperationEnvelopeLedgerEntityResponse, OperationEnvelopeListPublishListMemberResponse, OperationEnvelopePortfolioBlockEnvelope, OperationEnvelopePreviewEventBlockResponse, OperationEnvelopePublishListResponse, OperationEnvelopeReportResponse, OperationEnvelopeSecurityResponse, OperationEnvelopeShareReportResponse, OperationEnvelopeTaxonomyBlockEnvelope, OperationError, OperatorListResponse, OperatorMessage, OperatorMetadataResponse, OperatorMode, OperatorRecommendation, OperatorRecommendationRequest, OperatorRecommendationResponse, OperatorRequest, OperatorResponse, OpEvaluateRulesData, OpEvaluateRulesError, OpEvaluateRulesErrors, OpEvaluateRulesResponse, OpEvaluateRulesResponses, OpExecuteEventBlockData, OpExecuteEventBlockError, OpExecuteEventBlockErrors, OpExecuteEventBlockResponse, OpExecuteEventBlockResponses, OpFileReportData, OpFileReportError, OpFileReportErrors, OpFileReportResponse, OpFileReportResponses, 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, OpPreviewEventBlockData, OpPreviewEventBlockError, OpPreviewEventBlockErrors, OpPreviewEventBlockResponse, OpPreviewEventBlockResponses, OpRegenerateReportData, OpRegenerateReportError, OpRegenerateReportErrors, OpRegenerateReportResponse, OpRegenerateReportResponses, OpRemovePublishListMemberData, OpRemovePublishListMemberError, OpRemovePublishListMemberErrors, OpRemovePublishListMemberResponse, OpRemovePublishListMemberResponses, OpReopenPeriodData, OpReopenPeriodError, OpReopenPeriodErrors, OpReopenPeriodResponse, OpReopenPeriodResponses, OpRestoreBackupData, OpRestoreBackupError, OpRestoreBackupErrors, OpRestoreBackupResponse, OpRestoreBackupResponses, OpSetCloseTargetData, OpSetCloseTargetError, OpSetCloseTargetErrors, OpSetCloseTargetResponse, OpSetCloseTargetResponses, OpShareReportData, OpShareReportError, OpShareReportErrors, OpShareReportResponse, OpShareReportResponses, OpTransitionFilingStatusData, OpTransitionFilingStatusError, OpTransitionFilingStatusErrors, OpTransitionFilingStatusResponse, OpTransitionFilingStatusResponses, OpUpdateAgentData, OpUpdateAgentError, OpUpdateAgentErrors, OpUpdateAgentResponse, OpUpdateAgentResponses, OpUpdateEntityData, OpUpdateEntityError, OpUpdateEntityErrors, OpUpdateEntityResponse, OpUpdateEntityResponses, OpUpdateEventBlockData, OpUpdateEventBlockError, OpUpdateEventBlockErrors, OpUpdateEventBlockResponse, OpUpdateEventBlockResponses, OpUpdateEventHandlerData, OpUpdateEventHandlerError, OpUpdateEventHandlerErrors, OpUpdateEventHandlerResponse, OpUpdateEventHandlerResponses, OpUpdateInformationBlockData, OpUpdateInformationBlockError, OpUpdateInformationBlockErrors, OpUpdateInformationBlockResponse, OpUpdateInformationBlockResponses, OpUpdateJournalEntryData, OpUpdateJournalEntryError, OpUpdateJournalEntryErrors, OpUpdateJournalEntryResponse, OpUpdateJournalEntryResponses, OpUpdatePortfolioBlockData, OpUpdatePortfolioBlockError, OpUpdatePortfolioBlockErrors, OpUpdatePortfolioBlockResponse, OpUpdatePortfolioBlockResponses, OpUpdatePublishListData, OpUpdatePublishListError, OpUpdatePublishListErrors, OpUpdatePublishListResponse, OpUpdatePublishListResponses, OpUpdateSecurityData, OpUpdateSecurityError, OpUpdateSecurityErrors, OpUpdateSecurityResponse, OpUpdateSecurityResponses, OpUpdateTaxonomyBlockData, OpUpdateTaxonomyBlockError, OpUpdateTaxonomyBlockErrors, OpUpdateTaxonomyBlockResponse, OpUpdateTaxonomyBlockResponses, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PendingObligationDetailResponse, PerformanceInsights, PeriodSpec, PortalSessionResponse, PortfolioBlockEnvelope, PortfolioBlockPortfolioFields, PortfolioBlockPortfolioPatch, PortfolioBlockPositionAdd, PortfolioBlockPositionDispose, PortfolioBlockPositions, PortfolioBlockPositionUpdate, PositionBlock, PreviewEventBlockResponse, PublishListMemberResponse, PublishListResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendOperatorData, RecommendOperatorError, RecommendOperatorErrors, RecommendOperatorResponse, RecommendOperatorResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportOperation, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberOperation, RenderingLite, RenderingPeriodLite, RenderingRowLite, ReopenPeriodOperation, ReportResponse, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupOp, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, RollforwardMechanics, RuleLite, RuleTargetLite, RuleVariableLite, ScheduleMechanics, ScheduleMetadataRequest, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SecurityLite, SecurityResponse, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, SetCloseTargetOperation, ShareReportOperation, ShareReportResponse, ShareResultItem, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StatementMechanics, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, StructureSummary, StructureUpdatePatch, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TaxonomyBlockAssociation, TaxonomyBlockAssociationRequest, TaxonomyBlockElement, TaxonomyBlockElementRequest, TaxonomyBlockEnvelope, TaxonomyBlockRule, TaxonomyBlockRuleRequest, TaxonomyBlockStructure, TaxonomyBlockStructureRequest, TierCapacity, TokenPricing, TransactionPreview, TransactionSummaryResponse, TransactionTemplate, TransactionTemplateEntry, TransactionTemplateItem, TransactionTemplateLeg, TransitionFilingStatusRequest, UpcomingInvoice, UpdateAgentRequest, UpdateApiKeyRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateEntityRequest, UpdateEventBlockRequest, UpdateEventHandlerRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateInformationBlockRequest, UpdateJournalEntryRequest, UpdateLegacyArm, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioBlockOperation, UpdatePublishListOperation, UpdateRollforwardArm, UpdateRollforwardRequest, UpdateScheduleArm, UpdateScheduleRequest, UpdateSecurityOperation, UpdateTaxonomyBlockRequest, 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, ValidationLite, VerificationCategorySummary, VerificationResultLite, VerificationSummary, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig, ViewProjections } from './types.gen';
3
+ export { autoSelectOperator, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, cancelRepositorySubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createCheckoutSession, createConnection, createFileUpload, createGraph, createPortalSession, createRepositorySubscription, createUserApiKey, deleteConnection, deleteDocument, deleteFile, executeCypherQuery, executeSpecificOperator, exportGraphSchema, forgotPassword, generateSsoToken, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getOperationStatus, getOperatorMetadata, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getReportBundleDownloadUrl, getServiceOfferings, getServiceStatus, getSubgraphInfo, getSubgraphQuota, handleHttpGetExtensionsGraphIdGraphqlGet, handleHttpPostExtensionsGraphIdGraphqlPost, initOAuth, inviteOrgMember, listBackups, listConnections, listCreditTransactions, listDocuments, listFiles, listMcpTools, listOperators, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listSubgraphs, listTables, listUserApiKeys, listUserOrgs, loginUser, logoutUser, oauthCallback, opAddPublishListMembers, opAutoMapElements, opBuildFactGrid, opChangeReportingStyle, opChangeTier, opClosePeriod, opCreateAgent, opCreateBackup, opCreateEventBlock, opCreateEventHandler, opCreateInformationBlock, opCreateMappingAssociation, opCreatePortfolioBlock, opCreatePublishList, opCreateReport, opCreateSecurity, opCreateSubgraph, opCreateTaxonomyBlock, opDeleteGraph, opDeleteInformationBlock, opDeleteJournalEntry, opDeleteMappingAssociation, opDeletePortfolioBlock, opDeletePublishList, opDeleteReport, opDeleteSecurity, opDeleteSubgraph, opDeleteTaxonomyBlock, opEvaluateRules, opExecuteEventBlock, opFileReport, opFinancialStatementAnalysis, opInitializeLedger, opLinkEntityTaxonomy, opLiveFinancialStatement, opMaterialize, opPreviewEventBlock, opRegenerateReport, opRemovePublishListMember, opReopenPeriod, opRestoreBackup, opSetCloseTarget, opShareReport, type Options, opTransitionFilingStatus, opUpdateAgent, opUpdateEntity, opUpdateEventBlock, opUpdateEventHandler, opUpdateInformationBlock, opUpdateJournalEntry, opUpdatePortfolioBlock, opUpdatePublishList, opUpdateSecurity, opUpdateTaxonomyBlock, queryTables, recommendOperator, 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, ApiKeyInfo, ApiKeysResponse, ArtifactResponse, AssociationResponse, AttributionFilter, AuthResponse, AutoMapElementsOperation, AutoSelectOperatorData, AutoSelectOperatorError, AutoSelectOperatorErrors, AutoSelectOperatorResponse, AutoSelectOperatorResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchOperatorRequest, BatchOperatorResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, CancelRepositorySubscriptionData, CancelRepositorySubscriptionError, CancelRepositorySubscriptionErrors, CancelRepositorySubscriptionResponse, CancelRepositorySubscriptionResponses, CancelSubscriptionRequest, ChangeReportingStyleOp, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, ChangeTierOp, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClassificationLite, ClientOptions, ClosePeriodOperation, ClosePeriodResponse, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionLite, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateAgentRequest, CreateApiKeyRequest, CreateApiKeyResponse, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateEventBlockRequest, CreateEventHandlerRequest, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponse, CreateGraphResponses, CreateInformationBlockRequest, CreateLegacyArm, CreateMappingAssociationOperation, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioBlockRequest, CreatePublishListRequest, CreateReportRequest, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateRollforwardArm, CreateRollforwardRequest, CreateScheduleArm, CreateScheduleRequest, CreateSecurityRequest, CreateSubgraphRequest, CreateTaxonomyBlockRequest, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewRequest, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteGraphOp, DeleteInformationBlockRequest, DeleteInformationBlockResponse, DeleteJournalEntryRequest, DeleteLegacyArm, DeleteMappingAssociationOperation, DeletePortfolioBlockOperation, DeletePortfolioBlockResponse, DeletePublishListOperation, DeleteReportOperation, DeleteResult, DeleteRollforwardArm, DeleteRollforwardRequest, DeleteScheduleArm, DeleteScheduleRequest, DeleteSecurityOperation, DeleteSubgraphOp, DeleteTaxonomyBlockRequest, DeleteTaxonomyBlockResponse, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, ElementLite, ElementUpdatePatch, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, EntityLite, EntityTaxonomyResponse, EntryTemplateRequest, ErrorResponse, EvaluateRulesRequest, EvaluateRulesResponse, EventBlockEnvelope, EventHandlerResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteEventBlockRequest, ExecuteEventBlockResponse, ExecuteSpecificOperatorData, ExecuteSpecificOperatorError, ExecuteSpecificOperatorErrors, ExecuteSpecificOperatorResponse, ExecuteSpecificOperatorResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FactLite, FactSetLite, FileInfo, FileLayerStatus, FileReportRequest, FileStatusUpdate, FileUploadRequest, FileUploadResponse, FinancialStatementAnalysisRequest, FiscalCalendarResponse, FiscalPeriodSummary, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, 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, GetOperatorMetadataData, GetOperatorMetadataError, GetOperatorMetadataErrors, GetOperatorMetadataResponse, GetOperatorMetadataResponses, 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, GetReportBundleDownloadUrlData, GetReportBundleDownloadUrlError, GetReportBundleDownloadUrlErrors, GetReportBundleDownloadUrlResponse, GetReportBundleDownloadUrlResponses, 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, InformationBlockEnvelope, InformationModelResponse, InitialEntityData, InitializeLedgerRequest, InitializeLedgerResponse, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, JournalEntryLineItemInput, JournalEntryLineItemResponse, JournalEntryResponse, LedgerAgentResponse, LedgerEntityResponse, LineItemMetadataPredicate, LinkEntityTaxonomyRequest, 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, ListOperatorsData, ListOperatorsError, ListOperatorsErrors, ListOperatorsResponse, ListOperatorsResponses, 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, MaterializeOp, McpToolCall, McpToolsResponse, MetricMechanics, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OpAddPublishListMembersData, OpAddPublishListMembersError, OpAddPublishListMembersErrors, OpAddPublishListMembersResponse, OpAddPublishListMembersResponses, OpAutoMapElementsData, OpAutoMapElementsError, OpAutoMapElementsErrors, OpAutoMapElementsResponse, OpAutoMapElementsResponses, OpBuildFactGridData, OpBuildFactGridError, OpBuildFactGridErrors, OpBuildFactGridResponse, OpBuildFactGridResponses, OpChangeReportingStyleData, OpChangeReportingStyleError, OpChangeReportingStyleErrors, OpChangeReportingStyleResponse, OpChangeReportingStyleResponses, OpChangeTierData, OpChangeTierError, OpChangeTierErrors, OpChangeTierResponse, OpChangeTierResponses, OpClosePeriodData, OpClosePeriodError, OpClosePeriodErrors, OpClosePeriodResponse, OpClosePeriodResponses, OpCreateAgentData, OpCreateAgentError, OpCreateAgentErrors, OpCreateAgentResponse, OpCreateAgentResponses, OpCreateBackupData, OpCreateBackupError, OpCreateBackupErrors, OpCreateBackupResponse, OpCreateBackupResponses, OpCreateEventBlockData, OpCreateEventBlockError, OpCreateEventBlockErrors, OpCreateEventBlockResponse, OpCreateEventBlockResponses, OpCreateEventHandlerData, OpCreateEventHandlerError, OpCreateEventHandlerErrors, OpCreateEventHandlerResponse, OpCreateEventHandlerResponses, OpCreateInformationBlockData, OpCreateInformationBlockError, OpCreateInformationBlockErrors, OpCreateInformationBlockResponse, OpCreateInformationBlockResponses, OpCreateMappingAssociationData, OpCreateMappingAssociationError, OpCreateMappingAssociationErrors, OpCreateMappingAssociationResponse, OpCreateMappingAssociationResponses, OpCreatePortfolioBlockData, OpCreatePortfolioBlockError, OpCreatePortfolioBlockErrors, OpCreatePortfolioBlockResponse, OpCreatePortfolioBlockResponses, OpCreatePublishListData, OpCreatePublishListError, OpCreatePublishListErrors, OpCreatePublishListResponse, OpCreatePublishListResponses, OpCreateReportData, OpCreateReportError, OpCreateReportErrors, OpCreateReportResponse, OpCreateReportResponses, OpCreateSecurityData, OpCreateSecurityError, OpCreateSecurityErrors, OpCreateSecurityResponse, OpCreateSecurityResponses, OpCreateSubgraphData, OpCreateSubgraphError, OpCreateSubgraphErrors, OpCreateSubgraphResponse, OpCreateSubgraphResponses, OpCreateTaxonomyBlockData, OpCreateTaxonomyBlockError, OpCreateTaxonomyBlockErrors, OpCreateTaxonomyBlockResponse, OpCreateTaxonomyBlockResponses, OpDeleteGraphData, OpDeleteGraphError, OpDeleteGraphErrors, OpDeleteGraphResponse, OpDeleteGraphResponses, OpDeleteInformationBlockData, OpDeleteInformationBlockError, OpDeleteInformationBlockErrors, OpDeleteInformationBlockResponse, OpDeleteInformationBlockResponses, OpDeleteJournalEntryData, OpDeleteJournalEntryError, OpDeleteJournalEntryErrors, OpDeleteJournalEntryResponse, OpDeleteJournalEntryResponses, OpDeleteMappingAssociationData, OpDeleteMappingAssociationError, OpDeleteMappingAssociationErrors, OpDeleteMappingAssociationResponse, OpDeleteMappingAssociationResponses, OpDeletePortfolioBlockData, OpDeletePortfolioBlockError, OpDeletePortfolioBlockErrors, OpDeletePortfolioBlockResponse, OpDeletePortfolioBlockResponses, OpDeletePublishListData, OpDeletePublishListError, OpDeletePublishListErrors, OpDeletePublishListResponse, OpDeletePublishListResponses, OpDeleteReportData, OpDeleteReportError, OpDeleteReportErrors, OpDeleteReportResponse, OpDeleteReportResponses, OpDeleteSecurityData, OpDeleteSecurityError, OpDeleteSecurityErrors, OpDeleteSecurityResponse, OpDeleteSecurityResponses, OpDeleteSubgraphData, OpDeleteSubgraphError, OpDeleteSubgraphErrors, OpDeleteSubgraphResponse, OpDeleteSubgraphResponses, OpDeleteTaxonomyBlockData, OpDeleteTaxonomyBlockError, OpDeleteTaxonomyBlockErrors, OpDeleteTaxonomyBlockResponse, OpDeleteTaxonomyBlockResponses, OperationCosts, OperationEnvelope, OperationEnvelopeAssociationResponse, OperationEnvelopeClosePeriodResponse, OperationEnvelopeDeleteInformationBlockResponse, OperationEnvelopeDeletePortfolioBlockResponse, OperationEnvelopeDeleteResult, OperationEnvelopeDeleteTaxonomyBlockResponse, OperationEnvelopeEntityTaxonomyResponse, OperationEnvelopeEvaluateRulesResponse, OperationEnvelopeEventBlockEnvelope, OperationEnvelopeEventHandlerResponse, OperationEnvelopeExecuteEventBlockResponse, OperationEnvelopeFiscalCalendarResponse, OperationEnvelopeInformationBlockEnvelope, OperationEnvelopeInitializeLedgerResponse, OperationEnvelopeJournalEntryResponse, OperationEnvelopeLedgerAgentResponse, OperationEnvelopeLedgerEntityResponse, OperationEnvelopeListPublishListMemberResponse, OperationEnvelopePortfolioBlockEnvelope, OperationEnvelopePreviewEventBlockResponse, OperationEnvelopePublishListResponse, OperationEnvelopeReportResponse, OperationEnvelopeSecurityResponse, OperationEnvelopeShareReportResponse, OperationEnvelopeTaxonomyBlockEnvelope, OperationError, OperatorListResponse, OperatorMessage, OperatorMetadataResponse, OperatorMode, OperatorRecommendation, OperatorRecommendationRequest, OperatorRecommendationResponse, OperatorRequest, OperatorResponse, OpEvaluateRulesData, OpEvaluateRulesError, OpEvaluateRulesErrors, OpEvaluateRulesResponse, OpEvaluateRulesResponses, OpExecuteEventBlockData, OpExecuteEventBlockError, OpExecuteEventBlockErrors, OpExecuteEventBlockResponse, OpExecuteEventBlockResponses, OpFileReportData, OpFileReportError, OpFileReportErrors, OpFileReportResponse, OpFileReportResponses, 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, OpPreviewEventBlockData, OpPreviewEventBlockError, OpPreviewEventBlockErrors, OpPreviewEventBlockResponse, OpPreviewEventBlockResponses, OpRegenerateReportData, OpRegenerateReportError, OpRegenerateReportErrors, OpRegenerateReportResponse, OpRegenerateReportResponses, OpRemovePublishListMemberData, OpRemovePublishListMemberError, OpRemovePublishListMemberErrors, OpRemovePublishListMemberResponse, OpRemovePublishListMemberResponses, OpReopenPeriodData, OpReopenPeriodError, OpReopenPeriodErrors, OpReopenPeriodResponse, OpReopenPeriodResponses, OpRestoreBackupData, OpRestoreBackupError, OpRestoreBackupErrors, OpRestoreBackupResponse, OpRestoreBackupResponses, OpSetCloseTargetData, OpSetCloseTargetError, OpSetCloseTargetErrors, OpSetCloseTargetResponse, OpSetCloseTargetResponses, OpShareReportData, OpShareReportError, OpShareReportErrors, OpShareReportResponse, OpShareReportResponses, OpTransitionFilingStatusData, OpTransitionFilingStatusError, OpTransitionFilingStatusErrors, OpTransitionFilingStatusResponse, OpTransitionFilingStatusResponses, OpUpdateAgentData, OpUpdateAgentError, OpUpdateAgentErrors, OpUpdateAgentResponse, OpUpdateAgentResponses, OpUpdateEntityData, OpUpdateEntityError, OpUpdateEntityErrors, OpUpdateEntityResponse, OpUpdateEntityResponses, OpUpdateEventBlockData, OpUpdateEventBlockError, OpUpdateEventBlockErrors, OpUpdateEventBlockResponse, OpUpdateEventBlockResponses, OpUpdateEventHandlerData, OpUpdateEventHandlerError, OpUpdateEventHandlerErrors, OpUpdateEventHandlerResponse, OpUpdateEventHandlerResponses, OpUpdateInformationBlockData, OpUpdateInformationBlockError, OpUpdateInformationBlockErrors, OpUpdateInformationBlockResponse, OpUpdateInformationBlockResponses, OpUpdateJournalEntryData, OpUpdateJournalEntryError, OpUpdateJournalEntryErrors, OpUpdateJournalEntryResponse, OpUpdateJournalEntryResponses, OpUpdatePortfolioBlockData, OpUpdatePortfolioBlockError, OpUpdatePortfolioBlockErrors, OpUpdatePortfolioBlockResponse, OpUpdatePortfolioBlockResponses, OpUpdatePublishListData, OpUpdatePublishListError, OpUpdatePublishListErrors, OpUpdatePublishListResponse, OpUpdatePublishListResponses, OpUpdateSecurityData, OpUpdateSecurityError, OpUpdateSecurityErrors, OpUpdateSecurityResponse, OpUpdateSecurityResponses, OpUpdateTaxonomyBlockData, OpUpdateTaxonomyBlockError, OpUpdateTaxonomyBlockErrors, OpUpdateTaxonomyBlockResponse, OpUpdateTaxonomyBlockResponses, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PendingObligationDetailResponse, PerformanceInsights, PeriodSpec, PortalSessionResponse, PortfolioBlockEnvelope, PortfolioBlockPortfolioFields, PortfolioBlockPortfolioPatch, PortfolioBlockPositionAdd, PortfolioBlockPositionDispose, PortfolioBlockPositions, PortfolioBlockPositionUpdate, PositionBlock, PreviewEventBlockResponse, PublishListMemberResponse, PublishListResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendOperatorData, RecommendOperatorError, RecommendOperatorErrors, RecommendOperatorResponse, RecommendOperatorResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportOperation, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberOperation, RenderingLite, RenderingPeriodLite, RenderingRowLite, ReopenPeriodOperation, ReportResponse, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupOp, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, RollforwardMechanics, RuleLite, RuleTargetLite, RuleVariableLite, ScheduleMechanics, ScheduleMetadataRequest, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SecurityLite, SecurityResponse, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, SetCloseTargetOperation, ShareReportOperation, ShareReportResponse, ShareResultItem, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StatementMechanics, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, StructureSummary, StructureUpdatePatch, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TaxonomyBlockAssociation, TaxonomyBlockAssociationRequest, TaxonomyBlockElement, TaxonomyBlockElementRequest, TaxonomyBlockEnvelope, TaxonomyBlockRule, TaxonomyBlockRuleRequest, TaxonomyBlockStructure, TaxonomyBlockStructureRequest, TierCapacity, TokenPricing, TransactionPreview, TransactionSummaryResponse, TransactionTemplate, TransactionTemplateEntry, TransactionTemplateItem, TransactionTemplateLeg, TransitionFilingStatusRequest, UpcomingInvoice, UpdateAgentRequest, UpdateApiKeyRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateEntityRequest, UpdateEventBlockRequest, UpdateEventHandlerRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateInformationBlockRequest, UpdateJournalEntryRequest, UpdateLegacyArm, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioBlockOperation, UpdatePublishListOperation, UpdateRollforwardArm, UpdateRollforwardRequest, UpdateScheduleArm, UpdateScheduleRequest, UpdateSecurityOperation, UpdateTaxonomyBlockRequest, 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, ValidationLite, VerificationCategorySummary, VerificationResultLite, VerificationSummary, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig, ViewProjections } from './types.gen';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robosystems/client",
3
- "version": "0.3.34",
3
+ "version": "0.3.36",
4
4
  "description": "TypeScript client library for RoboSystems Financial Knowledge Graph API",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",