@robosystems/client 0.3.23 → 0.3.25

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.
@@ -152,6 +152,8 @@ export type Agent = {
152
152
  legalName: Maybe<Scalars['String']['output']>;
153
153
  lei: Maybe<Scalars['String']['output']>;
154
154
  name: Scalars['String']['output'];
155
+ openPayable: Maybe<OpenBalanceByAgent>;
156
+ openReceivable: Maybe<OpenBalanceByAgent>;
155
157
  phone: Maybe<Scalars['String']['output']>;
156
158
  registrationNumber: Maybe<Scalars['String']['output']>;
157
159
  source: Scalars['String']['output'];
@@ -1033,6 +1035,8 @@ export type MappingCoverage = {
1033
1035
  mediumConfidence: Scalars['Int']['output'];
1034
1036
  totalCoaElements: Scalars['Int']['output'];
1035
1037
  unmappedCount: Scalars['Int']['output'];
1038
+ unreachable: Array<UnreachableMappingType>;
1039
+ unreachableCount: Scalars['Int']['output'];
1036
1040
  };
1037
1041
  /** A mapping structure with all its associations. */
1038
1042
  export type MappingDetail = {
@@ -1043,6 +1047,41 @@ export type MappingDetail = {
1043
1047
  taxonomyId: Scalars['String']['output'];
1044
1048
  totalAssociations: Scalars['Int']['output'];
1045
1049
  };
1050
+ /**
1051
+ * Graph-wide open AR or open AP aggregate.
1052
+ *
1053
+ * ``total_open_cents`` is the sum of unsettled originating-event
1054
+ * balances; ``counterparty_count`` is the number of distinct agents
1055
+ * with at least one open invoice or bill. The currency is uniform
1056
+ * per graph today (mixed-currency books would need a per-currency
1057
+ * breakdown — out of scope for v1).
1058
+ */
1059
+ export type OpenBalanceAggregate = {
1060
+ /** Distinct agents with at least one open balance. */
1061
+ counterpartyCount: Scalars['Int']['output'];
1062
+ /** Currency code (uniform per graph). */
1063
+ currency: Scalars['String']['output'];
1064
+ /** Distinct originating events with a nonzero open balance. */
1065
+ openEventCount: Scalars['Int']['output'];
1066
+ /** Sum of unsettled balances in minor currency units. */
1067
+ totalOpenCents: Scalars['Int']['output'];
1068
+ };
1069
+ /**
1070
+ * Per-agent open balance row.
1071
+ *
1072
+ * Used for both the aging-by-counterparty list and the per-Agent
1073
+ * GraphQL field. ``open_balance_cents`` reflects only the unsettled
1074
+ * remainder (sum of originating amounts minus sum of discharges) so
1075
+ * partial-payment chains net out correctly.
1076
+ */
1077
+ export type OpenBalanceByAgent = {
1078
+ agentId: Scalars['String']['output'];
1079
+ currency: Scalars['String']['output'];
1080
+ /** Unsettled originating-event amounts minus discharges, in minor currency units. Positive for normal AR/AP; negative when overpaid. */
1081
+ openBalanceCents: Scalars['Int']['output'];
1082
+ /** Number of originating events with nonzero balance for this agent. */
1083
+ openEventCount: Scalars['Int']['output'];
1084
+ };
1046
1085
  /** Pagination information for list responses. */
1047
1086
  export type PaginationInfo = {
1048
1087
  /** Whether more items are available */
@@ -1377,6 +1416,10 @@ export type Query = {
1377
1416
  mapping: Maybe<MappingDetail>;
1378
1417
  mappingCoverage: Maybe<MappingCoverage>;
1379
1418
  mappings: Maybe<StructureList>;
1419
+ openPayables: OpenBalanceAggregate;
1420
+ openPayablesByAgent: Array<OpenBalanceByAgent>;
1421
+ openReceivables: OpenBalanceAggregate;
1422
+ openReceivablesByAgent: Array<OpenBalanceByAgent>;
1380
1423
  periodCloseStatus: Maybe<PeriodCloseStatus>;
1381
1424
  periodDrafts: Maybe<PeriodDrafts>;
1382
1425
  portfolioBlock: Maybe<PortfolioBlock>;
@@ -1944,6 +1987,27 @@ export type UnmappedElement = {
1944
1987
  suggestedTargets: Array<SuggestedTarget>;
1945
1988
  trait: Maybe<Scalars['String']['output']>;
1946
1989
  };
1990
+ /**
1991
+ * A CoA→rs-gaap mapping whose target doesn't reach a Network root.
1992
+ *
1993
+ * The reporting layer is closed: every mapping target must trace upward
1994
+ * through the rs-gaap calc DAG to one of the canonical roots
1995
+ * (rs-gaap:Assets, rs-gaap:LiabilitiesAndStockholdersEquity,
1996
+ * rs-gaap:NetIncomeLoss, rs-gaap:CashAndCashEquivalentsPeriodIncreaseDecrease).
1997
+ * When it doesn't, the fact will land on a dead branch — visible in the
1998
+ * trial balance but invisible to any rendered statement. Surfacing
1999
+ * these as defects lets operators fix the mapping before the report is
2000
+ * filed.
2001
+ */
2002
+ export type UnreachableMappingType = {
2003
+ coaCode: Maybe<Scalars['String']['output']>;
2004
+ coaElementId: Scalars['String']['output'];
2005
+ coaName: Maybe<Scalars['String']['output']>;
2006
+ coaQname: Maybe<Scalars['String']['output']>;
2007
+ targetElementId: Scalars['String']['output'];
2008
+ targetName: Maybe<Scalars['String']['output']>;
2009
+ targetQname: Maybe<Scalars['String']['output']>;
2010
+ };
1947
2011
  /** Aggregate result of running reporting rules over a structure. */
1948
2012
  export type ValidationCheck = {
1949
2013
  /** Names of rules that were evaluated. */
@@ -2606,6 +2670,14 @@ export type GetInformationBlockQuery = {
2606
2670
  ruleMessage: string | null;
2607
2671
  ruleSeverity: string;
2608
2672
  ruleOrigin: string;
2673
+ ruleTarget: {
2674
+ targetKind: string;
2675
+ targetRefId: string;
2676
+ } | null;
2677
+ ruleVariables: Array<{
2678
+ variableName: string;
2679
+ variableQname: string;
2680
+ }>;
2609
2681
  }>;
2610
2682
  factSet: {
2611
2683
  id: string;
@@ -2719,6 +2791,14 @@ export type ListInformationBlocksQuery = {
2719
2791
  ruleMessage: string | null;
2720
2792
  ruleSeverity: string;
2721
2793
  ruleOrigin: string;
2794
+ ruleTarget: {
2795
+ targetKind: string;
2796
+ targetRefId: string;
2797
+ } | null;
2798
+ ruleVariables: Array<{
2799
+ variableName: string;
2800
+ variableQname: string;
2801
+ }>;
2722
2802
  }>;
2723
2803
  factSet: {
2724
2804
  id: string;
@@ -3068,6 +3148,14 @@ export type GetLedgerReportPackageQuery = {
3068
3148
  ruleMessage: string | null;
3069
3149
  ruleSeverity: string;
3070
3150
  ruleOrigin: string;
3151
+ ruleTarget: {
3152
+ targetKind: string;
3153
+ targetRefId: string;
3154
+ } | null;
3155
+ ruleVariables: Array<{
3156
+ variableName: string;
3157
+ variableQname: string;
3158
+ }>;
3071
3159
  }>;
3072
3160
  factSet: {
3073
3161
  id: string;
@@ -1773,6 +1773,28 @@ exports.GetInformationBlockDocument = {
1773
1773
  { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
1774
1774
  { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
1775
1775
  { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
1776
+ {
1777
+ kind: 'Field',
1778
+ name: { kind: 'Name', value: 'ruleTarget' },
1779
+ selectionSet: {
1780
+ kind: 'SelectionSet',
1781
+ selections: [
1782
+ { kind: 'Field', name: { kind: 'Name', value: 'targetKind' } },
1783
+ { kind: 'Field', name: { kind: 'Name', value: 'targetRefId' } },
1784
+ ],
1785
+ },
1786
+ },
1787
+ {
1788
+ kind: 'Field',
1789
+ name: { kind: 'Name', value: 'ruleVariables' },
1790
+ selectionSet: {
1791
+ kind: 'SelectionSet',
1792
+ selections: [
1793
+ { kind: 'Field', name: { kind: 'Name', value: 'variableName' } },
1794
+ { kind: 'Field', name: { kind: 'Name', value: 'variableQname' } },
1795
+ ],
1796
+ },
1797
+ },
1776
1798
  ],
1777
1799
  },
1778
1800
  },
@@ -2038,6 +2060,28 @@ exports.ListInformationBlocksDocument = {
2038
2060
  { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
2039
2061
  { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
2040
2062
  { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
2063
+ {
2064
+ kind: 'Field',
2065
+ name: { kind: 'Name', value: 'ruleTarget' },
2066
+ selectionSet: {
2067
+ kind: 'SelectionSet',
2068
+ selections: [
2069
+ { kind: 'Field', name: { kind: 'Name', value: 'targetKind' } },
2070
+ { kind: 'Field', name: { kind: 'Name', value: 'targetRefId' } },
2071
+ ],
2072
+ },
2073
+ },
2074
+ {
2075
+ kind: 'Field',
2076
+ name: { kind: 'Name', value: 'ruleVariables' },
2077
+ selectionSet: {
2078
+ kind: 'SelectionSet',
2079
+ selections: [
2080
+ { kind: 'Field', name: { kind: 'Name', value: 'variableName' } },
2081
+ { kind: 'Field', name: { kind: 'Name', value: 'variableQname' } },
2082
+ ],
2083
+ },
2084
+ },
2041
2085
  ],
2042
2086
  },
2043
2087
  },
@@ -2950,6 +2994,40 @@ exports.GetLedgerReportPackageDocument = {
2950
2994
  { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
2951
2995
  { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
2952
2996
  { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
2997
+ {
2998
+ kind: 'Field',
2999
+ name: { kind: 'Name', value: 'ruleTarget' },
3000
+ selectionSet: {
3001
+ kind: 'SelectionSet',
3002
+ selections: [
3003
+ {
3004
+ kind: 'Field',
3005
+ name: { kind: 'Name', value: 'targetKind' },
3006
+ },
3007
+ {
3008
+ kind: 'Field',
3009
+ name: { kind: 'Name', value: 'targetRefId' },
3010
+ },
3011
+ ],
3012
+ },
3013
+ },
3014
+ {
3015
+ kind: 'Field',
3016
+ name: { kind: 'Name', value: 'ruleVariables' },
3017
+ selectionSet: {
3018
+ kind: 'SelectionSet',
3019
+ selections: [
3020
+ {
3021
+ kind: 'Field',
3022
+ name: { kind: 'Name', value: 'variableName' },
3023
+ },
3024
+ {
3025
+ kind: 'Field',
3026
+ name: { kind: 'Name', value: 'variableQname' },
3027
+ },
3028
+ ],
3029
+ },
3030
+ },
2953
3031
  ],
2954
3032
  },
2955
3033
  },
@@ -126,6 +126,8 @@ export type Agent = {
126
126
  legalName: Maybe<Scalars['String']['output']>
127
127
  lei: Maybe<Scalars['String']['output']>
128
128
  name: Scalars['String']['output']
129
+ openPayable: Maybe<OpenBalanceByAgent>
130
+ openReceivable: Maybe<OpenBalanceByAgent>
129
131
  phone: Maybe<Scalars['String']['output']>
130
132
  registrationNumber: Maybe<Scalars['String']['output']>
131
133
  source: Scalars['String']['output']
@@ -1060,6 +1062,8 @@ export type MappingCoverage = {
1060
1062
  mediumConfidence: Scalars['Int']['output']
1061
1063
  totalCoaElements: Scalars['Int']['output']
1062
1064
  unmappedCount: Scalars['Int']['output']
1065
+ unreachable: Array<UnreachableMappingType>
1066
+ unreachableCount: Scalars['Int']['output']
1063
1067
  }
1064
1068
 
1065
1069
  /** A mapping structure with all its associations. */
@@ -1072,6 +1076,43 @@ export type MappingDetail = {
1072
1076
  totalAssociations: Scalars['Int']['output']
1073
1077
  }
1074
1078
 
1079
+ /**
1080
+ * Graph-wide open AR or open AP aggregate.
1081
+ *
1082
+ * ``total_open_cents`` is the sum of unsettled originating-event
1083
+ * balances; ``counterparty_count`` is the number of distinct agents
1084
+ * with at least one open invoice or bill. The currency is uniform
1085
+ * per graph today (mixed-currency books would need a per-currency
1086
+ * breakdown — out of scope for v1).
1087
+ */
1088
+ export type OpenBalanceAggregate = {
1089
+ /** Distinct agents with at least one open balance. */
1090
+ counterpartyCount: Scalars['Int']['output']
1091
+ /** Currency code (uniform per graph). */
1092
+ currency: Scalars['String']['output']
1093
+ /** Distinct originating events with a nonzero open balance. */
1094
+ openEventCount: Scalars['Int']['output']
1095
+ /** Sum of unsettled balances in minor currency units. */
1096
+ totalOpenCents: Scalars['Int']['output']
1097
+ }
1098
+
1099
+ /**
1100
+ * Per-agent open balance row.
1101
+ *
1102
+ * Used for both the aging-by-counterparty list and the per-Agent
1103
+ * GraphQL field. ``open_balance_cents`` reflects only the unsettled
1104
+ * remainder (sum of originating amounts minus sum of discharges) so
1105
+ * partial-payment chains net out correctly.
1106
+ */
1107
+ export type OpenBalanceByAgent = {
1108
+ agentId: Scalars['String']['output']
1109
+ currency: Scalars['String']['output']
1110
+ /** Unsettled originating-event amounts minus discharges, in minor currency units. Positive for normal AR/AP; negative when overpaid. */
1111
+ openBalanceCents: Scalars['Int']['output']
1112
+ /** Number of originating events with nonzero balance for this agent. */
1113
+ openEventCount: Scalars['Int']['output']
1114
+ }
1115
+
1075
1116
  /** Pagination information for list responses. */
1076
1117
  export type PaginationInfo = {
1077
1118
  /** Whether more items are available */
@@ -1422,6 +1463,10 @@ export type Query = {
1422
1463
  mapping: Maybe<MappingDetail>
1423
1464
  mappingCoverage: Maybe<MappingCoverage>
1424
1465
  mappings: Maybe<StructureList>
1466
+ openPayables: OpenBalanceAggregate
1467
+ openPayablesByAgent: Array<OpenBalanceByAgent>
1468
+ openReceivables: OpenBalanceAggregate
1469
+ openReceivablesByAgent: Array<OpenBalanceByAgent>
1425
1470
  periodCloseStatus: Maybe<PeriodCloseStatus>
1426
1471
  periodDrafts: Maybe<PeriodDrafts>
1427
1472
  portfolioBlock: Maybe<PortfolioBlock>
@@ -2060,6 +2105,28 @@ export type UnmappedElement = {
2060
2105
  trait: Maybe<Scalars['String']['output']>
2061
2106
  }
2062
2107
 
2108
+ /**
2109
+ * A CoA→rs-gaap mapping whose target doesn't reach a Network root.
2110
+ *
2111
+ * The reporting layer is closed: every mapping target must trace upward
2112
+ * through the rs-gaap calc DAG to one of the canonical roots
2113
+ * (rs-gaap:Assets, rs-gaap:LiabilitiesAndStockholdersEquity,
2114
+ * rs-gaap:NetIncomeLoss, rs-gaap:CashAndCashEquivalentsPeriodIncreaseDecrease).
2115
+ * When it doesn't, the fact will land on a dead branch — visible in the
2116
+ * trial balance but invisible to any rendered statement. Surfacing
2117
+ * these as defects lets operators fix the mapping before the report is
2118
+ * filed.
2119
+ */
2120
+ export type UnreachableMappingType = {
2121
+ coaCode: Maybe<Scalars['String']['output']>
2122
+ coaElementId: Scalars['String']['output']
2123
+ coaName: Maybe<Scalars['String']['output']>
2124
+ coaQname: Maybe<Scalars['String']['output']>
2125
+ targetElementId: Scalars['String']['output']
2126
+ targetName: Maybe<Scalars['String']['output']>
2127
+ targetQname: Maybe<Scalars['String']['output']>
2128
+ }
2129
+
2063
2130
  /** Aggregate result of running reporting rules over a structure. */
2064
2131
  export type ValidationCheck = {
2065
2132
  /** Names of rules that were evaluated. */
@@ -2718,6 +2785,8 @@ export type GetInformationBlockQuery = {
2718
2785
  ruleMessage: string | null
2719
2786
  ruleSeverity: string
2720
2787
  ruleOrigin: string
2788
+ ruleTarget: { targetKind: string; targetRefId: string } | null
2789
+ ruleVariables: Array<{ variableName: string; variableQname: string }>
2721
2790
  }>
2722
2791
  factSet: {
2723
2792
  id: string
@@ -2826,6 +2895,8 @@ export type ListInformationBlocksQuery = {
2826
2895
  ruleMessage: string | null
2827
2896
  ruleSeverity: string
2828
2897
  ruleOrigin: string
2898
+ ruleTarget: { targetKind: string; targetRefId: string } | null
2899
+ ruleVariables: Array<{ variableName: string; variableQname: string }>
2829
2900
  }>
2830
2901
  factSet: {
2831
2902
  id: string
@@ -3173,6 +3244,8 @@ export type GetLedgerReportPackageQuery = {
3173
3244
  ruleMessage: string | null
3174
3245
  ruleSeverity: string
3175
3246
  ruleOrigin: string
3247
+ ruleTarget: { targetKind: string; targetRefId: string } | null
3248
+ ruleVariables: Array<{ variableName: string; variableQname: string }>
3176
3249
  }>
3177
3250
  factSet: {
3178
3251
  id: string
@@ -5451,6 +5524,28 @@ export const GetInformationBlockDocument = {
5451
5524
  { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
5452
5525
  { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
5453
5526
  { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
5527
+ {
5528
+ kind: 'Field',
5529
+ name: { kind: 'Name', value: 'ruleTarget' },
5530
+ selectionSet: {
5531
+ kind: 'SelectionSet',
5532
+ selections: [
5533
+ { kind: 'Field', name: { kind: 'Name', value: 'targetKind' } },
5534
+ { kind: 'Field', name: { kind: 'Name', value: 'targetRefId' } },
5535
+ ],
5536
+ },
5537
+ },
5538
+ {
5539
+ kind: 'Field',
5540
+ name: { kind: 'Name', value: 'ruleVariables' },
5541
+ selectionSet: {
5542
+ kind: 'SelectionSet',
5543
+ selections: [
5544
+ { kind: 'Field', name: { kind: 'Name', value: 'variableName' } },
5545
+ { kind: 'Field', name: { kind: 'Name', value: 'variableQname' } },
5546
+ ],
5547
+ },
5548
+ },
5454
5549
  ],
5455
5550
  },
5456
5551
  },
@@ -5716,6 +5811,28 @@ export const ListInformationBlocksDocument = {
5716
5811
  { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
5717
5812
  { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
5718
5813
  { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
5814
+ {
5815
+ kind: 'Field',
5816
+ name: { kind: 'Name', value: 'ruleTarget' },
5817
+ selectionSet: {
5818
+ kind: 'SelectionSet',
5819
+ selections: [
5820
+ { kind: 'Field', name: { kind: 'Name', value: 'targetKind' } },
5821
+ { kind: 'Field', name: { kind: 'Name', value: 'targetRefId' } },
5822
+ ],
5823
+ },
5824
+ },
5825
+ {
5826
+ kind: 'Field',
5827
+ name: { kind: 'Name', value: 'ruleVariables' },
5828
+ selectionSet: {
5829
+ kind: 'SelectionSet',
5830
+ selections: [
5831
+ { kind: 'Field', name: { kind: 'Name', value: 'variableName' } },
5832
+ { kind: 'Field', name: { kind: 'Name', value: 'variableQname' } },
5833
+ ],
5834
+ },
5835
+ },
5719
5836
  ],
5720
5837
  },
5721
5838
  },
@@ -6634,6 +6751,40 @@ export const GetLedgerReportPackageDocument = {
6634
6751
  { kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
6635
6752
  { kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
6636
6753
  { kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
6754
+ {
6755
+ kind: 'Field',
6756
+ name: { kind: 'Name', value: 'ruleTarget' },
6757
+ selectionSet: {
6758
+ kind: 'SelectionSet',
6759
+ selections: [
6760
+ {
6761
+ kind: 'Field',
6762
+ name: { kind: 'Name', value: 'targetKind' },
6763
+ },
6764
+ {
6765
+ kind: 'Field',
6766
+ name: { kind: 'Name', value: 'targetRefId' },
6767
+ },
6768
+ ],
6769
+ },
6770
+ },
6771
+ {
6772
+ kind: 'Field',
6773
+ name: { kind: 'Name', value: 'ruleVariables' },
6774
+ selectionSet: {
6775
+ kind: 'SelectionSet',
6776
+ selections: [
6777
+ {
6778
+ kind: 'Field',
6779
+ name: { kind: 'Name', value: 'variableName' },
6780
+ },
6781
+ {
6782
+ kind: 'Field',
6783
+ name: { kind: 'Name', value: 'variableQname' },
6784
+ },
6785
+ ],
6786
+ },
6787
+ },
6637
6788
  ],
6638
6789
  },
6639
6790
  },
@@ -68,6 +68,14 @@ exports.GET_INFORMATION_BLOCK = (0, graphql_request_1.gql) `
68
68
  ruleMessage
69
69
  ruleSeverity
70
70
  ruleOrigin
71
+ ruleTarget {
72
+ targetKind
73
+ targetRefId
74
+ }
75
+ ruleVariables {
76
+ variableName
77
+ variableQname
78
+ }
71
79
  }
72
80
  factSet {
73
81
  id
@@ -183,6 +191,14 @@ exports.LIST_INFORMATION_BLOCKS = (0, graphql_request_1.gql) `
183
191
  ruleMessage
184
192
  ruleSeverity
185
193
  ruleOrigin
194
+ ruleTarget {
195
+ targetKind
196
+ targetRefId
197
+ }
198
+ ruleVariables {
199
+ variableName
200
+ variableQname
201
+ }
186
202
  }
187
203
  factSet {
188
204
  id
@@ -66,6 +66,14 @@ export const GET_INFORMATION_BLOCK = gql`
66
66
  ruleMessage
67
67
  ruleSeverity
68
68
  ruleOrigin
69
+ ruleTarget {
70
+ targetKind
71
+ targetRefId
72
+ }
73
+ ruleVariables {
74
+ variableName
75
+ variableQname
76
+ }
69
77
  }
70
78
  factSet {
71
79
  id
@@ -182,6 +190,14 @@ export const LIST_INFORMATION_BLOCKS = gql`
182
190
  ruleMessage
183
191
  ruleSeverity
184
192
  ruleOrigin
193
+ ruleTarget {
194
+ targetKind
195
+ targetRefId
196
+ }
197
+ ruleVariables {
198
+ variableName
199
+ variableQname
200
+ }
185
201
  }
186
202
  factSet {
187
203
  id
@@ -97,6 +97,14 @@ exports.GET_REPORT_PACKAGE = (0, graphql_request_1.gql) `
97
97
  ruleMessage
98
98
  ruleSeverity
99
99
  ruleOrigin
100
+ ruleTarget {
101
+ targetKind
102
+ targetRefId
103
+ }
104
+ ruleVariables {
105
+ variableName
106
+ variableQname
107
+ }
100
108
  }
101
109
  factSet {
102
110
  id
@@ -95,6 +95,14 @@ export const GET_REPORT_PACKAGE = gql`
95
95
  ruleMessage
96
96
  ruleSeverity
97
97
  ruleOrigin
98
+ ruleTarget {
99
+ targetKind
100
+ targetRefId
101
+ }
102
+ ruleVariables {
103
+ variableName
104
+ variableQname
105
+ }
98
106
  }
99
107
  factSet {
100
108
  id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robosystems/client",
3
- "version": "0.3.23",
3
+ "version": "0.3.25",
4
4
  "description": "TypeScript client library for RoboSystems Financial Knowledge Graph API",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",