@robosystems/client 0.3.7 → 0.3.9
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 +27 -14
- package/artifacts/LedgerClient.js +59 -39
- package/artifacts/LedgerClient.ts +89 -62
- package/artifacts/LibraryClient.d.ts +117 -0
- package/artifacts/LibraryClient.js +132 -0
- package/artifacts/LibraryClient.ts +358 -0
- package/artifacts/graphql/generated/graphql.d.ts +686 -79
- package/artifacts/graphql/generated/graphql.js +1121 -135
- package/artifacts/graphql/generated/graphql.ts +1887 -281
- package/artifacts/graphql/queries/ledger/informationBlock.d.ts +15 -0
- package/artifacts/graphql/queries/ledger/informationBlock.js +125 -0
- package/artifacts/graphql/queries/ledger/informationBlock.ts +124 -0
- package/artifacts/graphql/queries/library/arcs.d.ts +24 -0
- package/artifacts/graphql/queries/library/arcs.js +106 -0
- package/artifacts/graphql/queries/library/arcs.ts +107 -0
- package/artifacts/graphql/queries/library/elements.d.ts +24 -0
- package/artifacts/graphql/queries/library/elements.js +134 -0
- package/artifacts/graphql/queries/library/elements.ts +134 -0
- package/artifacts/graphql/queries/library/taxonomies.d.ts +15 -0
- package/artifacts/graphql/queries/library/taxonomies.js +61 -0
- package/artifacts/graphql/queries/library/taxonomies.ts +60 -0
- package/artifacts/index.d.ts +5 -1
- package/artifacts/index.js +17 -1
- package/artifacts/index.ts +26 -1
- package/index.ts +2 -2
- package/package.json +7 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +9 -7
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +80 -62
- package/sdk/sdk.gen.js +158 -122
- package/sdk/sdk.gen.ts +154 -118
- package/sdk/types.gen.d.ts +801 -623
- package/sdk/types.gen.ts +825 -638
- package/sdk.gen.d.ts +80 -62
- package/sdk.gen.js +158 -122
- package/sdk.gen.ts +154 -118
- package/types.gen.d.ts +801 -623
- package/types.gen.ts +825 -638
- package/artifacts/graphql/queries/ledger/scheduleFacts.d.ts +0 -7
- package/artifacts/graphql/queries/ledger/scheduleFacts.js +0 -24
- package/artifacts/graphql/queries/ledger/scheduleFacts.ts +0 -22
- package/artifacts/graphql/queries/ledger/schedules.d.ts +0 -6
- package/artifacts/graphql/queries/ledger/schedules.js +0 -24
- package/artifacts/graphql/queries/ledger/schedules.ts +0 -22
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { gql } from 'graphql-request'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* List library elements with filters + pagination.
|
|
5
|
+
*
|
|
6
|
+
* `classification` filters on the FASB elementsOfFinancialStatements axis.
|
|
7
|
+
* `activityType` filters on the cash-flow activity axis
|
|
8
|
+
* (operatingActivity / investingActivity / financingActivity). Both axes
|
|
9
|
+
* apply independently and can be combined.
|
|
10
|
+
*
|
|
11
|
+
* `isAbstract=true` → abstract only; `false` → concrete only; omit for both.
|
|
12
|
+
*
|
|
13
|
+
* `includeLabels` / `includeReferences` default `false`; the list view
|
|
14
|
+
* doesn't render them and they add N+1-ish payload weight.
|
|
15
|
+
*/
|
|
16
|
+
export const LIST_LIBRARY_ELEMENTS = gql`
|
|
17
|
+
query ListLibraryElements(
|
|
18
|
+
$taxonomyId: ID
|
|
19
|
+
$source: String
|
|
20
|
+
$classification: String
|
|
21
|
+
$activityType: String
|
|
22
|
+
$elementType: String
|
|
23
|
+
$isAbstract: Boolean
|
|
24
|
+
$limit: Int! = 50
|
|
25
|
+
$offset: Int! = 0
|
|
26
|
+
$includeLabels: Boolean! = false
|
|
27
|
+
$includeReferences: Boolean! = false
|
|
28
|
+
) {
|
|
29
|
+
libraryElements(
|
|
30
|
+
taxonomyId: $taxonomyId
|
|
31
|
+
source: $source
|
|
32
|
+
classification: $classification
|
|
33
|
+
activityType: $activityType
|
|
34
|
+
elementType: $elementType
|
|
35
|
+
isAbstract: $isAbstract
|
|
36
|
+
limit: $limit
|
|
37
|
+
offset: $offset
|
|
38
|
+
includeLabels: $includeLabels
|
|
39
|
+
includeReferences: $includeReferences
|
|
40
|
+
) {
|
|
41
|
+
id
|
|
42
|
+
qname
|
|
43
|
+
namespace
|
|
44
|
+
name
|
|
45
|
+
classification
|
|
46
|
+
balanceType
|
|
47
|
+
periodType
|
|
48
|
+
isAbstract
|
|
49
|
+
isMonetary
|
|
50
|
+
elementType
|
|
51
|
+
source
|
|
52
|
+
taxonomyId
|
|
53
|
+
parentId
|
|
54
|
+
labels @include(if: $includeLabels) {
|
|
55
|
+
role
|
|
56
|
+
language
|
|
57
|
+
text
|
|
58
|
+
}
|
|
59
|
+
references @include(if: $includeReferences) {
|
|
60
|
+
refType
|
|
61
|
+
citation
|
|
62
|
+
uri
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
`
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Substring search across qname, name, and standard label text.
|
|
70
|
+
* Always returns labels + references inline — the search UI renders them.
|
|
71
|
+
*/
|
|
72
|
+
export const SEARCH_LIBRARY_ELEMENTS = gql`
|
|
73
|
+
query SearchLibraryElements($query: String!, $source: String, $limit: Int! = 50) {
|
|
74
|
+
searchLibraryElements(query: $query, source: $source, limit: $limit) {
|
|
75
|
+
id
|
|
76
|
+
qname
|
|
77
|
+
namespace
|
|
78
|
+
name
|
|
79
|
+
classification
|
|
80
|
+
balanceType
|
|
81
|
+
periodType
|
|
82
|
+
isAbstract
|
|
83
|
+
isMonetary
|
|
84
|
+
elementType
|
|
85
|
+
source
|
|
86
|
+
taxonomyId
|
|
87
|
+
parentId
|
|
88
|
+
labels {
|
|
89
|
+
role
|
|
90
|
+
language
|
|
91
|
+
text
|
|
92
|
+
}
|
|
93
|
+
references {
|
|
94
|
+
refType
|
|
95
|
+
citation
|
|
96
|
+
uri
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
`
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Get a single element by id or by qname ('sfac6:Assets', etc).
|
|
104
|
+
* Returns null when neither identifier resolves.
|
|
105
|
+
*/
|
|
106
|
+
export const GET_LIBRARY_ELEMENT = gql`
|
|
107
|
+
query GetLibraryElement($id: ID, $qname: String) {
|
|
108
|
+
libraryElement(id: $id, qname: $qname) {
|
|
109
|
+
id
|
|
110
|
+
qname
|
|
111
|
+
namespace
|
|
112
|
+
name
|
|
113
|
+
classification
|
|
114
|
+
balanceType
|
|
115
|
+
periodType
|
|
116
|
+
isAbstract
|
|
117
|
+
isMonetary
|
|
118
|
+
elementType
|
|
119
|
+
source
|
|
120
|
+
taxonomyId
|
|
121
|
+
parentId
|
|
122
|
+
labels {
|
|
123
|
+
role
|
|
124
|
+
language
|
|
125
|
+
text
|
|
126
|
+
}
|
|
127
|
+
references {
|
|
128
|
+
refType
|
|
129
|
+
citation
|
|
130
|
+
uri
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
`
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List every curated taxonomy visible at the current graph_id:
|
|
3
|
+
* - On `graph_id="library"` → canonical library (public schema).
|
|
4
|
+
* - On a tenant graph_id → tenant's library copy + any tenant
|
|
5
|
+
* taxonomies (e.g. the entity's CoA).
|
|
6
|
+
*
|
|
7
|
+
* Pass `includeElementCount: true` to populate the `elementCount` field
|
|
8
|
+
* (one COUNT(*) per row — skip for list UIs that don't render it).
|
|
9
|
+
*/
|
|
10
|
+
export declare const LIST_LIBRARY_TAXONOMIES: string;
|
|
11
|
+
/**
|
|
12
|
+
* Fetch one taxonomy by id OR by (standard, version). Returns null
|
|
13
|
+
* when neither a matching id nor a (standard, version) pair is found.
|
|
14
|
+
*/
|
|
15
|
+
export declare const GET_LIBRARY_TAXONOMY: string;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GET_LIBRARY_TAXONOMY = exports.LIST_LIBRARY_TAXONOMIES = void 0;
|
|
4
|
+
const graphql_request_1 = require("graphql-request");
|
|
5
|
+
/**
|
|
6
|
+
* List every curated taxonomy visible at the current graph_id:
|
|
7
|
+
* - On `graph_id="library"` → canonical library (public schema).
|
|
8
|
+
* - On a tenant graph_id → tenant's library copy + any tenant
|
|
9
|
+
* taxonomies (e.g. the entity's CoA).
|
|
10
|
+
*
|
|
11
|
+
* Pass `includeElementCount: true` to populate the `elementCount` field
|
|
12
|
+
* (one COUNT(*) per row — skip for list UIs that don't render it).
|
|
13
|
+
*/
|
|
14
|
+
exports.LIST_LIBRARY_TAXONOMIES = (0, graphql_request_1.gql) `
|
|
15
|
+
query ListLibraryTaxonomies($standard: String, $includeElementCount: Boolean! = false) {
|
|
16
|
+
libraryTaxonomies(standard: $standard, includeElementCount: $includeElementCount) {
|
|
17
|
+
id
|
|
18
|
+
name
|
|
19
|
+
description
|
|
20
|
+
standard
|
|
21
|
+
version
|
|
22
|
+
namespaceUri
|
|
23
|
+
taxonomyType
|
|
24
|
+
isShared
|
|
25
|
+
isActive
|
|
26
|
+
isLocked
|
|
27
|
+
elementCount
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
`;
|
|
31
|
+
/**
|
|
32
|
+
* Fetch one taxonomy by id OR by (standard, version). Returns null
|
|
33
|
+
* when neither a matching id nor a (standard, version) pair is found.
|
|
34
|
+
*/
|
|
35
|
+
exports.GET_LIBRARY_TAXONOMY = (0, graphql_request_1.gql) `
|
|
36
|
+
query GetLibraryTaxonomy(
|
|
37
|
+
$id: ID
|
|
38
|
+
$standard: String
|
|
39
|
+
$version: String
|
|
40
|
+
$includeElementCount: Boolean! = false
|
|
41
|
+
) {
|
|
42
|
+
libraryTaxonomy(
|
|
43
|
+
id: $id
|
|
44
|
+
standard: $standard
|
|
45
|
+
version: $version
|
|
46
|
+
includeElementCount: $includeElementCount
|
|
47
|
+
) {
|
|
48
|
+
id
|
|
49
|
+
name
|
|
50
|
+
description
|
|
51
|
+
standard
|
|
52
|
+
version
|
|
53
|
+
namespaceUri
|
|
54
|
+
taxonomyType
|
|
55
|
+
isShared
|
|
56
|
+
isActive
|
|
57
|
+
isLocked
|
|
58
|
+
elementCount
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
`;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { gql } from 'graphql-request'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* List every curated taxonomy visible at the current graph_id:
|
|
5
|
+
* - On `graph_id="library"` → canonical library (public schema).
|
|
6
|
+
* - On a tenant graph_id → tenant's library copy + any tenant
|
|
7
|
+
* taxonomies (e.g. the entity's CoA).
|
|
8
|
+
*
|
|
9
|
+
* Pass `includeElementCount: true` to populate the `elementCount` field
|
|
10
|
+
* (one COUNT(*) per row — skip for list UIs that don't render it).
|
|
11
|
+
*/
|
|
12
|
+
export const LIST_LIBRARY_TAXONOMIES = gql`
|
|
13
|
+
query ListLibraryTaxonomies($standard: String, $includeElementCount: Boolean! = false) {
|
|
14
|
+
libraryTaxonomies(standard: $standard, includeElementCount: $includeElementCount) {
|
|
15
|
+
id
|
|
16
|
+
name
|
|
17
|
+
description
|
|
18
|
+
standard
|
|
19
|
+
version
|
|
20
|
+
namespaceUri
|
|
21
|
+
taxonomyType
|
|
22
|
+
isShared
|
|
23
|
+
isActive
|
|
24
|
+
isLocked
|
|
25
|
+
elementCount
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
`
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Fetch one taxonomy by id OR by (standard, version). Returns null
|
|
32
|
+
* when neither a matching id nor a (standard, version) pair is found.
|
|
33
|
+
*/
|
|
34
|
+
export const GET_LIBRARY_TAXONOMY = gql`
|
|
35
|
+
query GetLibraryTaxonomy(
|
|
36
|
+
$id: ID
|
|
37
|
+
$standard: String
|
|
38
|
+
$version: String
|
|
39
|
+
$includeElementCount: Boolean! = false
|
|
40
|
+
) {
|
|
41
|
+
libraryTaxonomy(
|
|
42
|
+
id: $id
|
|
43
|
+
standard: $standard
|
|
44
|
+
version: $version
|
|
45
|
+
includeElementCount: $includeElementCount
|
|
46
|
+
) {
|
|
47
|
+
id
|
|
48
|
+
name
|
|
49
|
+
description
|
|
50
|
+
standard
|
|
51
|
+
version
|
|
52
|
+
namespaceUri
|
|
53
|
+
taxonomyType
|
|
54
|
+
isShared
|
|
55
|
+
isActive
|
|
56
|
+
isLocked
|
|
57
|
+
elementCount
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
`
|
package/artifacts/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { AgentClient } from './AgentClient';
|
|
|
6
6
|
import type { TokenProvider } from './graphql/client';
|
|
7
7
|
import { InvestorClient } from './InvestorClient';
|
|
8
8
|
import { LedgerClient } from './LedgerClient';
|
|
9
|
+
import { LibraryClient } from './LibraryClient';
|
|
9
10
|
import { OperationClient } from './OperationClient';
|
|
10
11
|
import { QueryClient } from './QueryClient';
|
|
11
12
|
import { SSEClient } from './SSEClient';
|
|
@@ -35,6 +36,7 @@ export declare class RoboSystemsClients {
|
|
|
35
36
|
readonly operations: OperationClient;
|
|
36
37
|
readonly ledger: LedgerClient;
|
|
37
38
|
readonly investor: InvestorClient;
|
|
39
|
+
readonly library: LibraryClient;
|
|
38
40
|
/**
|
|
39
41
|
* @deprecated Use `ledger` instead — reports and publish lists are
|
|
40
42
|
* now part of the LedgerClient.
|
|
@@ -59,10 +61,11 @@ export * from './AgentClient';
|
|
|
59
61
|
export * from './config';
|
|
60
62
|
export * from './InvestorClient';
|
|
61
63
|
export * from './LedgerClient';
|
|
64
|
+
export * from './LibraryClient';
|
|
62
65
|
export * from './OperationClient';
|
|
63
66
|
export * from './QueryClient';
|
|
64
67
|
export * from './SSEClient';
|
|
65
|
-
export { AgentClient, InvestorClient, LedgerClient, OperationClient, QueryClient, SSEClient };
|
|
68
|
+
export { AgentClient, InvestorClient, LedgerClient, LibraryClient, OperationClient, QueryClient, SSEClient, };
|
|
66
69
|
export { useMultipleOperations, useOperation, useQuery, useSDKClients, useStreamingQuery, } from './hooks';
|
|
67
70
|
export declare const clients: {
|
|
68
71
|
readonly query: QueryClient;
|
|
@@ -70,6 +73,7 @@ export declare const clients: {
|
|
|
70
73
|
readonly operations: OperationClient;
|
|
71
74
|
readonly ledger: LedgerClient;
|
|
72
75
|
readonly investor: InvestorClient;
|
|
76
|
+
readonly library: LibraryClient;
|
|
73
77
|
/** @deprecated Use `ledger` instead */
|
|
74
78
|
readonly reports: LedgerClient;
|
|
75
79
|
monitorOperation: (operationId: string, onProgress?: (progress: any) => void) => Promise<any>;
|
package/artifacts/index.js
CHANGED
|
@@ -18,7 +18,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
19
19
|
};
|
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
-
exports.analyzeFinancials = exports.agentQuery = exports.streamQuery = exports.executeQuery = exports.monitorOperation = exports.clients = exports.useStreamingQuery = exports.useSDKClients = exports.useQuery = exports.useOperation = exports.useMultipleOperations = exports.SSEClient = exports.QueryClient = exports.OperationClient = exports.LedgerClient = exports.InvestorClient = exports.AgentClient = exports.RoboSystemsClients = void 0;
|
|
21
|
+
exports.analyzeFinancials = exports.agentQuery = exports.streamQuery = exports.executeQuery = exports.monitorOperation = exports.clients = exports.useStreamingQuery = exports.useSDKClients = exports.useQuery = exports.useOperation = exports.useMultipleOperations = exports.SSEClient = exports.QueryClient = exports.OperationClient = exports.LibraryClient = exports.LedgerClient = exports.InvestorClient = exports.AgentClient = exports.RoboSystemsClients = void 0;
|
|
22
22
|
const client_gen_1 = require("../client.gen");
|
|
23
23
|
const AgentClient_1 = require("./AgentClient");
|
|
24
24
|
Object.defineProperty(exports, "AgentClient", { enumerable: true, get: function () { return AgentClient_1.AgentClient; } });
|
|
@@ -27,6 +27,8 @@ const InvestorClient_1 = require("./InvestorClient");
|
|
|
27
27
|
Object.defineProperty(exports, "InvestorClient", { enumerable: true, get: function () { return InvestorClient_1.InvestorClient; } });
|
|
28
28
|
const LedgerClient_1 = require("./LedgerClient");
|
|
29
29
|
Object.defineProperty(exports, "LedgerClient", { enumerable: true, get: function () { return LedgerClient_1.LedgerClient; } });
|
|
30
|
+
const LibraryClient_1 = require("./LibraryClient");
|
|
31
|
+
Object.defineProperty(exports, "LibraryClient", { enumerable: true, get: function () { return LibraryClient_1.LibraryClient; } });
|
|
30
32
|
const OperationClient_1 = require("./OperationClient");
|
|
31
33
|
Object.defineProperty(exports, "OperationClient", { enumerable: true, get: function () { return OperationClient_1.OperationClient; } });
|
|
32
34
|
const QueryClient_1 = require("./QueryClient");
|
|
@@ -87,6 +89,16 @@ class RoboSystemsClients {
|
|
|
87
89
|
tokenProvider: this.config.tokenProvider,
|
|
88
90
|
headers: this.config.headers,
|
|
89
91
|
});
|
|
92
|
+
// Library uses GraphQL and accepts graphId per-call — pass either
|
|
93
|
+
// the `"library"` sentinel (canonical) or any tenant graph_id
|
|
94
|
+
// (tenant library copy + CoA).
|
|
95
|
+
this.library = new LibraryClient_1.LibraryClient({
|
|
96
|
+
baseUrl: this.config.baseUrl,
|
|
97
|
+
credentials: this.config.credentials,
|
|
98
|
+
token: this.config.token,
|
|
99
|
+
tokenProvider: this.config.tokenProvider,
|
|
100
|
+
headers: this.config.headers,
|
|
101
|
+
});
|
|
90
102
|
// Reports consolidated into LedgerClient — alias for backward compat
|
|
91
103
|
this.reports = this.ledger;
|
|
92
104
|
}
|
|
@@ -124,6 +136,7 @@ __exportStar(require("./AgentClient"), exports);
|
|
|
124
136
|
__exportStar(require("./config"), exports);
|
|
125
137
|
__exportStar(require("./InvestorClient"), exports);
|
|
126
138
|
__exportStar(require("./LedgerClient"), exports);
|
|
139
|
+
__exportStar(require("./LibraryClient"), exports);
|
|
127
140
|
__exportStar(require("./OperationClient"), exports);
|
|
128
141
|
__exportStar(require("./QueryClient"), exports);
|
|
129
142
|
__exportStar(require("./SSEClient"), exports);
|
|
@@ -158,6 +171,9 @@ exports.clients = {
|
|
|
158
171
|
get investor() {
|
|
159
172
|
return getClients().investor;
|
|
160
173
|
},
|
|
174
|
+
get library() {
|
|
175
|
+
return getClients().library;
|
|
176
|
+
},
|
|
161
177
|
/** @deprecated Use `ledger` instead */
|
|
162
178
|
get reports() {
|
|
163
179
|
return getClients().ledger;
|
package/artifacts/index.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { extractTokenFromSDKClient, getSDKClientConfig } from './config'
|
|
|
9
9
|
import type { TokenProvider } from './graphql/client'
|
|
10
10
|
import { InvestorClient } from './InvestorClient'
|
|
11
11
|
import { LedgerClient } from './LedgerClient'
|
|
12
|
+
import { LibraryClient } from './LibraryClient'
|
|
12
13
|
import { OperationClient } from './OperationClient'
|
|
13
14
|
import { QueryClient } from './QueryClient'
|
|
14
15
|
import { SSEClient } from './SSEClient'
|
|
@@ -56,6 +57,7 @@ export class RoboSystemsClients {
|
|
|
56
57
|
public readonly operations: OperationClient
|
|
57
58
|
public readonly ledger: LedgerClient
|
|
58
59
|
public readonly investor: InvestorClient
|
|
60
|
+
public readonly library: LibraryClient
|
|
59
61
|
/**
|
|
60
62
|
* @deprecated Use `ledger` instead — reports and publish lists are
|
|
61
63
|
* now part of the LedgerClient.
|
|
@@ -125,6 +127,17 @@ export class RoboSystemsClients {
|
|
|
125
127
|
headers: this.config.headers,
|
|
126
128
|
})
|
|
127
129
|
|
|
130
|
+
// Library uses GraphQL and accepts graphId per-call — pass either
|
|
131
|
+
// the `"library"` sentinel (canonical) or any tenant graph_id
|
|
132
|
+
// (tenant library copy + CoA).
|
|
133
|
+
this.library = new LibraryClient({
|
|
134
|
+
baseUrl: this.config.baseUrl,
|
|
135
|
+
credentials: this.config.credentials,
|
|
136
|
+
token: this.config.token,
|
|
137
|
+
tokenProvider: this.config.tokenProvider,
|
|
138
|
+
headers: this.config.headers,
|
|
139
|
+
})
|
|
140
|
+
|
|
128
141
|
// Reports consolidated into LedgerClient — alias for backward compat
|
|
129
142
|
this.reports = this.ledger
|
|
130
143
|
}
|
|
@@ -165,11 +178,20 @@ export * from './AgentClient'
|
|
|
165
178
|
export * from './config'
|
|
166
179
|
export * from './InvestorClient'
|
|
167
180
|
export * from './LedgerClient'
|
|
181
|
+
export * from './LibraryClient'
|
|
168
182
|
export * from './OperationClient'
|
|
169
183
|
export * from './QueryClient'
|
|
170
184
|
export * from './SSEClient'
|
|
171
185
|
|
|
172
|
-
export {
|
|
186
|
+
export {
|
|
187
|
+
AgentClient,
|
|
188
|
+
InvestorClient,
|
|
189
|
+
LedgerClient,
|
|
190
|
+
LibraryClient,
|
|
191
|
+
OperationClient,
|
|
192
|
+
QueryClient,
|
|
193
|
+
SSEClient,
|
|
194
|
+
}
|
|
173
195
|
|
|
174
196
|
// Export React hooks
|
|
175
197
|
export {
|
|
@@ -206,6 +228,9 @@ export const clients = {
|
|
|
206
228
|
get investor() {
|
|
207
229
|
return getClients().investor
|
|
208
230
|
},
|
|
231
|
+
get library() {
|
|
232
|
+
return getClients().library
|
|
233
|
+
},
|
|
209
234
|
/** @deprecated Use `ledger` instead */
|
|
210
235
|
get reports() {
|
|
211
236
|
return getClients().ledger
|
package/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
-
export { autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createCheckoutSession, createConnection, createFileUpload, createGraph, createPortalSession, createRepositorySubscription, createUserApiKey, deleteConnection, deleteDocument, deleteFile, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getServiceOfferings, getServiceStatus, getSubgraphInfo, getSubgraphQuota, handleHttpGetExtensionsGraphIdGraphqlGet, handleHttpPostExtensionsGraphIdGraphqlPost, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listFiles, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listSubgraphs, listTables, listUserApiKeys, listUserOrgs, loginUser, logoutUser, oauthCallback, opAddPublishListMembers, opAutoMapElements, opBuildFactGrid, opChangeTier, opClosePeriod, opCreateAssociations, opCreateBackup, opCreateClosingEntry, opCreateElement, opCreateJournalEntry, opCreateManualClosingEntry, opCreateMappingAssociation, opCreatePortfolio, opCreatePosition, opCreatePublishList, opCreateReport,
|
|
4
|
-
export type { AccountInfo, AddPublishListMembersOperation, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsOperation, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkAssociationItem, BulkCreateAssociationsRequest, BulkDocumentUploadRequest, BulkDocumentUploadResponse, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, ChangeTierOp, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClientOptions, ClosePeriodOperation, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateClosingEntryOperation, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateElementRequest, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponse, CreateGraphResponses, CreateJournalEntryRequest, CreateManualClosingEntryRequest, CreateMappingAssociationOperation, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioRequest, CreatePositionRequest, CreatePublishListRequest, CreateReportRequest, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateScheduleRequest, CreateSecurityRequest, CreateStructureRequest, CreateSubgraphRequest, CreateTaxonomyRequest, CreateTransactionRequest, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewRequest, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteAssociationRequest, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteElementRequest, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteJournalEntryRequest, DeleteMappingAssociationOperation, DeletePortfolioOperation, DeletePositionOperation, DeletePublishListOperation, DeleteReportOperation, DeleteScheduleRequest, DeleteSecurityOperation, DeleteStructureRequest, DeleteSubgraphOp, DeleteTaxonomyRequest, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, EntryTemplateRequest, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsError, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigError, GetCaptchaConfigErrors, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusError, GetCheckoutStatusErrors, GetCheckoutStatusResponse, GetCheckoutStatusResponses, GetConnectionData, GetConnectionError, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsError, GetConnectionOptionsErrors, GetConnectionOptionsResponse, GetConnectionOptionsResponses, GetConnectionResponse, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryError, GetCreditSummaryErrors, GetCreditSummaryResponse, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserError, GetCurrentAuthUserErrors, GetCurrentAuthUserResponse, GetCurrentAuthUserResponses, GetCurrentUserData, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityError, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsError, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, GetOperationStatusData, GetOperationStatusError, GetOperationStatusErrors, GetOperationStatusResponse, GetOperationStatusResponses, GetOrgBillingCustomerData, GetOrgBillingCustomerError, GetOrgBillingCustomerErrors, GetOrgBillingCustomerResponse, GetOrgBillingCustomerResponses, GetOrgData, GetOrgError, GetOrgErrors, GetOrgLimitsData, GetOrgLimitsError, GetOrgLimitsErrors, GetOrgLimitsResponse, GetOrgLimitsResponses, GetOrgResponse, GetOrgResponses, GetOrgSubscriptionData, GetOrgSubscriptionError, GetOrgSubscriptionErrors, GetOrgSubscriptionResponse, GetOrgSubscriptionResponses, GetOrgUpcomingInvoiceData, GetOrgUpcomingInvoiceError, GetOrgUpcomingInvoiceErrors, GetOrgUpcomingInvoiceResponse, GetOrgUpcomingInvoiceResponses, GetOrgUsageData, GetOrgUsageError, GetOrgUsageErrors, GetOrgUsageResponse, GetOrgUsageResponses, GetPasswordPolicyData, GetPasswordPolicyError, GetPasswordPolicyErrors, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HandleHttpGetExtensionsGraphIdGraphqlGetData, HandleHttpGetExtensionsGraphIdGraphqlGetError, HandleHttpGetExtensionsGraphIdGraphqlGetErrors, HandleHttpGetExtensionsGraphIdGraphqlGetResponses, HandleHttpPostExtensionsGraphIdGraphqlPostData, HandleHttpPostExtensionsGraphIdGraphqlPostError, HandleHttpPostExtensionsGraphIdGraphqlPostErrors, HandleHttpPostExtensionsGraphIdGraphqlPostResponses, HealthStatus, HttpValidationError, InitialEntityData, InitializeLedgerRequest, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, JournalEntryLineItemInput, LinkEntityTaxonomyRequest, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListBackupsData, ListBackupsError, ListBackupsErrors, ListBackupsResponse, ListBackupsResponses, ListConnectionsData, ListConnectionsError, ListConnectionsErrors, ListConnectionsResponse, ListConnectionsResponses, ListCreditTransactionsData, ListCreditTransactionsError, ListCreditTransactionsErrors, ListCreditTransactionsResponse, ListCreditTransactionsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListMcpToolsData, ListMcpToolsError, ListMcpToolsErrors, ListMcpToolsResponse, ListMcpToolsResponses, ListOrgGraphsData, ListOrgGraphsError, ListOrgGraphsErrors, ListOrgGraphsResponse, ListOrgGraphsResponses, ListOrgInvoicesData, ListOrgInvoicesError, ListOrgInvoicesErrors, ListOrgInvoicesResponse, ListOrgInvoicesResponses, ListOrgMembersData, ListOrgMembersError, ListOrgMembersErrors, ListOrgMembersResponse, ListOrgMembersResponses, ListOrgSubscriptionsData, ListOrgSubscriptionsError, ListOrgSubscriptionsErrors, ListOrgSubscriptionsResponse, ListOrgSubscriptionsResponses, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListUserApiKeysData, ListUserApiKeysError, ListUserApiKeysErrors, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsError, ListUserOrgsErrors, ListUserOrgsResponse, ListUserOrgsResponses, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserError, LogoutUserErrors, LogoutUserResponse, LogoutUserResponses, ManualLineItemRequest, MaterializeOp, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OpAddPublishListMembersData, OpAddPublishListMembersError, OpAddPublishListMembersErrors, OpAddPublishListMembersResponse, OpAddPublishListMembersResponses, OpAutoMapElementsData, OpAutoMapElementsError, OpAutoMapElementsErrors, OpAutoMapElementsResponse, OpAutoMapElementsResponses, OpBuildFactGridData, OpBuildFactGridError, OpBuildFactGridErrors, OpBuildFactGridResponse, OpBuildFactGridResponses, OpChangeTierData, OpChangeTierError, OpChangeTierErrors, OpChangeTierResponse, OpChangeTierResponses, OpClosePeriodData, OpClosePeriodError, OpClosePeriodErrors, OpClosePeriodResponse, OpClosePeriodResponses, OpCreateAssociationsData, OpCreateAssociationsError, OpCreateAssociationsErrors, OpCreateAssociationsResponse, OpCreateAssociationsResponses, OpCreateBackupData, OpCreateBackupError, OpCreateBackupErrors, OpCreateBackupResponse, OpCreateBackupResponses, OpCreateClosingEntryData, OpCreateClosingEntryError, OpCreateClosingEntryErrors, OpCreateClosingEntryResponse, OpCreateClosingEntryResponses, OpCreateElementData, OpCreateElementError, OpCreateElementErrors, OpCreateElementResponse, OpCreateElementResponses, OpCreateJournalEntryData, OpCreateJournalEntryError, OpCreateJournalEntryErrors, OpCreateJournalEntryResponse, OpCreateJournalEntryResponses, OpCreateManualClosingEntryData, OpCreateManualClosingEntryError, OpCreateManualClosingEntryErrors, OpCreateManualClosingEntryResponse, OpCreateManualClosingEntryResponses, OpCreateMappingAssociationData, OpCreateMappingAssociationError, OpCreateMappingAssociationErrors, OpCreateMappingAssociationResponse, OpCreateMappingAssociationResponses, OpCreatePortfolioData, OpCreatePortfolioError, OpCreatePortfolioErrors, OpCreatePortfolioResponse, OpCreatePortfolioResponses, OpCreatePositionData, OpCreatePositionError, OpCreatePositionErrors, OpCreatePositionResponse, OpCreatePositionResponses, OpCreatePublishListData, OpCreatePublishListError, OpCreatePublishListErrors, OpCreatePublishListResponse, OpCreatePublishListResponses, OpCreateReportData, OpCreateReportError, OpCreateReportErrors, OpCreateReportResponse, OpCreateReportResponses, OpCreateScheduleData, OpCreateScheduleError, OpCreateScheduleErrors, OpCreateScheduleResponse, OpCreateScheduleResponses, OpCreateSecurityData, OpCreateSecurityError, OpCreateSecurityErrors, OpCreateSecurityResponse, OpCreateSecurityResponses, OpCreateStructureData, OpCreateStructureError, OpCreateStructureErrors, OpCreateStructureResponse, OpCreateStructureResponses, OpCreateSubgraphData, OpCreateSubgraphError, OpCreateSubgraphErrors, OpCreateSubgraphResponse, OpCreateSubgraphResponses, OpCreateTaxonomyData, OpCreateTaxonomyError, OpCreateTaxonomyErrors, OpCreateTaxonomyResponse, OpCreateTaxonomyResponses, OpCreateTransactionData, OpCreateTransactionError, OpCreateTransactionErrors, OpCreateTransactionResponse, OpCreateTransactionResponses, OpDeleteAssociationData, OpDeleteAssociationError, OpDeleteAssociationErrors, OpDeleteAssociationResponse, OpDeleteAssociationResponses, OpDeleteElementData, OpDeleteElementError, OpDeleteElementErrors, OpDeleteElementResponse, OpDeleteElementResponses, OpDeleteJournalEntryData, OpDeleteJournalEntryError, OpDeleteJournalEntryErrors, OpDeleteJournalEntryResponse, OpDeleteJournalEntryResponses, OpDeleteMappingAssociationData, OpDeleteMappingAssociationError, OpDeleteMappingAssociationErrors, OpDeleteMappingAssociationResponse, OpDeleteMappingAssociationResponses, OpDeletePortfolioData, OpDeletePortfolioError, OpDeletePortfolioErrors, OpDeletePortfolioResponse, OpDeletePortfolioResponses, OpDeletePositionData, OpDeletePositionError, OpDeletePositionErrors, OpDeletePositionResponse, OpDeletePositionResponses, OpDeletePublishListData, OpDeletePublishListError, OpDeletePublishListErrors, OpDeletePublishListResponse, OpDeletePublishListResponses, OpDeleteReportData, OpDeleteReportError, OpDeleteReportErrors, OpDeleteReportResponse, OpDeleteReportResponses, OpDeleteScheduleData, OpDeleteScheduleError, OpDeleteScheduleErrors, OpDeleteScheduleResponse, OpDeleteScheduleResponses, OpDeleteSecurityData, OpDeleteSecurityError, OpDeleteSecurityErrors, OpDeleteSecurityResponse, OpDeleteSecurityResponses, OpDeleteStructureData, OpDeleteStructureError, OpDeleteStructureErrors, OpDeleteStructureResponse, OpDeleteStructureResponses, OpDeleteSubgraphData, OpDeleteSubgraphError, OpDeleteSubgraphErrors, OpDeleteSubgraphResponse, OpDeleteSubgraphResponses, OpDeleteTaxonomyData, OpDeleteTaxonomyError, OpDeleteTaxonomyErrors, OpDeleteTaxonomyResponse, OpDeleteTaxonomyResponses, OperationCosts, OperationEnvelope, OperationError, OpInitializeLedgerData, OpInitializeLedgerError, OpInitializeLedgerErrors, OpInitializeLedgerResponse, OpInitializeLedgerResponses, OpLinkEntityTaxonomyData, OpLinkEntityTaxonomyError, OpLinkEntityTaxonomyErrors, OpLinkEntityTaxonomyResponse, OpLinkEntityTaxonomyResponses, OpMaterializeData, OpMaterializeError, OpMaterializeErrors, OpMaterializeResponse, OpMaterializeResponses, OpRegenerateReportData, OpRegenerateReportError, OpRegenerateReportErrors, OpRegenerateReportResponse, OpRegenerateReportResponses, OpRemovePublishListMemberData, OpRemovePublishListMemberError, OpRemovePublishListMemberErrors, OpRemovePublishListMemberResponse, OpRemovePublishListMemberResponses, OpReopenPeriodData, OpReopenPeriodError, OpReopenPeriodErrors, OpReopenPeriodResponse, OpReopenPeriodResponses, OpRestoreBackupData, OpRestoreBackupError, OpRestoreBackupErrors, OpRestoreBackupResponse, OpRestoreBackupResponses, OpReverseJournalEntryData, OpReverseJournalEntryError, OpReverseJournalEntryErrors, OpReverseJournalEntryResponse, OpReverseJournalEntryResponses, OpSetCloseTargetData, OpSetCloseTargetError, OpSetCloseTargetErrors, OpSetCloseTargetResponse, OpSetCloseTargetResponses, OpShareReportData, OpShareReportError, OpShareReportErrors, OpShareReportResponse, OpShareReportResponses, OpTruncateScheduleData, OpTruncateScheduleError, OpTruncateScheduleErrors, OpTruncateScheduleResponse, OpTruncateScheduleResponses, OpUpdateAssociationData, OpUpdateAssociationError, OpUpdateAssociationErrors, OpUpdateAssociationResponse, OpUpdateAssociationResponses, OpUpdateElementData, OpUpdateElementError, OpUpdateElementErrors, OpUpdateElementResponse, OpUpdateElementResponses, OpUpdateEntityData, OpUpdateEntityError, OpUpdateEntityErrors, OpUpdateEntityResponse, OpUpdateEntityResponses, OpUpdateJournalEntryData, OpUpdateJournalEntryError, OpUpdateJournalEntryErrors, OpUpdateJournalEntryResponse, OpUpdateJournalEntryResponses, OpUpdatePortfolioData, OpUpdatePortfolioError, OpUpdatePortfolioErrors, OpUpdatePortfolioResponse, OpUpdatePortfolioResponses, OpUpdatePositionData, OpUpdatePositionError, OpUpdatePositionErrors, OpUpdatePositionResponse, OpUpdatePositionResponses, OpUpdatePublishListData, OpUpdatePublishListError, OpUpdatePublishListErrors, OpUpdatePublishListResponse, OpUpdatePublishListResponses, OpUpdateScheduleData, OpUpdateScheduleError, OpUpdateScheduleErrors, OpUpdateScheduleResponse, OpUpdateScheduleResponses, OpUpdateSecurityData, OpUpdateSecurityError, OpUpdateSecurityErrors, OpUpdateSecurityResponse, OpUpdateSecurityResponses, OpUpdateStructureData, OpUpdateStructureError, OpUpdateStructureErrors, OpUpdateStructureResponse, OpUpdateStructureResponses, OpUpdateTaxonomyData, OpUpdateTaxonomyError, OpUpdateTaxonomyErrors, OpUpdateTaxonomyResponse, OpUpdateTaxonomyResponses, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PeriodSpec, PortalSessionResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportOperation, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberOperation, ReopenPeriodOperation, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupOp, ReverseJournalEntryRequest, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, ScheduleMetadataRequest, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, SetCloseTargetOperation, ShareReportOperation, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TruncateScheduleOperation, UpcomingInvoice, UpdateApiKeyRequest, UpdateAssociationRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateElementRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateJournalEntryRequest, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioOperation, UpdatePositionOperation, UpdatePublishListOperation, UpdateScheduleRequest, UpdateSecurityOperation, UpdateStructureRequest, UpdateTaxonomyRequest, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UploadDocumentsBulkData, UploadDocumentsBulkError, UploadDocumentsBulkErrors, UploadDocumentsBulkResponse, UploadDocumentsBulkResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
|
|
3
|
+
export { autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createCheckoutSession, createConnection, createFileUpload, createGraph, createPortalSession, createRepositorySubscription, createUserApiKey, deleteConnection, deleteDocument, deleteFile, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getServiceOfferings, getServiceStatus, getSubgraphInfo, getSubgraphQuota, handleHttpGetExtensionsGraphIdGraphqlGet, handleHttpPostExtensionsGraphIdGraphqlPost, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listFiles, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listSubgraphs, listTables, listUserApiKeys, listUserOrgs, loginUser, logoutUser, oauthCallback, opAddPublishListMembers, opAutoMapElements, opBuildFactGrid, opChangeTier, opClosePeriod, opCreateAssociations, opCreateBackup, opCreateClosingEntry, opCreateElement, opCreateInformationBlock, opCreateJournalEntry, opCreateManualClosingEntry, opCreateMappingAssociation, opCreatePortfolio, opCreatePosition, opCreatePublishList, opCreateReport, opCreateSecurity, opCreateStructure, opCreateSubgraph, opCreateTaxonomy, opCreateTransaction, opDeleteAssociation, opDeleteElement, opDeleteInformationBlock, opDeleteJournalEntry, opDeleteMappingAssociation, opDeletePortfolio, opDeletePosition, opDeletePublishList, opDeleteReport, opDeleteSecurity, opDeleteStructure, opDeleteSubgraph, opDeleteTaxonomy, opEvaluateRules, opFinancialStatementAnalysis, opInitializeLedger, opLinkEntityTaxonomy, opLiveFinancialStatement, opMaterialize, opRegenerateReport, opRemovePublishListMember, opReopenPeriod, opRestoreBackup, opReverseJournalEntry, opSetCloseTarget, opShareReport, type Options, opTruncateSchedule, opUpdateAssociation, opUpdateElement, opUpdateEntity, opUpdateInformationBlock, opUpdateJournalEntry, opUpdatePortfolio, opUpdatePosition, opUpdatePublishList, opUpdateSecurity, opUpdateStructure, opUpdateTaxonomy, queryTables, recommendAgent, refreshAuthSession, registerUser, removeOrgMember, resendVerificationEmail, resetPassword, revokeUserApiKey, searchDocuments, selectGraph, ssoTokenExchange, streamOperationEvents, syncConnection, updateDocument, updateFile, updateOrg, updateOrgMemberRole, updateUser, updateUserApiKey, updateUserPassword, uploadDocument, validateResetToken, validateSchema, verifyEmail } from './sdk.gen';
|
|
4
|
+
export type { AccountInfo, AddPublishListMembersOperation, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AuthResponse, AutoMapElementsOperation, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkAssociationItem, BulkCreateAssociationsRequest, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, ChangeTierOp, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClientOptions, ClosePeriodOperation, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateClosingEntryOperation, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateElementRequest, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponse, CreateGraphResponses, CreateInformationBlockRequest, CreateJournalEntryRequest, CreateManualClosingEntryRequest, CreateMappingAssociationOperation, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioRequest, CreatePositionRequest, CreatePublishListRequest, CreateReportRequest, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateSecurityRequest, CreateStructureRequest, CreateSubgraphRequest, CreateTaxonomyRequest, CreateTransactionRequest, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewRequest, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteAssociationRequest, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteElementRequest, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteInformationBlockRequest, DeleteJournalEntryRequest, DeleteMappingAssociationOperation, DeletePortfolioOperation, DeletePositionOperation, DeletePublishListOperation, DeleteReportOperation, DeleteSecurityOperation, DeleteStructureRequest, DeleteSubgraphOp, DeleteTaxonomyRequest, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, ErrorResponse, EvaluateRulesRequest, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, FinancialStatementAnalysisRequest, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsError, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigError, GetCaptchaConfigErrors, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusError, GetCheckoutStatusErrors, GetCheckoutStatusResponse, GetCheckoutStatusResponses, GetConnectionData, GetConnectionError, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsError, GetConnectionOptionsErrors, GetConnectionOptionsResponse, GetConnectionOptionsResponses, GetConnectionResponse, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryError, GetCreditSummaryErrors, GetCreditSummaryResponse, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserError, GetCurrentAuthUserErrors, GetCurrentAuthUserResponse, GetCurrentAuthUserResponses, GetCurrentUserData, GetCurrentUserError, GetCurrentUserErrors, GetCurrentUserResponse, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthError, GetDatabaseHealthErrors, GetDatabaseHealthResponse, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoError, GetDatabaseInfoErrors, GetDatabaseInfoResponse, GetDatabaseInfoResponses, GetDocumentData, GetDocumentError, GetDocumentErrors, GetDocumentResponse, GetDocumentResponses, GetDocumentSectionData, GetDocumentSectionError, GetDocumentSectionErrors, GetDocumentSectionResponse, GetDocumentSectionResponses, GetFileData, GetFileError, GetFileErrors, GetFileInfoResponse, GetFileResponse, GetFileResponses, GetGraphCapacityData, GetGraphCapacityError, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsError, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, GetOperationStatusData, GetOperationStatusError, GetOperationStatusErrors, GetOperationStatusResponse, GetOperationStatusResponses, GetOrgBillingCustomerData, GetOrgBillingCustomerError, GetOrgBillingCustomerErrors, GetOrgBillingCustomerResponse, GetOrgBillingCustomerResponses, GetOrgData, GetOrgError, GetOrgErrors, GetOrgLimitsData, GetOrgLimitsError, GetOrgLimitsErrors, GetOrgLimitsResponse, GetOrgLimitsResponses, GetOrgResponse, GetOrgResponses, GetOrgSubscriptionData, GetOrgSubscriptionError, GetOrgSubscriptionErrors, GetOrgSubscriptionResponse, GetOrgSubscriptionResponses, GetOrgUpcomingInvoiceData, GetOrgUpcomingInvoiceError, GetOrgUpcomingInvoiceErrors, GetOrgUpcomingInvoiceResponse, GetOrgUpcomingInvoiceResponses, GetOrgUsageData, GetOrgUsageError, GetOrgUsageErrors, GetOrgUsageResponse, GetOrgUsageResponses, GetPasswordPolicyData, GetPasswordPolicyError, GetPasswordPolicyErrors, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HandleHttpGetExtensionsGraphIdGraphqlGetData, HandleHttpGetExtensionsGraphIdGraphqlGetError, HandleHttpGetExtensionsGraphIdGraphqlGetErrors, HandleHttpGetExtensionsGraphIdGraphqlGetResponses, HandleHttpPostExtensionsGraphIdGraphqlPostData, HandleHttpPostExtensionsGraphIdGraphqlPostError, HandleHttpPostExtensionsGraphIdGraphqlPostErrors, HandleHttpPostExtensionsGraphIdGraphqlPostResponses, HealthStatus, HttpValidationError, InitialEntityData, InitializeLedgerRequest, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, JournalEntryLineItemInput, LinkEntityTaxonomyRequest, ListAgentsData, ListAgentsError, ListAgentsErrors, ListAgentsResponse, ListAgentsResponses, ListBackupsData, ListBackupsError, ListBackupsErrors, ListBackupsResponse, ListBackupsResponses, ListConnectionsData, ListConnectionsError, ListConnectionsErrors, ListConnectionsResponse, ListConnectionsResponses, ListCreditTransactionsData, ListCreditTransactionsError, ListCreditTransactionsErrors, ListCreditTransactionsResponse, ListCreditTransactionsResponses, ListDocumentsData, ListDocumentsError, ListDocumentsErrors, ListDocumentsResponse, ListDocumentsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListMcpToolsData, ListMcpToolsError, ListMcpToolsErrors, ListMcpToolsResponse, ListMcpToolsResponses, ListOrgGraphsData, ListOrgGraphsError, ListOrgGraphsErrors, ListOrgGraphsResponse, ListOrgGraphsResponses, ListOrgInvoicesData, ListOrgInvoicesError, ListOrgInvoicesErrors, ListOrgInvoicesResponse, ListOrgInvoicesResponses, ListOrgMembersData, ListOrgMembersError, ListOrgMembersErrors, ListOrgMembersResponse, ListOrgMembersResponses, ListOrgSubscriptionsData, ListOrgSubscriptionsError, ListOrgSubscriptionsErrors, ListOrgSubscriptionsResponse, ListOrgSubscriptionsResponses, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListUserApiKeysData, ListUserApiKeysError, ListUserApiKeysErrors, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsError, ListUserOrgsErrors, ListUserOrgsResponse, ListUserOrgsResponses, LiveFinancialStatementRequest, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserError, LogoutUserErrors, LogoutUserResponse, LogoutUserResponses, ManualLineItemRequest, MaterializeOp, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OpAddPublishListMembersData, OpAddPublishListMembersError, OpAddPublishListMembersErrors, OpAddPublishListMembersResponse, OpAddPublishListMembersResponses, OpAutoMapElementsData, OpAutoMapElementsError, OpAutoMapElementsErrors, OpAutoMapElementsResponse, OpAutoMapElementsResponses, OpBuildFactGridData, OpBuildFactGridError, OpBuildFactGridErrors, OpBuildFactGridResponse, OpBuildFactGridResponses, OpChangeTierData, OpChangeTierError, OpChangeTierErrors, OpChangeTierResponse, OpChangeTierResponses, OpClosePeriodData, OpClosePeriodError, OpClosePeriodErrors, OpClosePeriodResponse, OpClosePeriodResponses, OpCreateAssociationsData, OpCreateAssociationsError, OpCreateAssociationsErrors, OpCreateAssociationsResponse, OpCreateAssociationsResponses, OpCreateBackupData, OpCreateBackupError, OpCreateBackupErrors, OpCreateBackupResponse, OpCreateBackupResponses, OpCreateClosingEntryData, OpCreateClosingEntryError, OpCreateClosingEntryErrors, OpCreateClosingEntryResponse, OpCreateClosingEntryResponses, OpCreateElementData, OpCreateElementError, OpCreateElementErrors, OpCreateElementResponse, OpCreateElementResponses, OpCreateInformationBlockData, OpCreateInformationBlockError, OpCreateInformationBlockErrors, OpCreateInformationBlockResponse, OpCreateInformationBlockResponses, OpCreateJournalEntryData, OpCreateJournalEntryError, OpCreateJournalEntryErrors, OpCreateJournalEntryResponse, OpCreateJournalEntryResponses, OpCreateManualClosingEntryData, OpCreateManualClosingEntryError, OpCreateManualClosingEntryErrors, OpCreateManualClosingEntryResponse, OpCreateManualClosingEntryResponses, OpCreateMappingAssociationData, OpCreateMappingAssociationError, OpCreateMappingAssociationErrors, OpCreateMappingAssociationResponse, OpCreateMappingAssociationResponses, OpCreatePortfolioData, OpCreatePortfolioError, OpCreatePortfolioErrors, OpCreatePortfolioResponse, OpCreatePortfolioResponses, OpCreatePositionData, OpCreatePositionError, OpCreatePositionErrors, OpCreatePositionResponse, OpCreatePositionResponses, OpCreatePublishListData, OpCreatePublishListError, OpCreatePublishListErrors, OpCreatePublishListResponse, OpCreatePublishListResponses, OpCreateReportData, OpCreateReportError, OpCreateReportErrors, OpCreateReportResponse, OpCreateReportResponses, OpCreateSecurityData, OpCreateSecurityError, OpCreateSecurityErrors, OpCreateSecurityResponse, OpCreateSecurityResponses, OpCreateStructureData, OpCreateStructureError, OpCreateStructureErrors, OpCreateStructureResponse, OpCreateStructureResponses, OpCreateSubgraphData, OpCreateSubgraphError, OpCreateSubgraphErrors, OpCreateSubgraphResponse, OpCreateSubgraphResponses, OpCreateTaxonomyData, OpCreateTaxonomyError, OpCreateTaxonomyErrors, OpCreateTaxonomyResponse, OpCreateTaxonomyResponses, OpCreateTransactionData, OpCreateTransactionError, OpCreateTransactionErrors, OpCreateTransactionResponse, OpCreateTransactionResponses, OpDeleteAssociationData, OpDeleteAssociationError, OpDeleteAssociationErrors, OpDeleteAssociationResponse, OpDeleteAssociationResponses, OpDeleteElementData, OpDeleteElementError, OpDeleteElementErrors, OpDeleteElementResponse, OpDeleteElementResponses, OpDeleteInformationBlockData, OpDeleteInformationBlockError, OpDeleteInformationBlockErrors, OpDeleteInformationBlockResponse, OpDeleteInformationBlockResponses, OpDeleteJournalEntryData, OpDeleteJournalEntryError, OpDeleteJournalEntryErrors, OpDeleteJournalEntryResponse, OpDeleteJournalEntryResponses, OpDeleteMappingAssociationData, OpDeleteMappingAssociationError, OpDeleteMappingAssociationErrors, OpDeleteMappingAssociationResponse, OpDeleteMappingAssociationResponses, OpDeletePortfolioData, OpDeletePortfolioError, OpDeletePortfolioErrors, OpDeletePortfolioResponse, OpDeletePortfolioResponses, OpDeletePositionData, OpDeletePositionError, OpDeletePositionErrors, OpDeletePositionResponse, OpDeletePositionResponses, OpDeletePublishListData, OpDeletePublishListError, OpDeletePublishListErrors, OpDeletePublishListResponse, OpDeletePublishListResponses, OpDeleteReportData, OpDeleteReportError, OpDeleteReportErrors, OpDeleteReportResponse, OpDeleteReportResponses, OpDeleteSecurityData, OpDeleteSecurityError, OpDeleteSecurityErrors, OpDeleteSecurityResponse, OpDeleteSecurityResponses, OpDeleteStructureData, OpDeleteStructureError, OpDeleteStructureErrors, OpDeleteStructureResponse, OpDeleteStructureResponses, OpDeleteSubgraphData, OpDeleteSubgraphError, OpDeleteSubgraphErrors, OpDeleteSubgraphResponse, OpDeleteSubgraphResponses, OpDeleteTaxonomyData, OpDeleteTaxonomyError, OpDeleteTaxonomyErrors, OpDeleteTaxonomyResponse, OpDeleteTaxonomyResponses, OperationCosts, OperationEnvelope, OperationError, OpEvaluateRulesData, OpEvaluateRulesError, OpEvaluateRulesErrors, OpEvaluateRulesResponse, OpEvaluateRulesResponses, OpFinancialStatementAnalysisData, OpFinancialStatementAnalysisError, OpFinancialStatementAnalysisErrors, OpFinancialStatementAnalysisResponse, OpFinancialStatementAnalysisResponses, OpInitializeLedgerData, OpInitializeLedgerError, OpInitializeLedgerErrors, OpInitializeLedgerResponse, OpInitializeLedgerResponses, OpLinkEntityTaxonomyData, OpLinkEntityTaxonomyError, OpLinkEntityTaxonomyErrors, OpLinkEntityTaxonomyResponse, OpLinkEntityTaxonomyResponses, OpLiveFinancialStatementData, OpLiveFinancialStatementError, OpLiveFinancialStatementErrors, OpLiveFinancialStatementResponse, OpLiveFinancialStatementResponses, OpMaterializeData, OpMaterializeError, OpMaterializeErrors, OpMaterializeResponse, OpMaterializeResponses, OpRegenerateReportData, OpRegenerateReportError, OpRegenerateReportErrors, OpRegenerateReportResponse, OpRegenerateReportResponses, OpRemovePublishListMemberData, OpRemovePublishListMemberError, OpRemovePublishListMemberErrors, OpRemovePublishListMemberResponse, OpRemovePublishListMemberResponses, OpReopenPeriodData, OpReopenPeriodError, OpReopenPeriodErrors, OpReopenPeriodResponse, OpReopenPeriodResponses, OpRestoreBackupData, OpRestoreBackupError, OpRestoreBackupErrors, OpRestoreBackupResponse, OpRestoreBackupResponses, OpReverseJournalEntryData, OpReverseJournalEntryError, OpReverseJournalEntryErrors, OpReverseJournalEntryResponse, OpReverseJournalEntryResponses, OpSetCloseTargetData, OpSetCloseTargetError, OpSetCloseTargetErrors, OpSetCloseTargetResponse, OpSetCloseTargetResponses, OpShareReportData, OpShareReportError, OpShareReportErrors, OpShareReportResponse, OpShareReportResponses, OpTruncateScheduleData, OpTruncateScheduleError, OpTruncateScheduleErrors, OpTruncateScheduleResponse, OpTruncateScheduleResponses, OpUpdateAssociationData, OpUpdateAssociationError, OpUpdateAssociationErrors, OpUpdateAssociationResponse, OpUpdateAssociationResponses, OpUpdateElementData, OpUpdateElementError, OpUpdateElementErrors, OpUpdateElementResponse, OpUpdateElementResponses, OpUpdateEntityData, OpUpdateEntityError, OpUpdateEntityErrors, OpUpdateEntityResponse, OpUpdateEntityResponses, OpUpdateInformationBlockData, OpUpdateInformationBlockError, OpUpdateInformationBlockErrors, OpUpdateInformationBlockResponse, OpUpdateInformationBlockResponses, OpUpdateJournalEntryData, OpUpdateJournalEntryError, OpUpdateJournalEntryErrors, OpUpdateJournalEntryResponse, OpUpdateJournalEntryResponses, OpUpdatePortfolioData, OpUpdatePortfolioError, OpUpdatePortfolioErrors, OpUpdatePortfolioResponse, OpUpdatePortfolioResponses, OpUpdatePositionData, OpUpdatePositionError, OpUpdatePositionErrors, OpUpdatePositionResponse, OpUpdatePositionResponses, OpUpdatePublishListData, OpUpdatePublishListError, OpUpdatePublishListErrors, OpUpdatePublishListResponse, OpUpdatePublishListResponses, OpUpdateSecurityData, OpUpdateSecurityError, OpUpdateSecurityErrors, OpUpdateSecurityResponse, OpUpdateSecurityResponses, OpUpdateStructureData, OpUpdateStructureError, OpUpdateStructureErrors, OpUpdateStructureResponse, OpUpdateStructureResponses, OpUpdateTaxonomyData, OpUpdateTaxonomyError, OpUpdateTaxonomyErrors, OpUpdateTaxonomyResponse, OpUpdateTaxonomyResponses, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PeriodSpec, PortalSessionResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportOperation, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberOperation, ReopenPeriodOperation, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupOp, ReverseJournalEntryRequest, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, SetCloseTargetOperation, ShareReportOperation, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TruncateScheduleOperation, UpcomingInvoice, UpdateApiKeyRequest, UpdateAssociationRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateElementRequest, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateInformationBlockRequest, UpdateJournalEntryRequest, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioOperation, UpdatePositionOperation, UpdatePublishListOperation, UpdateSecurityOperation, UpdateStructureRequest, UpdateTaxonomyRequest, UpdateUserApiKeyData, UpdateUserApiKeyError, UpdateUserApiKeyErrors, UpdateUserApiKeyResponse, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserError, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordError, UpdateUserPasswordErrors, UpdateUserPasswordResponse, UpdateUserPasswordResponses, UpdateUserRequest, UpdateUserResponse, UpdateUserResponses, UpgradeSubscriptionRequest, UploadDocumentData, UploadDocumentError, UploadDocumentErrors, UploadDocumentResponse, UploadDocumentResponses, UserGraphsResponse, UserResponse, ValidateResetTokenData, ValidateResetTokenError, ValidateResetTokenErrors, ValidateResetTokenResponse, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaError, ValidateSchemaErrors, ValidateSchemaResponse, ValidateSchemaResponses, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robosystems/client",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"description": "TypeScript client library for RoboSystems Financial Knowledge Graph API",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -32,6 +32,12 @@
|
|
|
32
32
|
"import": "./artifacts/InvestorClient.js",
|
|
33
33
|
"default": "./artifacts/InvestorClient.js"
|
|
34
34
|
},
|
|
35
|
+
"./library": {
|
|
36
|
+
"types": "./artifacts/LibraryClient.d.ts",
|
|
37
|
+
"require": "./artifacts/LibraryClient.js",
|
|
38
|
+
"import": "./artifacts/LibraryClient.js",
|
|
39
|
+
"default": "./artifacts/LibraryClient.js"
|
|
40
|
+
},
|
|
35
41
|
"./agent": {
|
|
36
42
|
"types": "./artifacts/AgentClient.d.ts",
|
|
37
43
|
"require": "./artifacts/AgentClient.js",
|