@robosystems/client 0.3.12 → 0.3.14

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.
Files changed (46) hide show
  1. package/artifacts/LedgerClient.d.ts +22 -1
  2. package/artifacts/LedgerClient.js +40 -0
  3. package/artifacts/LedgerClient.ts +67 -0
  4. package/artifacts/graphql/generated/graphql.d.ts +350 -32
  5. package/artifacts/graphql/generated/graphql.js +584 -24
  6. package/artifacts/graphql/generated/graphql.ts +927 -61
  7. package/artifacts/graphql/queries/ledger/accountRollups.js +1 -1
  8. package/artifacts/graphql/queries/ledger/accountRollups.ts +1 -1
  9. package/artifacts/graphql/queries/ledger/accountTree.js +4 -4
  10. package/artifacts/graphql/queries/ledger/accountTree.ts +4 -4
  11. package/artifacts/graphql/queries/ledger/accounts.js +0 -1
  12. package/artifacts/graphql/queries/ledger/accounts.ts +0 -1
  13. package/artifacts/graphql/queries/ledger/elements.js +0 -1
  14. package/artifacts/graphql/queries/ledger/elements.ts +0 -1
  15. package/artifacts/graphql/queries/ledger/informationBlock.js +110 -0
  16. package/artifacts/graphql/queries/ledger/informationBlock.ts +110 -0
  17. package/artifacts/graphql/queries/ledger/mappedTrialBalance.js +1 -1
  18. package/artifacts/graphql/queries/ledger/mappedTrialBalance.ts +1 -1
  19. package/artifacts/graphql/queries/ledger/reportPackage.d.ts +11 -0
  20. package/artifacts/graphql/queries/ledger/reportPackage.js +151 -0
  21. package/artifacts/graphql/queries/ledger/reportPackage.ts +149 -0
  22. package/artifacts/graphql/queries/ledger/statement.js +1 -1
  23. package/artifacts/graphql/queries/ledger/statement.ts +1 -1
  24. package/artifacts/graphql/queries/ledger/trialBalance.js +1 -1
  25. package/artifacts/graphql/queries/ledger/trialBalance.ts +1 -1
  26. package/artifacts/graphql/queries/ledger/unmappedElements.js +1 -1
  27. package/artifacts/graphql/queries/ledger/unmappedElements.ts +1 -1
  28. package/artifacts/graphql/queries/library/arcs.js +3 -3
  29. package/artifacts/graphql/queries/library/arcs.ts +3 -3
  30. package/artifacts/graphql/queries/library/elements.js +3 -3
  31. package/artifacts/graphql/queries/library/elements.ts +3 -3
  32. package/index.ts +2 -2
  33. package/package.json +1 -1
  34. package/sdk/index.d.ts +2 -2
  35. package/sdk/index.js +4 -2
  36. package/sdk/index.ts +2 -2
  37. package/sdk/sdk.gen.d.ts +17 -1
  38. package/sdk/sdk.gen.js +36 -2
  39. package/sdk/sdk.gen.ts +35 -1
  40. package/sdk/types.gen.d.ts +199 -11
  41. package/sdk/types.gen.ts +211 -11
  42. package/sdk.gen.d.ts +17 -1
  43. package/sdk.gen.js +36 -2
  44. package/sdk.gen.ts +35 -1
  45. package/types.gen.d.ts +199 -11
  46. package/types.gen.ts +211 -11
@@ -25,7 +25,6 @@ export type Scalars = {
25
25
  export type Account = {
26
26
  accountType: Maybe<Scalars['String']['output']>
27
27
  balanceType: Scalars['String']['output']
28
- classification: Maybe<Scalars['String']['output']>
29
28
  code: Maybe<Scalars['String']['output']>
30
29
  currency: Scalars['String']['output']
31
30
  depth: Scalars['Int']['output']
@@ -38,6 +37,7 @@ export type Account = {
38
37
  name: Scalars['String']['output']
39
38
  parentId: Maybe<Scalars['String']['output']>
40
39
  subClassification: Maybe<Scalars['String']['output']>
40
+ trait: Maybe<Scalars['String']['output']>
41
41
  }
42
42
 
43
43
  export type AccountList = {
@@ -48,11 +48,11 @@ export type AccountList = {
48
48
  export type AccountRollupGroup = {
49
49
  accounts: Array<AccountRollupRow>
50
50
  balanceType: Scalars['String']['output']
51
- classification: Scalars['String']['output']
52
51
  reportingElementId: Scalars['String']['output']
53
52
  reportingName: Scalars['String']['output']
54
53
  reportingQname: Scalars['String']['output']
55
54
  total: Scalars['Float']['output']
55
+ trait: Scalars['String']['output']
56
56
  }
57
57
 
58
58
  export type AccountRollupRow = {
@@ -81,12 +81,12 @@ export type AccountTreeNode = {
81
81
  accountType: Maybe<Scalars['String']['output']>
82
82
  balanceType: Scalars['String']['output']
83
83
  children: Array<AccountTreeNode>
84
- classification: Maybe<Scalars['String']['output']>
85
84
  code: Maybe<Scalars['String']['output']>
86
85
  depth: Scalars['Int']['output']
87
86
  id: Scalars['ID']['output']
88
87
  isActive: Scalars['Boolean']['output']
89
88
  name: Scalars['String']['output']
89
+ trait: Maybe<Scalars['String']['output']>
90
90
  }
91
91
 
92
92
  export type Agent = {
@@ -188,7 +188,6 @@ export type DraftLineItem = {
188
188
 
189
189
  export type Element = {
190
190
  balanceType: Scalars['String']['output']
191
- classification: Maybe<Scalars['String']['output']>
192
191
  code: Maybe<Scalars['String']['output']>
193
192
  depth: Scalars['Int']['output']
194
193
  description: Maybe<Scalars['String']['output']>
@@ -206,6 +205,7 @@ export type Element = {
206
205
  source: Scalars['String']['output']
207
206
  subClassification: Maybe<Scalars['String']['output']>
208
207
  taxonomyId: Maybe<Scalars['String']['output']>
208
+ trait: Maybe<Scalars['String']['output']>
209
209
  }
210
210
 
211
211
  export type ElementList = {
@@ -214,12 +214,12 @@ export type ElementList = {
214
214
  }
215
215
 
216
216
  export type FactRow = {
217
- classification: Maybe<Scalars['String']['output']>
218
217
  depth: Scalars['Int']['output']
219
218
  elementId: Scalars['String']['output']
220
219
  elementName: Scalars['String']['output']
221
220
  elementQname: Scalars['String']['output']
222
221
  isSubtotal: Scalars['Boolean']['output']
222
+ trait: Maybe<Scalars['String']['output']>
223
223
  values: Array<Maybe<Scalars['Float']['output']>>
224
224
  }
225
225
 
@@ -299,10 +299,11 @@ export type InformationBlock = {
299
299
  taxonomyId: Maybe<Scalars['String']['output']>
300
300
  taxonomyName: Maybe<Scalars['String']['output']>
301
301
  verificationResults: Array<InformationBlockVerificationResult>
302
+ view: InformationBlockViewProjections
302
303
  }
303
304
 
304
305
  export type InformationBlockClassification = {
305
- /** One of the categories in the `public.classifications` CHECK constraint — e.g. 'concept_arrangement', 'member_arrangement', 'named_disclosure' for association-level; 'liquidity', 'activityType', etc. for element-level. */
306
+ /** One of the 3 association-level categories in the `public.classifications` CHECK constraint: 'concept_arrangement', 'member_arrangement', or 'named_disclosure'. */
306
307
  category: Scalars['String']['output']
307
308
  /** AI/adapter-supplied confidence (0.0-1.0). Null for deterministic library-seeded rows. */
308
309
  confidence: Maybe<Scalars['Float']['output']>
@@ -320,7 +321,7 @@ export type InformationBlockConnection = {
320
321
  arcrole: Maybe<Scalars['String']['output']>
321
322
  /** presentation | calculation | mapping | equivalence | general-special | essence-alias */
322
323
  associationType: Scalars['String']['output']
323
- /** Association-level classifications (Phase epsilon) — concept_arrangement, member_arrangement, named_disclosure rows from the junction. Empty for library-seeded associations that haven't been classified yet. */
324
+ /** Association-level classifications — concept_arrangement, member_arrangement, named_disclosure rows from the junction. Empty for library-seeded associations that haven't been classified yet. */
324
325
  classifications: Array<InformationBlockClassification>
325
326
  fromElementId: Scalars['String']['output']
326
327
  id: Scalars['String']['output']
@@ -367,6 +368,31 @@ export type InformationBlockFactSet = {
367
368
  structureId: Maybe<Scalars['String']['output']>
368
369
  }
369
370
 
371
+ export type InformationBlockRendering = {
372
+ periods: Array<InformationBlockRenderingPeriod>
373
+ rows: Array<InformationBlockRenderingRow>
374
+ unmappedCount: Scalars['Int']['output']
375
+ validation: Maybe<InformationBlockValidation>
376
+ }
377
+
378
+ export type InformationBlockRenderingPeriod = {
379
+ end: Scalars['Date']['output']
380
+ label: Maybe<Scalars['String']['output']>
381
+ start: Scalars['Date']['output']
382
+ }
383
+
384
+ export type InformationBlockRenderingRow = {
385
+ balanceType: Maybe<Scalars['String']['output']>
386
+ /** FASB elementsOfFinancialStatements trait identifier — 'asset', 'liability', 'equity', 'revenue', 'expense'. Surfaced so the viewer can color-code or group rows without a follow-up trait lookup. */
387
+ classification: Maybe<Scalars['String']['output']>
388
+ depth: Scalars['Int']['output']
389
+ elementId: Scalars['String']['output']
390
+ elementName: Scalars['String']['output']
391
+ elementQname: Maybe<Scalars['String']['output']>
392
+ isSubtotal: Scalars['Boolean']['output']
393
+ values: Array<Maybe<Scalars['Float']['output']>>
394
+ }
395
+
370
396
  export type InformationBlockRule = {
371
397
  id: Scalars['String']['output']
372
398
  /** One of 8 cm:VerificationRule subclasses — AutomatedAccountingAndReportingChecks, FundamentalAccountingConceptRelation, PeerConsistencyRule, PriorPeriodConsistencyRule, ReportLevelModelStructureRule, ReportingSystemSpecificRule, ToDoManualTask, XBRLTechnicalSyntaxRule. */
@@ -397,6 +423,13 @@ export type InformationBlockRuleVariable = {
397
423
  variableQname: Scalars['String']['output']
398
424
  }
399
425
 
426
+ export type InformationBlockValidation = {
427
+ checks: Array<Scalars['String']['output']>
428
+ failures: Array<Scalars['String']['output']>
429
+ passed: Scalars['Boolean']['output']
430
+ warnings: Array<Scalars['String']['output']>
431
+ }
432
+
400
433
  export type InformationBlockVerificationResult = {
401
434
  evaluatedAt: Maybe<Scalars['DateTime']['output']>
402
435
  factSetId: Maybe<Scalars['String']['output']>
@@ -410,6 +443,10 @@ export type InformationBlockVerificationResult = {
410
443
  structureId: Maybe<Scalars['String']['output']>
411
444
  }
412
445
 
446
+ export type InformationBlockViewProjections = {
447
+ rendering: Maybe<InformationBlockRendering>
448
+ }
449
+
413
450
  export type InformationModel = {
414
451
  /** roll_up | roll_forward | variance | adjustment | set | arithmetic | textblock. Null for block types where the concept arrangement is implicit in their mechanics. */
415
452
  conceptArrangement: Maybe<Scalars['String']['output']>
@@ -546,8 +583,6 @@ export type LibraryAssociation = {
546
583
  export type LibraryElement = {
547
584
  /** debit | credit */
548
585
  balanceType: Scalars['String']['output']
549
- /** FASB elementsOfFinancialStatements axis: asset | contraAsset | liability | contraLiability | equity | contraEquity | temporaryEquity | revenue | expense | expenseReversal | gain | loss | comprehensiveIncome | investmentByOwners | distributionToOwners | metric (derived subtotals, not SFAC 6 primary elements). Null for structural rows. */
550
- classification: Maybe<Scalars['String']['output']>
551
586
  /** concept | abstract | axis | member | hypercube */
552
587
  elementType: Scalars['String']['output']
553
588
  id: Scalars['String']['output']
@@ -565,6 +600,8 @@ export type LibraryElement = {
565
600
  /** fac | us-gaap | rs-gaap | … */
566
601
  source: Scalars['String']['output']
567
602
  taxonomyId: Maybe<Scalars['String']['output']>
603
+ /** FASB elementsOfFinancialStatements axis: asset | contraAsset | liability | contraLiability | equity | contraEquity | temporaryEquity | revenue | expense | expenseReversal | gain | loss | comprehensiveIncome | investmentByOwners | distributionToOwners | metric (derived subtotals, not SFAC 6 primary elements). Null for structural rows. */
604
+ trait: Maybe<Scalars['String']['output']>
568
605
  }
569
606
 
570
607
  export type LibraryElementArc = {
@@ -582,11 +619,11 @@ export type LibraryElementArc = {
582
619
  }
583
620
 
584
621
  export type LibraryElementClassification = {
585
- /** Classification axis (e.g. elementsOfFinancialStatements) */
622
+ /** Trait axis (e.g. elementsOfFinancialStatements) */
586
623
  category: Scalars['String']['output']
587
624
  /** Value within the axis (e.g. expense) */
588
625
  identifier: Scalars['String']['output']
589
- /** True for the element's primary EFS classification */
626
+ /** True for the element's primary EFS trait assignment */
590
627
  isPrimary: Scalars['Boolean']['output']
591
628
  /** Human-readable name */
592
629
  name: Maybe<Scalars['String']['output']>
@@ -655,13 +692,13 @@ export type MappedTrialBalance = {
655
692
 
656
693
  export type MappedTrialBalanceRow = {
657
694
  balanceType: Maybe<Scalars['String']['output']>
658
- classification: Maybe<Scalars['String']['output']>
659
695
  netBalance: Scalars['Float']['output']
660
696
  qname: Scalars['String']['output']
661
697
  reportingElementId: Scalars['String']['output']
662
698
  reportingName: Scalars['String']['output']
663
699
  totalCredits: Scalars['Float']['output']
664
700
  totalDebits: Scalars['Float']['output']
701
+ trait: Maybe<Scalars['String']['output']>
665
702
  }
666
703
 
667
704
  export type MappingCoverage = {
@@ -854,6 +891,7 @@ export type Query = {
854
891
  publishList: Maybe<PublishListDetail>
855
892
  publishLists: Maybe<PublishListList>
856
893
  report: Maybe<Report>
894
+ reportPackage: Maybe<ReportPackage>
857
895
  reportingTaxonomy: Maybe<Taxonomy>
858
896
  reports: Maybe<ReportList>
859
897
  searchLibraryElements: Array<LibraryElement>
@@ -1049,6 +1087,10 @@ export type QueryReportArgs = {
1049
1087
  reportId: Scalars['String']['input']
1050
1088
  }
1051
1089
 
1090
+ export type QueryReportPackageArgs = {
1091
+ reportId: Scalars['String']['input']
1092
+ }
1093
+
1052
1094
  export type QuerySearchLibraryElementsArgs = {
1053
1095
  limit?: Scalars['Int']['input']
1054
1096
  query: Scalars['String']['input']
@@ -1119,6 +1161,9 @@ export type Report = {
1119
1161
  comparative: Scalars['Boolean']['output']
1120
1162
  createdAt: Scalars['DateTime']['output']
1121
1163
  entityName: Maybe<Scalars['String']['output']>
1164
+ filedAt: Maybe<Scalars['DateTime']['output']>
1165
+ filedBy: Maybe<Scalars['String']['output']>
1166
+ filingStatus: Scalars['String']['output']
1122
1167
  generationStatus: Scalars['String']['output']
1123
1168
  id: Scalars['String']['output']
1124
1169
  lastGenerated: Maybe<Scalars['DateTime']['output']>
@@ -1133,6 +1178,8 @@ export type Report = {
1133
1178
  sourceGraphId: Maybe<Scalars['String']['output']>
1134
1179
  sourceReportId: Maybe<Scalars['String']['output']>
1135
1180
  structures: Array<StructureSummary>
1181
+ supersededById: Maybe<Scalars['String']['output']>
1182
+ supersedesId: Maybe<Scalars['String']['output']>
1136
1183
  taxonomyId: Scalars['String']['output']
1137
1184
  }
1138
1185
 
@@ -1140,6 +1187,38 @@ export type ReportList = {
1140
1187
  reports: Array<Report>
1141
1188
  }
1142
1189
 
1190
+ export type ReportPackage = {
1191
+ aiGenerated: Scalars['Boolean']['output']
1192
+ createdAt: Scalars['String']['output']
1193
+ createdBy: Scalars['String']['output']
1194
+ description: Maybe<Scalars['String']['output']>
1195
+ entityName: Maybe<Scalars['String']['output']>
1196
+ filedAt: Maybe<Scalars['String']['output']>
1197
+ filedBy: Maybe<Scalars['String']['output']>
1198
+ filingStatus: Scalars['String']['output']
1199
+ generationStatus: Scalars['String']['output']
1200
+ id: Scalars['ID']['output']
1201
+ items: Array<ReportPackageItem>
1202
+ lastGenerated: Maybe<Scalars['String']['output']>
1203
+ name: Scalars['String']['output']
1204
+ periodEnd: Maybe<Scalars['String']['output']>
1205
+ periodStart: Maybe<Scalars['String']['output']>
1206
+ periodType: Scalars['String']['output']
1207
+ sharedAt: Maybe<Scalars['String']['output']>
1208
+ sourceGraphId: Maybe<Scalars['String']['output']>
1209
+ sourceReportId: Maybe<Scalars['String']['output']>
1210
+ supersededById: Maybe<Scalars['String']['output']>
1211
+ supersedesId: Maybe<Scalars['String']['output']>
1212
+ taxonomyId: Scalars['String']['output']
1213
+ }
1214
+
1215
+ export type ReportPackageItem = {
1216
+ block: InformationBlock
1217
+ displayOrder: Scalars['Int']['output']
1218
+ factSetId: Scalars['String']['output']
1219
+ structureId: Maybe<Scalars['String']['output']>
1220
+ }
1221
+
1143
1222
  export type Security = {
1144
1223
  authorizedShares: Maybe<Scalars['Int']['output']>
1145
1224
  createdAt: Scalars['DateTime']['output']
@@ -1248,7 +1327,6 @@ export type TaxonomyBlockAssociation = {
1248
1327
 
1249
1328
  export type TaxonomyBlockElement = {
1250
1329
  balanceType: Maybe<Scalars['String']['output']>
1251
- classification: Maybe<Scalars['String']['output']>
1252
1330
  depth: Maybe<Scalars['Int']['output']>
1253
1331
  elementType: Scalars['String']['output']
1254
1332
  id: Scalars['String']['output']
@@ -1258,6 +1336,7 @@ export type TaxonomyBlockElement = {
1258
1336
  parentQname: Maybe<Scalars['String']['output']>
1259
1337
  periodType: Maybe<Scalars['String']['output']>
1260
1338
  qname: Maybe<Scalars['String']['output']>
1339
+ trait: Maybe<Scalars['String']['output']>
1261
1340
  }
1262
1341
 
1263
1342
  export type TaxonomyBlockRule = {
@@ -1295,20 +1374,20 @@ export type TrialBalanceRow = {
1295
1374
  accountId: Scalars['String']['output']
1296
1375
  accountName: Scalars['String']['output']
1297
1376
  accountType: Maybe<Scalars['String']['output']>
1298
- classification: Maybe<Scalars['String']['output']>
1299
1377
  netBalance: Scalars['Float']['output']
1300
1378
  totalCredits: Scalars['Float']['output']
1301
1379
  totalDebits: Scalars['Float']['output']
1380
+ trait: Maybe<Scalars['String']['output']>
1302
1381
  }
1303
1382
 
1304
1383
  export type UnmappedElement = {
1305
1384
  balanceType: Scalars['String']['output']
1306
- classification: Maybe<Scalars['String']['output']>
1307
1385
  code: Maybe<Scalars['String']['output']>
1308
1386
  externalSource: Maybe<Scalars['String']['output']>
1309
1387
  id: Scalars['String']['output']
1310
1388
  name: Scalars['String']['output']
1311
1389
  suggestedTargets: Array<SuggestedTarget>
1390
+ trait: Maybe<Scalars['String']['output']>
1312
1391
  }
1313
1392
 
1314
1393
  export type ValidationCheck = {
@@ -1516,7 +1595,7 @@ export type GetLedgerAccountRollupsQuery = {
1516
1595
  reportingElementId: string
1517
1596
  reportingName: string
1518
1597
  reportingQname: string
1519
- classification: string
1598
+ trait: string
1520
1599
  balanceType: string
1521
1600
  total: number
1522
1601
  accounts: Array<{
@@ -1540,7 +1619,7 @@ export type GetLedgerAccountTreeQuery = {
1540
1619
  id: string
1541
1620
  code: string | null
1542
1621
  name: string
1543
- classification: string | null
1622
+ trait: string | null
1544
1623
  accountType: string | null
1545
1624
  balanceType: string
1546
1625
  depth: number
@@ -1549,7 +1628,7 @@ export type GetLedgerAccountTreeQuery = {
1549
1628
  id: string
1550
1629
  code: string | null
1551
1630
  name: string
1552
- classification: string | null
1631
+ trait: string | null
1553
1632
  accountType: string | null
1554
1633
  balanceType: string
1555
1634
  depth: number
@@ -1558,7 +1637,7 @@ export type GetLedgerAccountTreeQuery = {
1558
1637
  id: string
1559
1638
  code: string | null
1560
1639
  name: string
1561
- classification: string | null
1640
+ trait: string | null
1562
1641
  accountType: string | null
1563
1642
  balanceType: string
1564
1643
  depth: number
@@ -1567,7 +1646,7 @@ export type GetLedgerAccountTreeQuery = {
1567
1646
  id: string
1568
1647
  code: string | null
1569
1648
  name: string
1570
- classification: string | null
1649
+ trait: string | null
1571
1650
  accountType: string | null
1572
1651
  balanceType: string
1573
1652
  depth: number
@@ -1593,7 +1672,6 @@ export type ListLedgerAccountsQuery = {
1593
1672
  code: string | null
1594
1673
  name: string
1595
1674
  description: string | null
1596
- classification: string | null
1597
1675
  subClassification: string | null
1598
1676
  balanceType: string
1599
1677
  parentId: string | null
@@ -1646,7 +1724,6 @@ export type ListLedgerElementsQuery = {
1646
1724
  description: string | null
1647
1725
  qname: string | null
1648
1726
  namespace: string | null
1649
- classification: string | null
1650
1727
  subClassification: string | null
1651
1728
  balanceType: string
1652
1729
  periodType: string
@@ -1803,6 +1880,57 @@ export type GetInformationBlockQuery = {
1803
1880
  factScope: string
1804
1881
  factSetId: string | null
1805
1882
  }>
1883
+ rules: Array<{
1884
+ id: string
1885
+ ruleCategory: string
1886
+ rulePattern: string
1887
+ ruleExpression: string
1888
+ ruleMessage: string | null
1889
+ ruleSeverity: string
1890
+ ruleOrigin: string
1891
+ }>
1892
+ factSet: {
1893
+ id: string
1894
+ structureId: string | null
1895
+ periodStart: any | null
1896
+ periodEnd: any
1897
+ factsetType: string
1898
+ entityId: string
1899
+ reportId: string | null
1900
+ } | null
1901
+ verificationResults: Array<{
1902
+ id: string
1903
+ ruleId: string
1904
+ structureId: string | null
1905
+ factSetId: string | null
1906
+ status: string
1907
+ message: string | null
1908
+ periodStart: any | null
1909
+ periodEnd: any | null
1910
+ evaluatedAt: any | null
1911
+ }>
1912
+ view: {
1913
+ rendering: {
1914
+ unmappedCount: number
1915
+ rows: Array<{
1916
+ elementId: string
1917
+ elementQname: string | null
1918
+ elementName: string
1919
+ classification: string | null
1920
+ balanceType: string | null
1921
+ values: Array<number | null>
1922
+ isSubtotal: boolean
1923
+ depth: number
1924
+ }>
1925
+ periods: Array<{ start: any; end: any; label: string | null }>
1926
+ validation: {
1927
+ passed: boolean
1928
+ checks: Array<string>
1929
+ failures: Array<string>
1930
+ warnings: Array<string>
1931
+ } | null
1932
+ } | null
1933
+ }
1806
1934
  } | null
1807
1935
  }
1808
1936
 
@@ -1860,6 +1988,57 @@ export type ListInformationBlocksQuery = {
1860
1988
  factScope: string
1861
1989
  factSetId: string | null
1862
1990
  }>
1991
+ rules: Array<{
1992
+ id: string
1993
+ ruleCategory: string
1994
+ rulePattern: string
1995
+ ruleExpression: string
1996
+ ruleMessage: string | null
1997
+ ruleSeverity: string
1998
+ ruleOrigin: string
1999
+ }>
2000
+ factSet: {
2001
+ id: string
2002
+ structureId: string | null
2003
+ periodStart: any | null
2004
+ periodEnd: any
2005
+ factsetType: string
2006
+ entityId: string
2007
+ reportId: string | null
2008
+ } | null
2009
+ verificationResults: Array<{
2010
+ id: string
2011
+ ruleId: string
2012
+ structureId: string | null
2013
+ factSetId: string | null
2014
+ status: string
2015
+ message: string | null
2016
+ periodStart: any | null
2017
+ periodEnd: any | null
2018
+ evaluatedAt: any | null
2019
+ }>
2020
+ view: {
2021
+ rendering: {
2022
+ unmappedCount: number
2023
+ rows: Array<{
2024
+ elementId: string
2025
+ elementQname: string | null
2026
+ elementName: string
2027
+ classification: string | null
2028
+ balanceType: string | null
2029
+ values: Array<number | null>
2030
+ isSubtotal: boolean
2031
+ depth: number
2032
+ }>
2033
+ periods: Array<{ start: any; end: any; label: string | null }>
2034
+ validation: {
2035
+ passed: boolean
2036
+ checks: Array<string>
2037
+ failures: Array<string>
2038
+ warnings: Array<string>
2039
+ } | null
2040
+ } | null
2041
+ }
1863
2042
  }>
1864
2043
  }
1865
2044
 
@@ -1876,7 +2055,7 @@ export type GetLedgerMappedTrialBalanceQuery = {
1876
2055
  reportingElementId: string
1877
2056
  qname: string
1878
2057
  reportingName: string
1879
- classification: string | null
2058
+ trait: string | null
1880
2059
  balanceType: string | null
1881
2060
  totalDebits: number
1882
2061
  totalCredits: number
@@ -2079,6 +2258,139 @@ export type GetLedgerReportQuery = {
2079
2258
  } | null
2080
2259
  }
2081
2260
 
2261
+ export type GetLedgerReportPackageQueryVariables = Exact<{
2262
+ reportId: Scalars['String']['input']
2263
+ }>
2264
+
2265
+ export type GetLedgerReportPackageQuery = {
2266
+ reportPackage: {
2267
+ id: string
2268
+ name: string
2269
+ description: string | null
2270
+ taxonomyId: string
2271
+ periodType: string
2272
+ periodStart: string | null
2273
+ periodEnd: string | null
2274
+ generationStatus: string
2275
+ lastGenerated: string | null
2276
+ filingStatus: string
2277
+ filedAt: string | null
2278
+ filedBy: string | null
2279
+ supersedesId: string | null
2280
+ supersededById: string | null
2281
+ sourceGraphId: string | null
2282
+ sourceReportId: string | null
2283
+ sharedAt: string | null
2284
+ entityName: string | null
2285
+ aiGenerated: boolean
2286
+ createdAt: string
2287
+ createdBy: string
2288
+ items: Array<{
2289
+ factSetId: string
2290
+ structureId: string | null
2291
+ displayOrder: number
2292
+ block: {
2293
+ id: string
2294
+ blockType: string
2295
+ name: string
2296
+ displayName: string
2297
+ category: string
2298
+ taxonomyId: string | null
2299
+ taxonomyName: string | null
2300
+ informationModel: { conceptArrangement: string | null; memberArrangement: string | null }
2301
+ artifact: {
2302
+ topic: string | null
2303
+ parentheticalNote: string | null
2304
+ template: any | null
2305
+ mechanics: any
2306
+ }
2307
+ elements: Array<{
2308
+ id: string
2309
+ qname: string | null
2310
+ name: string
2311
+ code: string | null
2312
+ elementType: string
2313
+ isAbstract: boolean
2314
+ isMonetary: boolean
2315
+ balanceType: string | null
2316
+ periodType: string | null
2317
+ }>
2318
+ connections: Array<{
2319
+ id: string
2320
+ fromElementId: string
2321
+ toElementId: string
2322
+ associationType: string
2323
+ arcrole: string | null
2324
+ orderValue: number | null
2325
+ weight: number | null
2326
+ }>
2327
+ facts: Array<{
2328
+ id: string
2329
+ elementId: string
2330
+ value: number
2331
+ periodStart: any | null
2332
+ periodEnd: any
2333
+ periodType: string
2334
+ unit: string
2335
+ factScope: string
2336
+ factSetId: string | null
2337
+ }>
2338
+ rules: Array<{
2339
+ id: string
2340
+ ruleCategory: string
2341
+ rulePattern: string
2342
+ ruleExpression: string
2343
+ ruleMessage: string | null
2344
+ ruleSeverity: string
2345
+ ruleOrigin: string
2346
+ }>
2347
+ factSet: {
2348
+ id: string
2349
+ structureId: string | null
2350
+ periodStart: any | null
2351
+ periodEnd: any
2352
+ factsetType: string
2353
+ entityId: string
2354
+ reportId: string | null
2355
+ } | null
2356
+ verificationResults: Array<{
2357
+ id: string
2358
+ ruleId: string
2359
+ structureId: string | null
2360
+ factSetId: string | null
2361
+ status: string
2362
+ message: string | null
2363
+ periodStart: any | null
2364
+ periodEnd: any | null
2365
+ evaluatedAt: any | null
2366
+ }>
2367
+ view: {
2368
+ rendering: {
2369
+ unmappedCount: number
2370
+ rows: Array<{
2371
+ elementId: string
2372
+ elementQname: string | null
2373
+ elementName: string
2374
+ classification: string | null
2375
+ balanceType: string | null
2376
+ values: Array<number | null>
2377
+ isSubtotal: boolean
2378
+ depth: number
2379
+ }>
2380
+ periods: Array<{ start: any; end: any; label: string | null }>
2381
+ validation: {
2382
+ passed: boolean
2383
+ checks: Array<string>
2384
+ failures: Array<string>
2385
+ warnings: Array<string>
2386
+ } | null
2387
+ } | null
2388
+ }
2389
+ }
2390
+ }>
2391
+ } | null
2392
+ }
2393
+
2082
2394
  export type GetLedgerReportingTaxonomyQueryVariables = Exact<{ [key: string]: never }>
2083
2395
 
2084
2396
  export type GetLedgerReportingTaxonomyQuery = {
@@ -2142,7 +2454,7 @@ export type GetLedgerStatementQuery = {
2142
2454
  elementId: string
2143
2455
  elementQname: string
2144
2456
  elementName: string
2145
- classification: string | null
2457
+ trait: string | null
2146
2458
  values: Array<number | null>
2147
2459
  isSubtotal: boolean
2148
2460
  depth: number
@@ -2298,7 +2610,7 @@ export type GetLedgerTrialBalanceQuery = {
2298
2610
  accountId: string
2299
2611
  accountCode: string
2300
2612
  accountName: string
2301
- classification: string | null
2613
+ trait: string | null
2302
2614
  accountType: string | null
2303
2615
  totalDebits: number
2304
2616
  totalCredits: number
@@ -2316,7 +2628,7 @@ export type ListLedgerUnmappedElementsQuery = {
2316
2628
  id: string
2317
2629
  code: string | null
2318
2630
  name: string
2319
- classification: string | null
2631
+ trait: string | null
2320
2632
  balanceType: string
2321
2633
  externalSource: string | null
2322
2634
  suggestedTargets: Array<{
@@ -2369,7 +2681,7 @@ export type GetLibraryElementArcsQuery = {
2369
2681
  taxonomyName: string | null
2370
2682
  structureId: string | null
2371
2683
  structureName: string | null
2372
- peer: { id: string; qname: string; name: string; classification: string | null; source: string }
2684
+ peer: { id: string; qname: string; name: string; trait: string | null; source: string }
2373
2685
  }>
2374
2686
  }
2375
2687
 
@@ -2392,18 +2704,12 @@ export type GetLibraryElementEquivalentsQueryVariables = Exact<{
2392
2704
 
2393
2705
  export type GetLibraryElementEquivalentsQuery = {
2394
2706
  libraryElementEquivalents: {
2395
- element: {
2396
- id: string
2397
- qname: string
2398
- name: string
2399
- classification: string | null
2400
- source: string
2401
- }
2707
+ element: { id: string; qname: string; name: string; trait: string | null; source: string }
2402
2708
  equivalents: Array<{
2403
2709
  id: string
2404
2710
  qname: string
2405
2711
  name: string
2406
- classification: string | null
2712
+ trait: string | null
2407
2713
  source: string
2408
2714
  }>
2409
2715
  } | null
@@ -2428,7 +2734,7 @@ export type ListLibraryElementsQuery = {
2428
2734
  qname: string
2429
2735
  namespace: string | null
2430
2736
  name: string
2431
- classification: string | null
2737
+ trait: string | null
2432
2738
  balanceType: string
2433
2739
  periodType: string
2434
2740
  isAbstract: boolean
@@ -2454,7 +2760,7 @@ export type SearchLibraryElementsQuery = {
2454
2760
  qname: string
2455
2761
  namespace: string | null
2456
2762
  name: string
2457
- classification: string | null
2763
+ trait: string | null
2458
2764
  balanceType: string
2459
2765
  periodType: string
2460
2766
  isAbstract: boolean
@@ -2479,7 +2785,7 @@ export type GetLibraryElementQuery = {
2479
2785
  qname: string
2480
2786
  namespace: string | null
2481
2787
  name: string
2482
- classification: string | null
2788
+ trait: string | null
2483
2789
  balanceType: string
2484
2790
  periodType: string
2485
2791
  isAbstract: boolean
@@ -3173,7 +3479,7 @@ export const GetLedgerAccountRollupsDocument = {
3173
3479
  { kind: 'Field', name: { kind: 'Name', value: 'reportingElementId' } },
3174
3480
  { kind: 'Field', name: { kind: 'Name', value: 'reportingName' } },
3175
3481
  { kind: 'Field', name: { kind: 'Name', value: 'reportingQname' } },
3176
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
3482
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
3177
3483
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
3178
3484
  { kind: 'Field', name: { kind: 'Name', value: 'total' } },
3179
3485
  {
@@ -3228,7 +3534,7 @@ export const GetLedgerAccountTreeDocument = {
3228
3534
  { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3229
3535
  { kind: 'Field', name: { kind: 'Name', value: 'code' } },
3230
3536
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3231
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
3537
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
3232
3538
  { kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
3233
3539
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
3234
3540
  { kind: 'Field', name: { kind: 'Name', value: 'depth' } },
@@ -3242,7 +3548,7 @@ export const GetLedgerAccountTreeDocument = {
3242
3548
  { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3243
3549
  { kind: 'Field', name: { kind: 'Name', value: 'code' } },
3244
3550
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3245
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
3551
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
3246
3552
  { kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
3247
3553
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
3248
3554
  { kind: 'Field', name: { kind: 'Name', value: 'depth' } },
@@ -3256,10 +3562,7 @@ export const GetLedgerAccountTreeDocument = {
3256
3562
  { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3257
3563
  { kind: 'Field', name: { kind: 'Name', value: 'code' } },
3258
3564
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3259
- {
3260
- kind: 'Field',
3261
- name: { kind: 'Name', value: 'classification' },
3262
- },
3565
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
3263
3566
  { kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
3264
3567
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
3265
3568
  { kind: 'Field', name: { kind: 'Name', value: 'depth' } },
@@ -3273,10 +3576,7 @@ export const GetLedgerAccountTreeDocument = {
3273
3576
  { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3274
3577
  { kind: 'Field', name: { kind: 'Name', value: 'code' } },
3275
3578
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3276
- {
3277
- kind: 'Field',
3278
- name: { kind: 'Name', value: 'classification' },
3279
- },
3579
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
3280
3580
  {
3281
3581
  kind: 'Field',
3282
3582
  name: { kind: 'Name', value: 'accountType' },
@@ -3388,7 +3688,6 @@ export const ListLedgerAccountsDocument = {
3388
3688
  { kind: 'Field', name: { kind: 'Name', value: 'code' } },
3389
3689
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3390
3690
  { kind: 'Field', name: { kind: 'Name', value: 'description' } },
3391
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
3392
3691
  { kind: 'Field', name: { kind: 'Name', value: 'subClassification' } },
3393
3692
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
3394
3693
  { kind: 'Field', name: { kind: 'Name', value: 'parentId' } },
@@ -3576,7 +3875,6 @@ export const ListLedgerElementsDocument = {
3576
3875
  { kind: 'Field', name: { kind: 'Name', value: 'description' } },
3577
3876
  { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
3578
3877
  { kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
3579
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
3580
3878
  { kind: 'Field', name: { kind: 'Name', value: 'subClassification' } },
3581
3879
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
3582
3880
  { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
@@ -3887,6 +4185,120 @@ export const GetInformationBlockDocument = {
3887
4185
  ],
3888
4186
  },
3889
4187
  },
4188
+ {
4189
+ kind: 'Field',
4190
+ name: { kind: 'Name', value: 'rules' },
4191
+ selectionSet: {
4192
+ kind: 'SelectionSet',
4193
+ selections: [
4194
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
4195
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
4196
+ { kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
4197
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleExpression' } },
4198
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
4199
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
4200
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
4201
+ ],
4202
+ },
4203
+ },
4204
+ {
4205
+ kind: 'Field',
4206
+ name: { kind: 'Name', value: 'factSet' },
4207
+ selectionSet: {
4208
+ kind: 'SelectionSet',
4209
+ selections: [
4210
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
4211
+ { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
4212
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
4213
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
4214
+ { kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
4215
+ { kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
4216
+ { kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
4217
+ ],
4218
+ },
4219
+ },
4220
+ {
4221
+ kind: 'Field',
4222
+ name: { kind: 'Name', value: 'verificationResults' },
4223
+ selectionSet: {
4224
+ kind: 'SelectionSet',
4225
+ selections: [
4226
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
4227
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleId' } },
4228
+ { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
4229
+ { kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
4230
+ { kind: 'Field', name: { kind: 'Name', value: 'status' } },
4231
+ { kind: 'Field', name: { kind: 'Name', value: 'message' } },
4232
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
4233
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
4234
+ { kind: 'Field', name: { kind: 'Name', value: 'evaluatedAt' } },
4235
+ ],
4236
+ },
4237
+ },
4238
+ {
4239
+ kind: 'Field',
4240
+ name: { kind: 'Name', value: 'view' },
4241
+ selectionSet: {
4242
+ kind: 'SelectionSet',
4243
+ selections: [
4244
+ {
4245
+ kind: 'Field',
4246
+ name: { kind: 'Name', value: 'rendering' },
4247
+ selectionSet: {
4248
+ kind: 'SelectionSet',
4249
+ selections: [
4250
+ {
4251
+ kind: 'Field',
4252
+ name: { kind: 'Name', value: 'rows' },
4253
+ selectionSet: {
4254
+ kind: 'SelectionSet',
4255
+ selections: [
4256
+ { kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
4257
+ { kind: 'Field', name: { kind: 'Name', value: 'elementQname' } },
4258
+ { kind: 'Field', name: { kind: 'Name', value: 'elementName' } },
4259
+ {
4260
+ kind: 'Field',
4261
+ name: { kind: 'Name', value: 'classification' },
4262
+ },
4263
+ { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
4264
+ { kind: 'Field', name: { kind: 'Name', value: 'values' } },
4265
+ { kind: 'Field', name: { kind: 'Name', value: 'isSubtotal' } },
4266
+ { kind: 'Field', name: { kind: 'Name', value: 'depth' } },
4267
+ ],
4268
+ },
4269
+ },
4270
+ {
4271
+ kind: 'Field',
4272
+ name: { kind: 'Name', value: 'periods' },
4273
+ selectionSet: {
4274
+ kind: 'SelectionSet',
4275
+ selections: [
4276
+ { kind: 'Field', name: { kind: 'Name', value: 'start' } },
4277
+ { kind: 'Field', name: { kind: 'Name', value: 'end' } },
4278
+ { kind: 'Field', name: { kind: 'Name', value: 'label' } },
4279
+ ],
4280
+ },
4281
+ },
4282
+ {
4283
+ kind: 'Field',
4284
+ name: { kind: 'Name', value: 'validation' },
4285
+ selectionSet: {
4286
+ kind: 'SelectionSet',
4287
+ selections: [
4288
+ { kind: 'Field', name: { kind: 'Name', value: 'passed' } },
4289
+ { kind: 'Field', name: { kind: 'Name', value: 'checks' } },
4290
+ { kind: 'Field', name: { kind: 'Name', value: 'failures' } },
4291
+ { kind: 'Field', name: { kind: 'Name', value: 'warnings' } },
4292
+ ],
4293
+ },
4294
+ },
4295
+ { kind: 'Field', name: { kind: 'Name', value: 'unmappedCount' } },
4296
+ ],
4297
+ },
4298
+ },
4299
+ ],
4300
+ },
4301
+ },
3890
4302
  ],
3891
4303
  },
3892
4304
  },
@@ -4038,6 +4450,120 @@ export const ListInformationBlocksDocument = {
4038
4450
  ],
4039
4451
  },
4040
4452
  },
4453
+ {
4454
+ kind: 'Field',
4455
+ name: { kind: 'Name', value: 'rules' },
4456
+ selectionSet: {
4457
+ kind: 'SelectionSet',
4458
+ selections: [
4459
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
4460
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
4461
+ { kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
4462
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleExpression' } },
4463
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
4464
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
4465
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
4466
+ ],
4467
+ },
4468
+ },
4469
+ {
4470
+ kind: 'Field',
4471
+ name: { kind: 'Name', value: 'factSet' },
4472
+ selectionSet: {
4473
+ kind: 'SelectionSet',
4474
+ selections: [
4475
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
4476
+ { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
4477
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
4478
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
4479
+ { kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
4480
+ { kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
4481
+ { kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
4482
+ ],
4483
+ },
4484
+ },
4485
+ {
4486
+ kind: 'Field',
4487
+ name: { kind: 'Name', value: 'verificationResults' },
4488
+ selectionSet: {
4489
+ kind: 'SelectionSet',
4490
+ selections: [
4491
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
4492
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleId' } },
4493
+ { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
4494
+ { kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
4495
+ { kind: 'Field', name: { kind: 'Name', value: 'status' } },
4496
+ { kind: 'Field', name: { kind: 'Name', value: 'message' } },
4497
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
4498
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
4499
+ { kind: 'Field', name: { kind: 'Name', value: 'evaluatedAt' } },
4500
+ ],
4501
+ },
4502
+ },
4503
+ {
4504
+ kind: 'Field',
4505
+ name: { kind: 'Name', value: 'view' },
4506
+ selectionSet: {
4507
+ kind: 'SelectionSet',
4508
+ selections: [
4509
+ {
4510
+ kind: 'Field',
4511
+ name: { kind: 'Name', value: 'rendering' },
4512
+ selectionSet: {
4513
+ kind: 'SelectionSet',
4514
+ selections: [
4515
+ {
4516
+ kind: 'Field',
4517
+ name: { kind: 'Name', value: 'rows' },
4518
+ selectionSet: {
4519
+ kind: 'SelectionSet',
4520
+ selections: [
4521
+ { kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
4522
+ { kind: 'Field', name: { kind: 'Name', value: 'elementQname' } },
4523
+ { kind: 'Field', name: { kind: 'Name', value: 'elementName' } },
4524
+ {
4525
+ kind: 'Field',
4526
+ name: { kind: 'Name', value: 'classification' },
4527
+ },
4528
+ { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
4529
+ { kind: 'Field', name: { kind: 'Name', value: 'values' } },
4530
+ { kind: 'Field', name: { kind: 'Name', value: 'isSubtotal' } },
4531
+ { kind: 'Field', name: { kind: 'Name', value: 'depth' } },
4532
+ ],
4533
+ },
4534
+ },
4535
+ {
4536
+ kind: 'Field',
4537
+ name: { kind: 'Name', value: 'periods' },
4538
+ selectionSet: {
4539
+ kind: 'SelectionSet',
4540
+ selections: [
4541
+ { kind: 'Field', name: { kind: 'Name', value: 'start' } },
4542
+ { kind: 'Field', name: { kind: 'Name', value: 'end' } },
4543
+ { kind: 'Field', name: { kind: 'Name', value: 'label' } },
4544
+ ],
4545
+ },
4546
+ },
4547
+ {
4548
+ kind: 'Field',
4549
+ name: { kind: 'Name', value: 'validation' },
4550
+ selectionSet: {
4551
+ kind: 'SelectionSet',
4552
+ selections: [
4553
+ { kind: 'Field', name: { kind: 'Name', value: 'passed' } },
4554
+ { kind: 'Field', name: { kind: 'Name', value: 'checks' } },
4555
+ { kind: 'Field', name: { kind: 'Name', value: 'failures' } },
4556
+ { kind: 'Field', name: { kind: 'Name', value: 'warnings' } },
4557
+ ],
4558
+ },
4559
+ },
4560
+ { kind: 'Field', name: { kind: 'Name', value: 'unmappedCount' } },
4561
+ ],
4562
+ },
4563
+ },
4564
+ ],
4565
+ },
4566
+ },
4041
4567
  ],
4042
4568
  },
4043
4569
  },
@@ -4109,7 +4635,7 @@ export const GetLedgerMappedTrialBalanceDocument = {
4109
4635
  { kind: 'Field', name: { kind: 'Name', value: 'reportingElementId' } },
4110
4636
  { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
4111
4637
  { kind: 'Field', name: { kind: 'Name', value: 'reportingName' } },
4112
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
4638
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
4113
4639
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
4114
4640
  { kind: 'Field', name: { kind: 'Name', value: 'totalDebits' } },
4115
4641
  { kind: 'Field', name: { kind: 'Name', value: 'totalCredits' } },
@@ -4675,6 +5201,346 @@ export const GetLedgerReportDocument = {
4675
5201
  },
4676
5202
  ],
4677
5203
  } as unknown as DocumentNode<GetLedgerReportQuery, GetLedgerReportQueryVariables>
5204
+ export const GetLedgerReportPackageDocument = {
5205
+ kind: 'Document',
5206
+ definitions: [
5207
+ {
5208
+ kind: 'OperationDefinition',
5209
+ operation: 'query',
5210
+ name: { kind: 'Name', value: 'GetLedgerReportPackage' },
5211
+ variableDefinitions: [
5212
+ {
5213
+ kind: 'VariableDefinition',
5214
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'reportId' } },
5215
+ type: {
5216
+ kind: 'NonNullType',
5217
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
5218
+ },
5219
+ },
5220
+ ],
5221
+ selectionSet: {
5222
+ kind: 'SelectionSet',
5223
+ selections: [
5224
+ {
5225
+ kind: 'Field',
5226
+ name: { kind: 'Name', value: 'reportPackage' },
5227
+ arguments: [
5228
+ {
5229
+ kind: 'Argument',
5230
+ name: { kind: 'Name', value: 'reportId' },
5231
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'reportId' } },
5232
+ },
5233
+ ],
5234
+ selectionSet: {
5235
+ kind: 'SelectionSet',
5236
+ selections: [
5237
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5238
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5239
+ { kind: 'Field', name: { kind: 'Name', value: 'description' } },
5240
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
5241
+ { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
5242
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
5243
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
5244
+ { kind: 'Field', name: { kind: 'Name', value: 'generationStatus' } },
5245
+ { kind: 'Field', name: { kind: 'Name', value: 'lastGenerated' } },
5246
+ { kind: 'Field', name: { kind: 'Name', value: 'filingStatus' } },
5247
+ { kind: 'Field', name: { kind: 'Name', value: 'filedAt' } },
5248
+ { kind: 'Field', name: { kind: 'Name', value: 'filedBy' } },
5249
+ { kind: 'Field', name: { kind: 'Name', value: 'supersedesId' } },
5250
+ { kind: 'Field', name: { kind: 'Name', value: 'supersededById' } },
5251
+ { kind: 'Field', name: { kind: 'Name', value: 'sourceGraphId' } },
5252
+ { kind: 'Field', name: { kind: 'Name', value: 'sourceReportId' } },
5253
+ { kind: 'Field', name: { kind: 'Name', value: 'sharedAt' } },
5254
+ { kind: 'Field', name: { kind: 'Name', value: 'entityName' } },
5255
+ { kind: 'Field', name: { kind: 'Name', value: 'aiGenerated' } },
5256
+ { kind: 'Field', name: { kind: 'Name', value: 'createdAt' } },
5257
+ { kind: 'Field', name: { kind: 'Name', value: 'createdBy' } },
5258
+ {
5259
+ kind: 'Field',
5260
+ name: { kind: 'Name', value: 'items' },
5261
+ selectionSet: {
5262
+ kind: 'SelectionSet',
5263
+ selections: [
5264
+ { kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
5265
+ { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
5266
+ { kind: 'Field', name: { kind: 'Name', value: 'displayOrder' } },
5267
+ {
5268
+ kind: 'Field',
5269
+ name: { kind: 'Name', value: 'block' },
5270
+ selectionSet: {
5271
+ kind: 'SelectionSet',
5272
+ selections: [
5273
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5274
+ { kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
5275
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5276
+ { kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
5277
+ { kind: 'Field', name: { kind: 'Name', value: 'category' } },
5278
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
5279
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyName' } },
5280
+ {
5281
+ kind: 'Field',
5282
+ name: { kind: 'Name', value: 'informationModel' },
5283
+ selectionSet: {
5284
+ kind: 'SelectionSet',
5285
+ selections: [
5286
+ {
5287
+ kind: 'Field',
5288
+ name: { kind: 'Name', value: 'conceptArrangement' },
5289
+ },
5290
+ {
5291
+ kind: 'Field',
5292
+ name: { kind: 'Name', value: 'memberArrangement' },
5293
+ },
5294
+ ],
5295
+ },
5296
+ },
5297
+ {
5298
+ kind: 'Field',
5299
+ name: { kind: 'Name', value: 'artifact' },
5300
+ selectionSet: {
5301
+ kind: 'SelectionSet',
5302
+ selections: [
5303
+ { kind: 'Field', name: { kind: 'Name', value: 'topic' } },
5304
+ {
5305
+ kind: 'Field',
5306
+ name: { kind: 'Name', value: 'parentheticalNote' },
5307
+ },
5308
+ { kind: 'Field', name: { kind: 'Name', value: 'template' } },
5309
+ { kind: 'Field', name: { kind: 'Name', value: 'mechanics' } },
5310
+ ],
5311
+ },
5312
+ },
5313
+ {
5314
+ kind: 'Field',
5315
+ name: { kind: 'Name', value: 'elements' },
5316
+ selectionSet: {
5317
+ kind: 'SelectionSet',
5318
+ selections: [
5319
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5320
+ { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
5321
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5322
+ { kind: 'Field', name: { kind: 'Name', value: 'code' } },
5323
+ { kind: 'Field', name: { kind: 'Name', value: 'elementType' } },
5324
+ { kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
5325
+ { kind: 'Field', name: { kind: 'Name', value: 'isMonetary' } },
5326
+ { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
5327
+ { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
5328
+ ],
5329
+ },
5330
+ },
5331
+ {
5332
+ kind: 'Field',
5333
+ name: { kind: 'Name', value: 'connections' },
5334
+ selectionSet: {
5335
+ kind: 'SelectionSet',
5336
+ selections: [
5337
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5338
+ { kind: 'Field', name: { kind: 'Name', value: 'fromElementId' } },
5339
+ { kind: 'Field', name: { kind: 'Name', value: 'toElementId' } },
5340
+ {
5341
+ kind: 'Field',
5342
+ name: { kind: 'Name', value: 'associationType' },
5343
+ },
5344
+ { kind: 'Field', name: { kind: 'Name', value: 'arcrole' } },
5345
+ { kind: 'Field', name: { kind: 'Name', value: 'orderValue' } },
5346
+ { kind: 'Field', name: { kind: 'Name', value: 'weight' } },
5347
+ ],
5348
+ },
5349
+ },
5350
+ {
5351
+ kind: 'Field',
5352
+ name: { kind: 'Name', value: 'facts' },
5353
+ selectionSet: {
5354
+ kind: 'SelectionSet',
5355
+ selections: [
5356
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5357
+ { kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
5358
+ { kind: 'Field', name: { kind: 'Name', value: 'value' } },
5359
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
5360
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
5361
+ { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
5362
+ { kind: 'Field', name: { kind: 'Name', value: 'unit' } },
5363
+ { kind: 'Field', name: { kind: 'Name', value: 'factScope' } },
5364
+ { kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
5365
+ ],
5366
+ },
5367
+ },
5368
+ {
5369
+ kind: 'Field',
5370
+ name: { kind: 'Name', value: 'rules' },
5371
+ selectionSet: {
5372
+ kind: 'SelectionSet',
5373
+ selections: [
5374
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5375
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
5376
+ { kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
5377
+ {
5378
+ kind: 'Field',
5379
+ name: { kind: 'Name', value: 'ruleExpression' },
5380
+ },
5381
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
5382
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
5383
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
5384
+ ],
5385
+ },
5386
+ },
5387
+ {
5388
+ kind: 'Field',
5389
+ name: { kind: 'Name', value: 'factSet' },
5390
+ selectionSet: {
5391
+ kind: 'SelectionSet',
5392
+ selections: [
5393
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5394
+ { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
5395
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
5396
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
5397
+ { kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
5398
+ { kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
5399
+ { kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
5400
+ ],
5401
+ },
5402
+ },
5403
+ {
5404
+ kind: 'Field',
5405
+ name: { kind: 'Name', value: 'verificationResults' },
5406
+ selectionSet: {
5407
+ kind: 'SelectionSet',
5408
+ selections: [
5409
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5410
+ { kind: 'Field', name: { kind: 'Name', value: 'ruleId' } },
5411
+ { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
5412
+ { kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
5413
+ { kind: 'Field', name: { kind: 'Name', value: 'status' } },
5414
+ { kind: 'Field', name: { kind: 'Name', value: 'message' } },
5415
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
5416
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
5417
+ { kind: 'Field', name: { kind: 'Name', value: 'evaluatedAt' } },
5418
+ ],
5419
+ },
5420
+ },
5421
+ {
5422
+ kind: 'Field',
5423
+ name: { kind: 'Name', value: 'view' },
5424
+ selectionSet: {
5425
+ kind: 'SelectionSet',
5426
+ selections: [
5427
+ {
5428
+ kind: 'Field',
5429
+ name: { kind: 'Name', value: 'rendering' },
5430
+ selectionSet: {
5431
+ kind: 'SelectionSet',
5432
+ selections: [
5433
+ {
5434
+ kind: 'Field',
5435
+ name: { kind: 'Name', value: 'rows' },
5436
+ selectionSet: {
5437
+ kind: 'SelectionSet',
5438
+ selections: [
5439
+ {
5440
+ kind: 'Field',
5441
+ name: { kind: 'Name', value: 'elementId' },
5442
+ },
5443
+ {
5444
+ kind: 'Field',
5445
+ name: { kind: 'Name', value: 'elementQname' },
5446
+ },
5447
+ {
5448
+ kind: 'Field',
5449
+ name: { kind: 'Name', value: 'elementName' },
5450
+ },
5451
+ {
5452
+ kind: 'Field',
5453
+ name: { kind: 'Name', value: 'classification' },
5454
+ },
5455
+ {
5456
+ kind: 'Field',
5457
+ name: { kind: 'Name', value: 'balanceType' },
5458
+ },
5459
+ {
5460
+ kind: 'Field',
5461
+ name: { kind: 'Name', value: 'values' },
5462
+ },
5463
+ {
5464
+ kind: 'Field',
5465
+ name: { kind: 'Name', value: 'isSubtotal' },
5466
+ },
5467
+ {
5468
+ kind: 'Field',
5469
+ name: { kind: 'Name', value: 'depth' },
5470
+ },
5471
+ ],
5472
+ },
5473
+ },
5474
+ {
5475
+ kind: 'Field',
5476
+ name: { kind: 'Name', value: 'periods' },
5477
+ selectionSet: {
5478
+ kind: 'SelectionSet',
5479
+ selections: [
5480
+ {
5481
+ kind: 'Field',
5482
+ name: { kind: 'Name', value: 'start' },
5483
+ },
5484
+ {
5485
+ kind: 'Field',
5486
+ name: { kind: 'Name', value: 'end' },
5487
+ },
5488
+ {
5489
+ kind: 'Field',
5490
+ name: { kind: 'Name', value: 'label' },
5491
+ },
5492
+ ],
5493
+ },
5494
+ },
5495
+ {
5496
+ kind: 'Field',
5497
+ name: { kind: 'Name', value: 'validation' },
5498
+ selectionSet: {
5499
+ kind: 'SelectionSet',
5500
+ selections: [
5501
+ {
5502
+ kind: 'Field',
5503
+ name: { kind: 'Name', value: 'passed' },
5504
+ },
5505
+ {
5506
+ kind: 'Field',
5507
+ name: { kind: 'Name', value: 'checks' },
5508
+ },
5509
+ {
5510
+ kind: 'Field',
5511
+ name: { kind: 'Name', value: 'failures' },
5512
+ },
5513
+ {
5514
+ kind: 'Field',
5515
+ name: { kind: 'Name', value: 'warnings' },
5516
+ },
5517
+ ],
5518
+ },
5519
+ },
5520
+ {
5521
+ kind: 'Field',
5522
+ name: { kind: 'Name', value: 'unmappedCount' },
5523
+ },
5524
+ ],
5525
+ },
5526
+ },
5527
+ ],
5528
+ },
5529
+ },
5530
+ ],
5531
+ },
5532
+ },
5533
+ ],
5534
+ },
5535
+ },
5536
+ ],
5537
+ },
5538
+ },
5539
+ ],
5540
+ },
5541
+ },
5542
+ ],
5543
+ } as unknown as DocumentNode<GetLedgerReportPackageQuery, GetLedgerReportPackageQueryVariables>
4678
5544
  export const GetLedgerReportingTaxonomyDocument = {
4679
5545
  kind: 'Document',
4680
5546
  definitions: [
@@ -4859,7 +5725,7 @@ export const GetLedgerStatementDocument = {
4859
5725
  { kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
4860
5726
  { kind: 'Field', name: { kind: 'Name', value: 'elementQname' } },
4861
5727
  { kind: 'Field', name: { kind: 'Name', value: 'elementName' } },
4862
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
5728
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
4863
5729
  { kind: 'Field', name: { kind: 'Name', value: 'values' } },
4864
5730
  { kind: 'Field', name: { kind: 'Name', value: 'isSubtotal' } },
4865
5731
  { kind: 'Field', name: { kind: 'Name', value: 'depth' } },
@@ -5303,7 +6169,7 @@ export const GetLedgerTrialBalanceDocument = {
5303
6169
  { kind: 'Field', name: { kind: 'Name', value: 'accountId' } },
5304
6170
  { kind: 'Field', name: { kind: 'Name', value: 'accountCode' } },
5305
6171
  { kind: 'Field', name: { kind: 'Name', value: 'accountName' } },
5306
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
6172
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
5307
6173
  { kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
5308
6174
  { kind: 'Field', name: { kind: 'Name', value: 'totalDebits' } },
5309
6175
  { kind: 'Field', name: { kind: 'Name', value: 'totalCredits' } },
@@ -5352,7 +6218,7 @@ export const ListLedgerUnmappedElementsDocument = {
5352
6218
  { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5353
6219
  { kind: 'Field', name: { kind: 'Name', value: 'code' } },
5354
6220
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5355
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
6221
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
5356
6222
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
5357
6223
  { kind: 'Field', name: { kind: 'Name', value: 'externalSource' } },
5358
6224
  {
@@ -5533,7 +6399,7 @@ export const GetLibraryElementArcsDocument = {
5533
6399
  { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5534
6400
  { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
5535
6401
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5536
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
6402
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
5537
6403
  { kind: 'Field', name: { kind: 'Name', value: 'source' } },
5538
6404
  ],
5539
6405
  },
@@ -5636,7 +6502,7 @@ export const GetLibraryElementEquivalentsDocument = {
5636
6502
  { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5637
6503
  { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
5638
6504
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5639
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
6505
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
5640
6506
  { kind: 'Field', name: { kind: 'Name', value: 'source' } },
5641
6507
  ],
5642
6508
  },
@@ -5650,7 +6516,7 @@ export const GetLibraryElementEquivalentsDocument = {
5650
6516
  { kind: 'Field', name: { kind: 'Name', value: 'id' } },
5651
6517
  { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
5652
6518
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5653
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
6519
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
5654
6520
  { kind: 'Field', name: { kind: 'Name', value: 'source' } },
5655
6521
  ],
5656
6522
  },
@@ -5806,7 +6672,7 @@ export const ListLibraryElementsDocument = {
5806
6672
  { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
5807
6673
  { kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
5808
6674
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5809
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
6675
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
5810
6676
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
5811
6677
  { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
5812
6678
  { kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
@@ -5940,7 +6806,7 @@ export const SearchLibraryElementsDocument = {
5940
6806
  { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
5941
6807
  { kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
5942
6808
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
5943
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
6809
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
5944
6810
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
5945
6811
  { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
5946
6812
  { kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
@@ -6025,7 +6891,7 @@ export const GetLibraryElementDocument = {
6025
6891
  { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
6026
6892
  { kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
6027
6893
  { kind: 'Field', name: { kind: 'Name', value: 'name' } },
6028
- { kind: 'Field', name: { kind: 'Name', value: 'classification' } },
6894
+ { kind: 'Field', name: { kind: 'Name', value: 'trait' } },
6029
6895
  { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
6030
6896
  { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
6031
6897
  { kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },