@robosystems/client 0.3.22 → 0.3.24
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 +14 -0
- package/artifacts/LedgerClient.js +3 -0
- package/artifacts/LedgerClient.ts +26 -0
- package/artifacts/graphql/generated/graphql.d.ts +92 -1
- package/artifacts/graphql/generated/graphql.ts +96 -1
- package/index.ts +2 -2
- package/package.json +1 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +4 -3
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +9 -1
- package/sdk/sdk.gen.js +20 -3
- package/sdk/sdk.gen.ts +18 -1
- package/sdk/types.gen.d.ts +172 -12
- package/sdk/types.gen.ts +179 -12
- package/sdk.gen.d.ts +9 -1
- package/sdk.gen.js +20 -3
- package/sdk.gen.ts +18 -1
- package/types.gen.d.ts +172 -12
- package/types.gen.ts +179 -12
|
@@ -89,6 +89,14 @@ export interface ClosePeriodResult {
|
|
|
89
89
|
entriesPosted: number;
|
|
90
90
|
targetAutoAdvanced: boolean;
|
|
91
91
|
fiscalCalendar: LedgerFiscalCalendar;
|
|
92
|
+
/**
|
|
93
|
+
* §3.8 — aggregated rule-eval outcome across every schedule Structure
|
|
94
|
+
* with facts in the closed period. Keys: `pass` / `fail` / `error` /
|
|
95
|
+
* `skipped`. `null` when no schedules had facts in the period.
|
|
96
|
+
*/
|
|
97
|
+
ruleSummary: Record<string, number> | null;
|
|
98
|
+
/** ids of schedule Structures whose rules were evaluated. */
|
|
99
|
+
evaluatedStructureIds: string[];
|
|
92
100
|
}
|
|
93
101
|
export interface ScheduleCreated {
|
|
94
102
|
structureId: string;
|
|
@@ -96,6 +104,12 @@ export interface ScheduleCreated {
|
|
|
96
104
|
taxonomyId: string;
|
|
97
105
|
totalPeriods: number;
|
|
98
106
|
totalFacts: number;
|
|
107
|
+
/**
|
|
108
|
+
* §3.8 — populated when create_schedule (or update_schedule on a
|
|
109
|
+
* template change) re-runs the rule engine. Keys: `pass` / `fail` /
|
|
110
|
+
* `error` / `skipped`. `null` when no rules were re-evaluated.
|
|
111
|
+
*/
|
|
112
|
+
ruleSummary: Record<string, number> | null;
|
|
99
113
|
}
|
|
100
114
|
export type LedgerEntryType = 'standard' | 'adjusting' | 'closing' | 'reversing';
|
|
101
115
|
export interface InitializeLedgerOptions {
|
|
@@ -289,6 +289,7 @@ class LedgerClient {
|
|
|
289
289
|
taxonomyId: raw.taxonomy_id,
|
|
290
290
|
totalPeriods: raw.total_periods,
|
|
291
291
|
totalFacts: raw.total_facts,
|
|
292
|
+
ruleSummary: raw.rule_summary ?? null,
|
|
292
293
|
};
|
|
293
294
|
}
|
|
294
295
|
/** Update mutable fields on a schedule (name, entry_template, metadata). */
|
|
@@ -426,6 +427,8 @@ class LedgerClient {
|
|
|
426
427
|
entriesPosted: raw.entries_posted ?? 0,
|
|
427
428
|
targetAutoAdvanced: raw.target_auto_advanced ?? false,
|
|
428
429
|
fiscalCalendar: rawFiscalCalendarToCamel(raw.fiscal_calendar),
|
|
430
|
+
ruleSummary: raw.rule_summary ?? null,
|
|
431
|
+
evaluatedStructureIds: raw.evaluated_structure_ids ?? [],
|
|
429
432
|
};
|
|
430
433
|
}
|
|
431
434
|
/** Reopen a closed fiscal period. Requires a reason for the audit log. */
|
|
@@ -346,6 +346,12 @@ interface RawClosePeriodResult {
|
|
|
346
346
|
entries_posted: number
|
|
347
347
|
target_auto_advanced: boolean
|
|
348
348
|
fiscal_calendar: RawFiscalCalendar
|
|
349
|
+
// §3.8 — auto-run rules on close. `null` when no schedules with facts
|
|
350
|
+
// in the period had rules attached. Otherwise a status-keyed tally.
|
|
351
|
+
rule_summary?: Record<string, number> | null
|
|
352
|
+
// ids of schedule Structures whose rules were evaluated during the
|
|
353
|
+
// close. Empty when `rule_summary` is null.
|
|
354
|
+
evaluated_structure_ids?: string[]
|
|
349
355
|
}
|
|
350
356
|
|
|
351
357
|
interface RawScheduleCreatedResult {
|
|
@@ -354,6 +360,9 @@ interface RawScheduleCreatedResult {
|
|
|
354
360
|
taxonomy_id: string
|
|
355
361
|
total_periods: number
|
|
356
362
|
total_facts: number
|
|
363
|
+
// §3.8 — populated when create_schedule (or update_schedule on a
|
|
364
|
+
// template change) re-runs the rule engine. Otherwise null.
|
|
365
|
+
rule_summary?: Record<string, number> | null
|
|
357
366
|
}
|
|
358
367
|
|
|
359
368
|
export interface InitializeLedgerResult {
|
|
@@ -367,6 +376,14 @@ export interface ClosePeriodResult {
|
|
|
367
376
|
entriesPosted: number
|
|
368
377
|
targetAutoAdvanced: boolean
|
|
369
378
|
fiscalCalendar: LedgerFiscalCalendar
|
|
379
|
+
/**
|
|
380
|
+
* §3.8 — aggregated rule-eval outcome across every schedule Structure
|
|
381
|
+
* with facts in the closed period. Keys: `pass` / `fail` / `error` /
|
|
382
|
+
* `skipped`. `null` when no schedules had facts in the period.
|
|
383
|
+
*/
|
|
384
|
+
ruleSummary: Record<string, number> | null
|
|
385
|
+
/** ids of schedule Structures whose rules were evaluated. */
|
|
386
|
+
evaluatedStructureIds: string[]
|
|
370
387
|
}
|
|
371
388
|
|
|
372
389
|
export interface ScheduleCreated {
|
|
@@ -375,6 +392,12 @@ export interface ScheduleCreated {
|
|
|
375
392
|
taxonomyId: string
|
|
376
393
|
totalPeriods: number
|
|
377
394
|
totalFacts: number
|
|
395
|
+
/**
|
|
396
|
+
* §3.8 — populated when create_schedule (or update_schedule on a
|
|
397
|
+
* template change) re-runs the rule engine. Keys: `pass` / `fail` /
|
|
398
|
+
* `error` / `skipped`. `null` when no rules were re-evaluated.
|
|
399
|
+
*/
|
|
400
|
+
ruleSummary: Record<string, number> | null
|
|
378
401
|
}
|
|
379
402
|
|
|
380
403
|
export type LedgerEntryType = 'standard' | 'adjusting' | 'closing' | 'reversing'
|
|
@@ -1065,6 +1088,7 @@ export class LedgerClient {
|
|
|
1065
1088
|
taxonomyId: raw.taxonomy_id,
|
|
1066
1089
|
totalPeriods: raw.total_periods,
|
|
1067
1090
|
totalFacts: raw.total_facts,
|
|
1091
|
+
ruleSummary: raw.rule_summary ?? null,
|
|
1068
1092
|
}
|
|
1069
1093
|
}
|
|
1070
1094
|
|
|
@@ -1306,6 +1330,8 @@ export class LedgerClient {
|
|
|
1306
1330
|
entriesPosted: raw.entries_posted ?? 0,
|
|
1307
1331
|
targetAutoAdvanced: raw.target_auto_advanced ?? false,
|
|
1308
1332
|
fiscalCalendar: rawFiscalCalendarToCamel(raw.fiscal_calendar),
|
|
1333
|
+
ruleSummary: raw.rule_summary ?? null,
|
|
1334
|
+
evaluatedStructureIds: raw.evaluated_structure_ids ?? [],
|
|
1309
1335
|
}
|
|
1310
1336
|
}
|
|
1311
1337
|
|
|
@@ -152,6 +152,8 @@ export type Agent = {
|
|
|
152
152
|
legalName: Maybe<Scalars['String']['output']>;
|
|
153
153
|
lei: Maybe<Scalars['String']['output']>;
|
|
154
154
|
name: Scalars['String']['output'];
|
|
155
|
+
openPayable: Maybe<OpenBalanceByAgent>;
|
|
156
|
+
openReceivable: Maybe<OpenBalanceByAgent>;
|
|
155
157
|
phone: Maybe<Scalars['String']['output']>;
|
|
156
158
|
registrationNumber: Maybe<Scalars['String']['output']>;
|
|
157
159
|
source: Scalars['String']['output'];
|
|
@@ -347,7 +349,7 @@ export type FactRow = {
|
|
|
347
349
|
};
|
|
348
350
|
/** Current fiscal calendar state for a graph. */
|
|
349
351
|
export type FiscalCalendar = {
|
|
350
|
-
/** Structured blocker codes when closeable_now is False: 'sequence_violation', 'period_incomplete', 'sync_stale', 'calendar_not_initialized', 'period_already_closed' */
|
|
352
|
+
/** Structured blocker codes when closeable_now is False: 'sequence_violation', 'period_incomplete', 'sync_stale', 'calendar_not_initialized', 'period_already_closed', 'pending_obligations' */
|
|
351
353
|
blockers: Array<Scalars['String']['output']>;
|
|
352
354
|
/** Ordered list of periods that a close run would process */
|
|
353
355
|
catchUpSequence: Array<Scalars['String']['output']>;
|
|
@@ -357,6 +359,8 @@ export type FiscalCalendar = {
|
|
|
357
359
|
closeableNow: Scalars['Boolean']['output'];
|
|
358
360
|
/** Latest closed period (YYYY-MM), or null if nothing closed */
|
|
359
361
|
closedThrough: Maybe<Scalars['String']['output']>;
|
|
362
|
+
/** Earliest period (YYYY-MM) with a pending obligation blocking close. Null when no pending_obligations blocker is active. */
|
|
363
|
+
earliestPendingPeriod: Maybe<Scalars['String']['output']>;
|
|
360
364
|
fiscalYearStartMonth: Scalars['Int']['output'];
|
|
361
365
|
/** Number of periods between closed_through and close_target (inclusive of close_target). 0 means caught up. */
|
|
362
366
|
gapPeriods: Scalars['Int']['output'];
|
|
@@ -365,8 +369,14 @@ export type FiscalCalendar = {
|
|
|
365
369
|
lastCloseAt: Maybe<Scalars['DateTime']['output']>;
|
|
366
370
|
/** Most recent QB sync timestamp (if connected) */
|
|
367
371
|
lastSyncAt: Maybe<Scalars['DateTime']['output']>;
|
|
372
|
+
/** Number of pending schedule_entry_due events blocking close. Non-zero only when `pending_obligations` is in `blockers`. */
|
|
373
|
+
pendingObligationCount: Scalars['Int']['output'];
|
|
374
|
+
/** Sample of up to 5 pending obligations (schedule_id, schedule_name, period, event_id) ordered by occurred_at. Use `list-event-blocks` with event_type=schedule_entry_due&status=pending for the full set. */
|
|
375
|
+
pendingObligationSample: Array<PendingObligationDetail>;
|
|
368
376
|
/** Fiscal period rows for this graph */
|
|
369
377
|
periods: Array<FiscalPeriodSummary>;
|
|
378
|
+
/** Days the most recent sync is stale relative to the period to close. Populated only when `sync_stale` is in `blockers` and last_sync_at exists (null when there's a connection but no sync has ever run). */
|
|
379
|
+
syncStaleDays: Maybe<Scalars['Int']['output']>;
|
|
370
380
|
};
|
|
371
381
|
/**
|
|
372
382
|
* One fiscal period row — header view used in calendar listings.
|
|
@@ -436,6 +446,7 @@ export type InformationBlock = {
|
|
|
436
446
|
category: Scalars['String']['output'];
|
|
437
447
|
connections: Array<InformationBlockConnection>;
|
|
438
448
|
dimensions: Array<Scalars['JSON']['output']>;
|
|
449
|
+
disclosureId: Maybe<Scalars['String']['output']>;
|
|
439
450
|
displayName: Scalars['String']['output'];
|
|
440
451
|
elements: Array<InformationBlockElement>;
|
|
441
452
|
factSet: Maybe<InformationBlockFactSet>;
|
|
@@ -517,6 +528,8 @@ export type InformationBlockElement = {
|
|
|
517
528
|
/** Fact projection — just the values the envelope caller cares about. */
|
|
518
529
|
export type InformationBlockFact = {
|
|
519
530
|
elementId: Scalars['String']['output'];
|
|
531
|
+
elementName: Maybe<Scalars['String']['output']>;
|
|
532
|
+
elementQname: Maybe<Scalars['String']['output']>;
|
|
520
533
|
/** historical | in_scope */
|
|
521
534
|
factScope: Scalars['String']['output'];
|
|
522
535
|
factSetId: Maybe<Scalars['String']['output']>;
|
|
@@ -1022,6 +1035,8 @@ export type MappingCoverage = {
|
|
|
1022
1035
|
mediumConfidence: Scalars['Int']['output'];
|
|
1023
1036
|
totalCoaElements: Scalars['Int']['output'];
|
|
1024
1037
|
unmappedCount: Scalars['Int']['output'];
|
|
1038
|
+
unreachable: Array<UnreachableMappingType>;
|
|
1039
|
+
unreachableCount: Scalars['Int']['output'];
|
|
1025
1040
|
};
|
|
1026
1041
|
/** A mapping structure with all its associations. */
|
|
1027
1042
|
export type MappingDetail = {
|
|
@@ -1032,6 +1047,41 @@ export type MappingDetail = {
|
|
|
1032
1047
|
taxonomyId: Scalars['String']['output'];
|
|
1033
1048
|
totalAssociations: Scalars['Int']['output'];
|
|
1034
1049
|
};
|
|
1050
|
+
/**
|
|
1051
|
+
* Graph-wide open AR or open AP aggregate.
|
|
1052
|
+
*
|
|
1053
|
+
* ``total_open_cents`` is the sum of unsettled originating-event
|
|
1054
|
+
* balances; ``counterparty_count`` is the number of distinct agents
|
|
1055
|
+
* with at least one open invoice or bill. The currency is uniform
|
|
1056
|
+
* per graph today (mixed-currency books would need a per-currency
|
|
1057
|
+
* breakdown — out of scope for v1).
|
|
1058
|
+
*/
|
|
1059
|
+
export type OpenBalanceAggregate = {
|
|
1060
|
+
/** Distinct agents with at least one open balance. */
|
|
1061
|
+
counterpartyCount: Scalars['Int']['output'];
|
|
1062
|
+
/** Currency code (uniform per graph). */
|
|
1063
|
+
currency: Scalars['String']['output'];
|
|
1064
|
+
/** Distinct originating events with a nonzero open balance. */
|
|
1065
|
+
openEventCount: Scalars['Int']['output'];
|
|
1066
|
+
/** Sum of unsettled balances in minor currency units. */
|
|
1067
|
+
totalOpenCents: Scalars['Int']['output'];
|
|
1068
|
+
};
|
|
1069
|
+
/**
|
|
1070
|
+
* Per-agent open balance row.
|
|
1071
|
+
*
|
|
1072
|
+
* Used for both the aging-by-counterparty list and the per-Agent
|
|
1073
|
+
* GraphQL field. ``open_balance_cents`` reflects only the unsettled
|
|
1074
|
+
* remainder (sum of originating amounts minus sum of discharges) so
|
|
1075
|
+
* partial-payment chains net out correctly.
|
|
1076
|
+
*/
|
|
1077
|
+
export type OpenBalanceByAgent = {
|
|
1078
|
+
agentId: Scalars['String']['output'];
|
|
1079
|
+
currency: Scalars['String']['output'];
|
|
1080
|
+
/** Unsettled originating-event amounts minus discharges, in minor currency units. Positive for normal AR/AP; negative when overpaid. */
|
|
1081
|
+
openBalanceCents: Scalars['Int']['output'];
|
|
1082
|
+
/** Number of originating events with nonzero balance for this agent. */
|
|
1083
|
+
openEventCount: Scalars['Int']['output'];
|
|
1084
|
+
};
|
|
1035
1085
|
/** Pagination information for list responses. */
|
|
1036
1086
|
export type PaginationInfo = {
|
|
1037
1087
|
/** Whether more items are available */
|
|
@@ -1043,6 +1093,19 @@ export type PaginationInfo = {
|
|
|
1043
1093
|
/** Total number of items available */
|
|
1044
1094
|
total: Scalars['Int']['output'];
|
|
1045
1095
|
};
|
|
1096
|
+
/**
|
|
1097
|
+
* One pending schedule-derived obligation blocking close.
|
|
1098
|
+
*
|
|
1099
|
+
* Surfaced on `FiscalCalendarResponse` when `pending_obligations` is in
|
|
1100
|
+
* the blockers list so callers can name which schedules to promote.
|
|
1101
|
+
*/
|
|
1102
|
+
export type PendingObligationDetail = {
|
|
1103
|
+
eventId: Scalars['String']['output'];
|
|
1104
|
+
/** Period in YYYY-MM format */
|
|
1105
|
+
period: Scalars['String']['output'];
|
|
1106
|
+
scheduleId: Maybe<Scalars['String']['output']>;
|
|
1107
|
+
scheduleName: Maybe<Scalars['String']['output']>;
|
|
1108
|
+
};
|
|
1046
1109
|
/**
|
|
1047
1110
|
* One schedule's contribution to a period close — drafted closing
|
|
1048
1111
|
* entry plus its reversal (when ``auto_reverse=True``).
|
|
@@ -1353,6 +1416,10 @@ export type Query = {
|
|
|
1353
1416
|
mapping: Maybe<MappingDetail>;
|
|
1354
1417
|
mappingCoverage: Maybe<MappingCoverage>;
|
|
1355
1418
|
mappings: Maybe<StructureList>;
|
|
1419
|
+
openPayables: OpenBalanceAggregate;
|
|
1420
|
+
openPayablesByAgent: Array<OpenBalanceByAgent>;
|
|
1421
|
+
openReceivables: OpenBalanceAggregate;
|
|
1422
|
+
openReceivablesByAgent: Array<OpenBalanceByAgent>;
|
|
1356
1423
|
periodCloseStatus: Maybe<PeriodCloseStatus>;
|
|
1357
1424
|
periodDrafts: Maybe<PeriodDrafts>;
|
|
1358
1425
|
portfolioBlock: Maybe<PortfolioBlock>;
|
|
@@ -1483,12 +1550,15 @@ export type QueryLibraryTaxonomyArgs = {
|
|
|
1483
1550
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
1484
1551
|
};
|
|
1485
1552
|
export type QueryLibraryTaxonomyArcCountArgs = {
|
|
1553
|
+
associationType?: InputMaybe<Scalars['String']['input']>;
|
|
1554
|
+
structureId?: InputMaybe<Scalars['ID']['input']>;
|
|
1486
1555
|
taxonomyId: Scalars['ID']['input'];
|
|
1487
1556
|
};
|
|
1488
1557
|
export type QueryLibraryTaxonomyArcsArgs = {
|
|
1489
1558
|
associationType?: InputMaybe<Scalars['String']['input']>;
|
|
1490
1559
|
limit?: Scalars['Int']['input'];
|
|
1491
1560
|
offset?: Scalars['Int']['input'];
|
|
1561
|
+
structureId?: InputMaybe<Scalars['ID']['input']>;
|
|
1492
1562
|
taxonomyId: Scalars['ID']['input'];
|
|
1493
1563
|
};
|
|
1494
1564
|
export type QueryMappedTrialBalanceArgs = {
|
|
@@ -1917,6 +1987,27 @@ export type UnmappedElement = {
|
|
|
1917
1987
|
suggestedTargets: Array<SuggestedTarget>;
|
|
1918
1988
|
trait: Maybe<Scalars['String']['output']>;
|
|
1919
1989
|
};
|
|
1990
|
+
/**
|
|
1991
|
+
* A CoA→rs-gaap mapping whose target doesn't reach a Network root.
|
|
1992
|
+
*
|
|
1993
|
+
* The reporting layer is closed: every mapping target must trace upward
|
|
1994
|
+
* through the rs-gaap calc DAG to one of the canonical roots
|
|
1995
|
+
* (rs-gaap:Assets, rs-gaap:LiabilitiesAndStockholdersEquity,
|
|
1996
|
+
* rs-gaap:NetIncomeLoss, rs-gaap:CashAndCashEquivalentsPeriodIncreaseDecrease).
|
|
1997
|
+
* When it doesn't, the fact will land on a dead branch — visible in the
|
|
1998
|
+
* trial balance but invisible to any rendered statement. Surfacing
|
|
1999
|
+
* these as defects lets operators fix the mapping before the report is
|
|
2000
|
+
* filed.
|
|
2001
|
+
*/
|
|
2002
|
+
export type UnreachableMappingType = {
|
|
2003
|
+
coaCode: Maybe<Scalars['String']['output']>;
|
|
2004
|
+
coaElementId: Scalars['String']['output'];
|
|
2005
|
+
coaName: Maybe<Scalars['String']['output']>;
|
|
2006
|
+
coaQname: Maybe<Scalars['String']['output']>;
|
|
2007
|
+
targetElementId: Scalars['String']['output'];
|
|
2008
|
+
targetName: Maybe<Scalars['String']['output']>;
|
|
2009
|
+
targetQname: Maybe<Scalars['String']['output']>;
|
|
2010
|
+
};
|
|
1920
2011
|
/** Aggregate result of running reporting rules over a structure. */
|
|
1921
2012
|
export type ValidationCheck = {
|
|
1922
2013
|
/** Names of rules that were evaluated. */
|
|
@@ -126,6 +126,8 @@ export type Agent = {
|
|
|
126
126
|
legalName: Maybe<Scalars['String']['output']>
|
|
127
127
|
lei: Maybe<Scalars['String']['output']>
|
|
128
128
|
name: Scalars['String']['output']
|
|
129
|
+
openPayable: Maybe<OpenBalanceByAgent>
|
|
130
|
+
openReceivable: Maybe<OpenBalanceByAgent>
|
|
129
131
|
phone: Maybe<Scalars['String']['output']>
|
|
130
132
|
registrationNumber: Maybe<Scalars['String']['output']>
|
|
131
133
|
source: Scalars['String']['output']
|
|
@@ -334,7 +336,7 @@ export type FactRow = {
|
|
|
334
336
|
|
|
335
337
|
/** Current fiscal calendar state for a graph. */
|
|
336
338
|
export type FiscalCalendar = {
|
|
337
|
-
/** Structured blocker codes when closeable_now is False: 'sequence_violation', 'period_incomplete', 'sync_stale', 'calendar_not_initialized', 'period_already_closed' */
|
|
339
|
+
/** Structured blocker codes when closeable_now is False: 'sequence_violation', 'period_incomplete', 'sync_stale', 'calendar_not_initialized', 'period_already_closed', 'pending_obligations' */
|
|
338
340
|
blockers: Array<Scalars['String']['output']>
|
|
339
341
|
/** Ordered list of periods that a close run would process */
|
|
340
342
|
catchUpSequence: Array<Scalars['String']['output']>
|
|
@@ -344,6 +346,8 @@ export type FiscalCalendar = {
|
|
|
344
346
|
closeableNow: Scalars['Boolean']['output']
|
|
345
347
|
/** Latest closed period (YYYY-MM), or null if nothing closed */
|
|
346
348
|
closedThrough: Maybe<Scalars['String']['output']>
|
|
349
|
+
/** Earliest period (YYYY-MM) with a pending obligation blocking close. Null when no pending_obligations blocker is active. */
|
|
350
|
+
earliestPendingPeriod: Maybe<Scalars['String']['output']>
|
|
347
351
|
fiscalYearStartMonth: Scalars['Int']['output']
|
|
348
352
|
/** Number of periods between closed_through and close_target (inclusive of close_target). 0 means caught up. */
|
|
349
353
|
gapPeriods: Scalars['Int']['output']
|
|
@@ -352,8 +356,14 @@ export type FiscalCalendar = {
|
|
|
352
356
|
lastCloseAt: Maybe<Scalars['DateTime']['output']>
|
|
353
357
|
/** Most recent QB sync timestamp (if connected) */
|
|
354
358
|
lastSyncAt: Maybe<Scalars['DateTime']['output']>
|
|
359
|
+
/** Number of pending schedule_entry_due events blocking close. Non-zero only when `pending_obligations` is in `blockers`. */
|
|
360
|
+
pendingObligationCount: Scalars['Int']['output']
|
|
361
|
+
/** Sample of up to 5 pending obligations (schedule_id, schedule_name, period, event_id) ordered by occurred_at. Use `list-event-blocks` with event_type=schedule_entry_due&status=pending for the full set. */
|
|
362
|
+
pendingObligationSample: Array<PendingObligationDetail>
|
|
355
363
|
/** Fiscal period rows for this graph */
|
|
356
364
|
periods: Array<FiscalPeriodSummary>
|
|
365
|
+
/** Days the most recent sync is stale relative to the period to close. Populated only when `sync_stale` is in `blockers` and last_sync_at exists (null when there's a connection but no sync has ever run). */
|
|
366
|
+
syncStaleDays: Maybe<Scalars['Int']['output']>
|
|
357
367
|
}
|
|
358
368
|
|
|
359
369
|
/**
|
|
@@ -428,6 +438,7 @@ export type InformationBlock = {
|
|
|
428
438
|
category: Scalars['String']['output']
|
|
429
439
|
connections: Array<InformationBlockConnection>
|
|
430
440
|
dimensions: Array<Scalars['JSON']['output']>
|
|
441
|
+
disclosureId: Maybe<Scalars['String']['output']>
|
|
431
442
|
displayName: Scalars['String']['output']
|
|
432
443
|
elements: Array<InformationBlockElement>
|
|
433
444
|
factSet: Maybe<InformationBlockFactSet>
|
|
@@ -513,6 +524,8 @@ export type InformationBlockElement = {
|
|
|
513
524
|
/** Fact projection — just the values the envelope caller cares about. */
|
|
514
525
|
export type InformationBlockFact = {
|
|
515
526
|
elementId: Scalars['String']['output']
|
|
527
|
+
elementName: Maybe<Scalars['String']['output']>
|
|
528
|
+
elementQname: Maybe<Scalars['String']['output']>
|
|
516
529
|
/** historical | in_scope */
|
|
517
530
|
factScope: Scalars['String']['output']
|
|
518
531
|
factSetId: Maybe<Scalars['String']['output']>
|
|
@@ -1049,6 +1062,8 @@ export type MappingCoverage = {
|
|
|
1049
1062
|
mediumConfidence: Scalars['Int']['output']
|
|
1050
1063
|
totalCoaElements: Scalars['Int']['output']
|
|
1051
1064
|
unmappedCount: Scalars['Int']['output']
|
|
1065
|
+
unreachable: Array<UnreachableMappingType>
|
|
1066
|
+
unreachableCount: Scalars['Int']['output']
|
|
1052
1067
|
}
|
|
1053
1068
|
|
|
1054
1069
|
/** A mapping structure with all its associations. */
|
|
@@ -1061,6 +1076,43 @@ export type MappingDetail = {
|
|
|
1061
1076
|
totalAssociations: Scalars['Int']['output']
|
|
1062
1077
|
}
|
|
1063
1078
|
|
|
1079
|
+
/**
|
|
1080
|
+
* Graph-wide open AR or open AP aggregate.
|
|
1081
|
+
*
|
|
1082
|
+
* ``total_open_cents`` is the sum of unsettled originating-event
|
|
1083
|
+
* balances; ``counterparty_count`` is the number of distinct agents
|
|
1084
|
+
* with at least one open invoice or bill. The currency is uniform
|
|
1085
|
+
* per graph today (mixed-currency books would need a per-currency
|
|
1086
|
+
* breakdown — out of scope for v1).
|
|
1087
|
+
*/
|
|
1088
|
+
export type OpenBalanceAggregate = {
|
|
1089
|
+
/** Distinct agents with at least one open balance. */
|
|
1090
|
+
counterpartyCount: Scalars['Int']['output']
|
|
1091
|
+
/** Currency code (uniform per graph). */
|
|
1092
|
+
currency: Scalars['String']['output']
|
|
1093
|
+
/** Distinct originating events with a nonzero open balance. */
|
|
1094
|
+
openEventCount: Scalars['Int']['output']
|
|
1095
|
+
/** Sum of unsettled balances in minor currency units. */
|
|
1096
|
+
totalOpenCents: Scalars['Int']['output']
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
/**
|
|
1100
|
+
* Per-agent open balance row.
|
|
1101
|
+
*
|
|
1102
|
+
* Used for both the aging-by-counterparty list and the per-Agent
|
|
1103
|
+
* GraphQL field. ``open_balance_cents`` reflects only the unsettled
|
|
1104
|
+
* remainder (sum of originating amounts minus sum of discharges) so
|
|
1105
|
+
* partial-payment chains net out correctly.
|
|
1106
|
+
*/
|
|
1107
|
+
export type OpenBalanceByAgent = {
|
|
1108
|
+
agentId: Scalars['String']['output']
|
|
1109
|
+
currency: Scalars['String']['output']
|
|
1110
|
+
/** Unsettled originating-event amounts minus discharges, in minor currency units. Positive for normal AR/AP; negative when overpaid. */
|
|
1111
|
+
openBalanceCents: Scalars['Int']['output']
|
|
1112
|
+
/** Number of originating events with nonzero balance for this agent. */
|
|
1113
|
+
openEventCount: Scalars['Int']['output']
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1064
1116
|
/** Pagination information for list responses. */
|
|
1065
1117
|
export type PaginationInfo = {
|
|
1066
1118
|
/** Whether more items are available */
|
|
@@ -1073,6 +1125,20 @@ export type PaginationInfo = {
|
|
|
1073
1125
|
total: Scalars['Int']['output']
|
|
1074
1126
|
}
|
|
1075
1127
|
|
|
1128
|
+
/**
|
|
1129
|
+
* One pending schedule-derived obligation blocking close.
|
|
1130
|
+
*
|
|
1131
|
+
* Surfaced on `FiscalCalendarResponse` when `pending_obligations` is in
|
|
1132
|
+
* the blockers list so callers can name which schedules to promote.
|
|
1133
|
+
*/
|
|
1134
|
+
export type PendingObligationDetail = {
|
|
1135
|
+
eventId: Scalars['String']['output']
|
|
1136
|
+
/** Period in YYYY-MM format */
|
|
1137
|
+
period: Scalars['String']['output']
|
|
1138
|
+
scheduleId: Maybe<Scalars['String']['output']>
|
|
1139
|
+
scheduleName: Maybe<Scalars['String']['output']>
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1076
1142
|
/**
|
|
1077
1143
|
* One schedule's contribution to a period close — drafted closing
|
|
1078
1144
|
* entry plus its reversal (when ``auto_reverse=True``).
|
|
@@ -1397,6 +1463,10 @@ export type Query = {
|
|
|
1397
1463
|
mapping: Maybe<MappingDetail>
|
|
1398
1464
|
mappingCoverage: Maybe<MappingCoverage>
|
|
1399
1465
|
mappings: Maybe<StructureList>
|
|
1466
|
+
openPayables: OpenBalanceAggregate
|
|
1467
|
+
openPayablesByAgent: Array<OpenBalanceByAgent>
|
|
1468
|
+
openReceivables: OpenBalanceAggregate
|
|
1469
|
+
openReceivablesByAgent: Array<OpenBalanceByAgent>
|
|
1400
1470
|
periodCloseStatus: Maybe<PeriodCloseStatus>
|
|
1401
1471
|
periodDrafts: Maybe<PeriodDrafts>
|
|
1402
1472
|
portfolioBlock: Maybe<PortfolioBlock>
|
|
@@ -1549,6 +1619,8 @@ export type QueryLibraryTaxonomyArgs = {
|
|
|
1549
1619
|
}
|
|
1550
1620
|
|
|
1551
1621
|
export type QueryLibraryTaxonomyArcCountArgs = {
|
|
1622
|
+
associationType?: InputMaybe<Scalars['String']['input']>
|
|
1623
|
+
structureId?: InputMaybe<Scalars['ID']['input']>
|
|
1552
1624
|
taxonomyId: Scalars['ID']['input']
|
|
1553
1625
|
}
|
|
1554
1626
|
|
|
@@ -1556,6 +1628,7 @@ export type QueryLibraryTaxonomyArcsArgs = {
|
|
|
1556
1628
|
associationType?: InputMaybe<Scalars['String']['input']>
|
|
1557
1629
|
limit?: Scalars['Int']['input']
|
|
1558
1630
|
offset?: Scalars['Int']['input']
|
|
1631
|
+
structureId?: InputMaybe<Scalars['ID']['input']>
|
|
1559
1632
|
taxonomyId: Scalars['ID']['input']
|
|
1560
1633
|
}
|
|
1561
1634
|
|
|
@@ -2032,6 +2105,28 @@ export type UnmappedElement = {
|
|
|
2032
2105
|
trait: Maybe<Scalars['String']['output']>
|
|
2033
2106
|
}
|
|
2034
2107
|
|
|
2108
|
+
/**
|
|
2109
|
+
* A CoA→rs-gaap mapping whose target doesn't reach a Network root.
|
|
2110
|
+
*
|
|
2111
|
+
* The reporting layer is closed: every mapping target must trace upward
|
|
2112
|
+
* through the rs-gaap calc DAG to one of the canonical roots
|
|
2113
|
+
* (rs-gaap:Assets, rs-gaap:LiabilitiesAndStockholdersEquity,
|
|
2114
|
+
* rs-gaap:NetIncomeLoss, rs-gaap:CashAndCashEquivalentsPeriodIncreaseDecrease).
|
|
2115
|
+
* When it doesn't, the fact will land on a dead branch — visible in the
|
|
2116
|
+
* trial balance but invisible to any rendered statement. Surfacing
|
|
2117
|
+
* these as defects lets operators fix the mapping before the report is
|
|
2118
|
+
* filed.
|
|
2119
|
+
*/
|
|
2120
|
+
export type UnreachableMappingType = {
|
|
2121
|
+
coaCode: Maybe<Scalars['String']['output']>
|
|
2122
|
+
coaElementId: Scalars['String']['output']
|
|
2123
|
+
coaName: Maybe<Scalars['String']['output']>
|
|
2124
|
+
coaQname: Maybe<Scalars['String']['output']>
|
|
2125
|
+
targetElementId: Scalars['String']['output']
|
|
2126
|
+
targetName: Maybe<Scalars['String']['output']>
|
|
2127
|
+
targetQname: Maybe<Scalars['String']['output']>
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2035
2130
|
/** Aggregate result of running reporting rules over a structure. */
|
|
2036
2131
|
export type ValidationCheck = {
|
|
2037
2132
|
/** Names of rules that were evaluated. */
|
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, cancelRepositorySubscription, 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, opCreateAgent, opCreateBackup, opCreateEventBlock, opCreateEventHandler, opCreateInformationBlock, opCreateMappingAssociation, opCreatePortfolioBlock, opCreatePublishList, opCreateReport, opCreateSecurity, opCreateSubgraph, opCreateTaxonomyBlock, opDeleteGraph, opDeleteInformationBlock, opDeleteJournalEntry, opDeleteMappingAssociation, opDeletePortfolioBlock, opDeletePublishList, opDeleteReport, opDeleteSecurity, opDeleteSubgraph, opDeleteTaxonomyBlock, opEvaluateRules, 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, 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, ArtifactResponse, AssociationResponse, AuthResponse, AutoMapElementsOperation, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, 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, 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, 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, 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, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, 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, 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, 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, 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, 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, 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, OperationEnvelopeFiscalCalendarResponse, OperationEnvelopeInformationBlockEnvelope, OperationEnvelopeInitializeLedgerResponse, OperationEnvelopeJournalEntryResponse, OperationEnvelopeLedgerAgentResponse, OperationEnvelopeLedgerEntityResponse, OperationEnvelopeListPublishListMemberResponse, OperationEnvelopePortfolioBlockEnvelope, OperationEnvelopePreviewEventBlockResponse, OperationEnvelopePublishListResponse, OperationEnvelopeReportResponse, OperationEnvelopeSecurityResponse, OperationEnvelopeShareReportResponse, OperationEnvelopeTaxonomyBlockEnvelope, OperationError, OpEvaluateRulesData, OpEvaluateRulesError, OpEvaluateRulesErrors, OpEvaluateRulesResponse, OpEvaluateRulesResponses, 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, PerformanceInsights, PeriodSpec, PortalSessionResponse, PortfolioBlockEnvelope, PortfolioBlockPortfolioFields, PortfolioBlockPortfolioPatch, PortfolioBlockPositionAdd, PortfolioBlockPositionDispose, PortfolioBlockPositions, PortfolioBlockPositionUpdate, PositionBlock, PreviewEventBlockResponse, PublishListMemberResponse, PublishListResponse, 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, 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, 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, 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, VerificationResultLite, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig, ViewProjections } from './types.gen';
|
|
3
|
+
export { autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, cancelRepositorySubscription, 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, 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, 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, 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, ArtifactResponse, AssociationResponse, AuthResponse, AutoMapElementsOperation, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, 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, 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, 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, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, 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, 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, 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, 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, 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, OperationEnvelopeFiscalCalendarResponse, OperationEnvelopeInformationBlockEnvelope, OperationEnvelopeInitializeLedgerResponse, OperationEnvelopeJournalEntryResponse, OperationEnvelopeLedgerAgentResponse, OperationEnvelopeLedgerEntityResponse, OperationEnvelopeListPublishListMemberResponse, OperationEnvelopePortfolioBlockEnvelope, OperationEnvelopePreviewEventBlockResponse, OperationEnvelopePublishListResponse, OperationEnvelopeReportResponse, OperationEnvelopeSecurityResponse, OperationEnvelopeShareReportResponse, OperationEnvelopeTaxonomyBlockEnvelope, OperationError, OpEvaluateRulesData, OpEvaluateRulesError, OpEvaluateRulesErrors, OpEvaluateRulesResponse, OpEvaluateRulesResponses, 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, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, 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, 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, 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, VerificationResultLite, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig, ViewProjections } from './types.gen';
|