@robosystems/client 0.3.13 → 0.3.15
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/InvestorClient.d.ts +35 -20
- package/artifacts/InvestorClient.js +78 -71
- package/artifacts/InvestorClient.ts +164 -141
- 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 +401 -6
- package/artifacts/graphql/generated/graphql.js +633 -4
- package/artifacts/graphql/generated/graphql.ts +1058 -41
- package/artifacts/graphql/queries/investor/portfolio_block.d.ts +10 -0
- package/artifacts/graphql/queries/investor/portfolio_block.js +60 -0
- package/artifacts/graphql/queries/investor/portfolio_block.ts +58 -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 +8 -9
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +26 -34
- package/sdk/sdk.gen.js +51 -68
- package/sdk/sdk.gen.ts +47 -64
- package/sdk/types.gen.d.ts +409 -365
- package/sdk/types.gen.ts +411 -367
- package/sdk.gen.d.ts +26 -34
- package/sdk.gen.js +51 -68
- package/sdk.gen.ts +47 -64
- package/types.gen.d.ts +409 -365
- package/types.gen.ts +411 -367
- package/artifacts/graphql/queries/investor/portfolio.d.ts +0 -4
- package/artifacts/graphql/queries/investor/portfolio.js +0 -21
- package/artifacts/graphql/queries/investor/portfolio.ts +0 -19
|
@@ -229,6 +229,11 @@ export type ElementList = {
|
|
|
229
229
|
elements: Array<Element>;
|
|
230
230
|
pagination: PaginationInfo;
|
|
231
231
|
};
|
|
232
|
+
export type EntityLite = {
|
|
233
|
+
id: Scalars['String']['output'];
|
|
234
|
+
name: Scalars['String']['output'];
|
|
235
|
+
sourceGraphId: Maybe<Scalars['String']['output']>;
|
|
236
|
+
};
|
|
232
237
|
export type FactRow = {
|
|
233
238
|
depth: Scalars['Int']['output'];
|
|
234
239
|
elementId: Scalars['String']['output'];
|
|
@@ -309,6 +314,7 @@ export type InformationBlock = {
|
|
|
309
314
|
taxonomyId: Maybe<Scalars['String']['output']>;
|
|
310
315
|
taxonomyName: Maybe<Scalars['String']['output']>;
|
|
311
316
|
verificationResults: Array<InformationBlockVerificationResult>;
|
|
317
|
+
view: InformationBlockViewProjections;
|
|
312
318
|
};
|
|
313
319
|
export type InformationBlockClassification = {
|
|
314
320
|
/** One of the 3 association-level categories in the `public.classifications` CHECK constraint: 'concept_arrangement', 'member_arrangement', or 'named_disclosure'. */
|
|
@@ -371,6 +377,28 @@ export type InformationBlockFactSet = {
|
|
|
371
377
|
reportId: Maybe<Scalars['String']['output']>;
|
|
372
378
|
structureId: Maybe<Scalars['String']['output']>;
|
|
373
379
|
};
|
|
380
|
+
export type InformationBlockRendering = {
|
|
381
|
+
periods: Array<InformationBlockRenderingPeriod>;
|
|
382
|
+
rows: Array<InformationBlockRenderingRow>;
|
|
383
|
+
unmappedCount: Scalars['Int']['output'];
|
|
384
|
+
validation: Maybe<InformationBlockValidation>;
|
|
385
|
+
};
|
|
386
|
+
export type InformationBlockRenderingPeriod = {
|
|
387
|
+
end: Scalars['Date']['output'];
|
|
388
|
+
label: Maybe<Scalars['String']['output']>;
|
|
389
|
+
start: Scalars['Date']['output'];
|
|
390
|
+
};
|
|
391
|
+
export type InformationBlockRenderingRow = {
|
|
392
|
+
balanceType: Maybe<Scalars['String']['output']>;
|
|
393
|
+
/** 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. */
|
|
394
|
+
classification: Maybe<Scalars['String']['output']>;
|
|
395
|
+
depth: Scalars['Int']['output'];
|
|
396
|
+
elementId: Scalars['String']['output'];
|
|
397
|
+
elementName: Scalars['String']['output'];
|
|
398
|
+
elementQname: Maybe<Scalars['String']['output']>;
|
|
399
|
+
isSubtotal: Scalars['Boolean']['output'];
|
|
400
|
+
values: Array<Maybe<Scalars['Float']['output']>>;
|
|
401
|
+
};
|
|
374
402
|
export type InformationBlockRule = {
|
|
375
403
|
id: Scalars['String']['output'];
|
|
376
404
|
/** One of 8 cm:VerificationRule subclasses — AutomatedAccountingAndReportingChecks, FundamentalAccountingConceptRelation, PeerConsistencyRule, PriorPeriodConsistencyRule, ReportLevelModelStructureRule, ReportingSystemSpecificRule, ToDoManualTask, XBRLTechnicalSyntaxRule. */
|
|
@@ -398,6 +426,12 @@ export type InformationBlockRuleVariable = {
|
|
|
398
426
|
/** Concept qname the variable resolves to, e.g. 'fac:Assets'. */
|
|
399
427
|
variableQname: Scalars['String']['output'];
|
|
400
428
|
};
|
|
429
|
+
export type InformationBlockValidation = {
|
|
430
|
+
checks: Array<Scalars['String']['output']>;
|
|
431
|
+
failures: Array<Scalars['String']['output']>;
|
|
432
|
+
passed: Scalars['Boolean']['output'];
|
|
433
|
+
warnings: Array<Scalars['String']['output']>;
|
|
434
|
+
};
|
|
401
435
|
export type InformationBlockVerificationResult = {
|
|
402
436
|
evaluatedAt: Maybe<Scalars['DateTime']['output']>;
|
|
403
437
|
factSetId: Maybe<Scalars['String']['output']>;
|
|
@@ -410,6 +444,9 @@ export type InformationBlockVerificationResult = {
|
|
|
410
444
|
status: Scalars['String']['output'];
|
|
411
445
|
structureId: Maybe<Scalars['String']['output']>;
|
|
412
446
|
};
|
|
447
|
+
export type InformationBlockViewProjections = {
|
|
448
|
+
rendering: Maybe<InformationBlockRendering>;
|
|
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']>;
|
|
@@ -718,6 +755,21 @@ export type Portfolio = {
|
|
|
718
755
|
strategy: Maybe<Scalars['String']['output']>;
|
|
719
756
|
updatedAt: Scalars['DateTime']['output'];
|
|
720
757
|
};
|
|
758
|
+
export type PortfolioBlock = {
|
|
759
|
+
activePositionCount: Scalars['Int']['output'];
|
|
760
|
+
baseCurrency: Scalars['String']['output'];
|
|
761
|
+
createdAt: Scalars['DateTime']['output'];
|
|
762
|
+
description: Maybe<Scalars['String']['output']>;
|
|
763
|
+
id: Scalars['String']['output'];
|
|
764
|
+
inceptionDate: Maybe<Scalars['Date']['output']>;
|
|
765
|
+
name: Scalars['String']['output'];
|
|
766
|
+
owner: Maybe<EntityLite>;
|
|
767
|
+
positions: Array<PositionBlock>;
|
|
768
|
+
strategy: Maybe<Scalars['String']['output']>;
|
|
769
|
+
totalCostBasisDollars: Scalars['Float']['output'];
|
|
770
|
+
totalCurrentValueDollars: Maybe<Scalars['Float']['output']>;
|
|
771
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
772
|
+
};
|
|
721
773
|
export type PortfolioList = {
|
|
722
774
|
pagination: PaginationInfo;
|
|
723
775
|
portfolios: Array<Portfolio>;
|
|
@@ -744,6 +796,19 @@ export type Position = {
|
|
|
744
796
|
valuationDate: Maybe<Scalars['Date']['output']>;
|
|
745
797
|
valuationSource: Maybe<Scalars['String']['output']>;
|
|
746
798
|
};
|
|
799
|
+
export type PositionBlock = {
|
|
800
|
+
acquisitionDate: Maybe<Scalars['Date']['output']>;
|
|
801
|
+
costBasisDollars: Scalars['Float']['output'];
|
|
802
|
+
currentValueDollars: Maybe<Scalars['Float']['output']>;
|
|
803
|
+
id: Scalars['String']['output'];
|
|
804
|
+
notes: Maybe<Scalars['String']['output']>;
|
|
805
|
+
quantity: Scalars['Float']['output'];
|
|
806
|
+
quantityType: Scalars['String']['output'];
|
|
807
|
+
security: SecurityLite;
|
|
808
|
+
status: Scalars['String']['output'];
|
|
809
|
+
valuationDate: Maybe<Scalars['Date']['output']>;
|
|
810
|
+
valuationSource: Maybe<Scalars['String']['output']>;
|
|
811
|
+
};
|
|
747
812
|
export type PositionList = {
|
|
748
813
|
pagination: PaginationInfo;
|
|
749
814
|
positions: Array<Position>;
|
|
@@ -812,13 +877,14 @@ export type Query = {
|
|
|
812
877
|
mappings: Maybe<StructureList>;
|
|
813
878
|
periodCloseStatus: Maybe<PeriodCloseStatus>;
|
|
814
879
|
periodDrafts: Maybe<PeriodDrafts>;
|
|
815
|
-
|
|
880
|
+
portfolioBlock: Maybe<PortfolioBlock>;
|
|
816
881
|
portfolios: Maybe<PortfolioList>;
|
|
817
882
|
position: Maybe<Position>;
|
|
818
883
|
positions: Maybe<PositionList>;
|
|
819
884
|
publishList: Maybe<PublishListDetail>;
|
|
820
885
|
publishLists: Maybe<PublishListList>;
|
|
821
886
|
report: Maybe<Report>;
|
|
887
|
+
reportPackage: Maybe<ReportPackage>;
|
|
822
888
|
reportingTaxonomy: Maybe<Taxonomy>;
|
|
823
889
|
reports: Maybe<ReportList>;
|
|
824
890
|
searchLibraryElements: Array<LibraryElement>;
|
|
@@ -953,7 +1019,7 @@ export type QueryPeriodCloseStatusArgs = {
|
|
|
953
1019
|
export type QueryPeriodDraftsArgs = {
|
|
954
1020
|
period: Scalars['String']['input'];
|
|
955
1021
|
};
|
|
956
|
-
export type
|
|
1022
|
+
export type QueryPortfolioBlockArgs = {
|
|
957
1023
|
portfolioId: Scalars['String']['input'];
|
|
958
1024
|
};
|
|
959
1025
|
export type QueryPortfoliosArgs = {
|
|
@@ -980,6 +1046,9 @@ export type QueryPublishListsArgs = {
|
|
|
980
1046
|
export type QueryReportArgs = {
|
|
981
1047
|
reportId: Scalars['String']['input'];
|
|
982
1048
|
};
|
|
1049
|
+
export type QueryReportPackageArgs = {
|
|
1050
|
+
reportId: Scalars['String']['input'];
|
|
1051
|
+
};
|
|
983
1052
|
export type QuerySearchLibraryElementsArgs = {
|
|
984
1053
|
limit?: Scalars['Int']['input'];
|
|
985
1054
|
query: Scalars['String']['input'];
|
|
@@ -1038,6 +1107,9 @@ export type Report = {
|
|
|
1038
1107
|
comparative: Scalars['Boolean']['output'];
|
|
1039
1108
|
createdAt: Scalars['DateTime']['output'];
|
|
1040
1109
|
entityName: Maybe<Scalars['String']['output']>;
|
|
1110
|
+
filedAt: Maybe<Scalars['DateTime']['output']>;
|
|
1111
|
+
filedBy: Maybe<Scalars['String']['output']>;
|
|
1112
|
+
filingStatus: Scalars['String']['output'];
|
|
1041
1113
|
generationStatus: Scalars['String']['output'];
|
|
1042
1114
|
id: Scalars['String']['output'];
|
|
1043
1115
|
lastGenerated: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -1052,11 +1124,43 @@ export type Report = {
|
|
|
1052
1124
|
sourceGraphId: Maybe<Scalars['String']['output']>;
|
|
1053
1125
|
sourceReportId: Maybe<Scalars['String']['output']>;
|
|
1054
1126
|
structures: Array<StructureSummary>;
|
|
1127
|
+
supersededById: Maybe<Scalars['String']['output']>;
|
|
1128
|
+
supersedesId: Maybe<Scalars['String']['output']>;
|
|
1055
1129
|
taxonomyId: Scalars['String']['output'];
|
|
1056
1130
|
};
|
|
1057
1131
|
export type ReportList = {
|
|
1058
1132
|
reports: Array<Report>;
|
|
1059
1133
|
};
|
|
1134
|
+
export type ReportPackage = {
|
|
1135
|
+
aiGenerated: Scalars['Boolean']['output'];
|
|
1136
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1137
|
+
createdBy: Scalars['String']['output'];
|
|
1138
|
+
description: Maybe<Scalars['String']['output']>;
|
|
1139
|
+
entityName: Maybe<Scalars['String']['output']>;
|
|
1140
|
+
filedAt: Maybe<Scalars['DateTime']['output']>;
|
|
1141
|
+
filedBy: Maybe<Scalars['String']['output']>;
|
|
1142
|
+
filingStatus: Scalars['String']['output'];
|
|
1143
|
+
generationStatus: Scalars['String']['output'];
|
|
1144
|
+
id: Scalars['ID']['output'];
|
|
1145
|
+
items: Array<ReportPackageItem>;
|
|
1146
|
+
lastGenerated: Maybe<Scalars['DateTime']['output']>;
|
|
1147
|
+
name: Scalars['String']['output'];
|
|
1148
|
+
periodEnd: Maybe<Scalars['Date']['output']>;
|
|
1149
|
+
periodStart: Maybe<Scalars['Date']['output']>;
|
|
1150
|
+
periodType: Scalars['String']['output'];
|
|
1151
|
+
sharedAt: Maybe<Scalars['DateTime']['output']>;
|
|
1152
|
+
sourceGraphId: Maybe<Scalars['String']['output']>;
|
|
1153
|
+
sourceReportId: Maybe<Scalars['String']['output']>;
|
|
1154
|
+
supersededById: Maybe<Scalars['String']['output']>;
|
|
1155
|
+
supersedesId: Maybe<Scalars['String']['output']>;
|
|
1156
|
+
taxonomyId: Scalars['String']['output'];
|
|
1157
|
+
};
|
|
1158
|
+
export type ReportPackageItem = {
|
|
1159
|
+
block: InformationBlock;
|
|
1160
|
+
displayOrder: Scalars['Int']['output'];
|
|
1161
|
+
factSetId: Scalars['String']['output'];
|
|
1162
|
+
structureId: Maybe<Scalars['String']['output']>;
|
|
1163
|
+
};
|
|
1060
1164
|
export type Security = {
|
|
1061
1165
|
authorizedShares: Maybe<Scalars['Int']['output']>;
|
|
1062
1166
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -1076,6 +1180,15 @@ export type SecurityList = {
|
|
|
1076
1180
|
pagination: PaginationInfo;
|
|
1077
1181
|
securities: Array<Security>;
|
|
1078
1182
|
};
|
|
1183
|
+
export type SecurityLite = {
|
|
1184
|
+
id: Scalars['String']['output'];
|
|
1185
|
+
isActive: Scalars['Boolean']['output'];
|
|
1186
|
+
issuer: Maybe<EntityLite>;
|
|
1187
|
+
name: Scalars['String']['output'];
|
|
1188
|
+
securitySubtype: Maybe<Scalars['String']['output']>;
|
|
1189
|
+
securityType: Scalars['String']['output'];
|
|
1190
|
+
sourceGraphId: Maybe<Scalars['String']['output']>;
|
|
1191
|
+
};
|
|
1079
1192
|
export type Statement = {
|
|
1080
1193
|
periods: Array<PeriodSpec>;
|
|
1081
1194
|
reportId: Scalars['String']['output'];
|
|
@@ -1243,19 +1356,52 @@ export type GetInvestorHoldingsQuery = {
|
|
|
1243
1356
|
}>;
|
|
1244
1357
|
} | null;
|
|
1245
1358
|
};
|
|
1246
|
-
export type
|
|
1359
|
+
export type GetInvestorPortfolioBlockQueryVariables = Exact<{
|
|
1247
1360
|
portfolioId: Scalars['String']['input'];
|
|
1248
1361
|
}>;
|
|
1249
|
-
export type
|
|
1250
|
-
|
|
1362
|
+
export type GetInvestorPortfolioBlockQuery = {
|
|
1363
|
+
portfolioBlock: {
|
|
1251
1364
|
id: string;
|
|
1252
1365
|
name: string;
|
|
1253
1366
|
description: string | null;
|
|
1254
1367
|
strategy: string | null;
|
|
1255
1368
|
inceptionDate: any | null;
|
|
1256
1369
|
baseCurrency: string;
|
|
1370
|
+
totalCostBasisDollars: number;
|
|
1371
|
+
totalCurrentValueDollars: number | null;
|
|
1372
|
+
activePositionCount: number;
|
|
1257
1373
|
createdAt: any;
|
|
1258
1374
|
updatedAt: any;
|
|
1375
|
+
owner: {
|
|
1376
|
+
id: string;
|
|
1377
|
+
name: string;
|
|
1378
|
+
sourceGraphId: string | null;
|
|
1379
|
+
} | null;
|
|
1380
|
+
positions: Array<{
|
|
1381
|
+
id: string;
|
|
1382
|
+
quantity: number;
|
|
1383
|
+
quantityType: string;
|
|
1384
|
+
costBasisDollars: number;
|
|
1385
|
+
currentValueDollars: number | null;
|
|
1386
|
+
valuationDate: any | null;
|
|
1387
|
+
valuationSource: string | null;
|
|
1388
|
+
acquisitionDate: any | null;
|
|
1389
|
+
status: string;
|
|
1390
|
+
notes: string | null;
|
|
1391
|
+
security: {
|
|
1392
|
+
id: string;
|
|
1393
|
+
name: string;
|
|
1394
|
+
securityType: string;
|
|
1395
|
+
securitySubtype: string | null;
|
|
1396
|
+
isActive: boolean;
|
|
1397
|
+
sourceGraphId: string | null;
|
|
1398
|
+
issuer: {
|
|
1399
|
+
id: string;
|
|
1400
|
+
name: string;
|
|
1401
|
+
sourceGraphId: string | null;
|
|
1402
|
+
} | null;
|
|
1403
|
+
};
|
|
1404
|
+
}>;
|
|
1259
1405
|
} | null;
|
|
1260
1406
|
};
|
|
1261
1407
|
export type ListInvestorPortfoliosQueryVariables = Exact<{
|
|
@@ -1705,6 +1851,61 @@ export type GetInformationBlockQuery = {
|
|
|
1705
1851
|
factScope: string;
|
|
1706
1852
|
factSetId: string | null;
|
|
1707
1853
|
}>;
|
|
1854
|
+
rules: Array<{
|
|
1855
|
+
id: string;
|
|
1856
|
+
ruleCategory: string;
|
|
1857
|
+
rulePattern: string;
|
|
1858
|
+
ruleExpression: string;
|
|
1859
|
+
ruleMessage: string | null;
|
|
1860
|
+
ruleSeverity: string;
|
|
1861
|
+
ruleOrigin: string;
|
|
1862
|
+
}>;
|
|
1863
|
+
factSet: {
|
|
1864
|
+
id: string;
|
|
1865
|
+
structureId: string | null;
|
|
1866
|
+
periodStart: any | null;
|
|
1867
|
+
periodEnd: any;
|
|
1868
|
+
factsetType: string;
|
|
1869
|
+
entityId: string;
|
|
1870
|
+
reportId: string | null;
|
|
1871
|
+
} | null;
|
|
1872
|
+
verificationResults: Array<{
|
|
1873
|
+
id: string;
|
|
1874
|
+
ruleId: string;
|
|
1875
|
+
structureId: string | null;
|
|
1876
|
+
factSetId: string | null;
|
|
1877
|
+
status: string;
|
|
1878
|
+
message: string | null;
|
|
1879
|
+
periodStart: any | null;
|
|
1880
|
+
periodEnd: any | null;
|
|
1881
|
+
evaluatedAt: any | null;
|
|
1882
|
+
}>;
|
|
1883
|
+
view: {
|
|
1884
|
+
rendering: {
|
|
1885
|
+
unmappedCount: number;
|
|
1886
|
+
rows: Array<{
|
|
1887
|
+
elementId: string;
|
|
1888
|
+
elementQname: string | null;
|
|
1889
|
+
elementName: string;
|
|
1890
|
+
classification: string | null;
|
|
1891
|
+
balanceType: string | null;
|
|
1892
|
+
values: Array<number | null>;
|
|
1893
|
+
isSubtotal: boolean;
|
|
1894
|
+
depth: number;
|
|
1895
|
+
}>;
|
|
1896
|
+
periods: Array<{
|
|
1897
|
+
start: any;
|
|
1898
|
+
end: any;
|
|
1899
|
+
label: string | null;
|
|
1900
|
+
}>;
|
|
1901
|
+
validation: {
|
|
1902
|
+
passed: boolean;
|
|
1903
|
+
checks: Array<string>;
|
|
1904
|
+
failures: Array<string>;
|
|
1905
|
+
warnings: Array<string>;
|
|
1906
|
+
} | null;
|
|
1907
|
+
} | null;
|
|
1908
|
+
};
|
|
1708
1909
|
} | null;
|
|
1709
1910
|
};
|
|
1710
1911
|
export type ListInformationBlocksQueryVariables = Exact<{
|
|
@@ -1763,6 +1964,61 @@ export type ListInformationBlocksQuery = {
|
|
|
1763
1964
|
factScope: string;
|
|
1764
1965
|
factSetId: string | null;
|
|
1765
1966
|
}>;
|
|
1967
|
+
rules: Array<{
|
|
1968
|
+
id: string;
|
|
1969
|
+
ruleCategory: string;
|
|
1970
|
+
rulePattern: string;
|
|
1971
|
+
ruleExpression: string;
|
|
1972
|
+
ruleMessage: string | null;
|
|
1973
|
+
ruleSeverity: string;
|
|
1974
|
+
ruleOrigin: string;
|
|
1975
|
+
}>;
|
|
1976
|
+
factSet: {
|
|
1977
|
+
id: string;
|
|
1978
|
+
structureId: string | null;
|
|
1979
|
+
periodStart: any | null;
|
|
1980
|
+
periodEnd: any;
|
|
1981
|
+
factsetType: string;
|
|
1982
|
+
entityId: string;
|
|
1983
|
+
reportId: string | null;
|
|
1984
|
+
} | null;
|
|
1985
|
+
verificationResults: Array<{
|
|
1986
|
+
id: string;
|
|
1987
|
+
ruleId: string;
|
|
1988
|
+
structureId: string | null;
|
|
1989
|
+
factSetId: string | null;
|
|
1990
|
+
status: string;
|
|
1991
|
+
message: string | null;
|
|
1992
|
+
periodStart: any | null;
|
|
1993
|
+
periodEnd: any | null;
|
|
1994
|
+
evaluatedAt: any | null;
|
|
1995
|
+
}>;
|
|
1996
|
+
view: {
|
|
1997
|
+
rendering: {
|
|
1998
|
+
unmappedCount: number;
|
|
1999
|
+
rows: Array<{
|
|
2000
|
+
elementId: string;
|
|
2001
|
+
elementQname: string | null;
|
|
2002
|
+
elementName: string;
|
|
2003
|
+
classification: string | null;
|
|
2004
|
+
balanceType: string | null;
|
|
2005
|
+
values: Array<number | null>;
|
|
2006
|
+
isSubtotal: boolean;
|
|
2007
|
+
depth: number;
|
|
2008
|
+
}>;
|
|
2009
|
+
periods: Array<{
|
|
2010
|
+
start: any;
|
|
2011
|
+
end: any;
|
|
2012
|
+
label: string | null;
|
|
2013
|
+
}>;
|
|
2014
|
+
validation: {
|
|
2015
|
+
passed: boolean;
|
|
2016
|
+
checks: Array<string>;
|
|
2017
|
+
failures: Array<string>;
|
|
2018
|
+
warnings: Array<string>;
|
|
2019
|
+
} | null;
|
|
2020
|
+
} | null;
|
|
2021
|
+
};
|
|
1766
2022
|
}>;
|
|
1767
2023
|
};
|
|
1768
2024
|
export type GetLedgerMappedTrialBalanceQueryVariables = Exact<{
|
|
@@ -1978,6 +2234,144 @@ export type GetLedgerReportQuery = {
|
|
|
1978
2234
|
}>;
|
|
1979
2235
|
} | null;
|
|
1980
2236
|
};
|
|
2237
|
+
export type GetLedgerReportPackageQueryVariables = Exact<{
|
|
2238
|
+
reportId: Scalars['String']['input'];
|
|
2239
|
+
}>;
|
|
2240
|
+
export type GetLedgerReportPackageQuery = {
|
|
2241
|
+
reportPackage: {
|
|
2242
|
+
id: string;
|
|
2243
|
+
name: string;
|
|
2244
|
+
description: string | null;
|
|
2245
|
+
taxonomyId: string;
|
|
2246
|
+
periodType: string;
|
|
2247
|
+
periodStart: any | null;
|
|
2248
|
+
periodEnd: any | null;
|
|
2249
|
+
generationStatus: string;
|
|
2250
|
+
lastGenerated: any | null;
|
|
2251
|
+
filingStatus: string;
|
|
2252
|
+
filedAt: any | null;
|
|
2253
|
+
filedBy: string | null;
|
|
2254
|
+
supersedesId: string | null;
|
|
2255
|
+
supersededById: string | null;
|
|
2256
|
+
sourceGraphId: string | null;
|
|
2257
|
+
sourceReportId: string | null;
|
|
2258
|
+
sharedAt: any | null;
|
|
2259
|
+
entityName: string | null;
|
|
2260
|
+
aiGenerated: boolean;
|
|
2261
|
+
createdAt: any;
|
|
2262
|
+
createdBy: string;
|
|
2263
|
+
items: Array<{
|
|
2264
|
+
factSetId: string;
|
|
2265
|
+
structureId: string | null;
|
|
2266
|
+
displayOrder: number;
|
|
2267
|
+
block: {
|
|
2268
|
+
id: string;
|
|
2269
|
+
blockType: string;
|
|
2270
|
+
name: string;
|
|
2271
|
+
displayName: string;
|
|
2272
|
+
category: string;
|
|
2273
|
+
taxonomyId: string | null;
|
|
2274
|
+
taxonomyName: string | null;
|
|
2275
|
+
informationModel: {
|
|
2276
|
+
conceptArrangement: string | null;
|
|
2277
|
+
memberArrangement: string | null;
|
|
2278
|
+
};
|
|
2279
|
+
artifact: {
|
|
2280
|
+
topic: string | null;
|
|
2281
|
+
parentheticalNote: string | null;
|
|
2282
|
+
template: any | null;
|
|
2283
|
+
mechanics: any;
|
|
2284
|
+
};
|
|
2285
|
+
elements: Array<{
|
|
2286
|
+
id: string;
|
|
2287
|
+
qname: string | null;
|
|
2288
|
+
name: string;
|
|
2289
|
+
code: string | null;
|
|
2290
|
+
elementType: string;
|
|
2291
|
+
isAbstract: boolean;
|
|
2292
|
+
isMonetary: boolean;
|
|
2293
|
+
balanceType: string | null;
|
|
2294
|
+
periodType: string | null;
|
|
2295
|
+
}>;
|
|
2296
|
+
connections: Array<{
|
|
2297
|
+
id: string;
|
|
2298
|
+
fromElementId: string;
|
|
2299
|
+
toElementId: string;
|
|
2300
|
+
associationType: string;
|
|
2301
|
+
arcrole: string | null;
|
|
2302
|
+
orderValue: number | null;
|
|
2303
|
+
weight: number | null;
|
|
2304
|
+
}>;
|
|
2305
|
+
facts: Array<{
|
|
2306
|
+
id: string;
|
|
2307
|
+
elementId: string;
|
|
2308
|
+
value: number;
|
|
2309
|
+
periodStart: any | null;
|
|
2310
|
+
periodEnd: any;
|
|
2311
|
+
periodType: string;
|
|
2312
|
+
unit: string;
|
|
2313
|
+
factScope: string;
|
|
2314
|
+
factSetId: string | null;
|
|
2315
|
+
}>;
|
|
2316
|
+
rules: Array<{
|
|
2317
|
+
id: string;
|
|
2318
|
+
ruleCategory: string;
|
|
2319
|
+
rulePattern: string;
|
|
2320
|
+
ruleExpression: string;
|
|
2321
|
+
ruleMessage: string | null;
|
|
2322
|
+
ruleSeverity: string;
|
|
2323
|
+
ruleOrigin: string;
|
|
2324
|
+
}>;
|
|
2325
|
+
factSet: {
|
|
2326
|
+
id: string;
|
|
2327
|
+
structureId: string | null;
|
|
2328
|
+
periodStart: any | null;
|
|
2329
|
+
periodEnd: any;
|
|
2330
|
+
factsetType: string;
|
|
2331
|
+
entityId: string;
|
|
2332
|
+
reportId: string | null;
|
|
2333
|
+
} | null;
|
|
2334
|
+
verificationResults: Array<{
|
|
2335
|
+
id: string;
|
|
2336
|
+
ruleId: string;
|
|
2337
|
+
structureId: string | null;
|
|
2338
|
+
factSetId: string | null;
|
|
2339
|
+
status: string;
|
|
2340
|
+
message: string | null;
|
|
2341
|
+
periodStart: any | null;
|
|
2342
|
+
periodEnd: any | null;
|
|
2343
|
+
evaluatedAt: any | null;
|
|
2344
|
+
}>;
|
|
2345
|
+
view: {
|
|
2346
|
+
rendering: {
|
|
2347
|
+
unmappedCount: number;
|
|
2348
|
+
rows: Array<{
|
|
2349
|
+
elementId: string;
|
|
2350
|
+
elementQname: string | null;
|
|
2351
|
+
elementName: string;
|
|
2352
|
+
classification: string | null;
|
|
2353
|
+
balanceType: string | null;
|
|
2354
|
+
values: Array<number | null>;
|
|
2355
|
+
isSubtotal: boolean;
|
|
2356
|
+
depth: number;
|
|
2357
|
+
}>;
|
|
2358
|
+
periods: Array<{
|
|
2359
|
+
start: any;
|
|
2360
|
+
end: any;
|
|
2361
|
+
label: string | null;
|
|
2362
|
+
}>;
|
|
2363
|
+
validation: {
|
|
2364
|
+
passed: boolean;
|
|
2365
|
+
checks: Array<string>;
|
|
2366
|
+
failures: Array<string>;
|
|
2367
|
+
warnings: Array<string>;
|
|
2368
|
+
} | null;
|
|
2369
|
+
} | null;
|
|
2370
|
+
};
|
|
2371
|
+
};
|
|
2372
|
+
}>;
|
|
2373
|
+
} | null;
|
|
2374
|
+
};
|
|
1981
2375
|
export type GetLedgerReportingTaxonomyQueryVariables = Exact<{
|
|
1982
2376
|
[key: string]: never;
|
|
1983
2377
|
}>;
|
|
@@ -2452,7 +2846,7 @@ export type GetLibraryTaxonomyQuery = {
|
|
|
2452
2846
|
} | null;
|
|
2453
2847
|
};
|
|
2454
2848
|
export declare const GetInvestorHoldingsDocument: DocumentNode<GetInvestorHoldingsQuery, GetInvestorHoldingsQueryVariables>;
|
|
2455
|
-
export declare const
|
|
2849
|
+
export declare const GetInvestorPortfolioBlockDocument: DocumentNode<GetInvestorPortfolioBlockQuery, GetInvestorPortfolioBlockQueryVariables>;
|
|
2456
2850
|
export declare const ListInvestorPortfoliosDocument: DocumentNode<ListInvestorPortfoliosQuery, ListInvestorPortfoliosQueryVariables>;
|
|
2457
2851
|
export declare const GetInvestorPositionDocument: DocumentNode<GetInvestorPositionQuery, GetInvestorPositionQueryVariables>;
|
|
2458
2852
|
export declare const ListInvestorPositionsDocument: DocumentNode<ListInvestorPositionsQuery, ListInvestorPositionsQueryVariables>;
|
|
@@ -2477,6 +2871,7 @@ export declare const GetLedgerPeriodDraftsDocument: DocumentNode<GetLedgerPeriod
|
|
|
2477
2871
|
export declare const GetLedgerPublishListDocument: DocumentNode<GetLedgerPublishListQuery, GetLedgerPublishListQueryVariables>;
|
|
2478
2872
|
export declare const ListLedgerPublishListsDocument: DocumentNode<ListLedgerPublishListsQuery, ListLedgerPublishListsQueryVariables>;
|
|
2479
2873
|
export declare const GetLedgerReportDocument: DocumentNode<GetLedgerReportQuery, GetLedgerReportQueryVariables>;
|
|
2874
|
+
export declare const GetLedgerReportPackageDocument: DocumentNode<GetLedgerReportPackageQuery, GetLedgerReportPackageQueryVariables>;
|
|
2480
2875
|
export declare const GetLedgerReportingTaxonomyDocument: DocumentNode<GetLedgerReportingTaxonomyQuery, GetLedgerReportingTaxonomyQueryVariables>;
|
|
2481
2876
|
export declare const ListLedgerReportsDocument: DocumentNode<ListLedgerReportsQuery, ListLedgerReportsQueryVariables>;
|
|
2482
2877
|
export declare const GetLedgerStatementDocument: DocumentNode<GetLedgerStatementQuery, GetLedgerStatementQueryVariables>;
|