@robosystems/client 0.3.25 → 0.3.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/LedgerClient.d.ts +3 -3
- package/artifacts/LedgerClient.js +4 -4
- package/artifacts/LedgerClient.ts +5 -5
- package/artifacts/graphql/generated/graphql.d.ts +39 -34
- package/artifacts/graphql/generated/graphql.js +19 -19
- package/artifacts/graphql/generated/graphql.ts +58 -53
- package/artifacts/graphql/queries/ledger/closingBookStructures.js +1 -1
- package/artifacts/graphql/queries/ledger/closingBookStructures.ts +1 -1
- package/artifacts/graphql/queries/ledger/informationBlock.js +4 -2
- package/artifacts/graphql/queries/ledger/informationBlock.ts +4 -2
- package/artifacts/graphql/queries/ledger/mapping.js +1 -1
- package/artifacts/graphql/queries/ledger/mapping.ts +1 -1
- package/artifacts/graphql/queries/ledger/mappings.d.ts +1 -1
- package/artifacts/graphql/queries/ledger/mappings.js +2 -2
- package/artifacts/graphql/queries/ledger/mappings.ts +2 -2
- package/artifacts/graphql/queries/ledger/report.js +1 -1
- package/artifacts/graphql/queries/ledger/report.ts +1 -1
- package/artifacts/graphql/queries/ledger/reportPackage.d.ts +1 -1
- package/artifacts/graphql/queries/ledger/reportPackage.js +3 -2
- package/artifacts/graphql/queries/ledger/reportPackage.ts +3 -2
- package/artifacts/graphql/queries/ledger/reports.js +1 -1
- package/artifacts/graphql/queries/ledger/reports.ts +1 -1
- package/artifacts/graphql/queries/ledger/statement.d.ts +1 -1
- package/artifacts/graphql/queries/ledger/statement.js +4 -4
- package/artifacts/graphql/queries/ledger/statement.ts +4 -4
- package/artifacts/graphql/queries/ledger/structures.js +3 -3
- package/artifacts/graphql/queries/ledger/structures.ts +3 -3
- package/package.json +1 -1
- package/sdk/types.gen.d.ts +40 -16
- package/sdk/types.gen.ts +40 -16
- package/types.gen.d.ts +40 -16
- package/types.gen.ts +40 -16
|
@@ -306,7 +306,7 @@ export declare class LedgerClient {
|
|
|
306
306
|
/** List reporting structures (IS, BS, CF, schedules) with optional filters. */
|
|
307
307
|
listStructures(graphId: string, options?: {
|
|
308
308
|
taxonomyId?: string;
|
|
309
|
-
|
|
309
|
+
blockType?: string;
|
|
310
310
|
}): Promise<LedgerStructure[]>;
|
|
311
311
|
/** List active CoA→reporting mapping structures. */
|
|
312
312
|
listMappings(graphId: string): Promise<LedgerMappingInfo[]>;
|
|
@@ -519,9 +519,9 @@ export declare class LedgerClient {
|
|
|
519
519
|
/**
|
|
520
520
|
* Render a financial statement — facts viewed through a structure.
|
|
521
521
|
*
|
|
522
|
-
* @param
|
|
522
|
+
* @param blockType - income_statement, balance_sheet, cash_flow_statement
|
|
523
523
|
*/
|
|
524
|
-
getStatement(graphId: string, reportId: string,
|
|
524
|
+
getStatement(graphId: string, reportId: string, blockType: string): Promise<StatementData | null>;
|
|
525
525
|
/**
|
|
526
526
|
* Regenerate an existing report (async). Returns an operation id;
|
|
527
527
|
* subscribe via SSE for progress.
|
|
@@ -191,7 +191,7 @@ class LedgerClient {
|
|
|
191
191
|
async listStructures(graphId, options) {
|
|
192
192
|
const list = await this.gqlQuery(graphId, graphql_1.ListLedgerStructuresDocument, {
|
|
193
193
|
taxonomyId: options?.taxonomyId ?? null,
|
|
194
|
-
|
|
194
|
+
blockType: options?.blockType ?? null,
|
|
195
195
|
}, 'List structures', (data) => data.structures);
|
|
196
196
|
return list?.structures ?? [];
|
|
197
197
|
}
|
|
@@ -685,10 +685,10 @@ class LedgerClient {
|
|
|
685
685
|
/**
|
|
686
686
|
* Render a financial statement — facts viewed through a structure.
|
|
687
687
|
*
|
|
688
|
-
* @param
|
|
688
|
+
* @param blockType - income_statement, balance_sheet, cash_flow_statement
|
|
689
689
|
*/
|
|
690
|
-
async getStatement(graphId, reportId,
|
|
691
|
-
return this.gqlQuery(graphId, graphql_1.GetLedgerStatementDocument, { reportId,
|
|
690
|
+
async getStatement(graphId, reportId, blockType) {
|
|
691
|
+
return this.gqlQuery(graphId, graphql_1.GetLedgerStatementDocument, { reportId, blockType }, 'Get statement', (data) => data.statement);
|
|
692
692
|
}
|
|
693
693
|
/**
|
|
694
694
|
* Regenerate an existing report (async). Returns an operation id;
|
|
@@ -906,14 +906,14 @@ export class LedgerClient {
|
|
|
906
906
|
/** List reporting structures (IS, BS, CF, schedules) with optional filters. */
|
|
907
907
|
async listStructures(
|
|
908
908
|
graphId: string,
|
|
909
|
-
options?: { taxonomyId?: string;
|
|
909
|
+
options?: { taxonomyId?: string; blockType?: string }
|
|
910
910
|
): Promise<LedgerStructure[]> {
|
|
911
911
|
const list = await this.gqlQuery(
|
|
912
912
|
graphId,
|
|
913
913
|
ListLedgerStructuresDocument,
|
|
914
914
|
{
|
|
915
915
|
taxonomyId: options?.taxonomyId ?? null,
|
|
916
|
-
|
|
916
|
+
blockType: options?.blockType ?? null,
|
|
917
917
|
},
|
|
918
918
|
'List structures',
|
|
919
919
|
(data) => data.structures
|
|
@@ -1731,17 +1731,17 @@ export class LedgerClient {
|
|
|
1731
1731
|
/**
|
|
1732
1732
|
* Render a financial statement — facts viewed through a structure.
|
|
1733
1733
|
*
|
|
1734
|
-
* @param
|
|
1734
|
+
* @param blockType - income_statement, balance_sheet, cash_flow_statement
|
|
1735
1735
|
*/
|
|
1736
1736
|
async getStatement(
|
|
1737
1737
|
graphId: string,
|
|
1738
1738
|
reportId: string,
|
|
1739
|
-
|
|
1739
|
+
blockType: string
|
|
1740
1740
|
): Promise<StatementData | null> {
|
|
1741
1741
|
return this.gqlQuery(
|
|
1742
1742
|
graphId,
|
|
1743
1743
|
GetLedgerStatementDocument,
|
|
1744
|
-
{ reportId,
|
|
1744
|
+
{ reportId, blockType },
|
|
1745
1745
|
'Get statement',
|
|
1746
1746
|
(data) => data.statement
|
|
1747
1747
|
)
|
|
@@ -162,7 +162,7 @@ export type Agent = {
|
|
|
162
162
|
};
|
|
163
163
|
export type Artifact = {
|
|
164
164
|
mechanics: Scalars['JSON']['output'];
|
|
165
|
-
|
|
165
|
+
rendererNote: Maybe<Scalars['String']['output']>;
|
|
166
166
|
template: Maybe<Scalars['JSON']['output']>;
|
|
167
167
|
topic: Maybe<Scalars['String']['output']>;
|
|
168
168
|
};
|
|
@@ -210,12 +210,12 @@ export type ClosingBookCategory = {
|
|
|
210
210
|
* carry ``status`` ('complete' | 'draft' | 'pending').
|
|
211
211
|
*/
|
|
212
212
|
export type ClosingBookItem = {
|
|
213
|
+
blockType: Maybe<Scalars['String']['output']>;
|
|
213
214
|
id: Scalars['String']['output'];
|
|
214
215
|
itemType: Scalars['String']['output'];
|
|
215
216
|
name: Scalars['String']['output'];
|
|
216
217
|
reportId: Maybe<Scalars['String']['output']>;
|
|
217
218
|
status: Maybe<Scalars['String']['output']>;
|
|
218
|
-
structureType: Maybe<Scalars['String']['output']>;
|
|
219
219
|
};
|
|
220
220
|
/**
|
|
221
221
|
* The closing book navigation tree — categories + items the UI
|
|
@@ -480,7 +480,7 @@ export type InformationBlockClassification = {
|
|
|
480
480
|
confidence: Maybe<Scalars['Float']['output']>;
|
|
481
481
|
/** Classification vocabulary row id. */
|
|
482
482
|
id: Scalars['String']['output'];
|
|
483
|
-
/** Vocabulary identifier within the category — e.g. 'RollUp', '
|
|
483
|
+
/** Vocabulary identifier within the category — e.g. 'RollUp', 'whole_part', 'AssetsRollUp'. */
|
|
484
484
|
identifier: Scalars['String']['output'];
|
|
485
485
|
/** Whether this is the canonical classification for the (association|element, category) pair. Non-primary rows capture alternates / AI suggestions alongside the chosen primary. */
|
|
486
486
|
isPrimary: Scalars['Boolean']['output'];
|
|
@@ -613,12 +613,14 @@ export type InformationBlockRule = {
|
|
|
613
613
|
id: Scalars['String']['output'];
|
|
614
614
|
/** One of 8 cm:VerificationRule subclasses — AutomatedAccountingAndReportingChecks, FundamentalAccountingConceptRelation, PeerConsistencyRule, PriorPeriodConsistencyRule, ReportLevelModelStructureRule, ReportingSystemSpecificRule, ToDoManualTask, XBRLTechnicalSyntaxRule. */
|
|
615
615
|
ruleCategory: Scalars['String']['output'];
|
|
616
|
+
/** Model-structure check kind evaluated over the association graph. One of 6 kinds — LeafHasClassification, LibraryOriginImmutability, NoCycles, NoOrphanArcs, ParentBeforeChild, UniqueQNameInTaxonomy. Null when the rule is an arithmetic pattern (see rule_pattern). Exactly one of rule_pattern / rule_check_kind is non-null per rule. */
|
|
617
|
+
ruleCheckKind: Maybe<Scalars['String']['output']>;
|
|
616
618
|
ruleExpression: Scalars['String']['output'];
|
|
617
619
|
ruleMessage: Maybe<Scalars['String']['output']>;
|
|
618
620
|
/** 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. */
|
|
619
621
|
ruleOrigin: Scalars['String']['output'];
|
|
620
|
-
/** One of
|
|
621
|
-
rulePattern: Scalars['String']['output']
|
|
622
|
+
/** Arithmetic / logical pattern evaluated over fact values. One of 11 cm:BusinessRulePattern mechanisms — Adjustment, CoExists, EqualTo, Exists, GreaterThan, GreaterThanOrEqualToZero, LessThan, RollForward, RollUp, SumEquals, Variance. Null when the rule is a structural check (see rule_check_kind). */
|
|
623
|
+
rulePattern: Maybe<Scalars['String']['output']>;
|
|
622
624
|
/** Failure severity — 'info' | 'warning' | 'error'. Enum closure enforced by the ``public.rules`` CHECK constraint. */
|
|
623
625
|
ruleSeverity: Scalars['String']['output'];
|
|
624
626
|
ruleTarget: Maybe<InformationBlockRuleTarget>;
|
|
@@ -695,7 +697,7 @@ export type InformationBlockViewProjections = {
|
|
|
695
697
|
export type InformationModel = {
|
|
696
698
|
/** roll_up | roll_forward | variance | adjustment | set | arithmetic | textblock. Null for block types where the concept arrangement is implicit in their mechanics. */
|
|
697
699
|
conceptArrangement: Maybe<Scalars['String']['output']>;
|
|
698
|
-
/**
|
|
700
|
+
/** is_a | whole_part | nested_whole_part | two_dimension_aggregation | complex_aggregating_whole_part, or null if non-hypercube. */
|
|
699
701
|
memberArrangement: Maybe<Scalars['String']['output']>;
|
|
700
702
|
};
|
|
701
703
|
/**
|
|
@@ -983,13 +985,13 @@ export type LibraryReference = {
|
|
|
983
985
|
};
|
|
984
986
|
/** A named structure (extended link role) within a library taxonomy. */
|
|
985
987
|
export type LibraryStructure = {
|
|
988
|
+
/** balance_sheet | income_statement | cash_flow_statement | custom | … */
|
|
989
|
+
blockType: Scalars['String']['output'];
|
|
986
990
|
id: Scalars['String']['output'];
|
|
987
991
|
isActive: Scalars['Boolean']['output'];
|
|
988
992
|
name: Scalars['String']['output'];
|
|
989
993
|
/** Original XBRL role URI if any */
|
|
990
994
|
roleUri: Maybe<Scalars['String']['output']>;
|
|
991
|
-
/** balance_sheet | income_statement | cash_flow_statement | custom | … */
|
|
992
|
-
structureType: Scalars['String']['output'];
|
|
993
995
|
taxonomyId: Scalars['String']['output'];
|
|
994
996
|
};
|
|
995
997
|
/** A library taxonomy (fac, us-gaap, rs-gaap, …). */
|
|
@@ -1041,9 +1043,9 @@ export type MappingCoverage = {
|
|
|
1041
1043
|
/** A mapping structure with all its associations. */
|
|
1042
1044
|
export type MappingDetail = {
|
|
1043
1045
|
associations: Array<Association>;
|
|
1046
|
+
blockType: Scalars['String']['output'];
|
|
1044
1047
|
id: Scalars['String']['output'];
|
|
1045
1048
|
name: Scalars['String']['output'];
|
|
1046
|
-
structureType: Scalars['String']['output'];
|
|
1047
1049
|
taxonomyId: Scalars['String']['output'];
|
|
1048
1050
|
totalAssociations: Scalars['Int']['output'];
|
|
1049
1051
|
};
|
|
@@ -1536,7 +1538,7 @@ export type QueryLibraryStructureArgs = {
|
|
|
1536
1538
|
id: Scalars['ID']['input'];
|
|
1537
1539
|
};
|
|
1538
1540
|
export type QueryLibraryStructuresArgs = {
|
|
1539
|
-
|
|
1541
|
+
blockType?: InputMaybe<Scalars['String']['input']>;
|
|
1540
1542
|
taxonomyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1541
1543
|
};
|
|
1542
1544
|
export type QueryLibraryTaxonomiesArgs = {
|
|
@@ -1625,11 +1627,11 @@ export type QuerySecurityArgs = {
|
|
|
1625
1627
|
securityId: Scalars['String']['input'];
|
|
1626
1628
|
};
|
|
1627
1629
|
export type QueryStatementArgs = {
|
|
1630
|
+
blockType: Scalars['String']['input'];
|
|
1628
1631
|
reportId: Scalars['String']['input'];
|
|
1629
|
-
structureType: Scalars['String']['input'];
|
|
1630
1632
|
};
|
|
1631
1633
|
export type QueryStructuresArgs = {
|
|
1632
|
-
|
|
1634
|
+
blockType?: InputMaybe<Scalars['String']['input']>;
|
|
1633
1635
|
taxonomyId?: InputMaybe<Scalars['String']['input']>;
|
|
1634
1636
|
};
|
|
1635
1637
|
export type QueryTaxonomiesArgs = {
|
|
@@ -1803,6 +1805,8 @@ export type SecurityLite = {
|
|
|
1803
1805
|
* rehydrated as ``InformationBlockEnvelope`` items instead.
|
|
1804
1806
|
*/
|
|
1805
1807
|
export type Statement = {
|
|
1808
|
+
/** Structure category: `balance_sheet`, `income_statement`, `cash_flow_statement`, `equity_statement`, `schedule`. */
|
|
1809
|
+
blockType: Scalars['String']['output'];
|
|
1806
1810
|
/** Period columns rendered in this statement, in display order. */
|
|
1807
1811
|
periods: Array<PeriodSpec>;
|
|
1808
1812
|
/** The Report this statement was rendered from. */
|
|
@@ -1813,8 +1817,6 @@ export type Statement = {
|
|
|
1813
1817
|
structureId: Scalars['String']['output'];
|
|
1814
1818
|
/** Human-readable structure name. */
|
|
1815
1819
|
structureName: Scalars['String']['output'];
|
|
1816
|
-
/** Structure category: `balance_sheet`, `income_statement`, `cash_flow_statement`, `equity_statement`, `schedule`. */
|
|
1817
|
-
structureType: Scalars['String']['output'];
|
|
1818
1820
|
/** Number of GL elements that fell through the mapping with no destination concept. Indicates mapping gaps. */
|
|
1819
1821
|
unmappedCount: Scalars['Int']['output'];
|
|
1820
1822
|
/** Outcome of running reporting rules over this structure. Null when the structure has no rules attached. */
|
|
@@ -1824,16 +1826,16 @@ export type Statement = {
|
|
|
1824
1826
|
* One structure header — a renderable section within a taxonomy
|
|
1825
1827
|
* (balance sheet, income statement, schedule, etc.).
|
|
1826
1828
|
*
|
|
1827
|
-
* ``
|
|
1829
|
+
* ``block_type`` drives presentation: 'balance_sheet',
|
|
1828
1830
|
* 'income_statement', 'cash_flow_statement', 'equity_statement',
|
|
1829
1831
|
* 'schedule', 'chart_of_accounts', 'coa_mapping', 'rollforward', etc.
|
|
1830
1832
|
*/
|
|
1831
1833
|
export type Structure = {
|
|
1834
|
+
blockType: Scalars['String']['output'];
|
|
1832
1835
|
description: Maybe<Scalars['String']['output']>;
|
|
1833
1836
|
id: Scalars['String']['output'];
|
|
1834
1837
|
isActive: Scalars['Boolean']['output'];
|
|
1835
1838
|
name: Scalars['String']['output'];
|
|
1836
|
-
structureType: Scalars['String']['output'];
|
|
1837
1839
|
taxonomyId: Scalars['String']['output'];
|
|
1838
1840
|
};
|
|
1839
1841
|
/** Flat list of structures within a taxonomy. */
|
|
@@ -1848,12 +1850,12 @@ export type StructureList = {
|
|
|
1848
1850
|
* row owns the facts; structures are the lenses that project them.
|
|
1849
1851
|
*/
|
|
1850
1852
|
export type StructureSummary = {
|
|
1853
|
+
/** Structure category: `balance_sheet`, `income_statement`, `cash_flow_statement`, `equity_statement`, `schedule`. */
|
|
1854
|
+
blockType: Scalars['String']['output'];
|
|
1851
1855
|
/** Structure identifier. */
|
|
1852
1856
|
id: Scalars['String']['output'];
|
|
1853
1857
|
/** Human-readable structure name. */
|
|
1854
1858
|
name: Scalars['String']['output'];
|
|
1855
|
-
/** Structure category: `balance_sheet`, `income_statement`, `cash_flow_statement`, `equity_statement`, `schedule`. */
|
|
1856
|
-
structureType: Scalars['String']['output'];
|
|
1857
1859
|
};
|
|
1858
1860
|
/** A suggested mapping target from the reporting taxonomy. */
|
|
1859
1861
|
export type SuggestedTarget = {
|
|
@@ -1943,11 +1945,11 @@ export type TaxonomyBlockRule = {
|
|
|
1943
1945
|
targetRef: Maybe<Scalars['String']['output']>;
|
|
1944
1946
|
};
|
|
1945
1947
|
export type TaxonomyBlockStructure = {
|
|
1948
|
+
blockType: Scalars['String']['output'];
|
|
1946
1949
|
description: Maybe<Scalars['String']['output']>;
|
|
1947
1950
|
id: Scalars['String']['output'];
|
|
1948
1951
|
name: Scalars['String']['output'];
|
|
1949
1952
|
roleUri: Maybe<Scalars['String']['output']>;
|
|
1950
|
-
structureType: Scalars['String']['output'];
|
|
1951
1953
|
};
|
|
1952
1954
|
/** Flat list of taxonomy headers. Used by the catalog/picker UIs. */
|
|
1953
1955
|
export type TaxonomyList = {
|
|
@@ -2410,7 +2412,7 @@ export type GetLedgerClosingBookStructuresQuery = {
|
|
|
2410
2412
|
id: string;
|
|
2411
2413
|
name: string;
|
|
2412
2414
|
itemType: string;
|
|
2413
|
-
|
|
2415
|
+
blockType: string | null;
|
|
2414
2416
|
reportId: string | null;
|
|
2415
2417
|
status: string | null;
|
|
2416
2418
|
}>;
|
|
@@ -2627,7 +2629,7 @@ export type GetInformationBlockQuery = {
|
|
|
2627
2629
|
};
|
|
2628
2630
|
artifact: {
|
|
2629
2631
|
topic: string | null;
|
|
2630
|
-
|
|
2632
|
+
rendererNote: string | null;
|
|
2631
2633
|
template: any | null;
|
|
2632
2634
|
mechanics: any;
|
|
2633
2635
|
};
|
|
@@ -2665,7 +2667,8 @@ export type GetInformationBlockQuery = {
|
|
|
2665
2667
|
rules: Array<{
|
|
2666
2668
|
id: string;
|
|
2667
2669
|
ruleCategory: string;
|
|
2668
|
-
rulePattern: string;
|
|
2670
|
+
rulePattern: string | null;
|
|
2671
|
+
ruleCheckKind: string | null;
|
|
2669
2672
|
ruleExpression: string;
|
|
2670
2673
|
ruleMessage: string | null;
|
|
2671
2674
|
ruleSeverity: string;
|
|
@@ -2748,7 +2751,7 @@ export type ListInformationBlocksQuery = {
|
|
|
2748
2751
|
};
|
|
2749
2752
|
artifact: {
|
|
2750
2753
|
topic: string | null;
|
|
2751
|
-
|
|
2754
|
+
rendererNote: string | null;
|
|
2752
2755
|
template: any | null;
|
|
2753
2756
|
mechanics: any;
|
|
2754
2757
|
};
|
|
@@ -2786,7 +2789,8 @@ export type ListInformationBlocksQuery = {
|
|
|
2786
2789
|
rules: Array<{
|
|
2787
2790
|
id: string;
|
|
2788
2791
|
ruleCategory: string;
|
|
2789
|
-
rulePattern: string;
|
|
2792
|
+
rulePattern: string | null;
|
|
2793
|
+
ruleCheckKind: string | null;
|
|
2790
2794
|
ruleExpression: string;
|
|
2791
2795
|
ruleMessage: string | null;
|
|
2792
2796
|
ruleSeverity: string;
|
|
@@ -2875,7 +2879,7 @@ export type GetLedgerMappingQuery = {
|
|
|
2875
2879
|
mapping: {
|
|
2876
2880
|
id: string;
|
|
2877
2881
|
name: string;
|
|
2878
|
-
|
|
2882
|
+
blockType: string;
|
|
2879
2883
|
taxonomyId: string;
|
|
2880
2884
|
totalAssociations: number;
|
|
2881
2885
|
associations: Array<{
|
|
@@ -2920,7 +2924,7 @@ export type ListLedgerMappingsQuery = {
|
|
|
2920
2924
|
id: string;
|
|
2921
2925
|
name: string;
|
|
2922
2926
|
description: string | null;
|
|
2923
|
-
|
|
2927
|
+
blockType: string;
|
|
2924
2928
|
taxonomyId: string;
|
|
2925
2929
|
isActive: boolean;
|
|
2926
2930
|
}>;
|
|
@@ -3057,7 +3061,7 @@ export type GetLedgerReportQuery = {
|
|
|
3057
3061
|
structures: Array<{
|
|
3058
3062
|
id: string;
|
|
3059
3063
|
name: string;
|
|
3060
|
-
|
|
3064
|
+
blockType: string;
|
|
3061
3065
|
}>;
|
|
3062
3066
|
} | null;
|
|
3063
3067
|
};
|
|
@@ -3105,7 +3109,7 @@ export type GetLedgerReportPackageQuery = {
|
|
|
3105
3109
|
};
|
|
3106
3110
|
artifact: {
|
|
3107
3111
|
topic: string | null;
|
|
3108
|
-
|
|
3112
|
+
rendererNote: string | null;
|
|
3109
3113
|
template: any | null;
|
|
3110
3114
|
mechanics: any;
|
|
3111
3115
|
};
|
|
@@ -3143,7 +3147,8 @@ export type GetLedgerReportPackageQuery = {
|
|
|
3143
3147
|
rules: Array<{
|
|
3144
3148
|
id: string;
|
|
3145
3149
|
ruleCategory: string;
|
|
3146
|
-
rulePattern: string;
|
|
3150
|
+
rulePattern: string | null;
|
|
3151
|
+
ruleCheckKind: string | null;
|
|
3147
3152
|
ruleExpression: string;
|
|
3148
3153
|
ruleMessage: string | null;
|
|
3149
3154
|
ruleSeverity: string;
|
|
@@ -3256,21 +3261,21 @@ export type ListLedgerReportsQuery = {
|
|
|
3256
3261
|
structures: Array<{
|
|
3257
3262
|
id: string;
|
|
3258
3263
|
name: string;
|
|
3259
|
-
|
|
3264
|
+
blockType: string;
|
|
3260
3265
|
}>;
|
|
3261
3266
|
}>;
|
|
3262
3267
|
} | null;
|
|
3263
3268
|
};
|
|
3264
3269
|
export type GetLedgerStatementQueryVariables = Exact<{
|
|
3265
3270
|
reportId: Scalars['String']['input'];
|
|
3266
|
-
|
|
3271
|
+
blockType: Scalars['String']['input'];
|
|
3267
3272
|
}>;
|
|
3268
3273
|
export type GetLedgerStatementQuery = {
|
|
3269
3274
|
statement: {
|
|
3270
3275
|
reportId: string;
|
|
3271
3276
|
structureId: string;
|
|
3272
3277
|
structureName: string;
|
|
3273
|
-
|
|
3278
|
+
blockType: string;
|
|
3274
3279
|
unmappedCount: number;
|
|
3275
3280
|
periods: Array<{
|
|
3276
3281
|
start: any;
|
|
@@ -3296,7 +3301,7 @@ export type GetLedgerStatementQuery = {
|
|
|
3296
3301
|
};
|
|
3297
3302
|
export type ListLedgerStructuresQueryVariables = Exact<{
|
|
3298
3303
|
taxonomyId: InputMaybe<Scalars['String']['input']>;
|
|
3299
|
-
|
|
3304
|
+
blockType: InputMaybe<Scalars['String']['input']>;
|
|
3300
3305
|
}>;
|
|
3301
3306
|
export type ListLedgerStructuresQuery = {
|
|
3302
3307
|
structures: {
|
|
@@ -3304,7 +3309,7 @@ export type ListLedgerStructuresQuery = {
|
|
|
3304
3309
|
id: string;
|
|
3305
3310
|
name: string;
|
|
3306
3311
|
description: string | null;
|
|
3307
|
-
|
|
3312
|
+
blockType: string;
|
|
3308
3313
|
taxonomyId: string;
|
|
3309
3314
|
isActive: boolean;
|
|
3310
3315
|
}>;
|
|
@@ -1138,7 +1138,7 @@ exports.GetLedgerClosingBookStructuresDocument = {
|
|
|
1138
1138
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
1139
1139
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
1140
1140
|
{ kind: 'Field', name: { kind: 'Name', value: 'itemType' } },
|
|
1141
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
1141
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
|
|
1142
1142
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
1143
1143
|
{ kind: 'Field', name: { kind: 'Name', value: 'status' } },
|
|
1144
1144
|
],
|
|
@@ -1702,7 +1702,7 @@ exports.GetInformationBlockDocument = {
|
|
|
1702
1702
|
kind: 'SelectionSet',
|
|
1703
1703
|
selections: [
|
|
1704
1704
|
{ kind: 'Field', name: { kind: 'Name', value: 'topic' } },
|
|
1705
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
1705
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rendererNote' } },
|
|
1706
1706
|
{ kind: 'Field', name: { kind: 'Name', value: 'template' } },
|
|
1707
1707
|
{ kind: 'Field', name: { kind: 'Name', value: 'mechanics' } },
|
|
1708
1708
|
],
|
|
@@ -1769,6 +1769,7 @@ exports.GetInformationBlockDocument = {
|
|
|
1769
1769
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
1770
1770
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
|
|
1771
1771
|
{ kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
|
|
1772
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCheckKind' } },
|
|
1772
1773
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleExpression' } },
|
|
1773
1774
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
|
|
1774
1775
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
|
|
@@ -1989,7 +1990,7 @@ exports.ListInformationBlocksDocument = {
|
|
|
1989
1990
|
kind: 'SelectionSet',
|
|
1990
1991
|
selections: [
|
|
1991
1992
|
{ kind: 'Field', name: { kind: 'Name', value: 'topic' } },
|
|
1992
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
1993
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rendererNote' } },
|
|
1993
1994
|
{ kind: 'Field', name: { kind: 'Name', value: 'template' } },
|
|
1994
1995
|
{ kind: 'Field', name: { kind: 'Name', value: 'mechanics' } },
|
|
1995
1996
|
],
|
|
@@ -2056,6 +2057,7 @@ exports.ListInformationBlocksDocument = {
|
|
|
2056
2057
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
2057
2058
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
|
|
2058
2059
|
{ kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
|
|
2060
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCheckKind' } },
|
|
2059
2061
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleExpression' } },
|
|
2060
2062
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
|
|
2061
2063
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
|
|
@@ -2305,7 +2307,7 @@ exports.GetLedgerMappingDocument = {
|
|
|
2305
2307
|
selections: [
|
|
2306
2308
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
2307
2309
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
2308
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
2310
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
|
|
2309
2311
|
{ kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
|
|
2310
2312
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalAssociations' } },
|
|
2311
2313
|
{
|
|
@@ -2413,7 +2415,7 @@ exports.ListLedgerMappingsDocument = {
|
|
|
2413
2415
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
2414
2416
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
2415
2417
|
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
|
2416
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
2418
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
|
|
2417
2419
|
{ kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
|
|
2418
2420
|
{ kind: 'Field', name: { kind: 'Name', value: 'isActive' } },
|
|
2419
2421
|
],
|
|
@@ -2802,7 +2804,7 @@ exports.GetLedgerReportDocument = {
|
|
|
2802
2804
|
selections: [
|
|
2803
2805
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
2804
2806
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
2805
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
2807
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
|
|
2806
2808
|
],
|
|
2807
2809
|
},
|
|
2808
2810
|
},
|
|
@@ -2914,10 +2916,7 @@ exports.GetLedgerReportPackageDocument = {
|
|
|
2914
2916
|
kind: 'SelectionSet',
|
|
2915
2917
|
selections: [
|
|
2916
2918
|
{ kind: 'Field', name: { kind: 'Name', value: 'topic' } },
|
|
2917
|
-
{
|
|
2918
|
-
kind: 'Field',
|
|
2919
|
-
name: { kind: 'Name', value: 'parentheticalNote' },
|
|
2920
|
-
},
|
|
2919
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rendererNote' } },
|
|
2921
2920
|
{ kind: 'Field', name: { kind: 'Name', value: 'template' } },
|
|
2922
2921
|
{ kind: 'Field', name: { kind: 'Name', value: 'mechanics' } },
|
|
2923
2922
|
],
|
|
@@ -2987,6 +2986,7 @@ exports.GetLedgerReportPackageDocument = {
|
|
|
2987
2986
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
2988
2987
|
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
|
|
2989
2988
|
{ kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
|
|
2989
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCheckKind' } },
|
|
2990
2990
|
{
|
|
2991
2991
|
kind: 'Field',
|
|
2992
2992
|
name: { kind: 'Name', value: 'ruleExpression' },
|
|
@@ -3282,7 +3282,7 @@ exports.ListLedgerReportsDocument = {
|
|
|
3282
3282
|
selections: [
|
|
3283
3283
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
3284
3284
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3285
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3285
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
|
|
3286
3286
|
],
|
|
3287
3287
|
},
|
|
3288
3288
|
},
|
|
@@ -3315,7 +3315,7 @@ exports.GetLedgerStatementDocument = {
|
|
|
3315
3315
|
},
|
|
3316
3316
|
{
|
|
3317
3317
|
kind: 'VariableDefinition',
|
|
3318
|
-
variable: { kind: 'Variable', name: { kind: 'Name', value: '
|
|
3318
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'blockType' } },
|
|
3319
3319
|
type: {
|
|
3320
3320
|
kind: 'NonNullType',
|
|
3321
3321
|
type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
|
|
@@ -3336,8 +3336,8 @@ exports.GetLedgerStatementDocument = {
|
|
|
3336
3336
|
},
|
|
3337
3337
|
{
|
|
3338
3338
|
kind: 'Argument',
|
|
3339
|
-
name: { kind: 'Name', value: '
|
|
3340
|
-
value: { kind: 'Variable', name: { kind: 'Name', value: '
|
|
3339
|
+
name: { kind: 'Name', value: 'blockType' },
|
|
3340
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'blockType' } },
|
|
3341
3341
|
},
|
|
3342
3342
|
],
|
|
3343
3343
|
selectionSet: {
|
|
@@ -3346,7 +3346,7 @@ exports.GetLedgerStatementDocument = {
|
|
|
3346
3346
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
3347
3347
|
{ kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
|
|
3348
3348
|
{ kind: 'Field', name: { kind: 'Name', value: 'structureName' } },
|
|
3349
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3349
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
|
|
3350
3350
|
{ kind: 'Field', name: { kind: 'Name', value: 'unmappedCount' } },
|
|
3351
3351
|
{
|
|
3352
3352
|
kind: 'Field',
|
|
@@ -3412,7 +3412,7 @@ exports.ListLedgerStructuresDocument = {
|
|
|
3412
3412
|
},
|
|
3413
3413
|
{
|
|
3414
3414
|
kind: 'VariableDefinition',
|
|
3415
|
-
variable: { kind: 'Variable', name: { kind: 'Name', value: '
|
|
3415
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'blockType' } },
|
|
3416
3416
|
type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
|
|
3417
3417
|
},
|
|
3418
3418
|
],
|
|
@@ -3430,8 +3430,8 @@ exports.ListLedgerStructuresDocument = {
|
|
|
3430
3430
|
},
|
|
3431
3431
|
{
|
|
3432
3432
|
kind: 'Argument',
|
|
3433
|
-
name: { kind: 'Name', value: '
|
|
3434
|
-
value: { kind: 'Variable', name: { kind: 'Name', value: '
|
|
3433
|
+
name: { kind: 'Name', value: 'blockType' },
|
|
3434
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'blockType' } },
|
|
3435
3435
|
},
|
|
3436
3436
|
],
|
|
3437
3437
|
selectionSet: {
|
|
@@ -3446,7 +3446,7 @@ exports.ListLedgerStructuresDocument = {
|
|
|
3446
3446
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
3447
3447
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3448
3448
|
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
|
3449
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3449
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
|
|
3450
3450
|
{ kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
|
|
3451
3451
|
{ kind: 'Field', name: { kind: 'Name', value: 'isActive' } },
|
|
3452
3452
|
],
|