@robosystems/client 0.3.12 → 0.3.13
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/graphql/generated/graphql.d.ts +30 -32
- package/artifacts/graphql/generated/graphql.js +15 -23
- package/artifacts/graphql/generated/graphql.ts +45 -61
- package/artifacts/graphql/queries/ledger/accountRollups.js +1 -1
- package/artifacts/graphql/queries/ledger/accountRollups.ts +1 -1
- package/artifacts/graphql/queries/ledger/accountTree.js +4 -4
- package/artifacts/graphql/queries/ledger/accountTree.ts +4 -4
- package/artifacts/graphql/queries/ledger/accounts.js +0 -1
- package/artifacts/graphql/queries/ledger/accounts.ts +0 -1
- package/artifacts/graphql/queries/ledger/elements.js +0 -1
- package/artifacts/graphql/queries/ledger/elements.ts +0 -1
- package/artifacts/graphql/queries/ledger/mappedTrialBalance.js +1 -1
- package/artifacts/graphql/queries/ledger/mappedTrialBalance.ts +1 -1
- package/artifacts/graphql/queries/ledger/statement.js +1 -1
- package/artifacts/graphql/queries/ledger/statement.ts +1 -1
- package/artifacts/graphql/queries/ledger/trialBalance.js +1 -1
- package/artifacts/graphql/queries/ledger/trialBalance.ts +1 -1
- package/artifacts/graphql/queries/ledger/unmappedElements.js +1 -1
- package/artifacts/graphql/queries/ledger/unmappedElements.ts +1 -1
- package/artifacts/graphql/queries/library/arcs.js +3 -3
- package/artifacts/graphql/queries/library/arcs.ts +3 -3
- package/artifacts/graphql/queries/library/elements.js +3 -3
- package/artifacts/graphql/queries/library/elements.ts +3 -3
- package/package.json +1 -1
- package/sdk/types.gen.d.ts +41 -11
- package/sdk/types.gen.ts +41 -11
- package/types.gen.d.ts +41 -11
- package/types.gen.ts +41 -11
|
@@ -58,7 +58,6 @@ export type Scalars = {
|
|
|
58
58
|
export type Account = {
|
|
59
59
|
accountType: Maybe<Scalars['String']['output']>;
|
|
60
60
|
balanceType: Scalars['String']['output'];
|
|
61
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
62
61
|
code: Maybe<Scalars['String']['output']>;
|
|
63
62
|
currency: Scalars['String']['output'];
|
|
64
63
|
depth: Scalars['Int']['output'];
|
|
@@ -71,6 +70,7 @@ export type Account = {
|
|
|
71
70
|
name: Scalars['String']['output'];
|
|
72
71
|
parentId: Maybe<Scalars['String']['output']>;
|
|
73
72
|
subClassification: Maybe<Scalars['String']['output']>;
|
|
73
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
74
74
|
};
|
|
75
75
|
export type AccountList = {
|
|
76
76
|
accounts: Array<Account>;
|
|
@@ -79,11 +79,11 @@ export type AccountList = {
|
|
|
79
79
|
export type AccountRollupGroup = {
|
|
80
80
|
accounts: Array<AccountRollupRow>;
|
|
81
81
|
balanceType: Scalars['String']['output'];
|
|
82
|
-
classification: Scalars['String']['output'];
|
|
83
82
|
reportingElementId: Scalars['String']['output'];
|
|
84
83
|
reportingName: Scalars['String']['output'];
|
|
85
84
|
reportingQname: Scalars['String']['output'];
|
|
86
85
|
total: Scalars['Float']['output'];
|
|
86
|
+
trait: Scalars['String']['output'];
|
|
87
87
|
};
|
|
88
88
|
export type AccountRollupRow = {
|
|
89
89
|
accountCode: Maybe<Scalars['String']['output']>;
|
|
@@ -108,12 +108,12 @@ export type AccountTreeNode = {
|
|
|
108
108
|
accountType: Maybe<Scalars['String']['output']>;
|
|
109
109
|
balanceType: Scalars['String']['output'];
|
|
110
110
|
children: Array<AccountTreeNode>;
|
|
111
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
112
111
|
code: Maybe<Scalars['String']['output']>;
|
|
113
112
|
depth: Scalars['Int']['output'];
|
|
114
113
|
id: Scalars['ID']['output'];
|
|
115
114
|
isActive: Scalars['Boolean']['output'];
|
|
116
115
|
name: Scalars['String']['output'];
|
|
116
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
117
117
|
};
|
|
118
118
|
export type Agent = {
|
|
119
119
|
address: Maybe<Scalars['JSON']['output']>;
|
|
@@ -206,7 +206,6 @@ export type DraftLineItem = {
|
|
|
206
206
|
};
|
|
207
207
|
export type Element = {
|
|
208
208
|
balanceType: Scalars['String']['output'];
|
|
209
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
210
209
|
code: Maybe<Scalars['String']['output']>;
|
|
211
210
|
depth: Scalars['Int']['output'];
|
|
212
211
|
description: Maybe<Scalars['String']['output']>;
|
|
@@ -224,18 +223,19 @@ export type Element = {
|
|
|
224
223
|
source: Scalars['String']['output'];
|
|
225
224
|
subClassification: Maybe<Scalars['String']['output']>;
|
|
226
225
|
taxonomyId: Maybe<Scalars['String']['output']>;
|
|
226
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
227
227
|
};
|
|
228
228
|
export type ElementList = {
|
|
229
229
|
elements: Array<Element>;
|
|
230
230
|
pagination: PaginationInfo;
|
|
231
231
|
};
|
|
232
232
|
export type FactRow = {
|
|
233
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
234
233
|
depth: Scalars['Int']['output'];
|
|
235
234
|
elementId: Scalars['String']['output'];
|
|
236
235
|
elementName: Scalars['String']['output'];
|
|
237
236
|
elementQname: Scalars['String']['output'];
|
|
238
237
|
isSubtotal: Scalars['Boolean']['output'];
|
|
238
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
239
239
|
values: Array<Maybe<Scalars['Float']['output']>>;
|
|
240
240
|
};
|
|
241
241
|
export type FiscalCalendar = {
|
|
@@ -311,7 +311,7 @@ export type InformationBlock = {
|
|
|
311
311
|
verificationResults: Array<InformationBlockVerificationResult>;
|
|
312
312
|
};
|
|
313
313
|
export type InformationBlockClassification = {
|
|
314
|
-
/** One of the categories in the `public.classifications` CHECK constraint
|
|
314
|
+
/** One of the 3 association-level categories in the `public.classifications` CHECK constraint: 'concept_arrangement', 'member_arrangement', or 'named_disclosure'. */
|
|
315
315
|
category: Scalars['String']['output'];
|
|
316
316
|
/** AI/adapter-supplied confidence (0.0-1.0). Null for deterministic library-seeded rows. */
|
|
317
317
|
confidence: Maybe<Scalars['Float']['output']>;
|
|
@@ -328,7 +328,7 @@ export type InformationBlockConnection = {
|
|
|
328
328
|
arcrole: Maybe<Scalars['String']['output']>;
|
|
329
329
|
/** presentation | calculation | mapping | equivalence | general-special | essence-alias */
|
|
330
330
|
associationType: Scalars['String']['output'];
|
|
331
|
-
/** Association-level classifications
|
|
331
|
+
/** Association-level classifications — concept_arrangement, member_arrangement, named_disclosure rows from the junction. Empty for library-seeded associations that haven't been classified yet. */
|
|
332
332
|
classifications: Array<InformationBlockClassification>;
|
|
333
333
|
fromElementId: Scalars['String']['output'];
|
|
334
334
|
id: Scalars['String']['output'];
|
|
@@ -537,8 +537,6 @@ export type LibraryAssociation = {
|
|
|
537
537
|
export type LibraryElement = {
|
|
538
538
|
/** debit | credit */
|
|
539
539
|
balanceType: Scalars['String']['output'];
|
|
540
|
-
/** FASB elementsOfFinancialStatements axis: asset | contraAsset | liability | contraLiability | equity | contraEquity | temporaryEquity | revenue | expense | expenseReversal | gain | loss | comprehensiveIncome | investmentByOwners | distributionToOwners | metric (derived subtotals, not SFAC 6 primary elements). Null for structural rows. */
|
|
541
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
542
540
|
/** concept | abstract | axis | member | hypercube */
|
|
543
541
|
elementType: Scalars['String']['output'];
|
|
544
542
|
id: Scalars['String']['output'];
|
|
@@ -556,6 +554,8 @@ export type LibraryElement = {
|
|
|
556
554
|
/** fac | us-gaap | rs-gaap | … */
|
|
557
555
|
source: Scalars['String']['output'];
|
|
558
556
|
taxonomyId: Maybe<Scalars['String']['output']>;
|
|
557
|
+
/** FASB elementsOfFinancialStatements axis: asset | contraAsset | liability | contraLiability | equity | contraEquity | temporaryEquity | revenue | expense | expenseReversal | gain | loss | comprehensiveIncome | investmentByOwners | distributionToOwners | metric (derived subtotals, not SFAC 6 primary elements). Null for structural rows. */
|
|
558
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
559
559
|
};
|
|
560
560
|
export type LibraryElementArc = {
|
|
561
561
|
arcrole: Maybe<Scalars['String']['output']>;
|
|
@@ -571,11 +571,11 @@ export type LibraryElementArc = {
|
|
|
571
571
|
taxonomyStandard: Maybe<Scalars['String']['output']>;
|
|
572
572
|
};
|
|
573
573
|
export type LibraryElementClassification = {
|
|
574
|
-
/**
|
|
574
|
+
/** Trait axis (e.g. elementsOfFinancialStatements) */
|
|
575
575
|
category: Scalars['String']['output'];
|
|
576
576
|
/** Value within the axis (e.g. expense) */
|
|
577
577
|
identifier: Scalars['String']['output'];
|
|
578
|
-
/** True for the element's primary EFS
|
|
578
|
+
/** True for the element's primary EFS trait assignment */
|
|
579
579
|
isPrimary: Scalars['Boolean']['output'];
|
|
580
580
|
/** Human-readable name */
|
|
581
581
|
name: Maybe<Scalars['String']['output']>;
|
|
@@ -636,13 +636,13 @@ export type MappedTrialBalance = {
|
|
|
636
636
|
};
|
|
637
637
|
export type MappedTrialBalanceRow = {
|
|
638
638
|
balanceType: Maybe<Scalars['String']['output']>;
|
|
639
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
640
639
|
netBalance: Scalars['Float']['output'];
|
|
641
640
|
qname: Scalars['String']['output'];
|
|
642
641
|
reportingElementId: Scalars['String']['output'];
|
|
643
642
|
reportingName: Scalars['String']['output'];
|
|
644
643
|
totalCredits: Scalars['Float']['output'];
|
|
645
644
|
totalDebits: Scalars['Float']['output'];
|
|
645
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
646
646
|
};
|
|
647
647
|
export type MappingCoverage = {
|
|
648
648
|
coveragePercent: Scalars['Float']['output'];
|
|
@@ -1155,7 +1155,6 @@ export type TaxonomyBlockAssociation = {
|
|
|
1155
1155
|
};
|
|
1156
1156
|
export type TaxonomyBlockElement = {
|
|
1157
1157
|
balanceType: Maybe<Scalars['String']['output']>;
|
|
1158
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
1159
1158
|
depth: Maybe<Scalars['Int']['output']>;
|
|
1160
1159
|
elementType: Scalars['String']['output'];
|
|
1161
1160
|
id: Scalars['String']['output'];
|
|
@@ -1165,6 +1164,7 @@ export type TaxonomyBlockElement = {
|
|
|
1165
1164
|
parentQname: Maybe<Scalars['String']['output']>;
|
|
1166
1165
|
periodType: Maybe<Scalars['String']['output']>;
|
|
1167
1166
|
qname: Maybe<Scalars['String']['output']>;
|
|
1167
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
1168
1168
|
};
|
|
1169
1169
|
export type TaxonomyBlockRule = {
|
|
1170
1170
|
id: Scalars['String']['output'];
|
|
@@ -1197,19 +1197,19 @@ export type TrialBalanceRow = {
|
|
|
1197
1197
|
accountId: Scalars['String']['output'];
|
|
1198
1198
|
accountName: Scalars['String']['output'];
|
|
1199
1199
|
accountType: Maybe<Scalars['String']['output']>;
|
|
1200
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
1201
1200
|
netBalance: Scalars['Float']['output'];
|
|
1202
1201
|
totalCredits: Scalars['Float']['output'];
|
|
1203
1202
|
totalDebits: Scalars['Float']['output'];
|
|
1203
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
1204
1204
|
};
|
|
1205
1205
|
export type UnmappedElement = {
|
|
1206
1206
|
balanceType: Scalars['String']['output'];
|
|
1207
|
-
classification: Maybe<Scalars['String']['output']>;
|
|
1208
1207
|
code: Maybe<Scalars['String']['output']>;
|
|
1209
1208
|
externalSource: Maybe<Scalars['String']['output']>;
|
|
1210
1209
|
id: Scalars['String']['output'];
|
|
1211
1210
|
name: Scalars['String']['output'];
|
|
1212
1211
|
suggestedTargets: Array<SuggestedTarget>;
|
|
1212
|
+
trait: Maybe<Scalars['String']['output']>;
|
|
1213
1213
|
};
|
|
1214
1214
|
export type ValidationCheck = {
|
|
1215
1215
|
checks: Array<Scalars['String']['output']>;
|
|
@@ -1415,7 +1415,7 @@ export type GetLedgerAccountRollupsQuery = {
|
|
|
1415
1415
|
reportingElementId: string;
|
|
1416
1416
|
reportingName: string;
|
|
1417
1417
|
reportingQname: string;
|
|
1418
|
-
|
|
1418
|
+
trait: string;
|
|
1419
1419
|
balanceType: string;
|
|
1420
1420
|
total: number;
|
|
1421
1421
|
accounts: Array<{
|
|
@@ -1439,7 +1439,7 @@ export type GetLedgerAccountTreeQuery = {
|
|
|
1439
1439
|
id: string;
|
|
1440
1440
|
code: string | null;
|
|
1441
1441
|
name: string;
|
|
1442
|
-
|
|
1442
|
+
trait: string | null;
|
|
1443
1443
|
accountType: string | null;
|
|
1444
1444
|
balanceType: string;
|
|
1445
1445
|
depth: number;
|
|
@@ -1448,7 +1448,7 @@ export type GetLedgerAccountTreeQuery = {
|
|
|
1448
1448
|
id: string;
|
|
1449
1449
|
code: string | null;
|
|
1450
1450
|
name: string;
|
|
1451
|
-
|
|
1451
|
+
trait: string | null;
|
|
1452
1452
|
accountType: string | null;
|
|
1453
1453
|
balanceType: string;
|
|
1454
1454
|
depth: number;
|
|
@@ -1457,7 +1457,7 @@ export type GetLedgerAccountTreeQuery = {
|
|
|
1457
1457
|
id: string;
|
|
1458
1458
|
code: string | null;
|
|
1459
1459
|
name: string;
|
|
1460
|
-
|
|
1460
|
+
trait: string | null;
|
|
1461
1461
|
accountType: string | null;
|
|
1462
1462
|
balanceType: string;
|
|
1463
1463
|
depth: number;
|
|
@@ -1466,7 +1466,7 @@ export type GetLedgerAccountTreeQuery = {
|
|
|
1466
1466
|
id: string;
|
|
1467
1467
|
code: string | null;
|
|
1468
1468
|
name: string;
|
|
1469
|
-
|
|
1469
|
+
trait: string | null;
|
|
1470
1470
|
accountType: string | null;
|
|
1471
1471
|
balanceType: string;
|
|
1472
1472
|
depth: number;
|
|
@@ -1490,7 +1490,6 @@ export type ListLedgerAccountsQuery = {
|
|
|
1490
1490
|
code: string | null;
|
|
1491
1491
|
name: string;
|
|
1492
1492
|
description: string | null;
|
|
1493
|
-
classification: string | null;
|
|
1494
1493
|
subClassification: string | null;
|
|
1495
1494
|
balanceType: string;
|
|
1496
1495
|
parentId: string | null;
|
|
@@ -1546,7 +1545,6 @@ export type ListLedgerElementsQuery = {
|
|
|
1546
1545
|
description: string | null;
|
|
1547
1546
|
qname: string | null;
|
|
1548
1547
|
namespace: string | null;
|
|
1549
|
-
classification: string | null;
|
|
1550
1548
|
subClassification: string | null;
|
|
1551
1549
|
balanceType: string;
|
|
1552
1550
|
periodType: string;
|
|
@@ -1779,7 +1777,7 @@ export type GetLedgerMappedTrialBalanceQuery = {
|
|
|
1779
1777
|
reportingElementId: string;
|
|
1780
1778
|
qname: string;
|
|
1781
1779
|
reportingName: string;
|
|
1782
|
-
|
|
1780
|
+
trait: string | null;
|
|
1783
1781
|
balanceType: string | null;
|
|
1784
1782
|
totalDebits: number;
|
|
1785
1783
|
totalCredits: number;
|
|
@@ -2054,7 +2052,7 @@ export type GetLedgerStatementQuery = {
|
|
|
2054
2052
|
elementId: string;
|
|
2055
2053
|
elementQname: string;
|
|
2056
2054
|
elementName: string;
|
|
2057
|
-
|
|
2055
|
+
trait: string | null;
|
|
2058
2056
|
values: Array<number | null>;
|
|
2059
2057
|
isSubtotal: boolean;
|
|
2060
2058
|
depth: number;
|
|
@@ -2205,7 +2203,7 @@ export type GetLedgerTrialBalanceQuery = {
|
|
|
2205
2203
|
accountId: string;
|
|
2206
2204
|
accountCode: string;
|
|
2207
2205
|
accountName: string;
|
|
2208
|
-
|
|
2206
|
+
trait: string | null;
|
|
2209
2207
|
accountType: string | null;
|
|
2210
2208
|
totalDebits: number;
|
|
2211
2209
|
totalCredits: number;
|
|
@@ -2221,7 +2219,7 @@ export type ListLedgerUnmappedElementsQuery = {
|
|
|
2221
2219
|
id: string;
|
|
2222
2220
|
code: string | null;
|
|
2223
2221
|
name: string;
|
|
2224
|
-
|
|
2222
|
+
trait: string | null;
|
|
2225
2223
|
balanceType: string;
|
|
2226
2224
|
externalSource: string | null;
|
|
2227
2225
|
suggestedTargets: Array<{
|
|
@@ -2274,7 +2272,7 @@ export type GetLibraryElementArcsQuery = {
|
|
|
2274
2272
|
id: string;
|
|
2275
2273
|
qname: string;
|
|
2276
2274
|
name: string;
|
|
2277
|
-
|
|
2275
|
+
trait: string | null;
|
|
2278
2276
|
source: string;
|
|
2279
2277
|
};
|
|
2280
2278
|
}>;
|
|
@@ -2299,14 +2297,14 @@ export type GetLibraryElementEquivalentsQuery = {
|
|
|
2299
2297
|
id: string;
|
|
2300
2298
|
qname: string;
|
|
2301
2299
|
name: string;
|
|
2302
|
-
|
|
2300
|
+
trait: string | null;
|
|
2303
2301
|
source: string;
|
|
2304
2302
|
};
|
|
2305
2303
|
equivalents: Array<{
|
|
2306
2304
|
id: string;
|
|
2307
2305
|
qname: string;
|
|
2308
2306
|
name: string;
|
|
2309
|
-
|
|
2307
|
+
trait: string | null;
|
|
2310
2308
|
source: string;
|
|
2311
2309
|
}>;
|
|
2312
2310
|
} | null;
|
|
@@ -2329,7 +2327,7 @@ export type ListLibraryElementsQuery = {
|
|
|
2329
2327
|
qname: string;
|
|
2330
2328
|
namespace: string | null;
|
|
2331
2329
|
name: string;
|
|
2332
|
-
|
|
2330
|
+
trait: string | null;
|
|
2333
2331
|
balanceType: string;
|
|
2334
2332
|
periodType: string;
|
|
2335
2333
|
isAbstract: boolean;
|
|
@@ -2361,7 +2359,7 @@ export type SearchLibraryElementsQuery = {
|
|
|
2361
2359
|
qname: string;
|
|
2362
2360
|
namespace: string | null;
|
|
2363
2361
|
name: string;
|
|
2364
|
-
|
|
2362
|
+
trait: string | null;
|
|
2365
2363
|
balanceType: string;
|
|
2366
2364
|
periodType: string;
|
|
2367
2365
|
isAbstract: boolean;
|
|
@@ -2392,7 +2390,7 @@ export type GetLibraryElementQuery = {
|
|
|
2392
2390
|
qname: string;
|
|
2393
2391
|
namespace: string | null;
|
|
2394
2392
|
name: string;
|
|
2395
|
-
|
|
2393
|
+
trait: string | null;
|
|
2396
2394
|
balanceType: string;
|
|
2397
2395
|
periodType: string;
|
|
2398
2396
|
isAbstract: boolean;
|
|
@@ -637,7 +637,7 @@ exports.GetLedgerAccountRollupsDocument = {
|
|
|
637
637
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingElementId' } },
|
|
638
638
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingName' } },
|
|
639
639
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingQname' } },
|
|
640
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
640
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
641
641
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
642
642
|
{ kind: 'Field', name: { kind: 'Name', value: 'total' } },
|
|
643
643
|
{
|
|
@@ -692,7 +692,7 @@ exports.GetLedgerAccountTreeDocument = {
|
|
|
692
692
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
693
693
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
694
694
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
695
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
695
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
696
696
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
|
|
697
697
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
698
698
|
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
@@ -706,7 +706,7 @@ exports.GetLedgerAccountTreeDocument = {
|
|
|
706
706
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
707
707
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
708
708
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
709
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
709
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
710
710
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
|
|
711
711
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
712
712
|
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
@@ -720,10 +720,7 @@ exports.GetLedgerAccountTreeDocument = {
|
|
|
720
720
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
721
721
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
722
722
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
723
|
-
{
|
|
724
|
-
kind: 'Field',
|
|
725
|
-
name: { kind: 'Name', value: 'classification' },
|
|
726
|
-
},
|
|
723
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
727
724
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
|
|
728
725
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
729
726
|
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
@@ -737,10 +734,7 @@ exports.GetLedgerAccountTreeDocument = {
|
|
|
737
734
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
738
735
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
739
736
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
740
|
-
{
|
|
741
|
-
kind: 'Field',
|
|
742
|
-
name: { kind: 'Name', value: 'classification' },
|
|
743
|
-
},
|
|
737
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
744
738
|
{
|
|
745
739
|
kind: 'Field',
|
|
746
740
|
name: { kind: 'Name', value: 'accountType' },
|
|
@@ -852,7 +846,6 @@ exports.ListLedgerAccountsDocument = {
|
|
|
852
846
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
853
847
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
854
848
|
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
|
855
|
-
{ kind: 'Field', name: { kind: 'Name', value: 'classification' } },
|
|
856
849
|
{ kind: 'Field', name: { kind: 'Name', value: 'subClassification' } },
|
|
857
850
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
858
851
|
{ kind: 'Field', name: { kind: 'Name', value: 'parentId' } },
|
|
@@ -1037,7 +1030,6 @@ exports.ListLedgerElementsDocument = {
|
|
|
1037
1030
|
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
|
1038
1031
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
1039
1032
|
{ kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
|
|
1040
|
-
{ kind: 'Field', name: { kind: 'Name', value: 'classification' } },
|
|
1041
1033
|
{ kind: 'Field', name: { kind: 'Name', value: 'subClassification' } },
|
|
1042
1034
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
1043
1035
|
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
@@ -1570,7 +1562,7 @@ exports.GetLedgerMappedTrialBalanceDocument = {
|
|
|
1570
1562
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingElementId' } },
|
|
1571
1563
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
1572
1564
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingName' } },
|
|
1573
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
1565
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
1574
1566
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
1575
1567
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalDebits' } },
|
|
1576
1568
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalCredits' } },
|
|
@@ -2311,7 +2303,7 @@ exports.GetLedgerStatementDocument = {
|
|
|
2311
2303
|
{ kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
|
|
2312
2304
|
{ kind: 'Field', name: { kind: 'Name', value: 'elementQname' } },
|
|
2313
2305
|
{ kind: 'Field', name: { kind: 'Name', value: 'elementName' } },
|
|
2314
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
2306
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
2315
2307
|
{ kind: 'Field', name: { kind: 'Name', value: 'values' } },
|
|
2316
2308
|
{ kind: 'Field', name: { kind: 'Name', value: 'isSubtotal' } },
|
|
2317
2309
|
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
@@ -2755,7 +2747,7 @@ exports.GetLedgerTrialBalanceDocument = {
|
|
|
2755
2747
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountId' } },
|
|
2756
2748
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountCode' } },
|
|
2757
2749
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountName' } },
|
|
2758
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
2750
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
2759
2751
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
|
|
2760
2752
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalDebits' } },
|
|
2761
2753
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalCredits' } },
|
|
@@ -2804,7 +2796,7 @@ exports.ListLedgerUnmappedElementsDocument = {
|
|
|
2804
2796
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
2805
2797
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
2806
2798
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
2807
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
2799
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
2808
2800
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
2809
2801
|
{ kind: 'Field', name: { kind: 'Name', value: 'externalSource' } },
|
|
2810
2802
|
{
|
|
@@ -2982,7 +2974,7 @@ exports.GetLibraryElementArcsDocument = {
|
|
|
2982
2974
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
2983
2975
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
2984
2976
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
2985
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
2977
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
2986
2978
|
{ kind: 'Field', name: { kind: 'Name', value: 'source' } },
|
|
2987
2979
|
],
|
|
2988
2980
|
},
|
|
@@ -3082,7 +3074,7 @@ exports.GetLibraryElementEquivalentsDocument = {
|
|
|
3082
3074
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
3083
3075
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
3084
3076
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3085
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3077
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3086
3078
|
{ kind: 'Field', name: { kind: 'Name', value: 'source' } },
|
|
3087
3079
|
],
|
|
3088
3080
|
},
|
|
@@ -3096,7 +3088,7 @@ exports.GetLibraryElementEquivalentsDocument = {
|
|
|
3096
3088
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
3097
3089
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
3098
3090
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3099
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3091
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3100
3092
|
{ kind: 'Field', name: { kind: 'Name', value: 'source' } },
|
|
3101
3093
|
],
|
|
3102
3094
|
},
|
|
@@ -3249,7 +3241,7 @@ exports.ListLibraryElementsDocument = {
|
|
|
3249
3241
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
3250
3242
|
{ kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
|
|
3251
3243
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3252
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3244
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3253
3245
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3254
3246
|
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
3255
3247
|
{ kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
|
|
@@ -3383,7 +3375,7 @@ exports.SearchLibraryElementsDocument = {
|
|
|
3383
3375
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
3384
3376
|
{ kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
|
|
3385
3377
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3386
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3378
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3387
3379
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3388
3380
|
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
3389
3381
|
{ kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
|
|
@@ -3468,7 +3460,7 @@ exports.GetLibraryElementDocument = {
|
|
|
3468
3460
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
3469
3461
|
{ kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
|
|
3470
3462
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3471
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3463
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3472
3464
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3473
3465
|
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
3474
3466
|
{ kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
|