@robosystems/client 0.3.11 → 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/OperationClient.js +14 -0
- package/artifacts/OperationClient.ts +15 -0
- package/artifacts/SSEClient.js +21 -3
- package/artifacts/SSEClient.ts +26 -3
- 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 +42 -12
- package/sdk/types.gen.ts +42 -12
- package/types.gen.d.ts +42 -12
- package/types.gen.ts +42 -12
|
@@ -25,7 +25,6 @@ export type Scalars = {
|
|
|
25
25
|
export type Account = {
|
|
26
26
|
accountType: Maybe<Scalars['String']['output']>
|
|
27
27
|
balanceType: Scalars['String']['output']
|
|
28
|
-
classification: Maybe<Scalars['String']['output']>
|
|
29
28
|
code: Maybe<Scalars['String']['output']>
|
|
30
29
|
currency: Scalars['String']['output']
|
|
31
30
|
depth: Scalars['Int']['output']
|
|
@@ -38,6 +37,7 @@ export type Account = {
|
|
|
38
37
|
name: Scalars['String']['output']
|
|
39
38
|
parentId: Maybe<Scalars['String']['output']>
|
|
40
39
|
subClassification: Maybe<Scalars['String']['output']>
|
|
40
|
+
trait: Maybe<Scalars['String']['output']>
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
export type AccountList = {
|
|
@@ -48,11 +48,11 @@ export type AccountList = {
|
|
|
48
48
|
export type AccountRollupGroup = {
|
|
49
49
|
accounts: Array<AccountRollupRow>
|
|
50
50
|
balanceType: Scalars['String']['output']
|
|
51
|
-
classification: Scalars['String']['output']
|
|
52
51
|
reportingElementId: Scalars['String']['output']
|
|
53
52
|
reportingName: Scalars['String']['output']
|
|
54
53
|
reportingQname: Scalars['String']['output']
|
|
55
54
|
total: Scalars['Float']['output']
|
|
55
|
+
trait: Scalars['String']['output']
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
export type AccountRollupRow = {
|
|
@@ -81,12 +81,12 @@ export type AccountTreeNode = {
|
|
|
81
81
|
accountType: Maybe<Scalars['String']['output']>
|
|
82
82
|
balanceType: Scalars['String']['output']
|
|
83
83
|
children: Array<AccountTreeNode>
|
|
84
|
-
classification: Maybe<Scalars['String']['output']>
|
|
85
84
|
code: Maybe<Scalars['String']['output']>
|
|
86
85
|
depth: Scalars['Int']['output']
|
|
87
86
|
id: Scalars['ID']['output']
|
|
88
87
|
isActive: Scalars['Boolean']['output']
|
|
89
88
|
name: Scalars['String']['output']
|
|
89
|
+
trait: Maybe<Scalars['String']['output']>
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
export type Agent = {
|
|
@@ -188,7 +188,6 @@ export type DraftLineItem = {
|
|
|
188
188
|
|
|
189
189
|
export type Element = {
|
|
190
190
|
balanceType: Scalars['String']['output']
|
|
191
|
-
classification: Maybe<Scalars['String']['output']>
|
|
192
191
|
code: Maybe<Scalars['String']['output']>
|
|
193
192
|
depth: Scalars['Int']['output']
|
|
194
193
|
description: Maybe<Scalars['String']['output']>
|
|
@@ -206,6 +205,7 @@ export type Element = {
|
|
|
206
205
|
source: Scalars['String']['output']
|
|
207
206
|
subClassification: Maybe<Scalars['String']['output']>
|
|
208
207
|
taxonomyId: Maybe<Scalars['String']['output']>
|
|
208
|
+
trait: Maybe<Scalars['String']['output']>
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
export type ElementList = {
|
|
@@ -214,12 +214,12 @@ export type ElementList = {
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
export type FactRow = {
|
|
217
|
-
classification: Maybe<Scalars['String']['output']>
|
|
218
217
|
depth: Scalars['Int']['output']
|
|
219
218
|
elementId: Scalars['String']['output']
|
|
220
219
|
elementName: Scalars['String']['output']
|
|
221
220
|
elementQname: Scalars['String']['output']
|
|
222
221
|
isSubtotal: Scalars['Boolean']['output']
|
|
222
|
+
trait: Maybe<Scalars['String']['output']>
|
|
223
223
|
values: Array<Maybe<Scalars['Float']['output']>>
|
|
224
224
|
}
|
|
225
225
|
|
|
@@ -302,7 +302,7 @@ export type InformationBlock = {
|
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
export type InformationBlockClassification = {
|
|
305
|
-
/** One of the categories in the `public.classifications` CHECK constraint
|
|
305
|
+
/** One of the 3 association-level categories in the `public.classifications` CHECK constraint: 'concept_arrangement', 'member_arrangement', or 'named_disclosure'. */
|
|
306
306
|
category: Scalars['String']['output']
|
|
307
307
|
/** AI/adapter-supplied confidence (0.0-1.0). Null for deterministic library-seeded rows. */
|
|
308
308
|
confidence: Maybe<Scalars['Float']['output']>
|
|
@@ -320,7 +320,7 @@ export type InformationBlockConnection = {
|
|
|
320
320
|
arcrole: Maybe<Scalars['String']['output']>
|
|
321
321
|
/** presentation | calculation | mapping | equivalence | general-special | essence-alias */
|
|
322
322
|
associationType: Scalars['String']['output']
|
|
323
|
-
/** Association-level classifications
|
|
323
|
+
/** Association-level classifications — concept_arrangement, member_arrangement, named_disclosure rows from the junction. Empty for library-seeded associations that haven't been classified yet. */
|
|
324
324
|
classifications: Array<InformationBlockClassification>
|
|
325
325
|
fromElementId: Scalars['String']['output']
|
|
326
326
|
id: Scalars['String']['output']
|
|
@@ -546,8 +546,6 @@ export type LibraryAssociation = {
|
|
|
546
546
|
export type LibraryElement = {
|
|
547
547
|
/** debit | credit */
|
|
548
548
|
balanceType: Scalars['String']['output']
|
|
549
|
-
/** 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. */
|
|
550
|
-
classification: Maybe<Scalars['String']['output']>
|
|
551
549
|
/** concept | abstract | axis | member | hypercube */
|
|
552
550
|
elementType: Scalars['String']['output']
|
|
553
551
|
id: Scalars['String']['output']
|
|
@@ -565,6 +563,8 @@ export type LibraryElement = {
|
|
|
565
563
|
/** fac | us-gaap | rs-gaap | … */
|
|
566
564
|
source: Scalars['String']['output']
|
|
567
565
|
taxonomyId: Maybe<Scalars['String']['output']>
|
|
566
|
+
/** 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. */
|
|
567
|
+
trait: Maybe<Scalars['String']['output']>
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
export type LibraryElementArc = {
|
|
@@ -582,11 +582,11 @@ export type LibraryElementArc = {
|
|
|
582
582
|
}
|
|
583
583
|
|
|
584
584
|
export type LibraryElementClassification = {
|
|
585
|
-
/**
|
|
585
|
+
/** Trait axis (e.g. elementsOfFinancialStatements) */
|
|
586
586
|
category: Scalars['String']['output']
|
|
587
587
|
/** Value within the axis (e.g. expense) */
|
|
588
588
|
identifier: Scalars['String']['output']
|
|
589
|
-
/** True for the element's primary EFS
|
|
589
|
+
/** True for the element's primary EFS trait assignment */
|
|
590
590
|
isPrimary: Scalars['Boolean']['output']
|
|
591
591
|
/** Human-readable name */
|
|
592
592
|
name: Maybe<Scalars['String']['output']>
|
|
@@ -655,13 +655,13 @@ export type MappedTrialBalance = {
|
|
|
655
655
|
|
|
656
656
|
export type MappedTrialBalanceRow = {
|
|
657
657
|
balanceType: Maybe<Scalars['String']['output']>
|
|
658
|
-
classification: Maybe<Scalars['String']['output']>
|
|
659
658
|
netBalance: Scalars['Float']['output']
|
|
660
659
|
qname: Scalars['String']['output']
|
|
661
660
|
reportingElementId: Scalars['String']['output']
|
|
662
661
|
reportingName: Scalars['String']['output']
|
|
663
662
|
totalCredits: Scalars['Float']['output']
|
|
664
663
|
totalDebits: Scalars['Float']['output']
|
|
664
|
+
trait: Maybe<Scalars['String']['output']>
|
|
665
665
|
}
|
|
666
666
|
|
|
667
667
|
export type MappingCoverage = {
|
|
@@ -1248,7 +1248,6 @@ export type TaxonomyBlockAssociation = {
|
|
|
1248
1248
|
|
|
1249
1249
|
export type TaxonomyBlockElement = {
|
|
1250
1250
|
balanceType: Maybe<Scalars['String']['output']>
|
|
1251
|
-
classification: Maybe<Scalars['String']['output']>
|
|
1252
1251
|
depth: Maybe<Scalars['Int']['output']>
|
|
1253
1252
|
elementType: Scalars['String']['output']
|
|
1254
1253
|
id: Scalars['String']['output']
|
|
@@ -1258,6 +1257,7 @@ export type TaxonomyBlockElement = {
|
|
|
1258
1257
|
parentQname: Maybe<Scalars['String']['output']>
|
|
1259
1258
|
periodType: Maybe<Scalars['String']['output']>
|
|
1260
1259
|
qname: Maybe<Scalars['String']['output']>
|
|
1260
|
+
trait: Maybe<Scalars['String']['output']>
|
|
1261
1261
|
}
|
|
1262
1262
|
|
|
1263
1263
|
export type TaxonomyBlockRule = {
|
|
@@ -1295,20 +1295,20 @@ export type TrialBalanceRow = {
|
|
|
1295
1295
|
accountId: Scalars['String']['output']
|
|
1296
1296
|
accountName: Scalars['String']['output']
|
|
1297
1297
|
accountType: Maybe<Scalars['String']['output']>
|
|
1298
|
-
classification: Maybe<Scalars['String']['output']>
|
|
1299
1298
|
netBalance: Scalars['Float']['output']
|
|
1300
1299
|
totalCredits: Scalars['Float']['output']
|
|
1301
1300
|
totalDebits: Scalars['Float']['output']
|
|
1301
|
+
trait: Maybe<Scalars['String']['output']>
|
|
1302
1302
|
}
|
|
1303
1303
|
|
|
1304
1304
|
export type UnmappedElement = {
|
|
1305
1305
|
balanceType: Scalars['String']['output']
|
|
1306
|
-
classification: Maybe<Scalars['String']['output']>
|
|
1307
1306
|
code: Maybe<Scalars['String']['output']>
|
|
1308
1307
|
externalSource: Maybe<Scalars['String']['output']>
|
|
1309
1308
|
id: Scalars['String']['output']
|
|
1310
1309
|
name: Scalars['String']['output']
|
|
1311
1310
|
suggestedTargets: Array<SuggestedTarget>
|
|
1311
|
+
trait: Maybe<Scalars['String']['output']>
|
|
1312
1312
|
}
|
|
1313
1313
|
|
|
1314
1314
|
export type ValidationCheck = {
|
|
@@ -1516,7 +1516,7 @@ export type GetLedgerAccountRollupsQuery = {
|
|
|
1516
1516
|
reportingElementId: string
|
|
1517
1517
|
reportingName: string
|
|
1518
1518
|
reportingQname: string
|
|
1519
|
-
|
|
1519
|
+
trait: string
|
|
1520
1520
|
balanceType: string
|
|
1521
1521
|
total: number
|
|
1522
1522
|
accounts: Array<{
|
|
@@ -1540,7 +1540,7 @@ export type GetLedgerAccountTreeQuery = {
|
|
|
1540
1540
|
id: string
|
|
1541
1541
|
code: string | null
|
|
1542
1542
|
name: string
|
|
1543
|
-
|
|
1543
|
+
trait: string | null
|
|
1544
1544
|
accountType: string | null
|
|
1545
1545
|
balanceType: string
|
|
1546
1546
|
depth: number
|
|
@@ -1549,7 +1549,7 @@ export type GetLedgerAccountTreeQuery = {
|
|
|
1549
1549
|
id: string
|
|
1550
1550
|
code: string | null
|
|
1551
1551
|
name: string
|
|
1552
|
-
|
|
1552
|
+
trait: string | null
|
|
1553
1553
|
accountType: string | null
|
|
1554
1554
|
balanceType: string
|
|
1555
1555
|
depth: number
|
|
@@ -1558,7 +1558,7 @@ export type GetLedgerAccountTreeQuery = {
|
|
|
1558
1558
|
id: string
|
|
1559
1559
|
code: string | null
|
|
1560
1560
|
name: string
|
|
1561
|
-
|
|
1561
|
+
trait: string | null
|
|
1562
1562
|
accountType: string | null
|
|
1563
1563
|
balanceType: string
|
|
1564
1564
|
depth: number
|
|
@@ -1567,7 +1567,7 @@ export type GetLedgerAccountTreeQuery = {
|
|
|
1567
1567
|
id: string
|
|
1568
1568
|
code: string | null
|
|
1569
1569
|
name: string
|
|
1570
|
-
|
|
1570
|
+
trait: string | null
|
|
1571
1571
|
accountType: string | null
|
|
1572
1572
|
balanceType: string
|
|
1573
1573
|
depth: number
|
|
@@ -1593,7 +1593,6 @@ export type ListLedgerAccountsQuery = {
|
|
|
1593
1593
|
code: string | null
|
|
1594
1594
|
name: string
|
|
1595
1595
|
description: string | null
|
|
1596
|
-
classification: string | null
|
|
1597
1596
|
subClassification: string | null
|
|
1598
1597
|
balanceType: string
|
|
1599
1598
|
parentId: string | null
|
|
@@ -1646,7 +1645,6 @@ export type ListLedgerElementsQuery = {
|
|
|
1646
1645
|
description: string | null
|
|
1647
1646
|
qname: string | null
|
|
1648
1647
|
namespace: string | null
|
|
1649
|
-
classification: string | null
|
|
1650
1648
|
subClassification: string | null
|
|
1651
1649
|
balanceType: string
|
|
1652
1650
|
periodType: string
|
|
@@ -1876,7 +1874,7 @@ export type GetLedgerMappedTrialBalanceQuery = {
|
|
|
1876
1874
|
reportingElementId: string
|
|
1877
1875
|
qname: string
|
|
1878
1876
|
reportingName: string
|
|
1879
|
-
|
|
1877
|
+
trait: string | null
|
|
1880
1878
|
balanceType: string | null
|
|
1881
1879
|
totalDebits: number
|
|
1882
1880
|
totalCredits: number
|
|
@@ -2142,7 +2140,7 @@ export type GetLedgerStatementQuery = {
|
|
|
2142
2140
|
elementId: string
|
|
2143
2141
|
elementQname: string
|
|
2144
2142
|
elementName: string
|
|
2145
|
-
|
|
2143
|
+
trait: string | null
|
|
2146
2144
|
values: Array<number | null>
|
|
2147
2145
|
isSubtotal: boolean
|
|
2148
2146
|
depth: number
|
|
@@ -2298,7 +2296,7 @@ export type GetLedgerTrialBalanceQuery = {
|
|
|
2298
2296
|
accountId: string
|
|
2299
2297
|
accountCode: string
|
|
2300
2298
|
accountName: string
|
|
2301
|
-
|
|
2299
|
+
trait: string | null
|
|
2302
2300
|
accountType: string | null
|
|
2303
2301
|
totalDebits: number
|
|
2304
2302
|
totalCredits: number
|
|
@@ -2316,7 +2314,7 @@ export type ListLedgerUnmappedElementsQuery = {
|
|
|
2316
2314
|
id: string
|
|
2317
2315
|
code: string | null
|
|
2318
2316
|
name: string
|
|
2319
|
-
|
|
2317
|
+
trait: string | null
|
|
2320
2318
|
balanceType: string
|
|
2321
2319
|
externalSource: string | null
|
|
2322
2320
|
suggestedTargets: Array<{
|
|
@@ -2369,7 +2367,7 @@ export type GetLibraryElementArcsQuery = {
|
|
|
2369
2367
|
taxonomyName: string | null
|
|
2370
2368
|
structureId: string | null
|
|
2371
2369
|
structureName: string | null
|
|
2372
|
-
peer: { id: string; qname: string; name: string;
|
|
2370
|
+
peer: { id: string; qname: string; name: string; trait: string | null; source: string }
|
|
2373
2371
|
}>
|
|
2374
2372
|
}
|
|
2375
2373
|
|
|
@@ -2392,18 +2390,12 @@ export type GetLibraryElementEquivalentsQueryVariables = Exact<{
|
|
|
2392
2390
|
|
|
2393
2391
|
export type GetLibraryElementEquivalentsQuery = {
|
|
2394
2392
|
libraryElementEquivalents: {
|
|
2395
|
-
element: {
|
|
2396
|
-
id: string
|
|
2397
|
-
qname: string
|
|
2398
|
-
name: string
|
|
2399
|
-
classification: string | null
|
|
2400
|
-
source: string
|
|
2401
|
-
}
|
|
2393
|
+
element: { id: string; qname: string; name: string; trait: string | null; source: string }
|
|
2402
2394
|
equivalents: Array<{
|
|
2403
2395
|
id: string
|
|
2404
2396
|
qname: string
|
|
2405
2397
|
name: string
|
|
2406
|
-
|
|
2398
|
+
trait: string | null
|
|
2407
2399
|
source: string
|
|
2408
2400
|
}>
|
|
2409
2401
|
} | null
|
|
@@ -2428,7 +2420,7 @@ export type ListLibraryElementsQuery = {
|
|
|
2428
2420
|
qname: string
|
|
2429
2421
|
namespace: string | null
|
|
2430
2422
|
name: string
|
|
2431
|
-
|
|
2423
|
+
trait: string | null
|
|
2432
2424
|
balanceType: string
|
|
2433
2425
|
periodType: string
|
|
2434
2426
|
isAbstract: boolean
|
|
@@ -2454,7 +2446,7 @@ export type SearchLibraryElementsQuery = {
|
|
|
2454
2446
|
qname: string
|
|
2455
2447
|
namespace: string | null
|
|
2456
2448
|
name: string
|
|
2457
|
-
|
|
2449
|
+
trait: string | null
|
|
2458
2450
|
balanceType: string
|
|
2459
2451
|
periodType: string
|
|
2460
2452
|
isAbstract: boolean
|
|
@@ -2479,7 +2471,7 @@ export type GetLibraryElementQuery = {
|
|
|
2479
2471
|
qname: string
|
|
2480
2472
|
namespace: string | null
|
|
2481
2473
|
name: string
|
|
2482
|
-
|
|
2474
|
+
trait: string | null
|
|
2483
2475
|
balanceType: string
|
|
2484
2476
|
periodType: string
|
|
2485
2477
|
isAbstract: boolean
|
|
@@ -3173,7 +3165,7 @@ export const GetLedgerAccountRollupsDocument = {
|
|
|
3173
3165
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingElementId' } },
|
|
3174
3166
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingName' } },
|
|
3175
3167
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingQname' } },
|
|
3176
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3168
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3177
3169
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3178
3170
|
{ kind: 'Field', name: { kind: 'Name', value: 'total' } },
|
|
3179
3171
|
{
|
|
@@ -3228,7 +3220,7 @@ export const GetLedgerAccountTreeDocument = {
|
|
|
3228
3220
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
3229
3221
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
3230
3222
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3231
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3223
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3232
3224
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
|
|
3233
3225
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3234
3226
|
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
@@ -3242,7 +3234,7 @@ export const GetLedgerAccountTreeDocument = {
|
|
|
3242
3234
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
3243
3235
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
3244
3236
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3245
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
3237
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3246
3238
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
|
|
3247
3239
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3248
3240
|
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
@@ -3256,10 +3248,7 @@ export const GetLedgerAccountTreeDocument = {
|
|
|
3256
3248
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
3257
3249
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
3258
3250
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3259
|
-
{
|
|
3260
|
-
kind: 'Field',
|
|
3261
|
-
name: { kind: 'Name', value: 'classification' },
|
|
3262
|
-
},
|
|
3251
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3263
3252
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
|
|
3264
3253
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3265
3254
|
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
@@ -3273,10 +3262,7 @@ export const GetLedgerAccountTreeDocument = {
|
|
|
3273
3262
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
3274
3263
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
3275
3264
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3276
|
-
{
|
|
3277
|
-
kind: 'Field',
|
|
3278
|
-
name: { kind: 'Name', value: 'classification' },
|
|
3279
|
-
},
|
|
3265
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
3280
3266
|
{
|
|
3281
3267
|
kind: 'Field',
|
|
3282
3268
|
name: { kind: 'Name', value: 'accountType' },
|
|
@@ -3388,7 +3374,6 @@ export const ListLedgerAccountsDocument = {
|
|
|
3388
3374
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
3389
3375
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
3390
3376
|
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
|
3391
|
-
{ kind: 'Field', name: { kind: 'Name', value: 'classification' } },
|
|
3392
3377
|
{ kind: 'Field', name: { kind: 'Name', value: 'subClassification' } },
|
|
3393
3378
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3394
3379
|
{ kind: 'Field', name: { kind: 'Name', value: 'parentId' } },
|
|
@@ -3576,7 +3561,6 @@ export const ListLedgerElementsDocument = {
|
|
|
3576
3561
|
{ kind: 'Field', name: { kind: 'Name', value: 'description' } },
|
|
3577
3562
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
3578
3563
|
{ kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
|
|
3579
|
-
{ kind: 'Field', name: { kind: 'Name', value: 'classification' } },
|
|
3580
3564
|
{ kind: 'Field', name: { kind: 'Name', value: 'subClassification' } },
|
|
3581
3565
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
3582
3566
|
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
@@ -4109,7 +4093,7 @@ export const GetLedgerMappedTrialBalanceDocument = {
|
|
|
4109
4093
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingElementId' } },
|
|
4110
4094
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
4111
4095
|
{ kind: 'Field', name: { kind: 'Name', value: 'reportingName' } },
|
|
4112
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
4096
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
4113
4097
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
4114
4098
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalDebits' } },
|
|
4115
4099
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalCredits' } },
|
|
@@ -4859,7 +4843,7 @@ export const GetLedgerStatementDocument = {
|
|
|
4859
4843
|
{ kind: 'Field', name: { kind: 'Name', value: 'elementId' } },
|
|
4860
4844
|
{ kind: 'Field', name: { kind: 'Name', value: 'elementQname' } },
|
|
4861
4845
|
{ kind: 'Field', name: { kind: 'Name', value: 'elementName' } },
|
|
4862
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
4846
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
4863
4847
|
{ kind: 'Field', name: { kind: 'Name', value: 'values' } },
|
|
4864
4848
|
{ kind: 'Field', name: { kind: 'Name', value: 'isSubtotal' } },
|
|
4865
4849
|
{ kind: 'Field', name: { kind: 'Name', value: 'depth' } },
|
|
@@ -5303,7 +5287,7 @@ export const GetLedgerTrialBalanceDocument = {
|
|
|
5303
5287
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountId' } },
|
|
5304
5288
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountCode' } },
|
|
5305
5289
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountName' } },
|
|
5306
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
5290
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
5307
5291
|
{ kind: 'Field', name: { kind: 'Name', value: 'accountType' } },
|
|
5308
5292
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalDebits' } },
|
|
5309
5293
|
{ kind: 'Field', name: { kind: 'Name', value: 'totalCredits' } },
|
|
@@ -5352,7 +5336,7 @@ export const ListLedgerUnmappedElementsDocument = {
|
|
|
5352
5336
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5353
5337
|
{ kind: 'Field', name: { kind: 'Name', value: 'code' } },
|
|
5354
5338
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5355
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
5339
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
5356
5340
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
5357
5341
|
{ kind: 'Field', name: { kind: 'Name', value: 'externalSource' } },
|
|
5358
5342
|
{
|
|
@@ -5533,7 +5517,7 @@ export const GetLibraryElementArcsDocument = {
|
|
|
5533
5517
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5534
5518
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
5535
5519
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5536
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
5520
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
5537
5521
|
{ kind: 'Field', name: { kind: 'Name', value: 'source' } },
|
|
5538
5522
|
],
|
|
5539
5523
|
},
|
|
@@ -5636,7 +5620,7 @@ export const GetLibraryElementEquivalentsDocument = {
|
|
|
5636
5620
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5637
5621
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
5638
5622
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5639
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
5623
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
5640
5624
|
{ kind: 'Field', name: { kind: 'Name', value: 'source' } },
|
|
5641
5625
|
],
|
|
5642
5626
|
},
|
|
@@ -5650,7 +5634,7 @@ export const GetLibraryElementEquivalentsDocument = {
|
|
|
5650
5634
|
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
|
|
5651
5635
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
5652
5636
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5653
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
5637
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
5654
5638
|
{ kind: 'Field', name: { kind: 'Name', value: 'source' } },
|
|
5655
5639
|
],
|
|
5656
5640
|
},
|
|
@@ -5806,7 +5790,7 @@ export const ListLibraryElementsDocument = {
|
|
|
5806
5790
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
5807
5791
|
{ kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
|
|
5808
5792
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5809
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
5793
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
5810
5794
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
5811
5795
|
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
5812
5796
|
{ kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
|
|
@@ -5940,7 +5924,7 @@ export const SearchLibraryElementsDocument = {
|
|
|
5940
5924
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
5941
5925
|
{ kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
|
|
5942
5926
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
5943
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
5927
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
5944
5928
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
5945
5929
|
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
5946
5930
|
{ kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
|
|
@@ -6025,7 +6009,7 @@ export const GetLibraryElementDocument = {
|
|
|
6025
6009
|
{ kind: 'Field', name: { kind: 'Name', value: 'qname' } },
|
|
6026
6010
|
{ kind: 'Field', name: { kind: 'Name', value: 'namespace' } },
|
|
6027
6011
|
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
|
|
6028
|
-
{ kind: 'Field', name: { kind: 'Name', value: '
|
|
6012
|
+
{ kind: 'Field', name: { kind: 'Name', value: 'trait' } },
|
|
6029
6013
|
{ kind: 'Field', name: { kind: 'Name', value: 'balanceType' } },
|
|
6030
6014
|
{ kind: 'Field', name: { kind: 'Name', value: 'periodType' } },
|
|
6031
6015
|
{ kind: 'Field', name: { kind: 'Name', value: 'isAbstract' } },
|
|
@@ -20,7 +20,7 @@ exports.GET_ACCOUNT_TREE = (0, graphql_request_1.gql) `
|
|
|
20
20
|
id
|
|
21
21
|
code
|
|
22
22
|
name
|
|
23
|
-
|
|
23
|
+
trait
|
|
24
24
|
accountType
|
|
25
25
|
balanceType
|
|
26
26
|
depth
|
|
@@ -29,7 +29,7 @@ exports.GET_ACCOUNT_TREE = (0, graphql_request_1.gql) `
|
|
|
29
29
|
id
|
|
30
30
|
code
|
|
31
31
|
name
|
|
32
|
-
|
|
32
|
+
trait
|
|
33
33
|
accountType
|
|
34
34
|
balanceType
|
|
35
35
|
depth
|
|
@@ -38,7 +38,7 @@ exports.GET_ACCOUNT_TREE = (0, graphql_request_1.gql) `
|
|
|
38
38
|
id
|
|
39
39
|
code
|
|
40
40
|
name
|
|
41
|
-
|
|
41
|
+
trait
|
|
42
42
|
accountType
|
|
43
43
|
balanceType
|
|
44
44
|
depth
|
|
@@ -47,7 +47,7 @@ exports.GET_ACCOUNT_TREE = (0, graphql_request_1.gql) `
|
|
|
47
47
|
id
|
|
48
48
|
code
|
|
49
49
|
name
|
|
50
|
-
|
|
50
|
+
trait
|
|
51
51
|
accountType
|
|
52
52
|
balanceType
|
|
53
53
|
depth
|
|
@@ -18,7 +18,7 @@ export const GET_ACCOUNT_TREE = gql`
|
|
|
18
18
|
id
|
|
19
19
|
code
|
|
20
20
|
name
|
|
21
|
-
|
|
21
|
+
trait
|
|
22
22
|
accountType
|
|
23
23
|
balanceType
|
|
24
24
|
depth
|
|
@@ -27,7 +27,7 @@ export const GET_ACCOUNT_TREE = gql`
|
|
|
27
27
|
id
|
|
28
28
|
code
|
|
29
29
|
name
|
|
30
|
-
|
|
30
|
+
trait
|
|
31
31
|
accountType
|
|
32
32
|
balanceType
|
|
33
33
|
depth
|
|
@@ -36,7 +36,7 @@ export const GET_ACCOUNT_TREE = gql`
|
|
|
36
36
|
id
|
|
37
37
|
code
|
|
38
38
|
name
|
|
39
|
-
|
|
39
|
+
trait
|
|
40
40
|
accountType
|
|
41
41
|
balanceType
|
|
42
42
|
depth
|
|
@@ -45,7 +45,7 @@ export const GET_ACCOUNT_TREE = gql`
|
|
|
45
45
|
id
|
|
46
46
|
code
|
|
47
47
|
name
|
|
48
|
-
|
|
48
|
+
trait
|
|
49
49
|
accountType
|
|
50
50
|
balanceType
|
|
51
51
|
depth
|