@robosystems/client 0.3.13 → 0.3.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/LedgerClient.d.ts +22 -1
- package/artifacts/LedgerClient.js +40 -0
- package/artifacts/LedgerClient.ts +67 -0
- package/artifacts/graphql/generated/graphql.d.ts +320 -0
- package/artifacts/graphql/generated/graphql.js +569 -1
- package/artifacts/graphql/generated/graphql.ts +882 -0
- package/artifacts/graphql/queries/ledger/informationBlock.js +110 -0
- package/artifacts/graphql/queries/ledger/informationBlock.ts +110 -0
- package/artifacts/graphql/queries/ledger/reportPackage.d.ts +11 -0
- package/artifacts/graphql/queries/ledger/reportPackage.js +151 -0
- package/artifacts/graphql/queries/ledger/reportPackage.ts +149 -0
- package/index.ts +2 -2
- package/package.json +1 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +4 -2
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +17 -1
- package/sdk/sdk.gen.js +36 -2
- package/sdk/sdk.gen.ts +35 -1
- package/sdk/types.gen.d.ts +158 -0
- package/sdk/types.gen.ts +170 -0
- package/sdk.gen.d.ts +17 -1
- package/sdk.gen.js +36 -2
- package/sdk.gen.ts +35 -1
- package/types.gen.d.ts +158 -0
- package/types.gen.ts +170 -0
|
@@ -299,6 +299,7 @@ export type InformationBlock = {
|
|
|
299
299
|
taxonomyId: Maybe<Scalars['String']['output']>
|
|
300
300
|
taxonomyName: Maybe<Scalars['String']['output']>
|
|
301
301
|
verificationResults: Array<InformationBlockVerificationResult>
|
|
302
|
+
view: InformationBlockViewProjections
|
|
302
303
|
}
|
|
303
304
|
|
|
304
305
|
export type InformationBlockClassification = {
|
|
@@ -367,6 +368,31 @@ export type InformationBlockFactSet = {
|
|
|
367
368
|
structureId: Maybe<Scalars['String']['output']>
|
|
368
369
|
}
|
|
369
370
|
|
|
371
|
+
export type InformationBlockRendering = {
|
|
372
|
+
periods: Array<InformationBlockRenderingPeriod>
|
|
373
|
+
rows: Array<InformationBlockRenderingRow>
|
|
374
|
+
unmappedCount: Scalars['Int']['output']
|
|
375
|
+
validation: Maybe<InformationBlockValidation>
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
export type InformationBlockRenderingPeriod = {
|
|
379
|
+
end: Scalars['Date']['output']
|
|
380
|
+
label: Maybe<Scalars['String']['output']>
|
|
381
|
+
start: Scalars['Date']['output']
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
export type InformationBlockRenderingRow = {
|
|
385
|
+
balanceType: Maybe<Scalars['String']['output']>
|
|
386
|
+
/** FASB elementsOfFinancialStatements trait identifier — 'asset', 'liability', 'equity', 'revenue', 'expense'. Surfaced so the viewer can color-code or group rows without a follow-up trait lookup. */
|
|
387
|
+
classification: Maybe<Scalars['String']['output']>
|
|
388
|
+
depth: Scalars['Int']['output']
|
|
389
|
+
elementId: Scalars['String']['output']
|
|
390
|
+
elementName: Scalars['String']['output']
|
|
391
|
+
elementQname: Maybe<Scalars['String']['output']>
|
|
392
|
+
isSubtotal: Scalars['Boolean']['output']
|
|
393
|
+
values: Array<Maybe<Scalars['Float']['output']>>
|
|
394
|
+
}
|
|
395
|
+
|
|
370
396
|
export type InformationBlockRule = {
|
|
371
397
|
id: Scalars['String']['output']
|
|
372
398
|
/** One of 8 cm:VerificationRule subclasses — AutomatedAccountingAndReportingChecks, FundamentalAccountingConceptRelation, PeerConsistencyRule, PriorPeriodConsistencyRule, ReportLevelModelStructureRule, ReportingSystemSpecificRule, ToDoManualTask, XBRLTechnicalSyntaxRule. */
|
|
@@ -397,6 +423,13 @@ export type InformationBlockRuleVariable = {
|
|
|
397
423
|
variableQname: Scalars['String']['output']
|
|
398
424
|
}
|
|
399
425
|
|
|
426
|
+
export type InformationBlockValidation = {
|
|
427
|
+
checks: Array<Scalars['String']['output']>
|
|
428
|
+
failures: Array<Scalars['String']['output']>
|
|
429
|
+
passed: Scalars['Boolean']['output']
|
|
430
|
+
warnings: Array<Scalars['String']['output']>
|
|
431
|
+
}
|
|
432
|
+
|
|
400
433
|
export type InformationBlockVerificationResult = {
|
|
401
434
|
evaluatedAt: Maybe<Scalars['DateTime']['output']>
|
|
402
435
|
factSetId: Maybe<Scalars['String']['output']>
|
|
@@ -410,6 +443,10 @@ export type InformationBlockVerificationResult = {
|
|
|
410
443
|
structureId: Maybe<Scalars['String']['output']>
|
|
411
444
|
}
|
|
412
445
|
|
|
446
|
+
export type InformationBlockViewProjections = {
|
|
447
|
+
rendering: Maybe<InformationBlockRendering>
|
|
448
|
+
}
|
|
449
|
+
|
|
413
450
|
export type InformationModel = {
|
|
414
451
|
/** roll_up | roll_forward | variance | adjustment | set | arithmetic | textblock. Null for block types where the concept arrangement is implicit in their mechanics. */
|
|
415
452
|
conceptArrangement: Maybe<Scalars['String']['output']>
|
|
@@ -854,6 +891,7 @@ export type Query = {
|
|
|
854
891
|
publishList: Maybe<PublishListDetail>
|
|
855
892
|
publishLists: Maybe<PublishListList>
|
|
856
893
|
report: Maybe<Report>
|
|
894
|
+
reportPackage: Maybe<ReportPackage>
|
|
857
895
|
reportingTaxonomy: Maybe<Taxonomy>
|
|
858
896
|
reports: Maybe<ReportList>
|
|
859
897
|
searchLibraryElements: Array<LibraryElement>
|
|
@@ -1049,6 +1087,10 @@ export type QueryReportArgs = {
|
|
|
1049
1087
|
reportId: Scalars['String']['input']
|
|
1050
1088
|
}
|
|
1051
1089
|
|
|
1090
|
+
export type QueryReportPackageArgs = {
|
|
1091
|
+
reportId: Scalars['String']['input']
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1052
1094
|
export type QuerySearchLibraryElementsArgs = {
|
|
1053
1095
|
limit?: Scalars['Int']['input']
|
|
1054
1096
|
query: Scalars['String']['input']
|
|
@@ -1119,6 +1161,9 @@ export type Report = {
|
|
|
1119
1161
|
comparative: Scalars['Boolean']['output']
|
|
1120
1162
|
createdAt: Scalars['DateTime']['output']
|
|
1121
1163
|
entityName: Maybe<Scalars['String']['output']>
|
|
1164
|
+
filedAt: Maybe<Scalars['DateTime']['output']>
|
|
1165
|
+
filedBy: Maybe<Scalars['String']['output']>
|
|
1166
|
+
filingStatus: Scalars['String']['output']
|
|
1122
1167
|
generationStatus: Scalars['String']['output']
|
|
1123
1168
|
id: Scalars['String']['output']
|
|
1124
1169
|
lastGenerated: Maybe<Scalars['DateTime']['output']>
|
|
@@ -1133,6 +1178,8 @@ export type Report = {
|
|
|
1133
1178
|
sourceGraphId: Maybe<Scalars['String']['output']>
|
|
1134
1179
|
sourceReportId: Maybe<Scalars['String']['output']>
|
|
1135
1180
|
structures: Array<StructureSummary>
|
|
1181
|
+
supersededById: Maybe<Scalars['String']['output']>
|
|
1182
|
+
supersedesId: Maybe<Scalars['String']['output']>
|
|
1136
1183
|
taxonomyId: Scalars['String']['output']
|
|
1137
1184
|
}
|
|
1138
1185
|
|
|
@@ -1140,6 +1187,38 @@ export type ReportList = {
|
|
|
1140
1187
|
reports: Array<Report>
|
|
1141
1188
|
}
|
|
1142
1189
|
|
|
1190
|
+
export type ReportPackage = {
|
|
1191
|
+
aiGenerated: Scalars['Boolean']['output']
|
|
1192
|
+
createdAt: Scalars['String']['output']
|
|
1193
|
+
createdBy: Scalars['String']['output']
|
|
1194
|
+
description: Maybe<Scalars['String']['output']>
|
|
1195
|
+
entityName: Maybe<Scalars['String']['output']>
|
|
1196
|
+
filedAt: Maybe<Scalars['String']['output']>
|
|
1197
|
+
filedBy: Maybe<Scalars['String']['output']>
|
|
1198
|
+
filingStatus: Scalars['String']['output']
|
|
1199
|
+
generationStatus: Scalars['String']['output']
|
|
1200
|
+
id: Scalars['ID']['output']
|
|
1201
|
+
items: Array<ReportPackageItem>
|
|
1202
|
+
lastGenerated: Maybe<Scalars['String']['output']>
|
|
1203
|
+
name: Scalars['String']['output']
|
|
1204
|
+
periodEnd: Maybe<Scalars['String']['output']>
|
|
1205
|
+
periodStart: Maybe<Scalars['String']['output']>
|
|
1206
|
+
periodType: Scalars['String']['output']
|
|
1207
|
+
sharedAt: Maybe<Scalars['String']['output']>
|
|
1208
|
+
sourceGraphId: Maybe<Scalars['String']['output']>
|
|
1209
|
+
sourceReportId: Maybe<Scalars['String']['output']>
|
|
1210
|
+
supersededById: Maybe<Scalars['String']['output']>
|
|
1211
|
+
supersedesId: Maybe<Scalars['String']['output']>
|
|
1212
|
+
taxonomyId: Scalars['String']['output']
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
export type ReportPackageItem = {
|
|
1216
|
+
block: InformationBlock
|
|
1217
|
+
displayOrder: Scalars['Int']['output']
|
|
1218
|
+
factSetId: Scalars['String']['output']
|
|
1219
|
+
structureId: Maybe<Scalars['String']['output']>
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1143
1222
|
export type Security = {
|
|
1144
1223
|
authorizedShares: Maybe<Scalars['Int']['output']>
|
|
1145
1224
|
createdAt: Scalars['DateTime']['output']
|
|
@@ -1801,6 +1880,57 @@ export type GetInformationBlockQuery = {
|
|
|
1801
1880
|
factScope: string
|
|
1802
1881
|
factSetId: string | null
|
|
1803
1882
|
}>
|
|
1883
|
+
rules: Array<{
|
|
1884
|
+
id: string
|
|
1885
|
+
ruleCategory: string
|
|
1886
|
+
rulePattern: string
|
|
1887
|
+
ruleExpression: string
|
|
1888
|
+
ruleMessage: string | null
|
|
1889
|
+
ruleSeverity: string
|
|
1890
|
+
ruleOrigin: string
|
|
1891
|
+
}>
|
|
1892
|
+
factSet: {
|
|
1893
|
+
id: string
|
|
1894
|
+
structureId: string | null
|
|
1895
|
+
periodStart: any | null
|
|
1896
|
+
periodEnd: any
|
|
1897
|
+
factsetType: string
|
|
1898
|
+
entityId: string
|
|
1899
|
+
reportId: string | null
|
|
1900
|
+
} | null
|
|
1901
|
+
verificationResults: Array<{
|
|
1902
|
+
id: string
|
|
1903
|
+
ruleId: string
|
|
1904
|
+
structureId: string | null
|
|
1905
|
+
factSetId: string | null
|
|
1906
|
+
status: string
|
|
1907
|
+
message: string | null
|
|
1908
|
+
periodStart: any | null
|
|
1909
|
+
periodEnd: any | null
|
|
1910
|
+
evaluatedAt: any | null
|
|
1911
|
+
}>
|
|
1912
|
+
view: {
|
|
1913
|
+
rendering: {
|
|
1914
|
+
unmappedCount: number
|
|
1915
|
+
rows: Array<{
|
|
1916
|
+
elementId: string
|
|
1917
|
+
elementQname: string | null
|
|
1918
|
+
elementName: string
|
|
1919
|
+
classification: string | null
|
|
1920
|
+
balanceType: string | null
|
|
1921
|
+
values: Array<number | null>
|
|
1922
|
+
isSubtotal: boolean
|
|
1923
|
+
depth: number
|
|
1924
|
+
}>
|
|
1925
|
+
periods: Array<{ start: any; end: any; label: string | null }>
|
|
1926
|
+
validation: {
|
|
1927
|
+
passed: boolean
|
|
1928
|
+
checks: Array<string>
|
|
1929
|
+
failures: Array<string>
|
|
1930
|
+
warnings: Array<string>
|
|
1931
|
+
} | null
|
|
1932
|
+
} | null
|
|
1933
|
+
}
|
|
1804
1934
|
} | null
|
|
1805
1935
|
}
|
|
1806
1936
|
|
|
@@ -1858,6 +1988,57 @@ export type ListInformationBlocksQuery = {
|
|
|
1858
1988
|
factScope: string
|
|
1859
1989
|
factSetId: string | null
|
|
1860
1990
|
}>
|
|
1991
|
+
rules: Array<{
|
|
1992
|
+
id: string
|
|
1993
|
+
ruleCategory: string
|
|
1994
|
+
rulePattern: string
|
|
1995
|
+
ruleExpression: string
|
|
1996
|
+
ruleMessage: string | null
|
|
1997
|
+
ruleSeverity: string
|
|
1998
|
+
ruleOrigin: string
|
|
1999
|
+
}>
|
|
2000
|
+
factSet: {
|
|
2001
|
+
id: string
|
|
2002
|
+
structureId: string | null
|
|
2003
|
+
periodStart: any | null
|
|
2004
|
+
periodEnd: any
|
|
2005
|
+
factsetType: string
|
|
2006
|
+
entityId: string
|
|
2007
|
+
reportId: string | null
|
|
2008
|
+
} | null
|
|
2009
|
+
verificationResults: Array<{
|
|
2010
|
+
id: string
|
|
2011
|
+
ruleId: string
|
|
2012
|
+
structureId: string | null
|
|
2013
|
+
factSetId: string | null
|
|
2014
|
+
status: string
|
|
2015
|
+
message: string | null
|
|
2016
|
+
periodStart: any | null
|
|
2017
|
+
periodEnd: any | null
|
|
2018
|
+
evaluatedAt: any | null
|
|
2019
|
+
}>
|
|
2020
|
+
view: {
|
|
2021
|
+
rendering: {
|
|
2022
|
+
unmappedCount: number
|
|
2023
|
+
rows: Array<{
|
|
2024
|
+
elementId: string
|
|
2025
|
+
elementQname: string | null
|
|
2026
|
+
elementName: string
|
|
2027
|
+
classification: string | null
|
|
2028
|
+
balanceType: string | null
|
|
2029
|
+
values: Array<number | null>
|
|
2030
|
+
isSubtotal: boolean
|
|
2031
|
+
depth: number
|
|
2032
|
+
}>
|
|
2033
|
+
periods: Array<{ start: any; end: any; label: string | null }>
|
|
2034
|
+
validation: {
|
|
2035
|
+
passed: boolean
|
|
2036
|
+
checks: Array<string>
|
|
2037
|
+
failures: Array<string>
|
|
2038
|
+
warnings: Array<string>
|
|
2039
|
+
} | null
|
|
2040
|
+
} | null
|
|
2041
|
+
}
|
|
1861
2042
|
}>
|
|
1862
2043
|
}
|
|
1863
2044
|
|
|
@@ -2077,6 +2258,139 @@ export type GetLedgerReportQuery = {
|
|
|
2077
2258
|
} | null
|
|
2078
2259
|
}
|
|
2079
2260
|
|
|
2261
|
+
export type GetLedgerReportPackageQueryVariables = Exact<{
|
|
2262
|
+
reportId: Scalars['String']['input']
|
|
2263
|
+
}>
|
|
2264
|
+
|
|
2265
|
+
export type GetLedgerReportPackageQuery = {
|
|
2266
|
+
reportPackage: {
|
|
2267
|
+
id: string
|
|
2268
|
+
name: string
|
|
2269
|
+
description: string | null
|
|
2270
|
+
taxonomyId: string
|
|
2271
|
+
periodType: string
|
|
2272
|
+
periodStart: string | null
|
|
2273
|
+
periodEnd: string | null
|
|
2274
|
+
generationStatus: string
|
|
2275
|
+
lastGenerated: string | null
|
|
2276
|
+
filingStatus: string
|
|
2277
|
+
filedAt: string | null
|
|
2278
|
+
filedBy: string | null
|
|
2279
|
+
supersedesId: string | null
|
|
2280
|
+
supersededById: string | null
|
|
2281
|
+
sourceGraphId: string | null
|
|
2282
|
+
sourceReportId: string | null
|
|
2283
|
+
sharedAt: string | null
|
|
2284
|
+
entityName: string | null
|
|
2285
|
+
aiGenerated: boolean
|
|
2286
|
+
createdAt: string
|
|
2287
|
+
createdBy: string
|
|
2288
|
+
items: Array<{
|
|
2289
|
+
factSetId: string
|
|
2290
|
+
structureId: string | null
|
|
2291
|
+
displayOrder: number
|
|
2292
|
+
block: {
|
|
2293
|
+
id: string
|
|
2294
|
+
blockType: string
|
|
2295
|
+
name: string
|
|
2296
|
+
displayName: string
|
|
2297
|
+
category: string
|
|
2298
|
+
taxonomyId: string | null
|
|
2299
|
+
taxonomyName: string | null
|
|
2300
|
+
informationModel: { conceptArrangement: string | null; memberArrangement: string | null }
|
|
2301
|
+
artifact: {
|
|
2302
|
+
topic: string | null
|
|
2303
|
+
parentheticalNote: string | null
|
|
2304
|
+
template: any | null
|
|
2305
|
+
mechanics: any
|
|
2306
|
+
}
|
|
2307
|
+
elements: Array<{
|
|
2308
|
+
id: string
|
|
2309
|
+
qname: string | null
|
|
2310
|
+
name: string
|
|
2311
|
+
code: string | null
|
|
2312
|
+
elementType: string
|
|
2313
|
+
isAbstract: boolean
|
|
2314
|
+
isMonetary: boolean
|
|
2315
|
+
balanceType: string | null
|
|
2316
|
+
periodType: string | null
|
|
2317
|
+
}>
|
|
2318
|
+
connections: Array<{
|
|
2319
|
+
id: string
|
|
2320
|
+
fromElementId: string
|
|
2321
|
+
toElementId: string
|
|
2322
|
+
associationType: string
|
|
2323
|
+
arcrole: string | null
|
|
2324
|
+
orderValue: number | null
|
|
2325
|
+
weight: number | null
|
|
2326
|
+
}>
|
|
2327
|
+
facts: Array<{
|
|
2328
|
+
id: string
|
|
2329
|
+
elementId: string
|
|
2330
|
+
value: number
|
|
2331
|
+
periodStart: any | null
|
|
2332
|
+
periodEnd: any
|
|
2333
|
+
periodType: string
|
|
2334
|
+
unit: string
|
|
2335
|
+
factScope: string
|
|
2336
|
+
factSetId: string | null
|
|
2337
|
+
}>
|
|
2338
|
+
rules: Array<{
|
|
2339
|
+
id: string
|
|
2340
|
+
ruleCategory: string
|
|
2341
|
+
rulePattern: string
|
|
2342
|
+
ruleExpression: string
|
|
2343
|
+
ruleMessage: string | null
|
|
2344
|
+
ruleSeverity: string
|
|
2345
|
+
ruleOrigin: string
|
|
2346
|
+
}>
|
|
2347
|
+
factSet: {
|
|
2348
|
+
id: string
|
|
2349
|
+
structureId: string | null
|
|
2350
|
+
periodStart: any | null
|
|
2351
|
+
periodEnd: any
|
|
2352
|
+
factsetType: string
|
|
2353
|
+
entityId: string
|
|
2354
|
+
reportId: string | null
|
|
2355
|
+
} | null
|
|
2356
|
+
verificationResults: Array<{
|
|
2357
|
+
id: string
|
|
2358
|
+
ruleId: string
|
|
2359
|
+
structureId: string | null
|
|
2360
|
+
factSetId: string | null
|
|
2361
|
+
status: string
|
|
2362
|
+
message: string | null
|
|
2363
|
+
periodStart: any | null
|
|
2364
|
+
periodEnd: any | null
|
|
2365
|
+
evaluatedAt: any | null
|
|
2366
|
+
}>
|
|
2367
|
+
view: {
|
|
2368
|
+
rendering: {
|
|
2369
|
+
unmappedCount: number
|
|
2370
|
+
rows: Array<{
|
|
2371
|
+
elementId: string
|
|
2372
|
+
elementQname: string | null
|
|
2373
|
+
elementName: string
|
|
2374
|
+
classification: string | null
|
|
2375
|
+
balanceType: string | null
|
|
2376
|
+
values: Array<number | null>
|
|
2377
|
+
isSubtotal: boolean
|
|
2378
|
+
depth: number
|
|
2379
|
+
}>
|
|
2380
|
+
periods: Array<{ start: any; end: any; label: string | null }>
|
|
2381
|
+
validation: {
|
|
2382
|
+
passed: boolean
|
|
2383
|
+
checks: Array<string>
|
|
2384
|
+
failures: Array<string>
|
|
2385
|
+
warnings: Array<string>
|
|
2386
|
+
} | null
|
|
2387
|
+
} | null
|
|
2388
|
+
}
|
|
2389
|
+
}
|
|
2390
|
+
}>
|
|
2391
|
+
} | null
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2080
2394
|
export type GetLedgerReportingTaxonomyQueryVariables = Exact<{ [key: string]: never }>
|
|
2081
2395
|
|
|
2082
2396
|
export type GetLedgerReportingTaxonomyQuery = {
|
|
@@ -3871,6 +4185,120 @@ export const GetInformationBlockDocument = {
|
|
|
3871
4185
|
],
|
|
3872
4186
|
},
|
|
3873
4187
|
},
|
|
4188
|
+
{
|
|
4189
|
+
kind: 'Field',
|
|
4190
|
+
name: { kind: 'Name', value: 'rules' },
|
|
4191
|
+
selectionSet: {
|
|
4192
|
+
kind: 'SelectionSet',
|
|
4193
|
+
selections: [
|
|
4194
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
4195
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
|
|
4196
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
|
|
4197
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleExpression' } },
|
|
4198
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
|
|
4199
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
|
|
4200
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
|
|
4201
|
+
],
|
|
4202
|
+
},
|
|
4203
|
+
},
|
|
4204
|
+
{
|
|
4205
|
+
kind: 'Field',
|
|
4206
|
+
name: { kind: 'Name', value: 'factSet' },
|
|
4207
|
+
selectionSet: {
|
|
4208
|
+
kind: 'SelectionSet',
|
|
4209
|
+
selections: [
|
|
4210
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
4211
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
|
|
4212
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
|
|
4213
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
|
|
4214
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
4215
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
4216
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
4217
|
+
],
|
|
4218
|
+
},
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
kind: 'Field',
|
|
4222
|
+
name: { kind: 'Name', value: 'verificationResults' },
|
|
4223
|
+
selectionSet: {
|
|
4224
|
+
kind: 'SelectionSet',
|
|
4225
|
+
selections: [
|
|
4226
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
4227
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleId' } },
|
|
4228
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
|
|
4229
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
|
|
4230
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'status' } },
|
|
4231
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'message' } },
|
|
4232
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
|
|
4233
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
|
|
4234
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'evaluatedAt' } },
|
|
4235
|
+
],
|
|
4236
|
+
},
|
|
4237
|
+
},
|
|
4238
|
+
{
|
|
4239
|
+
kind: 'Field',
|
|
4240
|
+
name: { kind: 'Name', value: 'view' },
|
|
4241
|
+
selectionSet: {
|
|
4242
|
+
kind: 'SelectionSet',
|
|
4243
|
+
selections: [
|
|
4244
|
+
{
|
|
4245
|
+
kind: 'Field',
|
|
4246
|
+
name: { kind: 'Name', value: 'rendering' },
|
|
4247
|
+
selectionSet: {
|
|
4248
|
+
kind: 'SelectionSet',
|
|
4249
|
+
selections: [
|
|
4250
|
+
{
|
|
4251
|
+
kind: 'Field',
|
|
4252
|
+
name: { kind: 'Name', value: 'rows' },
|
|
4253
|
+
selectionSet: {
|
|
4254
|
+
kind: 'SelectionSet',
|
|
4255
|
+
selections: [
|
|
4256
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
|
|
4257
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'elementQname' } },
|
|
4258
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'elementName' } },
|
|
4259
|
+
{
|
|
4260
|
+
kind: 'Field',
|
|
4261
|
+
name: { kind: 'Name', value: 'classification' },
|
|
4262
|
+
},
|
|
4263
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
4264
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'values' } },
|
|
4265
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'isSubtotal' } },
|
|
4266
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
4267
|
+
],
|
|
4268
|
+
},
|
|
4269
|
+
},
|
|
4270
|
+
{
|
|
4271
|
+
kind: 'Field',
|
|
4272
|
+
name: { kind: 'Name', value: 'periods' },
|
|
4273
|
+
selectionSet: {
|
|
4274
|
+
kind: 'SelectionSet',
|
|
4275
|
+
selections: [
|
|
4276
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'start' } },
|
|
4277
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'end' } },
|
|
4278
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
4279
|
+
],
|
|
4280
|
+
},
|
|
4281
|
+
},
|
|
4282
|
+
{
|
|
4283
|
+
kind: 'Field',
|
|
4284
|
+
name: { kind: 'Name', value: 'validation' },
|
|
4285
|
+
selectionSet: {
|
|
4286
|
+
kind: 'SelectionSet',
|
|
4287
|
+
selections: [
|
|
4288
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'passed' } },
|
|
4289
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'checks' } },
|
|
4290
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'failures' } },
|
|
4291
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'warnings' } },
|
|
4292
|
+
],
|
|
4293
|
+
},
|
|
4294
|
+
},
|
|
4295
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'unmappedCount' } },
|
|
4296
|
+
],
|
|
4297
|
+
},
|
|
4298
|
+
},
|
|
4299
|
+
],
|
|
4300
|
+
},
|
|
4301
|
+
},
|
|
3874
4302
|
],
|
|
3875
4303
|
},
|
|
3876
4304
|
},
|
|
@@ -4022,6 +4450,120 @@ export const ListInformationBlocksDocument = {
|
|
|
4022
4450
|
],
|
|
4023
4451
|
},
|
|
4024
4452
|
},
|
|
4453
|
+
{
|
|
4454
|
+
kind: 'Field',
|
|
4455
|
+
name: { kind: 'Name', value: 'rules' },
|
|
4456
|
+
selectionSet: {
|
|
4457
|
+
kind: 'SelectionSet',
|
|
4458
|
+
selections: [
|
|
4459
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
4460
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
|
|
4461
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
|
|
4462
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleExpression' } },
|
|
4463
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
|
|
4464
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
|
|
4465
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
|
|
4466
|
+
],
|
|
4467
|
+
},
|
|
4468
|
+
},
|
|
4469
|
+
{
|
|
4470
|
+
kind: 'Field',
|
|
4471
|
+
name: { kind: 'Name', value: 'factSet' },
|
|
4472
|
+
selectionSet: {
|
|
4473
|
+
kind: 'SelectionSet',
|
|
4474
|
+
selections: [
|
|
4475
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
4476
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
|
|
4477
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
|
|
4478
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
|
|
4479
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
4480
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
4481
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
4482
|
+
],
|
|
4483
|
+
},
|
|
4484
|
+
},
|
|
4485
|
+
{
|
|
4486
|
+
kind: 'Field',
|
|
4487
|
+
name: { kind: 'Name', value: 'verificationResults' },
|
|
4488
|
+
selectionSet: {
|
|
4489
|
+
kind: 'SelectionSet',
|
|
4490
|
+
selections: [
|
|
4491
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
4492
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleId' } },
|
|
4493
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
|
|
4494
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
|
|
4495
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'status' } },
|
|
4496
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'message' } },
|
|
4497
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
|
|
4498
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
|
|
4499
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'evaluatedAt' } },
|
|
4500
|
+
],
|
|
4501
|
+
},
|
|
4502
|
+
},
|
|
4503
|
+
{
|
|
4504
|
+
kind: 'Field',
|
|
4505
|
+
name: { kind: 'Name', value: 'view' },
|
|
4506
|
+
selectionSet: {
|
|
4507
|
+
kind: 'SelectionSet',
|
|
4508
|
+
selections: [
|
|
4509
|
+
{
|
|
4510
|
+
kind: 'Field',
|
|
4511
|
+
name: { kind: 'Name', value: 'rendering' },
|
|
4512
|
+
selectionSet: {
|
|
4513
|
+
kind: 'SelectionSet',
|
|
4514
|
+
selections: [
|
|
4515
|
+
{
|
|
4516
|
+
kind: 'Field',
|
|
4517
|
+
name: { kind: 'Name', value: 'rows' },
|
|
4518
|
+
selectionSet: {
|
|
4519
|
+
kind: 'SelectionSet',
|
|
4520
|
+
selections: [
|
|
4521
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
|
|
4522
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'elementQname' } },
|
|
4523
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'elementName' } },
|
|
4524
|
+
{
|
|
4525
|
+
kind: 'Field',
|
|
4526
|
+
name: { kind: 'Name', value: 'classification' },
|
|
4527
|
+
},
|
|
4528
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
4529
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'values' } },
|
|
4530
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'isSubtotal' } },
|
|
4531
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
4532
|
+
],
|
|
4533
|
+
},
|
|
4534
|
+
},
|
|
4535
|
+
{
|
|
4536
|
+
kind: 'Field',
|
|
4537
|
+
name: { kind: 'Name', value: 'periods' },
|
|
4538
|
+
selectionSet: {
|
|
4539
|
+
kind: 'SelectionSet',
|
|
4540
|
+
selections: [
|
|
4541
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'start' } },
|
|
4542
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'end' } },
|
|
4543
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'label' } },
|
|
4544
|
+
],
|
|
4545
|
+
},
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
kind: 'Field',
|
|
4549
|
+
name: { kind: 'Name', value: 'validation' },
|
|
4550
|
+
selectionSet: {
|
|
4551
|
+
kind: 'SelectionSet',
|
|
4552
|
+
selections: [
|
|
4553
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'passed' } },
|
|
4554
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'checks' } },
|
|
4555
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'failures' } },
|
|
4556
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'warnings' } },
|
|
4557
|
+
],
|
|
4558
|
+
},
|
|
4559
|
+
},
|
|
4560
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'unmappedCount' } },
|
|
4561
|
+
],
|
|
4562
|
+
},
|
|
4563
|
+
},
|
|
4564
|
+
],
|
|
4565
|
+
},
|
|
4566
|
+
},
|
|
4025
4567
|
],
|
|
4026
4568
|
},
|
|
4027
4569
|
},
|
|
@@ -4659,6 +5201,346 @@ export const GetLedgerReportDocument = {
|
|
|
4659
5201
|
},
|
|
4660
5202
|
],
|
|
4661
5203
|
} as unknown as DocumentNode<GetLedgerReportQuery, GetLedgerReportQueryVariables>
|
|
5204
|
+
export const GetLedgerReportPackageDocument = {
|
|
5205
|
+
kind: 'Document',
|
|
5206
|
+
definitions: [
|
|
5207
|
+
{
|
|
5208
|
+
kind: 'OperationDefinition',
|
|
5209
|
+
operation: 'query',
|
|
5210
|
+
name: { kind: 'Name', value: 'GetLedgerReportPackage' },
|
|
5211
|
+
variableDefinitions: [
|
|
5212
|
+
{
|
|
5213
|
+
kind: 'VariableDefinition',
|
|
5214
|
+
variable: { kind: 'Variable', name: { kind: 'Name', value: 'reportId' } },
|
|
5215
|
+
type: {
|
|
5216
|
+
kind: 'NonNullType',
|
|
5217
|
+
type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } },
|
|
5218
|
+
},
|
|
5219
|
+
},
|
|
5220
|
+
],
|
|
5221
|
+
selectionSet: {
|
|
5222
|
+
kind: 'SelectionSet',
|
|
5223
|
+
selections: [
|
|
5224
|
+
{
|
|
5225
|
+
kind: 'Field',
|
|
5226
|
+
name: { kind: 'Name', value: 'reportPackage' },
|
|
5227
|
+
arguments: [
|
|
5228
|
+
{
|
|
5229
|
+
kind: 'Argument',
|
|
5230
|
+
name: { kind: 'Name', value: 'reportId' },
|
|
5231
|
+
value: { kind: 'Variable', name: { kind: 'Name', value: 'reportId' } },
|
|
5232
|
+
},
|
|
5233
|
+
],
|
|
5234
|
+
selectionSet: {
|
|
5235
|
+
kind: 'SelectionSet',
|
|
5236
|
+
selections: [
|
|
5237
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5238
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5239
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
|
5240
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
|
|
5241
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
5242
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
|
|
5243
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
|
|
5244
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'generationStatus' } },
|
|
5245
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'lastGenerated' } },
|
|
5246
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'filingStatus' } },
|
|
5247
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'filedAt' } },
|
|
5248
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'filedBy' } },
|
|
5249
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'supersedesId' } },
|
|
5250
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'supersededById' } },
|
|
5251
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'sourceGraphId' } },
|
|
5252
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'sourceReportId' } },
|
|
5253
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'sharedAt' } },
|
|
5254
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'entityName' } },
|
|
5255
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'aiGenerated' } },
|
|
5256
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'createdAt' } },
|
|
5257
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'createdBy' } },
|
|
5258
|
+
{
|
|
5259
|
+
kind: 'Field',
|
|
5260
|
+
name: { kind: 'Name', value: 'items' },
|
|
5261
|
+
selectionSet: {
|
|
5262
|
+
kind: 'SelectionSet',
|
|
5263
|
+
selections: [
|
|
5264
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
|
|
5265
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
|
|
5266
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'displayOrder' } },
|
|
5267
|
+
{
|
|
5268
|
+
kind: 'Field',
|
|
5269
|
+
name: { kind: 'Name', value: 'block' },
|
|
5270
|
+
selectionSet: {
|
|
5271
|
+
kind: 'SelectionSet',
|
|
5272
|
+
selections: [
|
|
5273
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5274
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'blockType' } },
|
|
5275
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5276
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'displayName' } },
|
|
5277
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'category' } },
|
|
5278
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'taxonomyId' } },
|
|
5279
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'taxonomyName' } },
|
|
5280
|
+
{
|
|
5281
|
+
kind: 'Field',
|
|
5282
|
+
name: { kind: 'Name', value: 'informationModel' },
|
|
5283
|
+
selectionSet: {
|
|
5284
|
+
kind: 'SelectionSet',
|
|
5285
|
+
selections: [
|
|
5286
|
+
{
|
|
5287
|
+
kind: 'Field',
|
|
5288
|
+
name: { kind: 'Name', value: 'conceptArrangement' },
|
|
5289
|
+
},
|
|
5290
|
+
{
|
|
5291
|
+
kind: 'Field',
|
|
5292
|
+
name: { kind: 'Name', value: 'memberArrangement' },
|
|
5293
|
+
},
|
|
5294
|
+
],
|
|
5295
|
+
},
|
|
5296
|
+
},
|
|
5297
|
+
{
|
|
5298
|
+
kind: 'Field',
|
|
5299
|
+
name: { kind: 'Name', value: 'artifact' },
|
|
5300
|
+
selectionSet: {
|
|
5301
|
+
kind: 'SelectionSet',
|
|
5302
|
+
selections: [
|
|
5303
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'topic' } },
|
|
5304
|
+
{
|
|
5305
|
+
kind: 'Field',
|
|
5306
|
+
name: { kind: 'Name', value: 'parentheticalNote' },
|
|
5307
|
+
},
|
|
5308
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'template' } },
|
|
5309
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'mechanics' } },
|
|
5310
|
+
],
|
|
5311
|
+
},
|
|
5312
|
+
},
|
|
5313
|
+
{
|
|
5314
|
+
kind: 'Field',
|
|
5315
|
+
name: { kind: 'Name', value: 'elements' },
|
|
5316
|
+
selectionSet: {
|
|
5317
|
+
kind: 'SelectionSet',
|
|
5318
|
+
selections: [
|
|
5319
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5320
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
5321
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5322
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
5323
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'elementType' } },
|
|
5324
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
|
|
5325
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'isMonetary' } },
|
|
5326
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
5327
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
5328
|
+
],
|
|
5329
|
+
},
|
|
5330
|
+
},
|
|
5331
|
+
{
|
|
5332
|
+
kind: 'Field',
|
|
5333
|
+
name: { kind: 'Name', value: 'connections' },
|
|
5334
|
+
selectionSet: {
|
|
5335
|
+
kind: 'SelectionSet',
|
|
5336
|
+
selections: [
|
|
5337
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5338
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'fromElementId' } },
|
|
5339
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'toElementId' } },
|
|
5340
|
+
{
|
|
5341
|
+
kind: 'Field',
|
|
5342
|
+
name: { kind: 'Name', value: 'associationType' },
|
|
5343
|
+
},
|
|
5344
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'arcrole' } },
|
|
5345
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'orderValue' } },
|
|
5346
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'weight' } },
|
|
5347
|
+
],
|
|
5348
|
+
},
|
|
5349
|
+
},
|
|
5350
|
+
{
|
|
5351
|
+
kind: 'Field',
|
|
5352
|
+
name: { kind: 'Name', value: 'facts' },
|
|
5353
|
+
selectionSet: {
|
|
5354
|
+
kind: 'SelectionSet',
|
|
5355
|
+
selections: [
|
|
5356
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5357
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
|
|
5358
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'value' } },
|
|
5359
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
|
|
5360
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
|
|
5361
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
5362
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'unit' } },
|
|
5363
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factScope' } },
|
|
5364
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
|
|
5365
|
+
],
|
|
5366
|
+
},
|
|
5367
|
+
},
|
|
5368
|
+
{
|
|
5369
|
+
kind: 'Field',
|
|
5370
|
+
name: { kind: 'Name', value: 'rules' },
|
|
5371
|
+
selectionSet: {
|
|
5372
|
+
kind: 'SelectionSet',
|
|
5373
|
+
selections: [
|
|
5374
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5375
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleCategory' } },
|
|
5376
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'rulePattern' } },
|
|
5377
|
+
{
|
|
5378
|
+
kind: 'Field',
|
|
5379
|
+
name: { kind: 'Name', value: 'ruleExpression' },
|
|
5380
|
+
},
|
|
5381
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleMessage' } },
|
|
5382
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleSeverity' } },
|
|
5383
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleOrigin' } },
|
|
5384
|
+
],
|
|
5385
|
+
},
|
|
5386
|
+
},
|
|
5387
|
+
{
|
|
5388
|
+
kind: 'Field',
|
|
5389
|
+
name: { kind: 'Name', value: 'factSet' },
|
|
5390
|
+
selectionSet: {
|
|
5391
|
+
kind: 'SelectionSet',
|
|
5392
|
+
selections: [
|
|
5393
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5394
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
|
|
5395
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
|
|
5396
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
|
|
5397
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factsetType' } },
|
|
5398
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'entityId' } },
|
|
5399
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'reportId' } },
|
|
5400
|
+
],
|
|
5401
|
+
},
|
|
5402
|
+
},
|
|
5403
|
+
{
|
|
5404
|
+
kind: 'Field',
|
|
5405
|
+
name: { kind: 'Name', value: 'verificationResults' },
|
|
5406
|
+
selectionSet: {
|
|
5407
|
+
kind: 'SelectionSet',
|
|
5408
|
+
selections: [
|
|
5409
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5410
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'ruleId' } },
|
|
5411
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'structureId' } },
|
|
5412
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'factSetId' } },
|
|
5413
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'status' } },
|
|
5414
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'message' } },
|
|
5415
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodStart' } },
|
|
5416
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'periodEnd' } },
|
|
5417
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'evaluatedAt' } },
|
|
5418
|
+
],
|
|
5419
|
+
},
|
|
5420
|
+
},
|
|
5421
|
+
{
|
|
5422
|
+
kind: 'Field',
|
|
5423
|
+
name: { kind: 'Name', value: 'view' },
|
|
5424
|
+
selectionSet: {
|
|
5425
|
+
kind: 'SelectionSet',
|
|
5426
|
+
selections: [
|
|
5427
|
+
{
|
|
5428
|
+
kind: 'Field',
|
|
5429
|
+
name: { kind: 'Name', value: 'rendering' },
|
|
5430
|
+
selectionSet: {
|
|
5431
|
+
kind: 'SelectionSet',
|
|
5432
|
+
selections: [
|
|
5433
|
+
{
|
|
5434
|
+
kind: 'Field',
|
|
5435
|
+
name: { kind: 'Name', value: 'rows' },
|
|
5436
|
+
selectionSet: {
|
|
5437
|
+
kind: 'SelectionSet',
|
|
5438
|
+
selections: [
|
|
5439
|
+
{
|
|
5440
|
+
kind: 'Field',
|
|
5441
|
+
name: { kind: 'Name', value: 'elementId' },
|
|
5442
|
+
},
|
|
5443
|
+
{
|
|
5444
|
+
kind: 'Field',
|
|
5445
|
+
name: { kind: 'Name', value: 'elementQname' },
|
|
5446
|
+
},
|
|
5447
|
+
{
|
|
5448
|
+
kind: 'Field',
|
|
5449
|
+
name: { kind: 'Name', value: 'elementName' },
|
|
5450
|
+
},
|
|
5451
|
+
{
|
|
5452
|
+
kind: 'Field',
|
|
5453
|
+
name: { kind: 'Name', value: 'classification' },
|
|
5454
|
+
},
|
|
5455
|
+
{
|
|
5456
|
+
kind: 'Field',
|
|
5457
|
+
name: { kind: 'Name', value: 'balanceType' },
|
|
5458
|
+
},
|
|
5459
|
+
{
|
|
5460
|
+
kind: 'Field',
|
|
5461
|
+
name: { kind: 'Name', value: 'values' },
|
|
5462
|
+
},
|
|
5463
|
+
{
|
|
5464
|
+
kind: 'Field',
|
|
5465
|
+
name: { kind: 'Name', value: 'isSubtotal' },
|
|
5466
|
+
},
|
|
5467
|
+
{
|
|
5468
|
+
kind: 'Field',
|
|
5469
|
+
name: { kind: 'Name', value: 'depth' },
|
|
5470
|
+
},
|
|
5471
|
+
],
|
|
5472
|
+
},
|
|
5473
|
+
},
|
|
5474
|
+
{
|
|
5475
|
+
kind: 'Field',
|
|
5476
|
+
name: { kind: 'Name', value: 'periods' },
|
|
5477
|
+
selectionSet: {
|
|
5478
|
+
kind: 'SelectionSet',
|
|
5479
|
+
selections: [
|
|
5480
|
+
{
|
|
5481
|
+
kind: 'Field',
|
|
5482
|
+
name: { kind: 'Name', value: 'start' },
|
|
5483
|
+
},
|
|
5484
|
+
{
|
|
5485
|
+
kind: 'Field',
|
|
5486
|
+
name: { kind: 'Name', value: 'end' },
|
|
5487
|
+
},
|
|
5488
|
+
{
|
|
5489
|
+
kind: 'Field',
|
|
5490
|
+
name: { kind: 'Name', value: 'label' },
|
|
5491
|
+
},
|
|
5492
|
+
],
|
|
5493
|
+
},
|
|
5494
|
+
},
|
|
5495
|
+
{
|
|
5496
|
+
kind: 'Field',
|
|
5497
|
+
name: { kind: 'Name', value: 'validation' },
|
|
5498
|
+
selectionSet: {
|
|
5499
|
+
kind: 'SelectionSet',
|
|
5500
|
+
selections: [
|
|
5501
|
+
{
|
|
5502
|
+
kind: 'Field',
|
|
5503
|
+
name: { kind: 'Name', value: 'passed' },
|
|
5504
|
+
},
|
|
5505
|
+
{
|
|
5506
|
+
kind: 'Field',
|
|
5507
|
+
name: { kind: 'Name', value: 'checks' },
|
|
5508
|
+
},
|
|
5509
|
+
{
|
|
5510
|
+
kind: 'Field',
|
|
5511
|
+
name: { kind: 'Name', value: 'failures' },
|
|
5512
|
+
},
|
|
5513
|
+
{
|
|
5514
|
+
kind: 'Field',
|
|
5515
|
+
name: { kind: 'Name', value: 'warnings' },
|
|
5516
|
+
},
|
|
5517
|
+
],
|
|
5518
|
+
},
|
|
5519
|
+
},
|
|
5520
|
+
{
|
|
5521
|
+
kind: 'Field',
|
|
5522
|
+
name: { kind: 'Name', value: 'unmappedCount' },
|
|
5523
|
+
},
|
|
5524
|
+
],
|
|
5525
|
+
},
|
|
5526
|
+
},
|
|
5527
|
+
],
|
|
5528
|
+
},
|
|
5529
|
+
},
|
|
5530
|
+
],
|
|
5531
|
+
},
|
|
5532
|
+
},
|
|
5533
|
+
],
|
|
5534
|
+
},
|
|
5535
|
+
},
|
|
5536
|
+
],
|
|
5537
|
+
},
|
|
5538
|
+
},
|
|
5539
|
+
],
|
|
5540
|
+
},
|
|
5541
|
+
},
|
|
5542
|
+
],
|
|
5543
|
+
} as unknown as DocumentNode<GetLedgerReportPackageQuery, GetLedgerReportPackageQueryVariables>
|
|
4662
5544
|
export const GetLedgerReportingTaxonomyDocument = {
|
|
4663
5545
|
kind: 'Document',
|
|
4664
5546
|
definitions: [
|