@robosystems/client 0.3.8 → 0.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -89,6 +89,13 @@ export type AccountTreeNode = {
89
89
  name: Scalars['String']['output']
90
90
  }
91
91
 
92
+ export type Artifact = {
93
+ mechanics: Scalars['JSON']['output']
94
+ parentheticalNote: Maybe<Scalars['String']['output']>
95
+ template: Maybe<Scalars['JSON']['output']>
96
+ topic: Maybe<Scalars['String']['output']>
97
+ }
98
+
92
99
  export type Association = {
93
100
  approvedBy: Maybe<Scalars['String']['output']>
94
101
  associationType: Scalars['String']['output']
@@ -254,6 +261,141 @@ export type HoldingsList = {
254
261
  totalPositions: Scalars['Int']['output']
255
262
  }
256
263
 
264
+ export type InformationBlock = {
265
+ artifact: Artifact
266
+ blockType: Scalars['String']['output']
267
+ category: Scalars['String']['output']
268
+ connections: Array<InformationBlockConnection>
269
+ dimensions: Array<Scalars['JSON']['output']>
270
+ displayName: Scalars['String']['output']
271
+ elements: Array<InformationBlockElement>
272
+ factSet: Maybe<InformationBlockFactSet>
273
+ facts: Array<InformationBlockFact>
274
+ id: Scalars['ID']['output']
275
+ informationModel: InformationModel
276
+ name: Scalars['String']['output']
277
+ rules: Array<InformationBlockRule>
278
+ taxonomyId: Maybe<Scalars['String']['output']>
279
+ taxonomyName: Maybe<Scalars['String']['output']>
280
+ verificationResults: Array<InformationBlockVerificationResult>
281
+ }
282
+
283
+ export type InformationBlockClassification = {
284
+ /** 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. */
285
+ category: Scalars['String']['output']
286
+ /** AI/adapter-supplied confidence (0.0-1.0). Null for deterministic library-seeded rows. */
287
+ confidence: Maybe<Scalars['Float']['output']>
288
+ /** Classification vocabulary row id. */
289
+ id: Scalars['String']['output']
290
+ /** Vocabulary identifier within the category — e.g. 'RollUp', 'aggregation', 'AssetsRollUp'. */
291
+ identifier: Scalars['String']['output']
292
+ /** Whether this is the canonical classification for the (association|element, category) pair. Non-primary rows capture alternates / AI suggestions alongside the chosen primary. */
293
+ isPrimary: Scalars['Boolean']['output']
294
+ /** Provenance — 'arcrole_analysis', 'disclosure_mechanics', 'us-gaap-metamodel', adapter name, etc. */
295
+ source: Maybe<Scalars['String']['output']>
296
+ }
297
+
298
+ export type InformationBlockConnection = {
299
+ arcrole: Maybe<Scalars['String']['output']>
300
+ /** presentation | calculation | mapping | equivalence | general-special | essence-alias */
301
+ associationType: Scalars['String']['output']
302
+ /** 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. */
303
+ classifications: Array<InformationBlockClassification>
304
+ fromElementId: Scalars['String']['output']
305
+ id: Scalars['String']['output']
306
+ orderValue: Maybe<Scalars['Float']['output']>
307
+ toElementId: Scalars['String']['output']
308
+ weight: Maybe<Scalars['Float']['output']>
309
+ }
310
+
311
+ export type InformationBlockElement = {
312
+ balanceType: Maybe<Scalars['String']['output']>
313
+ code: Maybe<Scalars['String']['output']>
314
+ /** concept | abstract | axis | member | hypercube */
315
+ elementType: Scalars['String']['output']
316
+ id: Scalars['String']['output']
317
+ isAbstract: Scalars['Boolean']['output']
318
+ isMonetary: Scalars['Boolean']['output']
319
+ name: Scalars['String']['output']
320
+ periodType: Maybe<Scalars['String']['output']>
321
+ qname: Maybe<Scalars['String']['output']>
322
+ }
323
+
324
+ export type InformationBlockFact = {
325
+ elementId: Scalars['String']['output']
326
+ /** historical | in_scope */
327
+ factScope: Scalars['String']['output']
328
+ factSetId: Maybe<Scalars['String']['output']>
329
+ id: Scalars['String']['output']
330
+ periodEnd: Scalars['Date']['output']
331
+ periodStart: Maybe<Scalars['Date']['output']>
332
+ periodType: Scalars['String']['output']
333
+ unit: Scalars['String']['output']
334
+ value: Scalars['Float']['output']
335
+ }
336
+
337
+ export type InformationBlockFactSet = {
338
+ entityId: Scalars['String']['output']
339
+ /** 'report' | 'schedule' | 'custom'. Enum closure enforced by the ``public.fact_sets`` CHECK constraint. */
340
+ factsetType: Scalars['String']['output']
341
+ id: Scalars['String']['output']
342
+ periodEnd: Scalars['Date']['output']
343
+ periodStart: Maybe<Scalars['Date']['output']>
344
+ /** Back-pointer to the ``reports`` table while ``report_id`` still lives on facts. Drops out once the retirement migration lands. */
345
+ reportId: Maybe<Scalars['String']['output']>
346
+ structureId: Maybe<Scalars['String']['output']>
347
+ }
348
+
349
+ export type InformationBlockRule = {
350
+ id: Scalars['String']['output']
351
+ /** One of 8 cm:VerificationRule subclasses — AutomatedAccountingAndReportingChecks, FundamentalAccountingConceptRelation, PeerConsistencyRule, PriorPeriodConsistencyRule, ReportLevelModelStructureRule, ReportingSystemSpecificRule, ToDoManualTask, XBRLTechnicalSyntaxRule. */
352
+ ruleCategory: Scalars['String']['output']
353
+ ruleExpression: Scalars['String']['output']
354
+ ruleMessage: Maybe<Scalars['String']['output']>
355
+ /** Provenance — 'forked' (from an upstream artifact, e.g. Seattle Method) or 'native' (authored in this seed or by a tenant). Enum closure enforced by the ``public.rules`` CHECK constraint. */
356
+ ruleOrigin: Scalars['String']['output']
357
+ /** One of 10 cm:BusinessRulePattern mechanisms — Adjustment, CoExists, EqualTo, Exists, GreaterThan, GreaterThanOrEqualToZero, LessThan, RollForward, RollUp, Variance. */
358
+ rulePattern: Scalars['String']['output']
359
+ /** Failure severity — 'info' | 'warning' | 'error'. Enum closure enforced by the ``public.rules`` CHECK constraint. */
360
+ ruleSeverity: Scalars['String']['output']
361
+ ruleTarget: Maybe<InformationBlockRuleTarget>
362
+ ruleVariables: Array<InformationBlockRuleVariable>
363
+ }
364
+
365
+ export type InformationBlockRuleTarget = {
366
+ /** Which atom type the rule targets — 'structure' | 'element' | 'association'. Enum closure enforced by the ``public.rules`` CHECK constraint. */
367
+ targetKind: Scalars['String']['output']
368
+ /** UUID of the target atom — structure_id, element_id, or association_id depending on ``target_kind``. */
369
+ targetRefId: Scalars['String']['output']
370
+ }
371
+
372
+ export type InformationBlockRuleVariable = {
373
+ /** Local name in the rule expression, e.g. 'Assets'. */
374
+ variableName: Scalars['String']['output']
375
+ /** Concept qname the variable resolves to, e.g. 'fac:Assets'. */
376
+ variableQname: Scalars['String']['output']
377
+ }
378
+
379
+ export type InformationBlockVerificationResult = {
380
+ evaluatedAt: Maybe<Scalars['DateTime']['output']>
381
+ factSetId: Maybe<Scalars['String']['output']>
382
+ id: Scalars['String']['output']
383
+ message: Maybe<Scalars['String']['output']>
384
+ periodEnd: Maybe<Scalars['Date']['output']>
385
+ periodStart: Maybe<Scalars['Date']['output']>
386
+ ruleId: Scalars['String']['output']
387
+ /** 'pass' | 'fail' | 'error' | 'skipped'. Enum closure enforced by the ``public.verification_results`` CHECK constraint. */
388
+ status: Scalars['String']['output']
389
+ structureId: Maybe<Scalars['String']['output']>
390
+ }
391
+
392
+ export type InformationModel = {
393
+ /** roll_up | roll_forward | variance | adjustment | set | arithmetic | textblock. Null for block types where the concept arrangement is implicit in their mechanics. */
394
+ conceptArrangement: Maybe<Scalars['String']['output']>
395
+ /** aggregation | nonaggregation, or null if non-hypercube. */
396
+ memberArrangement: Maybe<Scalars['String']['output']>
397
+ }
398
+
257
399
  export type LedgerEntity = {
258
400
  addressCity: Maybe<Scalars['String']['output']>
259
401
  addressCountry: Maybe<Scalars['String']['output']>
@@ -662,6 +804,8 @@ export type Query = {
662
804
  fiscalCalendar: Maybe<FiscalCalendar>
663
805
  hello: Scalars['String']['output']
664
806
  holdings: Maybe<HoldingsList>
807
+ informationBlock: Maybe<InformationBlock>
808
+ informationBlocks: Array<InformationBlock>
665
809
  libraryElement: Maybe<LibraryElement>
666
810
  libraryElementArcs: Array<LibraryElementArc>
667
811
  libraryElementClassifications: Array<LibraryElementClassification>
@@ -689,8 +833,6 @@ export type Query = {
689
833
  report: Maybe<Report>
690
834
  reportingTaxonomy: Maybe<Taxonomy>
691
835
  reports: Maybe<ReportList>
692
- scheduleFacts: Maybe<ScheduleFacts>
693
- schedules: Maybe<ScheduleList>
694
836
  searchLibraryElements: Array<LibraryElement>
695
837
  securities: Maybe<SecurityList>
696
838
  security: Maybe<Security>
@@ -734,6 +876,17 @@ export type QueryHoldingsArgs = {
734
876
  portfolioId: Scalars['String']['input']
735
877
  }
736
878
 
879
+ export type QueryInformationBlockArgs = {
880
+ id: Scalars['ID']['input']
881
+ }
882
+
883
+ export type QueryInformationBlocksArgs = {
884
+ blockType?: InputMaybe<Scalars['String']['input']>
885
+ category?: InputMaybe<Scalars['String']['input']>
886
+ limit?: Scalars['Int']['input']
887
+ offset?: Scalars['Int']['input']
888
+ }
889
+
737
890
  export type QueryLibraryElementArgs = {
738
891
  id?: InputMaybe<Scalars['ID']['input']>
739
892
  qname?: InputMaybe<Scalars['String']['input']>
@@ -859,12 +1012,6 @@ export type QueryReportArgs = {
859
1012
  reportId: Scalars['String']['input']
860
1013
  }
861
1014
 
862
- export type QueryScheduleFactsArgs = {
863
- periodEnd?: InputMaybe<Scalars['Date']['input']>
864
- periodStart?: InputMaybe<Scalars['Date']['input']>
865
- structureId: Scalars['String']['input']
866
- }
867
-
868
1015
  export type QuerySearchLibraryElementsArgs = {
869
1016
  limit?: Scalars['Int']['input']
870
1017
  query: Scalars['String']['input']
@@ -943,33 +1090,6 @@ export type ReportList = {
943
1090
  reports: Array<Report>
944
1091
  }
945
1092
 
946
- export type ScheduleFact = {
947
- elementId: Scalars['String']['output']
948
- elementName: Scalars['String']['output']
949
- periodEnd: Scalars['Date']['output']
950
- periodStart: Scalars['Date']['output']
951
- value: Scalars['Float']['output']
952
- }
953
-
954
- export type ScheduleFacts = {
955
- facts: Array<ScheduleFact>
956
- structureId: Scalars['String']['output']
957
- }
958
-
959
- export type ScheduleList = {
960
- schedules: Array<ScheduleSummary>
961
- }
962
-
963
- export type ScheduleSummary = {
964
- entryTemplate: Maybe<Scalars['JSON']['output']>
965
- name: Scalars['String']['output']
966
- periodsWithEntries: Scalars['Int']['output']
967
- scheduleMetadata: Maybe<Scalars['JSON']['output']>
968
- structureId: Scalars['ID']['output']
969
- taxonomyName: Scalars['String']['output']
970
- totalPeriods: Scalars['Int']['output']
971
- }
972
-
973
1093
  export type Security = {
974
1094
  authorizedShares: Maybe<Scalars['Int']['output']>
975
1095
  createdAt: Scalars['DateTime']['output']
@@ -1515,6 +1635,117 @@ export type GetLedgerFiscalCalendarQuery = {
1515
1635
  } | null
1516
1636
  }
1517
1637
 
1638
+ export type GetInformationBlockQueryVariables = Exact<{
1639
+ id: Scalars['ID']['input']
1640
+ }>
1641
+
1642
+ export type GetInformationBlockQuery = {
1643
+ informationBlock: {
1644
+ id: string
1645
+ blockType: string
1646
+ name: string
1647
+ displayName: string
1648
+ category: string
1649
+ taxonomyId: string | null
1650
+ taxonomyName: string | null
1651
+ informationModel: { conceptArrangement: string | null; memberArrangement: string | null }
1652
+ artifact: {
1653
+ topic: string | null
1654
+ parentheticalNote: string | null
1655
+ template: any | null
1656
+ mechanics: any
1657
+ }
1658
+ elements: Array<{
1659
+ id: string
1660
+ qname: string | null
1661
+ name: string
1662
+ code: string | null
1663
+ elementType: string
1664
+ isAbstract: boolean
1665
+ isMonetary: boolean
1666
+ balanceType: string | null
1667
+ periodType: string | null
1668
+ }>
1669
+ connections: Array<{
1670
+ id: string
1671
+ fromElementId: string
1672
+ toElementId: string
1673
+ associationType: string
1674
+ arcrole: string | null
1675
+ orderValue: number | null
1676
+ weight: number | null
1677
+ }>
1678
+ facts: Array<{
1679
+ id: string
1680
+ elementId: string
1681
+ value: number
1682
+ periodStart: any | null
1683
+ periodEnd: any
1684
+ periodType: string
1685
+ unit: string
1686
+ factScope: string
1687
+ factSetId: string | null
1688
+ }>
1689
+ } | null
1690
+ }
1691
+
1692
+ export type ListInformationBlocksQueryVariables = Exact<{
1693
+ blockType: InputMaybe<Scalars['String']['input']>
1694
+ category: InputMaybe<Scalars['String']['input']>
1695
+ limit: InputMaybe<Scalars['Int']['input']>
1696
+ offset: InputMaybe<Scalars['Int']['input']>
1697
+ }>
1698
+
1699
+ export type ListInformationBlocksQuery = {
1700
+ informationBlocks: Array<{
1701
+ id: string
1702
+ blockType: string
1703
+ name: string
1704
+ displayName: string
1705
+ category: string
1706
+ taxonomyId: string | null
1707
+ taxonomyName: string | null
1708
+ informationModel: { conceptArrangement: string | null; memberArrangement: string | null }
1709
+ artifact: {
1710
+ topic: string | null
1711
+ parentheticalNote: string | null
1712
+ template: any | null
1713
+ mechanics: any
1714
+ }
1715
+ elements: Array<{
1716
+ id: string
1717
+ qname: string | null
1718
+ name: string
1719
+ code: string | null
1720
+ elementType: string
1721
+ isAbstract: boolean
1722
+ isMonetary: boolean
1723
+ balanceType: string | null
1724
+ periodType: string | null
1725
+ }>
1726
+ connections: Array<{
1727
+ id: string
1728
+ fromElementId: string
1729
+ toElementId: string
1730
+ associationType: string
1731
+ arcrole: string | null
1732
+ orderValue: number | null
1733
+ weight: number | null
1734
+ }>
1735
+ facts: Array<{
1736
+ id: string
1737
+ elementId: string
1738
+ value: number
1739
+ periodStart: any | null
1740
+ periodEnd: any
1741
+ periodType: string
1742
+ unit: string
1743
+ factScope: string
1744
+ factSetId: string | null
1745
+ }>
1746
+ }>
1747
+ }
1748
+
1518
1749
  export type GetLedgerMappedTrialBalanceQueryVariables = Exact<{
1519
1750
  mappingId: Scalars['String']['input']
1520
1751
  startDate: InputMaybe<Scalars['Date']['input']>
@@ -1777,41 +2008,6 @@ export type ListLedgerReportsQuery = {
1777
2008
  } | null
1778
2009
  }
1779
2010
 
1780
- export type GetLedgerScheduleFactsQueryVariables = Exact<{
1781
- structureId: Scalars['String']['input']
1782
- periodStart: InputMaybe<Scalars['Date']['input']>
1783
- periodEnd: InputMaybe<Scalars['Date']['input']>
1784
- }>
1785
-
1786
- export type GetLedgerScheduleFactsQuery = {
1787
- scheduleFacts: {
1788
- structureId: string
1789
- facts: Array<{
1790
- elementId: string
1791
- elementName: string
1792
- value: number
1793
- periodStart: any
1794
- periodEnd: any
1795
- }>
1796
- } | null
1797
- }
1798
-
1799
- export type ListLedgerSchedulesQueryVariables = Exact<{ [key: string]: never }>
1800
-
1801
- export type ListLedgerSchedulesQuery = {
1802
- schedules: {
1803
- schedules: Array<{
1804
- structureId: string
1805
- name: string
1806
- taxonomyName: string
1807
- entryTemplate: any | null
1808
- scheduleMetadata: any | null
1809
- totalPeriods: number
1810
- periodsWithEntries: number
1811
- }>
1812
- } | null
1813
- }
1814
-
1815
2011
  export type GetLedgerStatementQueryVariables = Exact<{
1816
2012
  reportId: Scalars['String']['input']
1817
2013
  structureType: Scalars['String']['input']
@@ -3458,6 +3654,281 @@ export const GetLedgerFiscalCalendarDocument = {
3458
3654
  },
3459
3655
  ],
3460
3656
  } as unknown as DocumentNode<GetLedgerFiscalCalendarQuery, GetLedgerFiscalCalendarQueryVariables>
3657
+ export const GetInformationBlockDocument = {
3658
+ kind: 'Document',
3659
+ definitions: [
3660
+ {
3661
+ kind: 'OperationDefinition',
3662
+ operation: 'query',
3663
+ name: { kind: 'Name', value: 'GetInformationBlock' },
3664
+ variableDefinitions: [
3665
+ {
3666
+ kind: 'VariableDefinition',
3667
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'id' } },
3668
+ type: {
3669
+ kind: 'NonNullType',
3670
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'ID' } },
3671
+ },
3672
+ },
3673
+ ],
3674
+ selectionSet: {
3675
+ kind: 'SelectionSet',
3676
+ selections: [
3677
+ {
3678
+ kind: 'Field',
3679
+ name: { kind: 'Name', value: 'informationBlock' },
3680
+ arguments: [
3681
+ {
3682
+ kind: 'Argument',
3683
+ name: { kind: 'Name', value: 'id' },
3684
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'id' } },
3685
+ },
3686
+ ],
3687
+ selectionSet: {
3688
+ kind: 'SelectionSet',
3689
+ selections: [
3690
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3691
+ { kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
3692
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3693
+ { kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
3694
+ { kind: 'Field', name: { kind: 'Name', value: 'category' } },
3695
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
3696
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyName' } },
3697
+ {
3698
+ kind: 'Field',
3699
+ name: { kind: 'Name', value: 'informationModel' },
3700
+ selectionSet: {
3701
+ kind: 'SelectionSet',
3702
+ selections: [
3703
+ { kind: 'Field', name: { kind: 'Name', value: 'conceptArrangement' } },
3704
+ { kind: 'Field', name: { kind: 'Name', value: 'memberArrangement' } },
3705
+ ],
3706
+ },
3707
+ },
3708
+ {
3709
+ kind: 'Field',
3710
+ name: { kind: 'Name', value: 'artifact' },
3711
+ selectionSet: {
3712
+ kind: 'SelectionSet',
3713
+ selections: [
3714
+ { kind: 'Field', name: { kind: 'Name', value: 'topic' } },
3715
+ { kind: 'Field', name: { kind: 'Name', value: 'parentheticalNote' } },
3716
+ { kind: 'Field', name: { kind: 'Name', value: 'template' } },
3717
+ { kind: 'Field', name: { kind: 'Name', value: 'mechanics' } },
3718
+ ],
3719
+ },
3720
+ },
3721
+ {
3722
+ kind: 'Field',
3723
+ name: { kind: 'Name', value: 'elements' },
3724
+ selectionSet: {
3725
+ kind: 'SelectionSet',
3726
+ selections: [
3727
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3728
+ { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
3729
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3730
+ { kind: 'Field', name: { kind: 'Name', value: 'code' } },
3731
+ { kind: 'Field', name: { kind: 'Name', value: 'elementType' } },
3732
+ { kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
3733
+ { kind: 'Field', name: { kind: 'Name', value: 'isMonetary' } },
3734
+ { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
3735
+ { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
3736
+ ],
3737
+ },
3738
+ },
3739
+ {
3740
+ kind: 'Field',
3741
+ name: { kind: 'Name', value: 'connections' },
3742
+ selectionSet: {
3743
+ kind: 'SelectionSet',
3744
+ selections: [
3745
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3746
+ { kind: 'Field', name: { kind: 'Name', value: 'fromElementId' } },
3747
+ { kind: 'Field', name: { kind: 'Name', value: 'toElementId' } },
3748
+ { kind: 'Field', name: { kind: 'Name', value: 'associationType' } },
3749
+ { kind: 'Field', name: { kind: 'Name', value: 'arcrole' } },
3750
+ { kind: 'Field', name: { kind: 'Name', value: 'orderValue' } },
3751
+ { kind: 'Field', name: { kind: 'Name', value: 'weight' } },
3752
+ ],
3753
+ },
3754
+ },
3755
+ {
3756
+ kind: 'Field',
3757
+ name: { kind: 'Name', value: 'facts' },
3758
+ selectionSet: {
3759
+ kind: 'SelectionSet',
3760
+ selections: [
3761
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3762
+ { kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
3763
+ { kind: 'Field', name: { kind: 'Name', value: 'value' } },
3764
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
3765
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
3766
+ { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
3767
+ { kind: 'Field', name: { kind: 'Name', value: 'unit' } },
3768
+ { kind: 'Field', name: { kind: 'Name', value: 'factScope' } },
3769
+ { kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
3770
+ ],
3771
+ },
3772
+ },
3773
+ ],
3774
+ },
3775
+ },
3776
+ ],
3777
+ },
3778
+ },
3779
+ ],
3780
+ } as unknown as DocumentNode<GetInformationBlockQuery, GetInformationBlockQueryVariables>
3781
+ export const ListInformationBlocksDocument = {
3782
+ kind: 'Document',
3783
+ definitions: [
3784
+ {
3785
+ kind: 'OperationDefinition',
3786
+ operation: 'query',
3787
+ name: { kind: 'Name', value: 'ListInformationBlocks' },
3788
+ variableDefinitions: [
3789
+ {
3790
+ kind: 'VariableDefinition',
3791
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'blockType' } },
3792
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
3793
+ },
3794
+ {
3795
+ kind: 'VariableDefinition',
3796
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'category' } },
3797
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
3798
+ },
3799
+ {
3800
+ kind: 'VariableDefinition',
3801
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'limit' } },
3802
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'Int' } },
3803
+ },
3804
+ {
3805
+ kind: 'VariableDefinition',
3806
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'offset' } },
3807
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'Int' } },
3808
+ },
3809
+ ],
3810
+ selectionSet: {
3811
+ kind: 'SelectionSet',
3812
+ selections: [
3813
+ {
3814
+ kind: 'Field',
3815
+ name: { kind: 'Name', value: 'informationBlocks' },
3816
+ arguments: [
3817
+ {
3818
+ kind: 'Argument',
3819
+ name: { kind: 'Name', value: 'blockType' },
3820
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'blockType' } },
3821
+ },
3822
+ {
3823
+ kind: 'Argument',
3824
+ name: { kind: 'Name', value: 'category' },
3825
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'category' } },
3826
+ },
3827
+ {
3828
+ kind: 'Argument',
3829
+ name: { kind: 'Name', value: 'limit' },
3830
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'limit' } },
3831
+ },
3832
+ {
3833
+ kind: 'Argument',
3834
+ name: { kind: 'Name', value: 'offset' },
3835
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'offset' } },
3836
+ },
3837
+ ],
3838
+ selectionSet: {
3839
+ kind: 'SelectionSet',
3840
+ selections: [
3841
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3842
+ { kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
3843
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3844
+ { kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
3845
+ { kind: 'Field', name: { kind: 'Name', value: 'category' } },
3846
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
3847
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyName' } },
3848
+ {
3849
+ kind: 'Field',
3850
+ name: { kind: 'Name', value: 'informationModel' },
3851
+ selectionSet: {
3852
+ kind: 'SelectionSet',
3853
+ selections: [
3854
+ { kind: 'Field', name: { kind: 'Name', value: 'conceptArrangement' } },
3855
+ { kind: 'Field', name: { kind: 'Name', value: 'memberArrangement' } },
3856
+ ],
3857
+ },
3858
+ },
3859
+ {
3860
+ kind: 'Field',
3861
+ name: { kind: 'Name', value: 'artifact' },
3862
+ selectionSet: {
3863
+ kind: 'SelectionSet',
3864
+ selections: [
3865
+ { kind: 'Field', name: { kind: 'Name', value: 'topic' } },
3866
+ { kind: 'Field', name: { kind: 'Name', value: 'parentheticalNote' } },
3867
+ { kind: 'Field', name: { kind: 'Name', value: 'template' } },
3868
+ { kind: 'Field', name: { kind: 'Name', value: 'mechanics' } },
3869
+ ],
3870
+ },
3871
+ },
3872
+ {
3873
+ kind: 'Field',
3874
+ name: { kind: 'Name', value: 'elements' },
3875
+ selectionSet: {
3876
+ kind: 'SelectionSet',
3877
+ selections: [
3878
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3879
+ { kind: 'Field', name: { kind: 'Name', value: 'qname' } },
3880
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
3881
+ { kind: 'Field', name: { kind: 'Name', value: 'code' } },
3882
+ { kind: 'Field', name: { kind: 'Name', value: 'elementType' } },
3883
+ { kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
3884
+ { kind: 'Field', name: { kind: 'Name', value: 'isMonetary' } },
3885
+ { kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
3886
+ { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
3887
+ ],
3888
+ },
3889
+ },
3890
+ {
3891
+ kind: 'Field',
3892
+ name: { kind: 'Name', value: 'connections' },
3893
+ selectionSet: {
3894
+ kind: 'SelectionSet',
3895
+ selections: [
3896
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3897
+ { kind: 'Field', name: { kind: 'Name', value: 'fromElementId' } },
3898
+ { kind: 'Field', name: { kind: 'Name', value: 'toElementId' } },
3899
+ { kind: 'Field', name: { kind: 'Name', value: 'associationType' } },
3900
+ { kind: 'Field', name: { kind: 'Name', value: 'arcrole' } },
3901
+ { kind: 'Field', name: { kind: 'Name', value: 'orderValue' } },
3902
+ { kind: 'Field', name: { kind: 'Name', value: 'weight' } },
3903
+ ],
3904
+ },
3905
+ },
3906
+ {
3907
+ kind: 'Field',
3908
+ name: { kind: 'Name', value: 'facts' },
3909
+ selectionSet: {
3910
+ kind: 'SelectionSet',
3911
+ selections: [
3912
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
3913
+ { kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
3914
+ { kind: 'Field', name: { kind: 'Name', value: 'value' } },
3915
+ { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
3916
+ { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
3917
+ { kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
3918
+ { kind: 'Field', name: { kind: 'Name', value: 'unit' } },
3919
+ { kind: 'Field', name: { kind: 'Name', value: 'factScope' } },
3920
+ { kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
3921
+ ],
3922
+ },
3923
+ },
3924
+ ],
3925
+ },
3926
+ },
3927
+ ],
3928
+ },
3929
+ },
3930
+ ],
3931
+ } as unknown as DocumentNode<ListInformationBlocksQuery, ListInformationBlocksQueryVariables>
3461
3932
  export const GetLedgerMappedTrialBalanceDocument = {
3462
3933
  kind: 'Document',
3463
3934
  definitions: [
@@ -4199,122 +4670,6 @@ export const ListLedgerReportsDocument = {
4199
4670
  },
4200
4671
  ],
4201
4672
  } as unknown as DocumentNode<ListLedgerReportsQuery, ListLedgerReportsQueryVariables>
4202
- export const GetLedgerScheduleFactsDocument = {
4203
- kind: 'Document',
4204
- definitions: [
4205
- {
4206
- kind: 'OperationDefinition',
4207
- operation: 'query',
4208
- name: { kind: 'Name', value: 'GetLedgerScheduleFacts' },
4209
- variableDefinitions: [
4210
- {
4211
- kind: 'VariableDefinition',
4212
- variable: { kind: 'Variable', name: { kind: 'Name', value: 'structureId' } },
4213
- type: {
4214
- kind: 'NonNullType',
4215
- type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
4216
- },
4217
- },
4218
- {
4219
- kind: 'VariableDefinition',
4220
- variable: { kind: 'Variable', name: { kind: 'Name', value: 'periodStart' } },
4221
- type: { kind: 'NamedType', name: { kind: 'Name', value: 'Date' } },
4222
- },
4223
- {
4224
- kind: 'VariableDefinition',
4225
- variable: { kind: 'Variable', name: { kind: 'Name', value: 'periodEnd' } },
4226
- type: { kind: 'NamedType', name: { kind: 'Name', value: 'Date' } },
4227
- },
4228
- ],
4229
- selectionSet: {
4230
- kind: 'SelectionSet',
4231
- selections: [
4232
- {
4233
- kind: 'Field',
4234
- name: { kind: 'Name', value: 'scheduleFacts' },
4235
- arguments: [
4236
- {
4237
- kind: 'Argument',
4238
- name: { kind: 'Name', value: 'structureId' },
4239
- value: { kind: 'Variable', name: { kind: 'Name', value: 'structureId' } },
4240
- },
4241
- {
4242
- kind: 'Argument',
4243
- name: { kind: 'Name', value: 'periodStart' },
4244
- value: { kind: 'Variable', name: { kind: 'Name', value: 'periodStart' } },
4245
- },
4246
- {
4247
- kind: 'Argument',
4248
- name: { kind: 'Name', value: 'periodEnd' },
4249
- value: { kind: 'Variable', name: { kind: 'Name', value: 'periodEnd' } },
4250
- },
4251
- ],
4252
- selectionSet: {
4253
- kind: 'SelectionSet',
4254
- selections: [
4255
- { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
4256
- {
4257
- kind: 'Field',
4258
- name: { kind: 'Name', value: 'facts' },
4259
- selectionSet: {
4260
- kind: 'SelectionSet',
4261
- selections: [
4262
- { kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
4263
- { kind: 'Field', name: { kind: 'Name', value: 'elementName' } },
4264
- { kind: 'Field', name: { kind: 'Name', value: 'value' } },
4265
- { kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
4266
- { kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
4267
- ],
4268
- },
4269
- },
4270
- ],
4271
- },
4272
- },
4273
- ],
4274
- },
4275
- },
4276
- ],
4277
- } as unknown as DocumentNode<GetLedgerScheduleFactsQuery, GetLedgerScheduleFactsQueryVariables>
4278
- export const ListLedgerSchedulesDocument = {
4279
- kind: 'Document',
4280
- definitions: [
4281
- {
4282
- kind: 'OperationDefinition',
4283
- operation: 'query',
4284
- name: { kind: 'Name', value: 'ListLedgerSchedules' },
4285
- selectionSet: {
4286
- kind: 'SelectionSet',
4287
- selections: [
4288
- {
4289
- kind: 'Field',
4290
- name: { kind: 'Name', value: 'schedules' },
4291
- selectionSet: {
4292
- kind: 'SelectionSet',
4293
- selections: [
4294
- {
4295
- kind: 'Field',
4296
- name: { kind: 'Name', value: 'schedules' },
4297
- selectionSet: {
4298
- kind: 'SelectionSet',
4299
- selections: [
4300
- { kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
4301
- { kind: 'Field', name: { kind: 'Name', value: 'name' } },
4302
- { kind: 'Field', name: { kind: 'Name', value: 'taxonomyName' } },
4303
- { kind: 'Field', name: { kind: 'Name', value: 'entryTemplate' } },
4304
- { kind: 'Field', name: { kind: 'Name', value: 'scheduleMetadata' } },
4305
- { kind: 'Field', name: { kind: 'Name', value: 'totalPeriods' } },
4306
- { kind: 'Field', name: { kind: 'Name', value: 'periodsWithEntries' } },
4307
- ],
4308
- },
4309
- },
4310
- ],
4311
- },
4312
- },
4313
- ],
4314
- },
4315
- },
4316
- ],
4317
- } as unknown as DocumentNode<ListLedgerSchedulesQuery, ListLedgerSchedulesQueryVariables>
4318
4673
  export const GetLedgerStatementDocument = {
4319
4674
  kind: 'Document',
4320
4675
  definitions: [