@robosystems/client 0.2.46 → 0.2.48
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/extensions/AgentClient.test.ts +403 -0
- package/extensions/LedgerClient.d.ts +16 -1
- package/extensions/LedgerClient.js +33 -0
- package/extensions/LedgerClient.test.ts +1138 -0
- package/extensions/LedgerClient.ts +47 -0
- package/extensions/OperationClient.test.ts +199 -1
- package/extensions/QueryClient.test.ts +169 -0
- package/extensions/ReportClient.test.ts +828 -0
- package/extensions/hooks.test.ts +373 -0
- package/extensions/index.test.ts +279 -60
- package/index.ts +2 -2
- package/package.json +1 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +7 -5
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +35 -10
- package/sdk/sdk.gen.js +47 -12
- package/sdk/sdk.gen.ts +45 -10
- package/sdk/types.gen.d.ts +249 -7
- package/sdk/types.gen.ts +265 -7
- package/sdk-extensions/AgentClient.test.ts +403 -0
- package/sdk-extensions/LedgerClient.d.ts +16 -1
- package/sdk-extensions/LedgerClient.js +33 -0
- package/sdk-extensions/LedgerClient.test.ts +1138 -0
- package/sdk-extensions/LedgerClient.ts +47 -0
- package/sdk-extensions/OperationClient.test.ts +199 -1
- package/sdk-extensions/QueryClient.test.ts +169 -0
- package/sdk-extensions/ReportClient.test.ts +828 -0
- package/sdk-extensions/hooks.test.ts +373 -0
- package/sdk-extensions/index.test.ts +279 -60
- package/sdk.gen.d.ts +35 -10
- package/sdk.gen.js +47 -12
- package/sdk.gen.ts +45 -10
- package/types.gen.d.ts +249 -7
- package/types.gen.ts +265 -7
package/extensions/index.test.ts
CHANGED
|
@@ -18,109 +18,166 @@ describe('RoboSystemsExtensions', () => {
|
|
|
18
18
|
|
|
19
19
|
describe('constructor', () => {
|
|
20
20
|
it('should create instance with default config', () => {
|
|
21
|
-
const
|
|
22
|
-
|
|
23
|
-
expect(
|
|
24
|
-
expect(
|
|
25
|
-
expect(
|
|
26
|
-
expect(
|
|
27
|
-
expect(
|
|
28
|
-
|
|
29
|
-
expect(typeof
|
|
30
|
-
expect(typeof extensions.operations.monitorOperation).toBe('function')
|
|
21
|
+
const ext = new RoboSystemsExtensions()
|
|
22
|
+
|
|
23
|
+
expect(ext).toBeDefined()
|
|
24
|
+
expect(ext.query).toBeDefined()
|
|
25
|
+
expect(ext.operations).toBeDefined()
|
|
26
|
+
expect(ext.ledger).toBeDefined()
|
|
27
|
+
expect(ext.reports).toBeDefined()
|
|
28
|
+
expect(typeof ext.query.executeQuery).toBe('function')
|
|
29
|
+
expect(typeof ext.operations.monitorOperation).toBe('function')
|
|
31
30
|
})
|
|
32
31
|
|
|
33
32
|
it('should create instance with custom baseUrl', () => {
|
|
34
|
-
const
|
|
33
|
+
const ext = new RoboSystemsExtensions({
|
|
35
34
|
baseUrl: 'https://custom-api.com',
|
|
36
35
|
})
|
|
37
36
|
|
|
38
|
-
expect(
|
|
39
|
-
expect(
|
|
37
|
+
expect(ext.query).toBeDefined()
|
|
38
|
+
expect(ext.operations).toBeDefined()
|
|
40
39
|
})
|
|
41
40
|
|
|
42
41
|
it('should create instance with JWT token', () => {
|
|
43
|
-
const
|
|
42
|
+
const ext = new RoboSystemsExtensions({
|
|
44
43
|
token: 'eyJhbGc.eyJzdWI.SflKxw',
|
|
45
44
|
})
|
|
46
45
|
|
|
47
|
-
expect(
|
|
48
|
-
expect(typeof
|
|
46
|
+
expect(ext.query).toBeDefined()
|
|
47
|
+
expect(typeof ext.query.query).toBe('function')
|
|
49
48
|
})
|
|
50
49
|
|
|
51
50
|
it('should create instance with credentials option', () => {
|
|
52
|
-
const
|
|
51
|
+
const ext = new RoboSystemsExtensions({
|
|
53
52
|
credentials: 'omit',
|
|
54
53
|
})
|
|
55
54
|
|
|
56
|
-
expect(
|
|
57
|
-
expect(
|
|
55
|
+
expect(ext.query).toBeDefined()
|
|
56
|
+
expect(ext.operations).toBeDefined()
|
|
58
57
|
})
|
|
59
58
|
|
|
60
59
|
it('should create instance with custom headers', () => {
|
|
61
|
-
const
|
|
60
|
+
const ext = new RoboSystemsExtensions({
|
|
62
61
|
headers: {
|
|
63
62
|
'X-Custom-Header': 'test-value',
|
|
64
63
|
},
|
|
65
64
|
})
|
|
66
65
|
|
|
67
|
-
expect(
|
|
66
|
+
expect(ext.query).toBeDefined()
|
|
68
67
|
})
|
|
69
68
|
|
|
70
69
|
it('should create instance with retry config', () => {
|
|
71
|
-
const
|
|
70
|
+
const ext = new RoboSystemsExtensions({
|
|
72
71
|
maxRetries: 10,
|
|
73
72
|
retryDelay: 5000,
|
|
74
73
|
})
|
|
75
74
|
|
|
76
|
-
expect(
|
|
77
|
-
expect(typeof
|
|
75
|
+
expect(ext.operations).toBeDefined()
|
|
76
|
+
expect(typeof ext.operations.monitorOperation).toBe('function')
|
|
78
77
|
})
|
|
79
78
|
|
|
80
79
|
it('should merge config with SDK client config', () => {
|
|
81
|
-
const
|
|
80
|
+
const ext = new RoboSystemsExtensions({
|
|
82
81
|
token: 'custom-token',
|
|
83
82
|
})
|
|
84
83
|
|
|
85
|
-
|
|
86
|
-
expect(
|
|
87
|
-
|
|
84
|
+
expect(ext.query).toBeDefined()
|
|
85
|
+
expect(ext.operations).toBeDefined()
|
|
86
|
+
})
|
|
87
|
+
|
|
88
|
+
it('should initialize all five client types', () => {
|
|
89
|
+
const ext = new RoboSystemsExtensions()
|
|
90
|
+
|
|
91
|
+
// Verify each client has its signature methods
|
|
92
|
+
expect(typeof ext.query.executeQuery).toBe('function')
|
|
93
|
+
expect(typeof ext.query.query).toBe('function')
|
|
94
|
+
expect(typeof ext.agent.executeQuery).toBe('function')
|
|
95
|
+
expect(typeof ext.agent.analyzeFinancials).toBe('function')
|
|
96
|
+
expect(typeof ext.operations.monitorOperation).toBe('function')
|
|
97
|
+
expect(typeof ext.operations.closeAll).toBe('function')
|
|
98
|
+
expect(typeof ext.ledger.listAccounts).toBe('function')
|
|
99
|
+
expect(typeof ext.ledger.getTrialBalance).toBe('function')
|
|
100
|
+
expect(typeof ext.reports.create).toBe('function')
|
|
101
|
+
expect(typeof ext.reports.statement).toBe('function')
|
|
102
|
+
})
|
|
103
|
+
|
|
104
|
+
it('should default credentials to include', () => {
|
|
105
|
+
const ext = new RoboSystemsExtensions()
|
|
106
|
+
|
|
107
|
+
// Access private config via casting
|
|
108
|
+
const config = (ext as any).config
|
|
109
|
+
expect(config.credentials).toBe('include')
|
|
110
|
+
})
|
|
111
|
+
|
|
112
|
+
it('should default maxRetries to 5 and retryDelay to 1000', () => {
|
|
113
|
+
const ext = new RoboSystemsExtensions()
|
|
114
|
+
|
|
115
|
+
const config = (ext as any).config
|
|
116
|
+
expect(config.maxRetries).toBe(5)
|
|
117
|
+
expect(config.retryDelay).toBe(1000)
|
|
118
|
+
})
|
|
119
|
+
|
|
120
|
+
it('should fall back to SDK client baseUrl or default', () => {
|
|
121
|
+
const ext = new RoboSystemsExtensions()
|
|
122
|
+
|
|
123
|
+
const config = (ext as any).config
|
|
124
|
+
// Should use SDK baseUrl or localhost default
|
|
125
|
+
expect(typeof config.baseUrl).toBe('string')
|
|
126
|
+
expect(config.baseUrl.length).toBeGreaterThan(0)
|
|
127
|
+
})
|
|
128
|
+
|
|
129
|
+
it('should prefer explicit baseUrl over SDK client', () => {
|
|
130
|
+
const ext = new RoboSystemsExtensions({
|
|
131
|
+
baseUrl: 'https://explicit.com',
|
|
132
|
+
})
|
|
133
|
+
|
|
134
|
+
const config = (ext as any).config
|
|
135
|
+
expect(config.baseUrl).toBe('https://explicit.com')
|
|
88
136
|
})
|
|
89
137
|
})
|
|
90
138
|
|
|
91
139
|
describe('createSSEClient', () => {
|
|
92
140
|
it('should create a new SSEClient instance', () => {
|
|
93
|
-
const
|
|
94
|
-
const sseClient =
|
|
141
|
+
const ext = new RoboSystemsExtensions()
|
|
142
|
+
const sseClient = ext.createSSEClient()
|
|
95
143
|
|
|
96
144
|
expect(sseClient).toBeDefined()
|
|
97
145
|
expect(typeof sseClient.connect).toBe('function')
|
|
98
146
|
expect(typeof sseClient.close).toBe('function')
|
|
147
|
+
expect(typeof sseClient.on).toBe('function')
|
|
148
|
+
expect(typeof sseClient.off).toBe('function')
|
|
99
149
|
})
|
|
100
150
|
|
|
101
151
|
it('should create SSEClient with config', () => {
|
|
102
|
-
const
|
|
152
|
+
const ext = new RoboSystemsExtensions({
|
|
103
153
|
baseUrl: 'https://custom-api.com',
|
|
104
154
|
token: 'test-token',
|
|
105
155
|
})
|
|
106
|
-
const sseClient =
|
|
156
|
+
const sseClient = ext.createSSEClient()
|
|
107
157
|
|
|
108
158
|
expect(sseClient).toBeDefined()
|
|
109
159
|
expect(typeof sseClient.connect).toBe('function')
|
|
110
160
|
})
|
|
161
|
+
|
|
162
|
+
it('should create independent SSEClient instances each time', () => {
|
|
163
|
+
const ext = new RoboSystemsExtensions()
|
|
164
|
+
const client1 = ext.createSSEClient()
|
|
165
|
+
const client2 = ext.createSSEClient()
|
|
166
|
+
|
|
167
|
+
expect(client1).not.toBe(client2)
|
|
168
|
+
})
|
|
111
169
|
})
|
|
112
170
|
|
|
113
171
|
describe('monitorOperation', () => {
|
|
114
|
-
it('should
|
|
115
|
-
const
|
|
172
|
+
it('should delegate to operations.monitorOperation', async () => {
|
|
173
|
+
const ext = new RoboSystemsExtensions()
|
|
116
174
|
|
|
117
|
-
|
|
118
|
-
const monitorSpy = vi.spyOn(extensions.operations, 'monitorOperation').mockResolvedValue({
|
|
175
|
+
const monitorSpy = vi.spyOn(ext.operations, 'monitorOperation').mockResolvedValue({
|
|
119
176
|
success: true,
|
|
120
177
|
result: { data: 'test' },
|
|
121
178
|
})
|
|
122
179
|
|
|
123
|
-
const result = await
|
|
180
|
+
const result = await ext.monitorOperation('op_123')
|
|
124
181
|
|
|
125
182
|
expect(monitorSpy).toHaveBeenCalledWith('op_123', { onProgress: undefined })
|
|
126
183
|
expect(result).toEqual({
|
|
@@ -129,39 +186,49 @@ describe('RoboSystemsExtensions', () => {
|
|
|
129
186
|
})
|
|
130
187
|
})
|
|
131
188
|
|
|
132
|
-
it('should
|
|
133
|
-
const
|
|
189
|
+
it('should pass progress callback through', async () => {
|
|
190
|
+
const ext = new RoboSystemsExtensions()
|
|
134
191
|
|
|
135
|
-
const monitorSpy = vi.spyOn(
|
|
192
|
+
const monitorSpy = vi.spyOn(ext.operations, 'monitorOperation').mockResolvedValue({
|
|
136
193
|
success: true,
|
|
137
194
|
})
|
|
138
195
|
|
|
139
196
|
const progressCallback = vi.fn()
|
|
140
|
-
await
|
|
197
|
+
await ext.monitorOperation('op_123', progressCallback)
|
|
141
198
|
|
|
142
199
|
expect(monitorSpy).toHaveBeenCalledWith('op_123', { onProgress: progressCallback })
|
|
143
200
|
})
|
|
201
|
+
|
|
202
|
+
it('should propagate errors from operations client', async () => {
|
|
203
|
+
const ext = new RoboSystemsExtensions()
|
|
204
|
+
|
|
205
|
+
vi.spyOn(ext.operations, 'monitorOperation').mockRejectedValue(new Error('Operation timeout'))
|
|
206
|
+
|
|
207
|
+
await expect(ext.monitorOperation('op_bad')).rejects.toThrow('Operation timeout')
|
|
208
|
+
})
|
|
144
209
|
})
|
|
145
210
|
|
|
146
211
|
describe('close', () => {
|
|
147
|
-
it('should close all clients', () => {
|
|
148
|
-
const
|
|
212
|
+
it('should close all three closeable clients', () => {
|
|
213
|
+
const ext = new RoboSystemsExtensions()
|
|
149
214
|
|
|
150
|
-
const queryCloseSpy = vi.spyOn(
|
|
151
|
-
const
|
|
215
|
+
const queryCloseSpy = vi.spyOn(ext.query, 'close')
|
|
216
|
+
const agentCloseSpy = vi.spyOn(ext.agent, 'close')
|
|
217
|
+
const operationsCloseSpy = vi.spyOn(ext.operations, 'closeAll')
|
|
152
218
|
|
|
153
|
-
|
|
219
|
+
ext.close()
|
|
154
220
|
|
|
155
221
|
expect(queryCloseSpy).toHaveBeenCalled()
|
|
222
|
+
expect(agentCloseSpy).toHaveBeenCalled()
|
|
156
223
|
expect(operationsCloseSpy).toHaveBeenCalled()
|
|
157
224
|
})
|
|
158
225
|
|
|
159
226
|
it('should not throw when called multiple times', () => {
|
|
160
|
-
const
|
|
227
|
+
const ext = new RoboSystemsExtensions()
|
|
161
228
|
|
|
162
229
|
expect(() => {
|
|
163
|
-
|
|
164
|
-
|
|
230
|
+
ext.close()
|
|
231
|
+
ext.close()
|
|
165
232
|
}).not.toThrow()
|
|
166
233
|
})
|
|
167
234
|
})
|
|
@@ -180,22 +247,174 @@ describe('RoboSystemsExtensions', () => {
|
|
|
180
247
|
retryDelay: 3000,
|
|
181
248
|
}
|
|
182
249
|
|
|
183
|
-
const
|
|
250
|
+
const ext = new RoboSystemsExtensions(fullConfig)
|
|
184
251
|
|
|
185
|
-
expect(
|
|
186
|
-
expect(
|
|
187
|
-
expect(
|
|
188
|
-
expect(
|
|
189
|
-
expect(
|
|
190
|
-
expect(typeof
|
|
252
|
+
expect(ext.query).toBeDefined()
|
|
253
|
+
expect(ext.operations).toBeDefined()
|
|
254
|
+
expect(ext.ledger).toBeDefined()
|
|
255
|
+
expect(ext.reports).toBeDefined()
|
|
256
|
+
expect(ext.agent).toBeDefined()
|
|
257
|
+
expect(typeof ext.query.executeQuery).toBe('function')
|
|
258
|
+
expect(typeof ext.operations.monitorOperation).toBe('function')
|
|
191
259
|
})
|
|
192
260
|
|
|
193
261
|
it('should use SDK client baseUrl when no baseUrl provided', () => {
|
|
194
|
-
const
|
|
262
|
+
const ext = new RoboSystemsExtensions({})
|
|
195
263
|
|
|
196
|
-
|
|
197
|
-
expect(
|
|
198
|
-
expect(extensions.operations).toBeDefined()
|
|
264
|
+
expect(ext.query).toBeDefined()
|
|
265
|
+
expect(ext.operations).toBeDefined()
|
|
199
266
|
})
|
|
200
267
|
})
|
|
201
268
|
})
|
|
269
|
+
|
|
270
|
+
describe('extensions singleton', () => {
|
|
271
|
+
beforeEach(() => {
|
|
272
|
+
vi.clearAllMocks()
|
|
273
|
+
// Reset the lazy singleton between tests
|
|
274
|
+
vi.resetModules()
|
|
275
|
+
})
|
|
276
|
+
|
|
277
|
+
it('should export extensions object with getter properties', async () => {
|
|
278
|
+
const { extensions } = await import('./index')
|
|
279
|
+
|
|
280
|
+
expect(extensions).toBeDefined()
|
|
281
|
+
expect(typeof extensions.monitorOperation).toBe('function')
|
|
282
|
+
expect(typeof extensions.createSSEClient).toBe('function')
|
|
283
|
+
expect(typeof extensions.close).toBe('function')
|
|
284
|
+
})
|
|
285
|
+
|
|
286
|
+
it('should lazily create clients on first access', async () => {
|
|
287
|
+
const { extensions } = await import('./index')
|
|
288
|
+
|
|
289
|
+
const query = extensions.query
|
|
290
|
+
expect(query).toBeDefined()
|
|
291
|
+
expect(typeof query.executeQuery).toBe('function')
|
|
292
|
+
})
|
|
293
|
+
|
|
294
|
+
it('should return same instance on repeated access', async () => {
|
|
295
|
+
const { extensions } = await import('./index')
|
|
296
|
+
|
|
297
|
+
const query1 = extensions.query
|
|
298
|
+
const query2 = extensions.query
|
|
299
|
+
expect(query1).toBe(query2)
|
|
300
|
+
})
|
|
301
|
+
|
|
302
|
+
it('should expose all five client getters', async () => {
|
|
303
|
+
const { extensions } = await import('./index')
|
|
304
|
+
|
|
305
|
+
expect(typeof extensions.query.executeQuery).toBe('function')
|
|
306
|
+
expect(typeof extensions.agent.executeQuery).toBe('function')
|
|
307
|
+
expect(typeof extensions.operations.monitorOperation).toBe('function')
|
|
308
|
+
expect(typeof extensions.ledger.listAccounts).toBe('function')
|
|
309
|
+
expect(typeof extensions.reports.create).toBe('function')
|
|
310
|
+
})
|
|
311
|
+
|
|
312
|
+
it('should create SSEClient from singleton', async () => {
|
|
313
|
+
const { extensions } = await import('./index')
|
|
314
|
+
|
|
315
|
+
const sseClient = extensions.createSSEClient()
|
|
316
|
+
expect(typeof sseClient.connect).toBe('function')
|
|
317
|
+
expect(typeof sseClient.close).toBe('function')
|
|
318
|
+
})
|
|
319
|
+
|
|
320
|
+
it('should close without error', async () => {
|
|
321
|
+
const { extensions } = await import('./index')
|
|
322
|
+
|
|
323
|
+
// Access to initialize
|
|
324
|
+
extensions.query
|
|
325
|
+
expect(() => extensions.close()).not.toThrow()
|
|
326
|
+
})
|
|
327
|
+
})
|
|
328
|
+
|
|
329
|
+
describe('convenience functions', () => {
|
|
330
|
+
let mockFetch: any
|
|
331
|
+
|
|
332
|
+
beforeEach(async () => {
|
|
333
|
+
vi.clearAllMocks()
|
|
334
|
+
vi.resetModules()
|
|
335
|
+
mockFetch = vi.fn()
|
|
336
|
+
global.fetch = mockFetch
|
|
337
|
+
globalThis.fetch = mockFetch
|
|
338
|
+
})
|
|
339
|
+
|
|
340
|
+
it('should export executeQuery function', async () => {
|
|
341
|
+
const { executeQuery } = await import('./index')
|
|
342
|
+
expect(typeof executeQuery).toBe('function')
|
|
343
|
+
})
|
|
344
|
+
|
|
345
|
+
it('should export streamQuery function', async () => {
|
|
346
|
+
const { streamQuery } = await import('./index')
|
|
347
|
+
expect(typeof streamQuery).toBe('function')
|
|
348
|
+
})
|
|
349
|
+
|
|
350
|
+
it('should export agentQuery function', async () => {
|
|
351
|
+
const { agentQuery } = await import('./index')
|
|
352
|
+
expect(typeof agentQuery).toBe('function')
|
|
353
|
+
})
|
|
354
|
+
|
|
355
|
+
it('should export analyzeFinancials function', async () => {
|
|
356
|
+
const { analyzeFinancials } = await import('./index')
|
|
357
|
+
expect(typeof analyzeFinancials).toBe('function')
|
|
358
|
+
})
|
|
359
|
+
|
|
360
|
+
it('should export monitorOperation function', async () => {
|
|
361
|
+
const mod = await import('./index')
|
|
362
|
+
expect(typeof mod.monitorOperation).toBe('function')
|
|
363
|
+
})
|
|
364
|
+
})
|
|
365
|
+
|
|
366
|
+
describe('re-exports', () => {
|
|
367
|
+
it('should re-export all client classes', async () => {
|
|
368
|
+
const mod = await import('./index')
|
|
369
|
+
|
|
370
|
+
// Verify these are constructor functions (classes)
|
|
371
|
+
expect(typeof mod.QueryClient).toBe('function')
|
|
372
|
+
expect(typeof mod.AgentClient).toBe('function')
|
|
373
|
+
expect(typeof mod.OperationClient).toBe('function')
|
|
374
|
+
expect(typeof mod.SSEClient).toBe('function')
|
|
375
|
+
expect(typeof mod.LedgerClient).toBe('function')
|
|
376
|
+
expect(typeof mod.ReportClient).toBe('function')
|
|
377
|
+
|
|
378
|
+
// Verify they can be instantiated
|
|
379
|
+
const q = new mod.QueryClient({ baseUrl: 'http://test.com' })
|
|
380
|
+
expect(typeof q.executeQuery).toBe('function')
|
|
381
|
+
})
|
|
382
|
+
|
|
383
|
+
it('should re-export config functions', async () => {
|
|
384
|
+
const mod = await import('./index')
|
|
385
|
+
|
|
386
|
+
expect(typeof mod.setSDKExtensionsConfig).toBe('function')
|
|
387
|
+
expect(typeof mod.getSDKExtensionsConfig).toBe('function')
|
|
388
|
+
expect(typeof mod.resetSDKExtensionsConfig).toBe('function')
|
|
389
|
+
expect(typeof mod.extractJWTFromHeader).toBe('function')
|
|
390
|
+
expect(typeof mod.isValidJWT).toBe('function')
|
|
391
|
+
expect(typeof mod.configureWithJWT).toBe('function')
|
|
392
|
+
expect(typeof mod.getEnvironmentConfig).toBe('function')
|
|
393
|
+
})
|
|
394
|
+
|
|
395
|
+
it('should re-export React hooks', async () => {
|
|
396
|
+
const mod = await import('./index')
|
|
397
|
+
|
|
398
|
+
expect(typeof mod.useQuery).toBe('function')
|
|
399
|
+
expect(typeof mod.useStreamingQuery).toBe('function')
|
|
400
|
+
expect(typeof mod.useOperation).toBe('function')
|
|
401
|
+
expect(typeof mod.useMultipleOperations).toBe('function')
|
|
402
|
+
expect(typeof mod.useSDKClients).toBe('function')
|
|
403
|
+
})
|
|
404
|
+
|
|
405
|
+
it('should re-export error classes', async () => {
|
|
406
|
+
const mod = await import('./index')
|
|
407
|
+
|
|
408
|
+
expect(typeof mod.QueuedQueryError).toBe('function')
|
|
409
|
+
expect(typeof mod.QueuedAgentError).toBe('function')
|
|
410
|
+
})
|
|
411
|
+
|
|
412
|
+
it('should re-export EventType enum', async () => {
|
|
413
|
+
const mod = await import('./index')
|
|
414
|
+
|
|
415
|
+
expect(mod.EventType).toBeDefined()
|
|
416
|
+
expect(mod.EventType.OPERATION_COMPLETED).toBeDefined()
|
|
417
|
+
expect(mod.EventType.OPERATION_ERROR).toBeDefined()
|
|
418
|
+
expect(mod.EventType.OPERATION_PROGRESS).toBeDefined()
|
|
419
|
+
})
|
|
420
|
+
})
|
package/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
-
export { addPublishListMembers, autoMapElements, autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription,
|
|
4
|
-
export type { AccountInfo, AccountListResponse, AccountResponse, AccountTreeNode, AccountTreeResponse, AddMembersRequest, AddPublishListMembersData, AddPublishListMembersError, AddPublishListMembersErrors, AddPublishListMembersResponse, AddPublishListMembersResponses, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AssociationResponse, AuthResponse, AutoMapElementsData, AutoMapElementsError, AutoMapElementsErrors, AutoMapElementsResponses, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupRestoreRequest, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkDocumentUploadRequest, BulkDocumentUploadResponse, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeRepositoryPlanData, ChangeRepositoryPlanError, ChangeRepositoryPlanErrors, ChangeRepositoryPlanResponse, ChangeRepositoryPlanResponses, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClientOptions, ClosingEntryResponse, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateAssociationRequest, CreateBackupData, CreateBackupError, CreateBackupErrors, CreateBackupResponses, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateClosingEntryData, CreateClosingEntryError, CreateClosingEntryErrors, CreateClosingEntryRequest, CreateClosingEntryResponse, CreateClosingEntryResponses, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponses, CreateMappingAssociationData, CreateMappingAssociationError, CreateMappingAssociationErrors, CreateMappingAssociationResponse, CreateMappingAssociationResponses, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioData, CreatePortfolioError, CreatePortfolioErrors, CreatePortfolioRequest, CreatePortfolioResponse, CreatePortfolioResponses, CreatePositionData, CreatePositionError, CreatePositionErrors, CreatePositionRequest, CreatePositionResponse, CreatePositionResponses, CreatePublishListData, CreatePublishListError, CreatePublishListErrors, CreatePublishListRequest, CreatePublishListResponse, CreatePublishListResponses, CreateReportData, CreateReportError, CreateReportErrors, CreateReportRequest, CreateReportResponse, CreateReportResponses, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateScheduleData, CreateScheduleError, CreateScheduleErrors, CreateScheduleRequest, CreateScheduleResponse, CreateScheduleResponses, CreateSecurityData, CreateSecurityError, CreateSecurityErrors, CreateSecurityRequest, CreateSecurityResponse, CreateSecurityResponses, CreateStructureData, CreateStructureError, CreateStructureErrors, CreateStructureRequest, CreateStructureResponse, CreateStructureResponses, CreateSubgraphData, CreateSubgraphError, CreateSubgraphErrors, CreateSubgraphRequest, CreateSubgraphResponses, CreateTaxonomyData, CreateTaxonomyError, CreateTaxonomyErrors, CreateTaxonomyRequest, CreateTaxonomyResponse, CreateTaxonomyResponses, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewData, CreateViewError, CreateViewErrors, CreateViewRequest, CreateViewResponses, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteMappingAssociationData, DeleteMappingAssociationError, DeleteMappingAssociationErrors, DeleteMappingAssociationResponse, DeleteMappingAssociationResponses, DeletePortfolioData, DeletePortfolioError, DeletePortfolioErrors, DeletePortfolioResponse, DeletePortfolioResponses, DeletePositionData, DeletePositionError, DeletePositionErrors, DeletePositionResponse, DeletePositionResponses, DeletePublishListData, DeletePublishListError, DeletePublishListErrors, DeletePublishListResponse, DeletePublishListResponses, DeleteReportData, DeleteReportError, DeleteReportErrors, DeleteReportResponse, DeleteReportResponses, DeleteSecurityData, DeleteSecurityError, DeleteSecurityErrors, DeleteSecurityResponse, DeleteSecurityResponses, DeleteSubgraphData, DeleteSubgraphError, DeleteSubgraphErrors, DeleteSubgraphRequest, DeleteSubgraphResponse, DeleteSubgraphResponse2, DeleteSubgraphResponses, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, ElementListResponse, ElementResponse, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, EntryTemplateRequest, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponse, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FactRowResponse, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, 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, 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, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, GetLedgerAccountTreeData, GetLedgerAccountTreeError, GetLedgerAccountTreeErrors, GetLedgerAccountTreeResponse, GetLedgerAccountTreeResponses, GetLedgerEntityData, GetLedgerEntityError, GetLedgerEntityErrors, GetLedgerEntityResponse, GetLedgerEntityResponses, GetLedgerSummaryData, GetLedgerSummaryError, GetLedgerSummaryErrors, GetLedgerSummaryResponse, GetLedgerSummaryResponses, GetLedgerTransactionData, GetLedgerTransactionError, GetLedgerTransactionErrors, GetLedgerTransactionResponse, GetLedgerTransactionResponses, GetLedgerTrialBalanceData, GetLedgerTrialBalanceError, GetLedgerTrialBalanceErrors, GetLedgerTrialBalanceResponse, GetLedgerTrialBalanceResponses, GetMappedTrialBalanceData, GetMappedTrialBalanceError, GetMappedTrialBalanceErrors, GetMappedTrialBalanceResponses, GetMappingCoverageData, GetMappingCoverageError, GetMappingCoverageErrors, GetMappingCoverageResponse, GetMappingCoverageResponses, GetMappingDetailData, GetMappingDetailError, GetMappingDetailErrors, GetMappingDetailResponse, GetMappingDetailResponses, GetMaterializationStatusData, GetMaterializationStatusError, GetMaterializationStatusErrors, GetMaterializationStatusResponse, GetMaterializationStatusResponses, 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, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetPeriodCloseStatusData, GetPeriodCloseStatusError, GetPeriodCloseStatusErrors, GetPeriodCloseStatusResponse, GetPeriodCloseStatusResponses, GetPortfolioData, GetPortfolioError, GetPortfolioErrors, GetPortfolioResponse, GetPortfolioResponses, GetPositionData, GetPositionError, GetPositionErrors, GetPositionResponse, GetPositionResponses, GetPublishListData, GetPublishListError, GetPublishListErrors, GetPublishListResponse, GetPublishListResponses, GetReportData, GetReportError, GetReportErrors, GetReportingTaxonomyData, GetReportingTaxonomyError, GetReportingTaxonomyErrors, GetReportingTaxonomyResponse, GetReportingTaxonomyResponses, GetReportResponse, GetReportResponses, GetScheduleFactsData, GetScheduleFactsError, GetScheduleFactsErrors, GetScheduleFactsResponse, GetScheduleFactsResponses, GetSecurityData, GetSecurityError, GetSecurityErrors, GetSecurityResponse, GetSecurityResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetStatementData, GetStatementError, GetStatementErrors, GetStatementResponse, GetStatementResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HealthStatus, HoldingResponse, HoldingSecuritySummary, HoldingsListResponse, HttpValidationError, InitialEntityData, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, LedgerEntityResponse, LedgerEntryResponse, LedgerLineItemResponse, LedgerSummaryResponse, LedgerTransactionDetailResponse, LedgerTransactionListResponse, LedgerTransactionSummaryResponse, 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, ListElementsData, ListElementsError, ListElementsErrors, ListElementsResponse, ListElementsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListHoldingsData, ListHoldingsError, ListHoldingsErrors, ListHoldingsResponse, ListHoldingsResponses, ListLedgerAccountsData, ListLedgerAccountsError, ListLedgerAccountsErrors, ListLedgerAccountsResponse, ListLedgerAccountsResponses, ListLedgerEntitiesData, ListLedgerEntitiesError, ListLedgerEntitiesErrors, ListLedgerEntitiesResponse, ListLedgerEntitiesResponses, ListLedgerTransactionsData, ListLedgerTransactionsError, ListLedgerTransactionsErrors, ListLedgerTransactionsResponse, ListLedgerTransactionsResponses, ListMappingsData, ListMappingsError, ListMappingsErrors, ListMappingsResponse, ListMappingsResponses, 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, ListPortfoliosData, ListPortfoliosError, ListPortfoliosErrors, ListPortfoliosResponse, ListPortfoliosResponses, ListPositionsData, ListPositionsError, ListPositionsErrors, ListPositionsResponse, ListPositionsResponses, ListPublishListsData, ListPublishListsError, ListPublishListsErrors, ListPublishListsResponse, ListPublishListsResponses, ListReportsData, ListReportsError, ListReportsErrors, ListReportsResponse, ListReportsResponses, ListSchedulesData, ListSchedulesError, ListSchedulesErrors, ListSchedulesResponse, ListSchedulesResponses, ListSecuritiesData, ListSecuritiesError, ListSecuritiesErrors, ListSecuritiesResponse, ListSecuritiesResponses, ListStructuresData, ListStructuresError, ListStructuresErrors, ListStructuresResponse, ListStructuresResponses, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListTaxonomiesData, ListTaxonomiesError, ListTaxonomiesErrors, ListTaxonomiesResponse, ListTaxonomiesResponses, ListUnmappedElementsData, ListUnmappedElementsError, ListUnmappedElementsErrors, ListUnmappedElementsResponse, ListUnmappedElementsResponses, ListUserApiKeysData, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsResponse, ListUserOrgsResponses, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserResponse, LogoutUserResponses, MappingCoverageResponse, MappingDetailResponse, MaterializeGraphData, MaterializeGraphError, MaterializeGraphErrors, MaterializeGraphResponse, MaterializeGraphResponses, MaterializeRequest, MaterializeResponse, MaterializeStatusResponse, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OperationCosts, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PaginationInfo, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PeriodCloseItemResponse, PeriodCloseStatusResponse, PeriodSpec, PortalSessionResponse, PortfolioListResponse, PortfolioResponse, PositionListResponse, PositionResponse, PublishListDetailResponse, PublishListListResponse, PublishListMemberResponse, PublishListResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportData, RegenerateReportError, RegenerateReportErrors, RegenerateReportRequest, RegenerateReportResponse, RegenerateReportResponses, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberData, RemovePublishListMemberError, RemovePublishListMemberErrors, RemovePublishListMemberResponse, RemovePublishListMemberResponses, ReportListResponse, ReportResponse, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupData, RestoreBackupError, RestoreBackupErrors, RestoreBackupResponses, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, ScheduleCreatedResponse, ScheduleFactResponse, ScheduleFactsResponse, ScheduleListResponse, ScheduleMetadataRequest, ScheduleSummaryResponse, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SecurityListResponse, SecurityResponse, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, ShareReportData, ShareReportError, ShareReportErrors, ShareReportRequest, ShareReportResponse, ShareReportResponse2, ShareReportResponses, ShareResultItem, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StatementResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, StructureListResponse, StructureResponse, StructureSummary, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SuggestedTarget, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TaxonomyListResponse, TaxonomyResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TrialBalanceResponse, TrialBalanceRow, UnmappedElementResponse, UpcomingInvoice, UpdateApiKeyRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateLedgerEntityData, UpdateLedgerEntityError, UpdateLedgerEntityErrors, UpdateLedgerEntityResponse, UpdateLedgerEntityResponses, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioData, UpdatePortfolioError, UpdatePortfolioErrors, UpdatePortfolioRequest, UpdatePortfolioResponse, UpdatePortfolioResponses, UpdatePositionData, UpdatePositionError, UpdatePositionErrors, UpdatePositionRequest, UpdatePositionResponse, UpdatePositionResponses, UpdatePublishListData, UpdatePublishListError, UpdatePublishListErrors, UpdatePublishListRequest, UpdatePublishListResponse, UpdatePublishListResponses, UpdateSecurityData, UpdateSecurityError, UpdateSecurityErrors, UpdateSecurityRequest, UpdateSecurityResponse, UpdateSecurityResponses, 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, ValidationCheckResponse, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
|
|
3
|
+
export { addPublishListMembers, autoMapElements, autoSelectAgent, batchProcessQueries, callMcpTool, cancelOperation, cancelOrgSubscription, changeSubscriptionPlan, checkPasswordStrength, completeSsoAuth, createBackup, createCheckoutSession, createClosingEntry, createConnection, createFileUpload, createGraph, createMappingAssociation, createPortalSession, createPortfolio, createPosition, createPublishList, createReport, createRepositorySubscription, createSchedule, createSecurity, createStructure, createSubgraph, createTaxonomy, createUserApiKey, createView, deleteConnection, deleteDocument, deleteFile, deleteMappingAssociation, deletePortfolio, deletePosition, deletePublishList, deleteReport, deleteSecurity, deleteSubgraph, executeCypherQuery, executeSpecificAgent, exportGraphSchema, forgotPassword, generateSsoToken, getAccountRollups, getAgentMetadata, getAvailableExtensions, getAvailableGraphTiers, getBackupDownloadUrl, getBackupStats, getCaptchaConfig, getCheckoutStatus, getClosingBookStructures, getConnection, getConnectionOptions, getCreditSummary, getCurrentAuthUser, getCurrentUser, getDatabaseHealth, getDatabaseInfo, getDocument, getDocumentSection, getFile, getGraphCapacity, getGraphLimits, getGraphMetrics, getGraphs, getGraphSchema, getGraphSubscription, getGraphUsageAnalytics, getLedgerAccountTree, getLedgerEntity, getLedgerSummary, getLedgerTransaction, getLedgerTrialBalance, getMappedTrialBalance, getMappingCoverage, getMappingDetail, getMaterializationStatus, getOperationStatus, getOrg, getOrgBillingCustomer, getOrgLimits, getOrgSubscription, getOrgUpcomingInvoice, getOrgUsage, getPasswordPolicy, getPeriodCloseStatus, getPortfolio, getPosition, getPublishList, getReport, getReportingTaxonomy, getScheduleFacts, getSecurity, getServiceOfferings, getServiceStatus, getStatement, getSubgraphInfo, getSubgraphQuota, initOAuth, inviteOrgMember, listAgents, listBackups, listConnections, listCreditTransactions, listDocuments, listElements, listFiles, listHoldings, listLedgerAccounts, listLedgerEntities, listLedgerTransactions, listMappings, listMcpTools, listOrgGraphs, listOrgInvoices, listOrgMembers, listOrgSubscriptions, listPortfolios, listPositions, listPublishLists, listReports, listSchedules, listSecurities, listStructures, listSubgraphs, listTables, listTaxonomies, listUnmappedElements, listUserApiKeys, listUserOrgs, loginUser, logoutUser, materializeGraph, oauthCallback, type Options, queryTables, recommendAgent, refreshAuthSession, regenerateReport, registerUser, removeOrgMember, removePublishListMember, resendVerificationEmail, resetPassword, restoreBackup, revokeUserApiKey, searchDocuments, selectGraph, shareReport, ssoTokenExchange, streamOperationEvents, syncConnection, updateDocument, updateFile, updateLedgerEntity, updateOrg, updateOrgMemberRole, updatePortfolio, updatePosition, updatePublishList, updateSecurity, updateUser, updateUserApiKey, updateUserPassword, uploadDocument, uploadDocumentsBulk, validateResetToken, validateSchema, verifyEmail } from './sdk.gen';
|
|
4
|
+
export type { AccountInfo, AccountListResponse, AccountResponse, AccountRollupGroup, AccountRollupRow, AccountRollupsResponse, AccountTreeNode, AccountTreeResponse, AddMembersRequest, AddPublishListMembersData, AddPublishListMembersError, AddPublishListMembersErrors, AddPublishListMembersResponse, AddPublishListMembersResponses, AgentListResponse, AgentMessage, AgentMetadataResponse, AgentMode, AgentRecommendation, AgentRecommendationRequest, AgentRecommendationResponse, AgentRequest, AgentResponse, ApiKeyInfo, ApiKeysResponse, AssociationResponse, AuthResponse, AutoMapElementsData, AutoMapElementsError, AutoMapElementsErrors, AutoMapElementsResponses, AutoSelectAgentData, AutoSelectAgentError, AutoSelectAgentErrors, AutoSelectAgentResponse, AutoSelectAgentResponses, AvailableExtension, AvailableExtensionsResponse, AvailableGraphTiersResponse, BackupCreateRequest, BackupDownloadUrlResponse, BackupLimits, BackupListResponse, BackupResponse, BackupRestoreRequest, BackupStatsResponse, BatchAgentRequest, BatchAgentResponse, BatchProcessQueriesData, BatchProcessQueriesError, BatchProcessQueriesErrors, BatchProcessQueriesResponse, BatchProcessQueriesResponses, BillingCustomer, BulkDocumentUploadRequest, BulkDocumentUploadResponse, CallMcpToolData, CallMcpToolError, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationError, CancelOperationErrors, CancelOperationResponse, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionError, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponse, CancelOrgSubscriptionResponses, ChangeSubscriptionPlanData, ChangeSubscriptionPlanError, ChangeSubscriptionPlanErrors, ChangeSubscriptionPlanResponse, ChangeSubscriptionPlanResponses, CheckoutResponse, CheckoutStatusResponse, CheckPasswordStrengthData, CheckPasswordStrengthError, CheckPasswordStrengthErrors, CheckPasswordStrengthResponse, CheckPasswordStrengthResponses, ClientOptions, ClosingBookCategory, ClosingBookItem, ClosingBookStructuresResponse, ClosingEntryResponse, CompleteSsoAuthData, CompleteSsoAuthError, CompleteSsoAuthErrors, CompleteSsoAuthResponse, CompleteSsoAuthResponses, ConnectionOptionsResponse, ConnectionProviderInfo, ConnectionResponse, ContentLimits, CopyOperationLimits, CreateApiKeyRequest, CreateApiKeyResponse, CreateAssociationRequest, CreateBackupData, CreateBackupError, CreateBackupErrors, CreateBackupResponses, CreateCheckoutRequest, CreateCheckoutSessionData, CreateCheckoutSessionError, CreateCheckoutSessionErrors, CreateCheckoutSessionResponse, CreateCheckoutSessionResponses, CreateClosingEntryData, CreateClosingEntryError, CreateClosingEntryErrors, CreateClosingEntryRequest, CreateClosingEntryResponse, CreateClosingEntryResponses, CreateConnectionData, CreateConnectionError, CreateConnectionErrors, CreateConnectionRequest, CreateConnectionResponse, CreateConnectionResponses, CreateFileUploadData, CreateFileUploadError, CreateFileUploadErrors, CreateFileUploadResponse, CreateFileUploadResponses, CreateGraphData, CreateGraphError, CreateGraphErrors, CreateGraphRequest, CreateGraphResponses, CreateMappingAssociationData, CreateMappingAssociationError, CreateMappingAssociationErrors, CreateMappingAssociationResponse, CreateMappingAssociationResponses, CreatePortalSessionData, CreatePortalSessionError, CreatePortalSessionErrors, CreatePortalSessionResponse, CreatePortalSessionResponses, CreatePortfolioData, CreatePortfolioError, CreatePortfolioErrors, CreatePortfolioRequest, CreatePortfolioResponse, CreatePortfolioResponses, CreatePositionData, CreatePositionError, CreatePositionErrors, CreatePositionRequest, CreatePositionResponse, CreatePositionResponses, CreatePublishListData, CreatePublishListError, CreatePublishListErrors, CreatePublishListRequest, CreatePublishListResponse, CreatePublishListResponses, CreateReportData, CreateReportError, CreateReportErrors, CreateReportRequest, CreateReportResponse, CreateReportResponses, CreateRepositorySubscriptionData, CreateRepositorySubscriptionError, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionRequest, CreateRepositorySubscriptionResponse, CreateRepositorySubscriptionResponses, CreateScheduleData, CreateScheduleError, CreateScheduleErrors, CreateScheduleRequest, CreateScheduleResponse, CreateScheduleResponses, CreateSecurityData, CreateSecurityError, CreateSecurityErrors, CreateSecurityRequest, CreateSecurityResponse, CreateSecurityResponses, CreateStructureData, CreateStructureError, CreateStructureErrors, CreateStructureRequest, CreateStructureResponse, CreateStructureResponses, CreateSubgraphData, CreateSubgraphError, CreateSubgraphErrors, CreateSubgraphRequest, CreateSubgraphResponses, CreateTaxonomyData, CreateTaxonomyError, CreateTaxonomyErrors, CreateTaxonomyRequest, CreateTaxonomyResponse, CreateTaxonomyResponses, CreateUserApiKeyData, CreateUserApiKeyError, CreateUserApiKeyErrors, CreateUserApiKeyResponse, CreateUserApiKeyResponses, CreateViewData, CreateViewError, CreateViewErrors, CreateViewRequest, CreateViewResponses, CreditLimits, CreditSummary, CreditSummaryResponse, CustomSchemaDefinition, CypherQueryRequest, DatabaseHealthResponse, DatabaseInfoResponse, DatabaseStorageEntry, DeleteConnectionData, DeleteConnectionError, DeleteConnectionErrors, DeleteConnectionResponse, DeleteConnectionResponses, DeleteDocumentData, DeleteDocumentError, DeleteDocumentErrors, DeleteDocumentResponse, DeleteDocumentResponses, DeleteFileData, DeleteFileError, DeleteFileErrors, DeleteFileResponse, DeleteFileResponse2, DeleteFileResponses, DeleteMappingAssociationData, DeleteMappingAssociationError, DeleteMappingAssociationErrors, DeleteMappingAssociationResponse, DeleteMappingAssociationResponses, DeletePortfolioData, DeletePortfolioError, DeletePortfolioErrors, DeletePortfolioResponse, DeletePortfolioResponses, DeletePositionData, DeletePositionError, DeletePositionErrors, DeletePositionResponse, DeletePositionResponses, DeletePublishListData, DeletePublishListError, DeletePublishListErrors, DeletePublishListResponse, DeletePublishListResponses, DeleteReportData, DeleteReportError, DeleteReportErrors, DeleteReportResponse, DeleteReportResponses, DeleteSecurityData, DeleteSecurityError, DeleteSecurityErrors, DeleteSecurityResponse, DeleteSecurityResponses, DeleteSubgraphData, DeleteSubgraphError, DeleteSubgraphErrors, DeleteSubgraphRequest, DeleteSubgraphResponse, DeleteSubgraphResponse2, DeleteSubgraphResponses, DetailedTransactionsResponse, DocumentDetailResponse, DocumentListItem, DocumentListResponse, DocumentSection, DocumentUpdateRequest, DocumentUploadRequest, DocumentUploadResponse, DownloadQuota, ElementListResponse, ElementResponse, EmailVerificationRequest, EnhancedCreditTransactionResponse, EnhancedFileStatusLayers, EntryTemplateRequest, ErrorResponse, ExecuteCypherQueryData, ExecuteCypherQueryError, ExecuteCypherQueryErrors, ExecuteCypherQueryResponse, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentError, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponse, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaError, ExportGraphSchemaErrors, ExportGraphSchemaResponse, ExportGraphSchemaResponses, FactRowResponse, FileInfo, FileLayerStatus, FileStatusUpdate, FileUploadRequest, FileUploadResponse, ForgotPasswordData, ForgotPasswordError, ForgotPasswordErrors, ForgotPasswordRequest, ForgotPasswordResponse, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenError, GenerateSsoTokenErrors, GenerateSsoTokenResponse, GenerateSsoTokenResponses, GetAccountRollupsData, GetAccountRollupsError, GetAccountRollupsErrors, GetAccountRollupsResponse, GetAccountRollupsResponses, GetAgentMetadataData, GetAgentMetadataError, GetAgentMetadataErrors, GetAgentMetadataResponse, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsErrors, GetAvailableExtensionsResponse, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersError, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponse, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlError, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponse, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsError, GetBackupStatsErrors, GetBackupStatsResponse, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusError, GetCheckoutStatusErrors, GetCheckoutStatusResponse, GetCheckoutStatusResponses, GetClosingBookStructuresData, GetClosingBookStructuresError, GetClosingBookStructuresErrors, GetClosingBookStructuresResponse, GetClosingBookStructuresResponses, GetConnectionData, GetConnectionError, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsError, GetConnectionOptionsErrors, GetConnectionOptionsResponse, GetConnectionOptionsResponses, GetConnectionResponse, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryError, GetCreditSummaryErrors, GetCreditSummaryResponse, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserError, GetCurrentAuthUserErrors, GetCurrentAuthUserResponse, GetCurrentAuthUserResponses, GetCurrentUserData, 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, GetGraphCapacityErrors, GetGraphCapacityResponse, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsError, GetGraphLimitsErrors, GetGraphLimitsResponse, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsError, GetGraphMetricsErrors, GetGraphMetricsResponse, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaError, GetGraphSchemaErrors, GetGraphSchemaResponse, GetGraphSchemaResponses, GetGraphsData, GetGraphsErrors, GetGraphsResponse, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionError, GetGraphSubscriptionErrors, GetGraphSubscriptionResponse, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsError, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponse, GetGraphUsageAnalyticsResponses, GetLedgerAccountTreeData, GetLedgerAccountTreeError, GetLedgerAccountTreeErrors, GetLedgerAccountTreeResponse, GetLedgerAccountTreeResponses, GetLedgerEntityData, GetLedgerEntityError, GetLedgerEntityErrors, GetLedgerEntityResponse, GetLedgerEntityResponses, GetLedgerSummaryData, GetLedgerSummaryError, GetLedgerSummaryErrors, GetLedgerSummaryResponse, GetLedgerSummaryResponses, GetLedgerTransactionData, GetLedgerTransactionError, GetLedgerTransactionErrors, GetLedgerTransactionResponse, GetLedgerTransactionResponses, GetLedgerTrialBalanceData, GetLedgerTrialBalanceError, GetLedgerTrialBalanceErrors, GetLedgerTrialBalanceResponse, GetLedgerTrialBalanceResponses, GetMappedTrialBalanceData, GetMappedTrialBalanceError, GetMappedTrialBalanceErrors, GetMappedTrialBalanceResponses, GetMappingCoverageData, GetMappingCoverageError, GetMappingCoverageErrors, GetMappingCoverageResponse, GetMappingCoverageResponses, GetMappingDetailData, GetMappingDetailError, GetMappingDetailErrors, GetMappingDetailResponse, GetMappingDetailResponses, GetMaterializationStatusData, GetMaterializationStatusError, GetMaterializationStatusErrors, GetMaterializationStatusResponse, GetMaterializationStatusResponses, 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, GetPasswordPolicyResponse, GetPasswordPolicyResponses, GetPeriodCloseStatusData, GetPeriodCloseStatusError, GetPeriodCloseStatusErrors, GetPeriodCloseStatusResponse, GetPeriodCloseStatusResponses, GetPortfolioData, GetPortfolioError, GetPortfolioErrors, GetPortfolioResponse, GetPortfolioResponses, GetPositionData, GetPositionError, GetPositionErrors, GetPositionResponse, GetPositionResponses, GetPublishListData, GetPublishListError, GetPublishListErrors, GetPublishListResponse, GetPublishListResponses, GetReportData, GetReportError, GetReportErrors, GetReportingTaxonomyData, GetReportingTaxonomyError, GetReportingTaxonomyErrors, GetReportingTaxonomyResponse, GetReportingTaxonomyResponses, GetReportResponse, GetReportResponses, GetScheduleFactsData, GetScheduleFactsError, GetScheduleFactsErrors, GetScheduleFactsResponse, GetScheduleFactsResponses, GetSecurityData, GetSecurityError, GetSecurityErrors, GetSecurityResponse, GetSecurityResponses, GetServiceOfferingsData, GetServiceOfferingsError, GetServiceOfferingsErrors, GetServiceOfferingsResponse, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponse, GetServiceStatusResponses, GetStatementData, GetStatementError, GetStatementErrors, GetStatementResponse, GetStatementResponses, GetSubgraphInfoData, GetSubgraphInfoError, GetSubgraphInfoErrors, GetSubgraphInfoResponse, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaError, GetSubgraphQuotaErrors, GetSubgraphQuotaResponse, GetSubgraphQuotaResponses, GraphCapacityResponse, GraphInfo, GraphLimitsResponse, GraphMetadata, GraphMetricsResponse, GraphSubscriptionResponse, GraphSubscriptions, GraphSubscriptionTier, GraphTierBackup, GraphTierCopyOperations, GraphTierInfo, GraphTierInstance, GraphTierLimits, GraphUsageResponse, HealthStatus, HoldingResponse, HoldingSecuritySummary, HoldingsListResponse, HttpValidationError, InitialEntityData, InitOAuthData, InitOAuthError, InitOAuthErrors, InitOAuthResponse, InitOAuthResponses, InstanceUsage, InviteMemberRequest, InviteOrgMemberData, InviteOrgMemberError, InviteOrgMemberErrors, InviteOrgMemberResponse, InviteOrgMemberResponses, Invoice, InvoiceLineItem, InvoicesResponse, LedgerEntityResponse, LedgerEntryResponse, LedgerLineItemResponse, LedgerSummaryResponse, LedgerTransactionDetailResponse, LedgerTransactionListResponse, LedgerTransactionSummaryResponse, 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, ListElementsData, ListElementsError, ListElementsErrors, ListElementsResponse, ListElementsResponses, ListFilesData, ListFilesError, ListFilesErrors, ListFilesResponse, ListFilesResponses, ListHoldingsData, ListHoldingsError, ListHoldingsErrors, ListHoldingsResponse, ListHoldingsResponses, ListLedgerAccountsData, ListLedgerAccountsError, ListLedgerAccountsErrors, ListLedgerAccountsResponse, ListLedgerAccountsResponses, ListLedgerEntitiesData, ListLedgerEntitiesError, ListLedgerEntitiesErrors, ListLedgerEntitiesResponse, ListLedgerEntitiesResponses, ListLedgerTransactionsData, ListLedgerTransactionsError, ListLedgerTransactionsErrors, ListLedgerTransactionsResponse, ListLedgerTransactionsResponses, ListMappingsData, ListMappingsError, ListMappingsErrors, ListMappingsResponse, ListMappingsResponses, 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, ListPortfoliosData, ListPortfoliosError, ListPortfoliosErrors, ListPortfoliosResponse, ListPortfoliosResponses, ListPositionsData, ListPositionsError, ListPositionsErrors, ListPositionsResponse, ListPositionsResponses, ListPublishListsData, ListPublishListsError, ListPublishListsErrors, ListPublishListsResponse, ListPublishListsResponses, ListReportsData, ListReportsError, ListReportsErrors, ListReportsResponse, ListReportsResponses, ListSchedulesData, ListSchedulesError, ListSchedulesErrors, ListSchedulesResponse, ListSchedulesResponses, ListSecuritiesData, ListSecuritiesError, ListSecuritiesErrors, ListSecuritiesResponse, ListSecuritiesResponses, ListStructuresData, ListStructuresError, ListStructuresErrors, ListStructuresResponse, ListStructuresResponses, ListSubgraphsData, ListSubgraphsError, ListSubgraphsErrors, ListSubgraphsResponse, ListSubgraphsResponse2, ListSubgraphsResponses, ListTableFilesResponse, ListTablesData, ListTablesError, ListTablesErrors, ListTablesResponse, ListTablesResponses, ListTaxonomiesData, ListTaxonomiesError, ListTaxonomiesErrors, ListTaxonomiesResponse, ListTaxonomiesResponses, ListUnmappedElementsData, ListUnmappedElementsError, ListUnmappedElementsErrors, ListUnmappedElementsResponse, ListUnmappedElementsResponses, ListUserApiKeysData, ListUserApiKeysResponse, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsResponse, ListUserOrgsResponses, LoginRequest, LoginUserData, LoginUserError, LoginUserErrors, LoginUserResponse, LoginUserResponses, LogoutUserData, LogoutUserResponse, LogoutUserResponses, MappingCoverageResponse, MappingDetailResponse, MaterializeGraphData, MaterializeGraphError, MaterializeGraphErrors, MaterializeGraphResponse, MaterializeGraphResponses, MaterializeRequest, MaterializeResponse, MaterializeStatusResponse, McpToolCall, McpToolsResponse, OauthCallbackData, OauthCallbackError, OauthCallbackErrors, OAuthCallbackRequest, OauthCallbackResponses, OAuthInitRequest, OAuthInitResponse, OfferingRepositoryPlan, OperationCosts, OrgDetailResponse, OrgLimitsResponse, OrgListResponse, OrgMemberListResponse, OrgMemberResponse, OrgResponse, OrgRole, OrgType, OrgUsageResponse, OrgUsageSummary, PaginationInfo, PasswordCheckRequest, PasswordCheckResponse, PasswordPolicyResponse, PaymentMethod, PerformanceInsights, PeriodCloseItemResponse, PeriodCloseStatusResponse, PeriodSpec, PortalSessionResponse, PortfolioListResponse, PortfolioResponse, PositionListResponse, PositionResponse, PublishListDetailResponse, PublishListListResponse, PublishListMemberResponse, PublishListResponse, QueryLimits, QueryTablesData, QueryTablesError, QueryTablesErrors, QueryTablesResponse, QueryTablesResponses, QuickBooksConnectionConfig, RateLimits, RecommendAgentData, RecommendAgentError, RecommendAgentErrors, RecommendAgentResponse, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionError, RefreshAuthSessionErrors, RefreshAuthSessionResponse, RefreshAuthSessionResponses, RegenerateReportData, RegenerateReportError, RegenerateReportErrors, RegenerateReportRequest, RegenerateReportResponse, RegenerateReportResponses, RegisterRequest, RegisterUserData, RegisterUserError, RegisterUserErrors, RegisterUserResponse, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberError, RemoveOrgMemberErrors, RemoveOrgMemberResponse, RemoveOrgMemberResponses, RemovePublishListMemberData, RemovePublishListMemberError, RemovePublishListMemberErrors, RemovePublishListMemberResponse, RemovePublishListMemberResponses, ReportListResponse, ReportResponse, RepositoryInfo, RepositorySubscriptions, ResendVerificationEmailData, ResendVerificationEmailError, ResendVerificationEmailErrors, ResendVerificationEmailResponse, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordError, ResetPasswordErrors, ResetPasswordRequest, ResetPasswordResponse, ResetPasswordResponses, ResetPasswordValidateResponse, ResponseMode, RestoreBackupData, RestoreBackupError, RestoreBackupErrors, RestoreBackupResponses, RevokeUserApiKeyData, RevokeUserApiKeyError, RevokeUserApiKeyErrors, RevokeUserApiKeyResponse, RevokeUserApiKeyResponses, ScheduleCreatedResponse, ScheduleFactResponse, ScheduleFactsResponse, ScheduleListResponse, ScheduleMetadataRequest, ScheduleSummaryResponse, SchemaExportResponse, SchemaInfoResponse, SchemaValidationRequest, SchemaValidationResponse, SearchDocumentsData, SearchDocumentsError, SearchDocumentsErrors, SearchDocumentsResponse, SearchDocumentsResponses, SearchHit, SearchRequest, SearchResponse, SecConnectionConfig, SecurityListResponse, SecurityResponse, SelectGraphData, SelectGraphError, SelectGraphErrors, SelectGraphResponse, SelectGraphResponses, SelectionCriteria, ServiceOfferingsResponse, ServiceOfferingSummary, ShareReportData, ShareReportError, ShareReportErrors, ShareReportRequest, ShareReportResponse, ShareReportResponse2, ShareReportResponses, ShareResultItem, SsoCompleteRequest, SsoExchangeRequest, SsoExchangeResponse, SsoTokenExchangeData, SsoTokenExchangeError, SsoTokenExchangeErrors, SsoTokenExchangeResponse, SsoTokenExchangeResponses, SsoTokenResponse, StatementResponse, StorageLimits, StorageSummary, StreamOperationEventsData, StreamOperationEventsError, StreamOperationEventsErrors, StreamOperationEventsResponses, StructureListResponse, StructureResponse, StructureSummary, SubgraphQuotaResponse, SubgraphResponse, SubgraphSummary, SubgraphType, SuccessResponse, SuggestedTarget, SyncConnectionData, SyncConnectionError, SyncConnectionErrors, SyncConnectionRequest, SyncConnectionResponse, SyncConnectionResponses, TableInfo, TableListResponse, TableQueryRequest, TableQueryResponse, TaxonomyListResponse, TaxonomyResponse, TierCapacity, TokenPricing, TransactionSummaryResponse, TrialBalanceResponse, TrialBalanceRow, UnmappedElementResponse, UpcomingInvoice, UpdateApiKeyRequest, UpdateDocumentData, UpdateDocumentError, UpdateDocumentErrors, UpdateDocumentResponse, UpdateDocumentResponses, UpdateEntityRequest, UpdateFileData, UpdateFileError, UpdateFileErrors, UpdateFileResponse, UpdateFileResponses, UpdateLedgerEntityData, UpdateLedgerEntityError, UpdateLedgerEntityErrors, UpdateLedgerEntityResponse, UpdateLedgerEntityResponses, UpdateMemberRoleRequest, UpdateOrgData, UpdateOrgError, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleError, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponse, UpdateOrgMemberRoleResponses, UpdateOrgRequest, UpdateOrgResponse, UpdateOrgResponses, UpdatePasswordRequest, UpdatePortfolioData, UpdatePortfolioError, UpdatePortfolioErrors, UpdatePortfolioRequest, UpdatePortfolioResponse, UpdatePortfolioResponses, UpdatePositionData, UpdatePositionError, UpdatePositionErrors, UpdatePositionRequest, UpdatePositionResponse, UpdatePositionResponses, UpdatePublishListData, UpdatePublishListError, UpdatePublishListErrors, UpdatePublishListRequest, UpdatePublishListResponse, UpdatePublishListResponses, UpdateSecurityData, UpdateSecurityError, UpdateSecurityErrors, UpdateSecurityRequest, UpdateSecurityResponse, UpdateSecurityResponses, 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, ValidationCheckResponse, ValidationError, VerifyEmailData, VerifyEmailError, VerifyEmailErrors, VerifyEmailResponse, VerifyEmailResponses, ViewAxisConfig, ViewConfig } from './types.gen';
|