@robosystems/client 0.3.38 → 0.3.40

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.
@@ -665,8 +665,8 @@ export type InformationBlockValidation = {
665
665
  * Pass/fail/skip counts for one ``rule_category`` within a block's
666
666
  * verification results.
667
667
  *
668
- * Drives the per-category accordions in the Verification Results panel
669
- * (financial-viewer §7.12). ``category`` is the rule's ``rule_category``
668
+ * Drives the per-category accordions in the Verification Results panel.
669
+ * ``category`` is the rule's ``rule_category``
670
670
  * (one of the cm:VerificationRule subclasses), resolved by joining each
671
671
  * result to its Rule.
672
672
  */
@@ -702,7 +702,7 @@ export type InformationBlockVerificationResult = {
702
702
  * Server-computed aggregate of a block's ``verification_results``.
703
703
  *
704
704
  * Overall counts plus a per-``rule_category`` breakdown, so the viewer
705
- * renders the grouped Verification Results panel (financial-viewer §7.12)
705
+ * renders the grouped Verification Results panel
706
706
  * without a client-side results→rules join. Status closure is
707
707
  * ``pass | fail | error | skipped`` (the ``public.verification_results``
708
708
  * CHECK); ``total`` is their sum.
@@ -915,15 +915,21 @@ export type LibraryAssociation = {
915
915
  /** presentation | calculation | mapping | equivalence | general-special | essence-alias */
916
916
  associationType: Scalars['String']['output'];
917
917
  fromElementId: Scalars['String']['output'];
918
+ fromElementIsAbstract: Maybe<Scalars['Boolean']['output']>;
918
919
  fromElementName: Maybe<Scalars['String']['output']>;
919
920
  fromElementQname: Maybe<Scalars['String']['output']>;
921
+ /** Primary elementsOfFinancialStatements trait (for node coloring) */
922
+ fromElementTrait: Maybe<Scalars['String']['output']>;
920
923
  id: Scalars['String']['output'];
921
924
  orderValue: Maybe<Scalars['Float']['output']>;
922
925
  structureId: Scalars['String']['output'];
923
926
  structureName: Maybe<Scalars['String']['output']>;
924
927
  toElementId: Scalars['String']['output'];
928
+ toElementIsAbstract: Maybe<Scalars['Boolean']['output']>;
925
929
  toElementName: Maybe<Scalars['String']['output']>;
926
930
  toElementQname: Maybe<Scalars['String']['output']>;
931
+ /** Primary elementsOfFinancialStatements trait (for node coloring) */
932
+ toElementTrait: Maybe<Scalars['String']['output']>;
927
933
  weight: Maybe<Scalars['Float']['output']>;
928
934
  };
929
935
  /** A library element (concept, abstract, axis, member, or hypercube). */
@@ -1481,6 +1487,7 @@ export type Query = {
1481
1487
  publishList: Maybe<PublishListDetail>;
1482
1488
  publishLists: Maybe<PublishListList>;
1483
1489
  report: Maybe<Report>;
1490
+ reportDownloadUrl: Maybe<ReportBundleDownload>;
1484
1491
  reportPackage: Maybe<ReportPackage>;
1485
1492
  reportingTaxonomy: Maybe<Taxonomy>;
1486
1493
  reports: Maybe<ReportList>;
@@ -1664,6 +1671,11 @@ export type QueryPublishListsArgs = {
1664
1671
  export type QueryReportArgs = {
1665
1672
  reportId: Scalars['String']['input'];
1666
1673
  };
1674
+ export type QueryReportDownloadUrlArgs = {
1675
+ expiresIn?: Scalars['Int']['input'];
1676
+ format?: ReportDownloadFormat;
1677
+ reportId: Scalars['String']['input'];
1678
+ };
1667
1679
  export type QueryReportPackageArgs = {
1668
1680
  reportId: Scalars['String']['input'];
1669
1681
  };
@@ -1778,6 +1790,29 @@ export type Report = {
1778
1790
  /** Taxonomy this report renders against. */
1779
1791
  taxonomyId: Scalars['String']['output'];
1780
1792
  };
1793
+ /**
1794
+ * Presigned-URL response for a published Report's serialization bundle.
1795
+ *
1796
+ * Every flavor resolves to a short-lived presigned URL pointing at the
1797
+ * bundle in S3 — JSON-LD is stamped at publish time, XBRL is
1798
+ * materialized on first download and cached by ``generation_count``.
1799
+ * The client follows ``download_url`` to fetch the artifact directly
1800
+ * from S3 (the API never streams the bytes). Mirrors the
1801
+ * backup-download shape the frontend already consumes.
1802
+ */
1803
+ export type ReportBundleDownload = {
1804
+ /** MIME type of the artifact behind the URL. */
1805
+ contentType: Scalars['String']['output'];
1806
+ /** Presigned URL that streams the bundle directly from S3. */
1807
+ downloadUrl: Scalars['String']['output'];
1808
+ /** UTC timestamp at which the presigned URL stops working. */
1809
+ expiresAt: Scalars['DateTime']['output'];
1810
+ /** Serialization flavor delivered by this URL — one of the ``RdfFlavor`` / ``XbrlFlavor`` values (e.g. ``jsonld``, ``xbrl-2.1``). */
1811
+ format: Scalars['String']['output'];
1812
+ /** Bundle generation number stamped on the Report. */
1813
+ generationCount: Scalars['Int']['output'];
1814
+ };
1815
+ export type ReportDownloadFormat = 'JSONLD' | 'XBRL_2_1';
1781
1816
  /** List of report header summaries (used by report list reads). */
1782
1817
  export type ReportList = {
1783
1818
  /** Report definitions, newest first. */
@@ -2041,6 +2076,7 @@ export type UnmappedElement = {
2041
2076
  code: Maybe<Scalars['String']['output']>;
2042
2077
  externalSource: Maybe<Scalars['String']['output']>;
2043
2078
  id: Scalars['String']['output'];
2079
+ liquidity: Maybe<Scalars['String']['output']>;
2044
2080
  name: Scalars['String']['output'];
2045
2081
  suggestedTargets: Array<SuggestedTarget>;
2046
2082
  trait: Maybe<Scalars['String']['output']>;
@@ -3170,6 +3206,20 @@ export type GetLedgerReportQuery = {
3170
3206
  }>;
3171
3207
  } | null;
3172
3208
  };
3209
+ export type GetLedgerReportDownloadUrlQueryVariables = Exact<{
3210
+ reportId: Scalars['String']['input'];
3211
+ format?: InputMaybe<ReportDownloadFormat>;
3212
+ expiresIn?: InputMaybe<Scalars['Int']['input']>;
3213
+ }>;
3214
+ export type GetLedgerReportDownloadUrlQuery = {
3215
+ reportDownloadUrl: {
3216
+ downloadUrl: string;
3217
+ expiresAt: any;
3218
+ contentType: string;
3219
+ format: string;
3220
+ generationCount: number;
3221
+ } | null;
3222
+ };
3173
3223
  export type GetLedgerReportPackageQueryVariables = Exact<{
3174
3224
  reportId: Scalars['String']['input'];
3175
3225
  }>;
@@ -3588,6 +3638,7 @@ export type ListLedgerUnmappedElementsQuery = {
3588
3638
  export type ListLibraryTaxonomyArcsQueryVariables = Exact<{
3589
3639
  taxonomyId: Scalars['ID']['input'];
3590
3640
  associationType: InputMaybe<Scalars['String']['input']>;
3641
+ structureId: InputMaybe<Scalars['ID']['input']>;
3591
3642
  limit?: Scalars['Int']['input'];
3592
3643
  offset?: Scalars['Int']['input'];
3593
3644
  }>;
@@ -3600,9 +3651,13 @@ export type ListLibraryTaxonomyArcsQuery = {
3600
3651
  fromElementId: string;
3601
3652
  fromElementQname: string | null;
3602
3653
  fromElementName: string | null;
3654
+ fromElementTrait: string | null;
3655
+ fromElementIsAbstract: boolean | null;
3603
3656
  toElementId: string;
3604
3657
  toElementQname: string | null;
3605
3658
  toElementName: string | null;
3659
+ toElementTrait: string | null;
3660
+ toElementIsAbstract: boolean | null;
3606
3661
  associationType: string;
3607
3662
  arcrole: string | null;
3608
3663
  orderValue: number | null;
@@ -3766,6 +3821,33 @@ export type GetLibraryElementQuery = {
3766
3821
  }>;
3767
3822
  } | null;
3768
3823
  };
3824
+ export type ListLibraryStructuresQueryVariables = Exact<{
3825
+ taxonomyId: InputMaybe<Scalars['ID']['input']>;
3826
+ blockType: InputMaybe<Scalars['String']['input']>;
3827
+ }>;
3828
+ export type ListLibraryStructuresQuery = {
3829
+ libraryStructures: Array<{
3830
+ id: string;
3831
+ name: string;
3832
+ blockType: string;
3833
+ taxonomyId: string;
3834
+ roleUri: string | null;
3835
+ isActive: boolean;
3836
+ }>;
3837
+ };
3838
+ export type GetLibraryStructureQueryVariables = Exact<{
3839
+ id: Scalars['ID']['input'];
3840
+ }>;
3841
+ export type GetLibraryStructureQuery = {
3842
+ libraryStructure: {
3843
+ id: string;
3844
+ name: string;
3845
+ blockType: string;
3846
+ taxonomyId: string;
3847
+ roleUri: string | null;
3848
+ isActive: boolean;
3849
+ } | null;
3850
+ };
3769
3851
  export type ListLibraryTaxonomiesQueryVariables = Exact<{
3770
3852
  standard: InputMaybe<Scalars['String']['input']>;
3771
3853
  includeElementCount?: Scalars['Boolean']['input'];
@@ -3837,6 +3919,7 @@ export declare const GetLedgerPeriodDraftsDocument: DocumentNode<GetLedgerPeriod
3837
3919
  export declare const GetLedgerPublishListDocument: DocumentNode<GetLedgerPublishListQuery, GetLedgerPublishListQueryVariables>;
3838
3920
  export declare const ListLedgerPublishListsDocument: DocumentNode<ListLedgerPublishListsQuery, ListLedgerPublishListsQueryVariables>;
3839
3921
  export declare const GetLedgerReportDocument: DocumentNode<GetLedgerReportQuery, GetLedgerReportQueryVariables>;
3922
+ export declare const GetLedgerReportDownloadUrlDocument: DocumentNode<GetLedgerReportDownloadUrlQuery, GetLedgerReportDownloadUrlQueryVariables>;
3840
3923
  export declare const GetLedgerReportPackageDocument: DocumentNode<GetLedgerReportPackageQuery, GetLedgerReportPackageQueryVariables>;
3841
3924
  export declare const GetLedgerReportingTaxonomyDocument: DocumentNode<GetLedgerReportingTaxonomyQuery, GetLedgerReportingTaxonomyQueryVariables>;
3842
3925
  export declare const ListLedgerReportsDocument: DocumentNode<ListLedgerReportsQuery, ListLedgerReportsQueryVariables>;
@@ -3855,5 +3938,7 @@ export declare const GetLibraryElementEquivalentsDocument: DocumentNode<GetLibra
3855
3938
  export declare const ListLibraryElementsDocument: DocumentNode<ListLibraryElementsQuery, ListLibraryElementsQueryVariables>;
3856
3939
  export declare const SearchLibraryElementsDocument: DocumentNode<SearchLibraryElementsQuery, SearchLibraryElementsQueryVariables>;
3857
3940
  export declare const GetLibraryElementDocument: DocumentNode<GetLibraryElementQuery, GetLibraryElementQueryVariables>;
3941
+ export declare const ListLibraryStructuresDocument: DocumentNode<ListLibraryStructuresQuery, ListLibraryStructuresQueryVariables>;
3942
+ export declare const GetLibraryStructureDocument: DocumentNode<GetLibraryStructureQuery, GetLibraryStructureQueryVariables>;
3858
3943
  export declare const ListLibraryTaxonomiesDocument: DocumentNode<ListLibraryTaxonomiesQuery, ListLibraryTaxonomiesQueryVariables>;
3859
3944
  export declare const GetLibraryTaxonomyDocument: DocumentNode<GetLibraryTaxonomyQuery, GetLibraryTaxonomyQueryVariables>;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListLibraryTaxonomiesDocument = exports.GetLibraryElementDocument = exports.SearchLibraryElementsDocument = exports.ListLibraryElementsDocument = exports.GetLibraryElementEquivalentsDocument = exports.GetLibraryElementClassificationsDocument = exports.GetLibraryElementArcsDocument = exports.ListLibraryTaxonomyArcsDocument = exports.ListLedgerUnmappedElementsDocument = exports.GetLedgerTrialBalanceDocument = exports.ListLedgerTransactionsDocument = exports.GetLedgerTransactionDocument = exports.ListLedgerTaxonomiesDocument = exports.GetLedgerSummaryDocument = exports.ListLedgerStructuresDocument = exports.GetLedgerStatementDocument = exports.ListLedgerReportsDocument = exports.GetLedgerReportingTaxonomyDocument = exports.GetLedgerReportPackageDocument = exports.GetLedgerReportDocument = exports.ListLedgerPublishListsDocument = exports.GetLedgerPublishListDocument = exports.GetLedgerPeriodDraftsDocument = exports.GetLedgerPeriodCloseStatusDocument = exports.ListLedgerMappingsDocument = exports.GetLedgerMappingCoverageDocument = exports.MappingCandidatesDocument = exports.GetLedgerMappingDocument = exports.GetLedgerMappedTrialBalanceDocument = exports.ListInformationBlocksDocument = exports.GetInformationBlockDocument = exports.GetLedgerFiscalCalendarDocument = exports.ListLedgerEventBlocksDocument = exports.GetLedgerEventBlockDocument = exports.GetLedgerEntityDocument = exports.ListLedgerEntitiesDocument = exports.ListLedgerElementsDocument = exports.GetLedgerClosingBookStructuresDocument = exports.ListLedgerAgentsDocument = exports.GetLedgerAgentDocument = exports.ListLedgerAccountsDocument = exports.GetLedgerAccountTreeDocument = exports.GetLedgerAccountRollupsDocument = exports.GetInvestorSecurityDocument = exports.ListInvestorSecuritiesDocument = exports.ListInvestorPositionsDocument = exports.GetInvestorPositionDocument = exports.ListInvestorPortfoliosDocument = exports.GetInvestorPortfolioBlockDocument = exports.GetInvestorHoldingsDocument = void 0;
4
- exports.GetLibraryTaxonomyDocument = void 0;
3
+ exports.GetLibraryElementDocument = exports.SearchLibraryElementsDocument = exports.ListLibraryElementsDocument = exports.GetLibraryElementEquivalentsDocument = exports.GetLibraryElementClassificationsDocument = exports.GetLibraryElementArcsDocument = exports.ListLibraryTaxonomyArcsDocument = exports.ListLedgerUnmappedElementsDocument = exports.GetLedgerTrialBalanceDocument = exports.ListLedgerTransactionsDocument = exports.GetLedgerTransactionDocument = exports.ListLedgerTaxonomiesDocument = exports.GetLedgerSummaryDocument = exports.ListLedgerStructuresDocument = exports.GetLedgerStatementDocument = exports.ListLedgerReportsDocument = exports.GetLedgerReportingTaxonomyDocument = exports.GetLedgerReportPackageDocument = exports.GetLedgerReportDownloadUrlDocument = exports.GetLedgerReportDocument = exports.ListLedgerPublishListsDocument = exports.GetLedgerPublishListDocument = exports.GetLedgerPeriodDraftsDocument = exports.GetLedgerPeriodCloseStatusDocument = exports.ListLedgerMappingsDocument = exports.GetLedgerMappingCoverageDocument = exports.MappingCandidatesDocument = exports.GetLedgerMappingDocument = exports.GetLedgerMappedTrialBalanceDocument = exports.ListInformationBlocksDocument = exports.GetInformationBlockDocument = exports.GetLedgerFiscalCalendarDocument = exports.ListLedgerEventBlocksDocument = exports.GetLedgerEventBlockDocument = exports.GetLedgerEntityDocument = exports.ListLedgerEntitiesDocument = exports.ListLedgerElementsDocument = exports.GetLedgerClosingBookStructuresDocument = exports.ListLedgerAgentsDocument = exports.GetLedgerAgentDocument = exports.ListLedgerAccountsDocument = exports.GetLedgerAccountTreeDocument = exports.GetLedgerAccountRollupsDocument = exports.GetInvestorSecurityDocument = exports.ListInvestorSecuritiesDocument = exports.ListInvestorPositionsDocument = exports.GetInvestorPositionDocument = exports.ListInvestorPortfoliosDocument = exports.GetInvestorPortfolioBlockDocument = exports.GetInvestorHoldingsDocument = void 0;
4
+ exports.GetLibraryTaxonomyDocument = exports.ListLibraryTaxonomiesDocument = exports.GetLibraryStructureDocument = exports.ListLibraryStructuresDocument = void 0;
5
5
  exports.GetInvestorHoldingsDocument = {
6
6
  kind: 'Document',
7
7
  definitions: [
@@ -2928,6 +2928,74 @@ exports.GetLedgerReportDocument = {
2928
2928
  },
2929
2929
  ],
2930
2930
  };
2931
+ exports.GetLedgerReportDownloadUrlDocument = {
2932
+ kind: 'Document',
2933
+ definitions: [
2934
+ {
2935
+ kind: 'OperationDefinition',
2936
+ operation: 'query',
2937
+ name: { kind: 'Name', value: 'GetLedgerReportDownloadUrl' },
2938
+ variableDefinitions: [
2939
+ {
2940
+ kind: 'VariableDefinition',
2941
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'reportId' } },
2942
+ type: {
2943
+ kind: 'NonNullType',
2944
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
2945
+ },
2946
+ },
2947
+ {
2948
+ kind: 'VariableDefinition',
2949
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'format' } },
2950
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'ReportDownloadFormat' } },
2951
+ defaultValue: { kind: 'EnumValue', value: 'JSONLD' },
2952
+ },
2953
+ {
2954
+ kind: 'VariableDefinition',
2955
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'expiresIn' } },
2956
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'Int' } },
2957
+ defaultValue: { kind: 'IntValue', value: '300' },
2958
+ },
2959
+ ],
2960
+ selectionSet: {
2961
+ kind: 'SelectionSet',
2962
+ selections: [
2963
+ {
2964
+ kind: 'Field',
2965
+ name: { kind: 'Name', value: 'reportDownloadUrl' },
2966
+ arguments: [
2967
+ {
2968
+ kind: 'Argument',
2969
+ name: { kind: 'Name', value: 'reportId' },
2970
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'reportId' } },
2971
+ },
2972
+ {
2973
+ kind: 'Argument',
2974
+ name: { kind: 'Name', value: 'format' },
2975
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'format' } },
2976
+ },
2977
+ {
2978
+ kind: 'Argument',
2979
+ name: { kind: 'Name', value: 'expiresIn' },
2980
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'expiresIn' } },
2981
+ },
2982
+ ],
2983
+ selectionSet: {
2984
+ kind: 'SelectionSet',
2985
+ selections: [
2986
+ { kind: 'Field', name: { kind: 'Name', value: 'downloadUrl' } },
2987
+ { kind: 'Field', name: { kind: 'Name', value: 'expiresAt' } },
2988
+ { kind: 'Field', name: { kind: 'Name', value: 'contentType' } },
2989
+ { kind: 'Field', name: { kind: 'Name', value: 'format' } },
2990
+ { kind: 'Field', name: { kind: 'Name', value: 'generationCount' } },
2991
+ ],
2992
+ },
2993
+ },
2994
+ ],
2995
+ },
2996
+ },
2997
+ ],
2998
+ };
2931
2999
  exports.GetLedgerReportPackageDocument = {
2932
3000
  kind: 'Document',
2933
3001
  definitions: [
@@ -4052,6 +4120,11 @@ exports.ListLibraryTaxonomyArcsDocument = {
4052
4120
  variable: { kind: 'Variable', name: { kind: 'Name', value: 'associationType' } },
4053
4121
  type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
4054
4122
  },
4123
+ {
4124
+ kind: 'VariableDefinition',
4125
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'structureId' } },
4126
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'ID' } },
4127
+ },
4055
4128
  {
4056
4129
  kind: 'VariableDefinition',
4057
4130
  variable: { kind: 'Variable', name: { kind: 'Name', value: 'limit' } },
@@ -4083,6 +4156,16 @@ exports.ListLibraryTaxonomyArcsDocument = {
4083
4156
  name: { kind: 'Name', value: 'taxonomyId' },
4084
4157
  value: { kind: 'Variable', name: { kind: 'Name', value: 'taxonomyId' } },
4085
4158
  },
4159
+ {
4160
+ kind: 'Argument',
4161
+ name: { kind: 'Name', value: 'associationType' },
4162
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'associationType' } },
4163
+ },
4164
+ {
4165
+ kind: 'Argument',
4166
+ name: { kind: 'Name', value: 'structureId' },
4167
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'structureId' } },
4168
+ },
4086
4169
  ],
4087
4170
  },
4088
4171
  {
@@ -4099,6 +4182,11 @@ exports.ListLibraryTaxonomyArcsDocument = {
4099
4182
  name: { kind: 'Name', value: 'associationType' },
4100
4183
  value: { kind: 'Variable', name: { kind: 'Name', value: 'associationType' } },
4101
4184
  },
4185
+ {
4186
+ kind: 'Argument',
4187
+ name: { kind: 'Name', value: 'structureId' },
4188
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'structureId' } },
4189
+ },
4102
4190
  {
4103
4191
  kind: 'Argument',
4104
4192
  name: { kind: 'Name', value: 'limit' },
@@ -4119,9 +4207,13 @@ exports.ListLibraryTaxonomyArcsDocument = {
4119
4207
  { kind: 'Field', name: { kind: 'Name', value: 'fromElementId' } },
4120
4208
  { kind: 'Field', name: { kind: 'Name', value: 'fromElementQname' } },
4121
4209
  { kind: 'Field', name: { kind: 'Name', value: 'fromElementName' } },
4210
+ { kind: 'Field', name: { kind: 'Name', value: 'fromElementTrait' } },
4211
+ { kind: 'Field', name: { kind: 'Name', value: 'fromElementIsAbstract' } },
4122
4212
  { kind: 'Field', name: { kind: 'Name', value: 'toElementId' } },
4123
4213
  { kind: 'Field', name: { kind: 'Name', value: 'toElementQname' } },
4124
4214
  { kind: 'Field', name: { kind: 'Name', value: 'toElementName' } },
4215
+ { kind: 'Field', name: { kind: 'Name', value: 'toElementTrait' } },
4216
+ { kind: 'Field', name: { kind: 'Name', value: 'toElementIsAbstract' } },
4125
4217
  { kind: 'Field', name: { kind: 'Name', value: 'associationType' } },
4126
4218
  { kind: 'Field', name: { kind: 'Name', value: 'arcrole' } },
4127
4219
  { kind: 'Field', name: { kind: 'Name', value: 'orderValue' } },
@@ -4712,6 +4804,107 @@ exports.GetLibraryElementDocument = {
4712
4804
  },
4713
4805
  ],
4714
4806
  };
4807
+ exports.ListLibraryStructuresDocument = {
4808
+ kind: 'Document',
4809
+ definitions: [
4810
+ {
4811
+ kind: 'OperationDefinition',
4812
+ operation: 'query',
4813
+ name: { kind: 'Name', value: 'ListLibraryStructures' },
4814
+ variableDefinitions: [
4815
+ {
4816
+ kind: 'VariableDefinition',
4817
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'taxonomyId' } },
4818
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'ID' } },
4819
+ },
4820
+ {
4821
+ kind: 'VariableDefinition',
4822
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'blockType' } },
4823
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
4824
+ },
4825
+ ],
4826
+ selectionSet: {
4827
+ kind: 'SelectionSet',
4828
+ selections: [
4829
+ {
4830
+ kind: 'Field',
4831
+ name: { kind: 'Name', value: 'libraryStructures' },
4832
+ arguments: [
4833
+ {
4834
+ kind: 'Argument',
4835
+ name: { kind: 'Name', value: 'taxonomyId' },
4836
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'taxonomyId' } },
4837
+ },
4838
+ {
4839
+ kind: 'Argument',
4840
+ name: { kind: 'Name', value: 'blockType' },
4841
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'blockType' } },
4842
+ },
4843
+ ],
4844
+ selectionSet: {
4845
+ kind: 'SelectionSet',
4846
+ selections: [
4847
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
4848
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
4849
+ { kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
4850
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
4851
+ { kind: 'Field', name: { kind: 'Name', value: 'roleUri' } },
4852
+ { kind: 'Field', name: { kind: 'Name', value: 'isActive' } },
4853
+ ],
4854
+ },
4855
+ },
4856
+ ],
4857
+ },
4858
+ },
4859
+ ],
4860
+ };
4861
+ exports.GetLibraryStructureDocument = {
4862
+ kind: 'Document',
4863
+ definitions: [
4864
+ {
4865
+ kind: 'OperationDefinition',
4866
+ operation: 'query',
4867
+ name: { kind: 'Name', value: 'GetLibraryStructure' },
4868
+ variableDefinitions: [
4869
+ {
4870
+ kind: 'VariableDefinition',
4871
+ variable: { kind: 'Variable', name: { kind: 'Name', value: 'id' } },
4872
+ type: {
4873
+ kind: 'NonNullType',
4874
+ type: { kind: 'NamedType', name: { kind: 'Name', value: 'ID' } },
4875
+ },
4876
+ },
4877
+ ],
4878
+ selectionSet: {
4879
+ kind: 'SelectionSet',
4880
+ selections: [
4881
+ {
4882
+ kind: 'Field',
4883
+ name: { kind: 'Name', value: 'libraryStructure' },
4884
+ arguments: [
4885
+ {
4886
+ kind: 'Argument',
4887
+ name: { kind: 'Name', value: 'id' },
4888
+ value: { kind: 'Variable', name: { kind: 'Name', value: 'id' } },
4889
+ },
4890
+ ],
4891
+ selectionSet: {
4892
+ kind: 'SelectionSet',
4893
+ selections: [
4894
+ { kind: 'Field', name: { kind: 'Name', value: 'id' } },
4895
+ { kind: 'Field', name: { kind: 'Name', value: 'name' } },
4896
+ { kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
4897
+ { kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
4898
+ { kind: 'Field', name: { kind: 'Name', value: 'roleUri' } },
4899
+ { kind: 'Field', name: { kind: 'Name', value: 'isActive' } },
4900
+ ],
4901
+ },
4902
+ },
4903
+ ],
4904
+ },
4905
+ },
4906
+ ],
4907
+ };
4715
4908
  exports.ListLibraryTaxonomiesDocument = {
4716
4909
  kind: 'Document',
4717
4910
  definitions: [