@robosystems/client 0.2.32 → 0.2.34
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/index.ts +2 -2
- package/package.json +1 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +5 -4
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +30 -27
- package/sdk/sdk.gen.js +45 -33
- package/sdk/sdk.gen.ts +42 -30
- package/sdk/types.gen.d.ts +221 -80
- package/sdk/types.gen.ts +228 -81
- package/sdk.gen.d.ts +30 -27
- package/sdk.gen.js +45 -33
- package/sdk.gen.ts +42 -30
- package/types.gen.d.ts +221 -80
- package/types.gen.ts +228 -81
package/sdk/types.gen.ts
CHANGED
|
@@ -1006,7 +1006,7 @@ export type ConnectionProviderInfo = {
|
|
|
1006
1006
|
*
|
|
1007
1007
|
* Provider identifier
|
|
1008
1008
|
*/
|
|
1009
|
-
provider: 'sec' | 'quickbooks'
|
|
1009
|
+
provider: 'sec' | 'quickbooks';
|
|
1010
1010
|
/**
|
|
1011
1011
|
* Display Name
|
|
1012
1012
|
*
|
|
@@ -1098,7 +1098,7 @@ export type ConnectionResponse = {
|
|
|
1098
1098
|
*
|
|
1099
1099
|
* Entity identifier
|
|
1100
1100
|
*/
|
|
1101
|
-
entity_id
|
|
1101
|
+
entity_id?: string | null;
|
|
1102
1102
|
/**
|
|
1103
1103
|
* Status
|
|
1104
1104
|
*
|
|
@@ -1316,16 +1316,15 @@ export type CreateConnectionRequest = {
|
|
|
1316
1316
|
*
|
|
1317
1317
|
* Connection provider type
|
|
1318
1318
|
*/
|
|
1319
|
-
provider: 'sec' | 'quickbooks'
|
|
1319
|
+
provider: 'sec' | 'quickbooks';
|
|
1320
1320
|
/**
|
|
1321
1321
|
* Entity Id
|
|
1322
1322
|
*
|
|
1323
|
-
* Entity identifier
|
|
1323
|
+
* Entity identifier. Required for QuickBooks, optional for SEC (SEC creates the entity from filing data).
|
|
1324
1324
|
*/
|
|
1325
|
-
entity_id
|
|
1325
|
+
entity_id?: string | null;
|
|
1326
1326
|
sec_config?: SecConnectionConfig | null;
|
|
1327
1327
|
quickbooks_config?: QuickBooksConnectionConfig | null;
|
|
1328
|
-
plaid_config?: PlaidConnectionConfig | null;
|
|
1329
1328
|
};
|
|
1330
1329
|
|
|
1331
1330
|
/**
|
|
@@ -1434,6 +1433,76 @@ export type CreateSubgraphRequest = {
|
|
|
1434
1433
|
fork_parent?: boolean;
|
|
1435
1434
|
};
|
|
1436
1435
|
|
|
1436
|
+
/**
|
|
1437
|
+
* CreateViewRequest
|
|
1438
|
+
*/
|
|
1439
|
+
export type CreateViewRequest = {
|
|
1440
|
+
/**
|
|
1441
|
+
* Elements
|
|
1442
|
+
*
|
|
1443
|
+
* Element qnames (e.g., 'us-gaap:Assets'). Can combine with canonical_concepts.
|
|
1444
|
+
*/
|
|
1445
|
+
elements?: Array<string>;
|
|
1446
|
+
/**
|
|
1447
|
+
* Canonical Concepts
|
|
1448
|
+
*
|
|
1449
|
+
* Canonical concept names (e.g., 'revenue', 'net_income'). Matches all mapped qnames.
|
|
1450
|
+
*/
|
|
1451
|
+
canonical_concepts?: Array<string>;
|
|
1452
|
+
/**
|
|
1453
|
+
* Periods
|
|
1454
|
+
*
|
|
1455
|
+
* Period end dates (YYYY-MM-DD format)
|
|
1456
|
+
*/
|
|
1457
|
+
periods?: Array<string>;
|
|
1458
|
+
/**
|
|
1459
|
+
* Entity
|
|
1460
|
+
*
|
|
1461
|
+
* Filter by entity ticker, CIK, or name
|
|
1462
|
+
*/
|
|
1463
|
+
entity?: string | null;
|
|
1464
|
+
/**
|
|
1465
|
+
* Entities
|
|
1466
|
+
*
|
|
1467
|
+
* Filter by multiple entity tickers (e.g., ['NVDA', 'AAPL'])
|
|
1468
|
+
*/
|
|
1469
|
+
entities?: Array<string>;
|
|
1470
|
+
/**
|
|
1471
|
+
* Form
|
|
1472
|
+
*
|
|
1473
|
+
* Filter by SEC filing form type (e.g., '10-K', '10-Q')
|
|
1474
|
+
*/
|
|
1475
|
+
form?: string | null;
|
|
1476
|
+
/**
|
|
1477
|
+
* Fiscal Year
|
|
1478
|
+
*
|
|
1479
|
+
* Filter by fiscal year (e.g., 2024)
|
|
1480
|
+
*/
|
|
1481
|
+
fiscal_year?: number | null;
|
|
1482
|
+
/**
|
|
1483
|
+
* Fiscal Period
|
|
1484
|
+
*
|
|
1485
|
+
* Filter by fiscal period (e.g., 'FY', 'Q1', 'Q2', 'Q3')
|
|
1486
|
+
*/
|
|
1487
|
+
fiscal_period?: string | null;
|
|
1488
|
+
/**
|
|
1489
|
+
* Period Type
|
|
1490
|
+
*
|
|
1491
|
+
* Filter by period type: 'annual', 'quarterly', or 'instant'
|
|
1492
|
+
*/
|
|
1493
|
+
period_type?: string | null;
|
|
1494
|
+
/**
|
|
1495
|
+
* Include Summary
|
|
1496
|
+
*
|
|
1497
|
+
* Include summary statistics per element
|
|
1498
|
+
*/
|
|
1499
|
+
include_summary?: boolean;
|
|
1500
|
+
/**
|
|
1501
|
+
* View/pivot configuration
|
|
1502
|
+
*/
|
|
1503
|
+
view_config?: ViewConfig;
|
|
1504
|
+
};
|
|
1505
|
+
|
|
1437
1506
|
/**
|
|
1438
1507
|
* CreditLimits
|
|
1439
1508
|
*
|
|
@@ -4266,48 +4335,6 @@ export type PerformanceInsights = {
|
|
|
4266
4335
|
performance_score: number;
|
|
4267
4336
|
};
|
|
4268
4337
|
|
|
4269
|
-
/**
|
|
4270
|
-
* PlaidConnectionConfig
|
|
4271
|
-
*
|
|
4272
|
-
* Plaid-specific connection configuration.
|
|
4273
|
-
*/
|
|
4274
|
-
export type PlaidConnectionConfig = {
|
|
4275
|
-
/**
|
|
4276
|
-
* Public Token
|
|
4277
|
-
*
|
|
4278
|
-
* Plaid public token for exchange
|
|
4279
|
-
*/
|
|
4280
|
-
public_token?: string | null;
|
|
4281
|
-
/**
|
|
4282
|
-
* Access Token
|
|
4283
|
-
*
|
|
4284
|
-
* Plaid access token (set after exchange)
|
|
4285
|
-
*/
|
|
4286
|
-
access_token?: string | null;
|
|
4287
|
-
/**
|
|
4288
|
-
* Item Id
|
|
4289
|
-
*
|
|
4290
|
-
* Plaid item ID
|
|
4291
|
-
*/
|
|
4292
|
-
item_id?: string | null;
|
|
4293
|
-
/**
|
|
4294
|
-
* Institution
|
|
4295
|
-
*
|
|
4296
|
-
* Institution information
|
|
4297
|
-
*/
|
|
4298
|
-
institution?: {
|
|
4299
|
-
[key: string]: unknown;
|
|
4300
|
-
} | null;
|
|
4301
|
-
/**
|
|
4302
|
-
* Accounts
|
|
4303
|
-
*
|
|
4304
|
-
* Connected accounts
|
|
4305
|
-
*/
|
|
4306
|
-
accounts?: Array<{
|
|
4307
|
-
[key: string]: unknown;
|
|
4308
|
-
}> | null;
|
|
4309
|
-
};
|
|
4310
|
-
|
|
4311
4338
|
/**
|
|
4312
4339
|
* PortalSessionResponse
|
|
4313
4340
|
*
|
|
@@ -4567,15 +4594,9 @@ export type SecConnectionConfig = {
|
|
|
4567
4594
|
/**
|
|
4568
4595
|
* Cik
|
|
4569
4596
|
*
|
|
4570
|
-
*
|
|
4597
|
+
* SEC Central Index Key
|
|
4571
4598
|
*/
|
|
4572
4599
|
cik: string;
|
|
4573
|
-
/**
|
|
4574
|
-
* Entity Name
|
|
4575
|
-
*
|
|
4576
|
-
* Entity name from SEC
|
|
4577
|
-
*/
|
|
4578
|
-
entity_name?: string | null;
|
|
4579
4600
|
};
|
|
4580
4601
|
|
|
4581
4602
|
/**
|
|
@@ -5611,7 +5632,7 @@ export type UpgradeSubscriptionRequest = {
|
|
|
5611
5632
|
/**
|
|
5612
5633
|
* New Plan Name
|
|
5613
5634
|
*
|
|
5614
|
-
* New plan name to
|
|
5635
|
+
* New plan name to change to
|
|
5615
5636
|
*/
|
|
5616
5637
|
new_plan_name: string;
|
|
5617
5638
|
};
|
|
@@ -5696,6 +5717,100 @@ export type ValidationError = {
|
|
|
5696
5717
|
};
|
|
5697
5718
|
};
|
|
5698
5719
|
|
|
5720
|
+
/**
|
|
5721
|
+
* ViewAxisConfig
|
|
5722
|
+
*/
|
|
5723
|
+
export type ViewAxisConfig = {
|
|
5724
|
+
/**
|
|
5725
|
+
* Type
|
|
5726
|
+
*
|
|
5727
|
+
* Axis type: 'element', 'period', 'dimension', 'entity'
|
|
5728
|
+
*/
|
|
5729
|
+
type: string;
|
|
5730
|
+
/**
|
|
5731
|
+
* Dimension Axis
|
|
5732
|
+
*
|
|
5733
|
+
* Dimension axis name for dimension-type axes
|
|
5734
|
+
*/
|
|
5735
|
+
dimension_axis?: string | null;
|
|
5736
|
+
/**
|
|
5737
|
+
* Include Null Dimension
|
|
5738
|
+
*
|
|
5739
|
+
* Include facts where this dimension is NULL (default: false)
|
|
5740
|
+
*/
|
|
5741
|
+
include_null_dimension?: boolean;
|
|
5742
|
+
/**
|
|
5743
|
+
* Selected Members
|
|
5744
|
+
*
|
|
5745
|
+
* Specific members to include (e.g., ['2024-12-31', '2023-12-31'])
|
|
5746
|
+
*/
|
|
5747
|
+
selected_members?: Array<string> | null;
|
|
5748
|
+
/**
|
|
5749
|
+
* Member Order
|
|
5750
|
+
*
|
|
5751
|
+
* Explicit ordering of members (overrides default sort)
|
|
5752
|
+
*/
|
|
5753
|
+
member_order?: Array<string> | null;
|
|
5754
|
+
/**
|
|
5755
|
+
* Member Labels
|
|
5756
|
+
*
|
|
5757
|
+
* Custom labels for members (e.g., {'2024-12-31': 'Current Year'})
|
|
5758
|
+
*/
|
|
5759
|
+
member_labels?: {
|
|
5760
|
+
[key: string]: string;
|
|
5761
|
+
} | null;
|
|
5762
|
+
/**
|
|
5763
|
+
* Element Order
|
|
5764
|
+
*
|
|
5765
|
+
* Element ordering for hierarchy display (e.g., ['us-gaap:Assets', 'us-gaap:Cash', ...])
|
|
5766
|
+
*/
|
|
5767
|
+
element_order?: Array<string> | null;
|
|
5768
|
+
/**
|
|
5769
|
+
* Element Labels
|
|
5770
|
+
*
|
|
5771
|
+
* Custom labels for elements (e.g., {'us-gaap:Cash': 'Cash and Cash Equivalents'})
|
|
5772
|
+
*/
|
|
5773
|
+
element_labels?: {
|
|
5774
|
+
[key: string]: string;
|
|
5775
|
+
} | null;
|
|
5776
|
+
};
|
|
5777
|
+
|
|
5778
|
+
/**
|
|
5779
|
+
* ViewConfig
|
|
5780
|
+
*/
|
|
5781
|
+
export type ViewConfig = {
|
|
5782
|
+
/**
|
|
5783
|
+
* Rows
|
|
5784
|
+
*
|
|
5785
|
+
* Row axis configuration
|
|
5786
|
+
*/
|
|
5787
|
+
rows?: Array<ViewAxisConfig>;
|
|
5788
|
+
/**
|
|
5789
|
+
* Columns
|
|
5790
|
+
*
|
|
5791
|
+
* Column axis configuration
|
|
5792
|
+
*/
|
|
5793
|
+
columns?: Array<ViewAxisConfig>;
|
|
5794
|
+
/**
|
|
5795
|
+
* Values
|
|
5796
|
+
*
|
|
5797
|
+
* Field to use for values (default: numeric_value)
|
|
5798
|
+
*/
|
|
5799
|
+
values?: string;
|
|
5800
|
+
/**
|
|
5801
|
+
* Aggregation Function
|
|
5802
|
+
*
|
|
5803
|
+
* Aggregation function: sum, average, count
|
|
5804
|
+
*/
|
|
5805
|
+
aggregation_function?: string;
|
|
5806
|
+
/**
|
|
5807
|
+
* Fill Value
|
|
5808
|
+
*
|
|
5809
|
+
* Value to use for missing data
|
|
5810
|
+
*/
|
|
5811
|
+
fill_value?: number;
|
|
5812
|
+
};
|
|
5813
|
+
|
|
5699
5814
|
export type RegisterUserData = {
|
|
5700
5815
|
body: RegisterRequest;
|
|
5701
5816
|
path?: never;
|
|
@@ -6672,7 +6787,7 @@ export type ListConnectionsData = {
|
|
|
6672
6787
|
*
|
|
6673
6788
|
* Filter by provider type
|
|
6674
6789
|
*/
|
|
6675
|
-
provider?: 'sec' | 'quickbooks' |
|
|
6790
|
+
provider?: 'sec' | 'quickbooks' | null;
|
|
6676
6791
|
};
|
|
6677
6792
|
url: '/v1/graphs/{graph_id}/connections';
|
|
6678
6793
|
};
|
|
@@ -8634,13 +8749,13 @@ export type GetGraphSubscriptionResponses = {
|
|
|
8634
8749
|
|
|
8635
8750
|
export type GetGraphSubscriptionResponse = GetGraphSubscriptionResponses[keyof GetGraphSubscriptionResponses];
|
|
8636
8751
|
|
|
8637
|
-
export type
|
|
8638
|
-
body:
|
|
8752
|
+
export type ChangeRepositoryPlanData = {
|
|
8753
|
+
body: UpgradeSubscriptionRequest;
|
|
8639
8754
|
path: {
|
|
8640
8755
|
/**
|
|
8641
8756
|
* Graph Id
|
|
8642
8757
|
*
|
|
8643
|
-
* Repository name (e.g., 'sec'
|
|
8758
|
+
* Repository name (e.g., 'sec')
|
|
8644
8759
|
*/
|
|
8645
8760
|
graph_id: string;
|
|
8646
8761
|
};
|
|
@@ -8648,67 +8763,71 @@ export type CreateRepositorySubscriptionData = {
|
|
|
8648
8763
|
url: '/v1/graphs/{graph_id}/subscriptions';
|
|
8649
8764
|
};
|
|
8650
8765
|
|
|
8651
|
-
export type
|
|
8766
|
+
export type ChangeRepositoryPlanErrors = {
|
|
8652
8767
|
/**
|
|
8653
|
-
* Invalid
|
|
8768
|
+
* Invalid plan or not a repository subscription
|
|
8654
8769
|
*/
|
|
8655
8770
|
400: unknown;
|
|
8656
8771
|
/**
|
|
8657
|
-
*
|
|
8772
|
+
* No subscription found
|
|
8658
8773
|
*/
|
|
8659
|
-
|
|
8774
|
+
404: unknown;
|
|
8660
8775
|
/**
|
|
8661
8776
|
* Validation Error
|
|
8662
8777
|
*/
|
|
8663
8778
|
422: HttpValidationError;
|
|
8664
8779
|
};
|
|
8665
8780
|
|
|
8666
|
-
export type
|
|
8781
|
+
export type ChangeRepositoryPlanError = ChangeRepositoryPlanErrors[keyof ChangeRepositoryPlanErrors];
|
|
8667
8782
|
|
|
8668
|
-
export type
|
|
8783
|
+
export type ChangeRepositoryPlanResponses = {
|
|
8669
8784
|
/**
|
|
8670
|
-
*
|
|
8785
|
+
* Plan changed successfully
|
|
8671
8786
|
*/
|
|
8672
|
-
|
|
8787
|
+
200: GraphSubscriptionResponse;
|
|
8673
8788
|
};
|
|
8674
8789
|
|
|
8675
|
-
export type
|
|
8790
|
+
export type ChangeRepositoryPlanResponse = ChangeRepositoryPlanResponses[keyof ChangeRepositoryPlanResponses];
|
|
8676
8791
|
|
|
8677
|
-
export type
|
|
8678
|
-
body:
|
|
8792
|
+
export type CreateRepositorySubscriptionData = {
|
|
8793
|
+
body: CreateRepositorySubscriptionRequest;
|
|
8679
8794
|
path: {
|
|
8680
8795
|
/**
|
|
8681
8796
|
* Graph Id
|
|
8682
8797
|
*
|
|
8683
|
-
*
|
|
8798
|
+
* Repository name (e.g., 'sec', 'industry')
|
|
8684
8799
|
*/
|
|
8685
8800
|
graph_id: string;
|
|
8686
8801
|
};
|
|
8687
8802
|
query?: never;
|
|
8688
|
-
url: '/v1/graphs/{graph_id}/subscriptions
|
|
8803
|
+
url: '/v1/graphs/{graph_id}/subscriptions';
|
|
8689
8804
|
};
|
|
8690
8805
|
|
|
8691
|
-
export type
|
|
8806
|
+
export type CreateRepositorySubscriptionErrors = {
|
|
8692
8807
|
/**
|
|
8693
|
-
*
|
|
8808
|
+
* Invalid request - cannot create subscription for user graphs
|
|
8694
8809
|
*/
|
|
8695
|
-
|
|
8810
|
+
400: unknown;
|
|
8811
|
+
/**
|
|
8812
|
+
* User already has a subscription to this repository
|
|
8813
|
+
*/
|
|
8814
|
+
409: unknown;
|
|
8696
8815
|
/**
|
|
8697
8816
|
* Validation Error
|
|
8698
8817
|
*/
|
|
8699
8818
|
422: HttpValidationError;
|
|
8700
8819
|
};
|
|
8701
8820
|
|
|
8702
|
-
export type
|
|
8821
|
+
export type CreateRepositorySubscriptionError = CreateRepositorySubscriptionErrors[keyof CreateRepositorySubscriptionErrors];
|
|
8703
8822
|
|
|
8704
|
-
export type
|
|
8823
|
+
export type CreateRepositorySubscriptionResponses = {
|
|
8705
8824
|
/**
|
|
8706
|
-
*
|
|
8825
|
+
* Repository subscription created successfully
|
|
8707
8826
|
*/
|
|
8708
|
-
|
|
8827
|
+
201: GraphSubscriptionResponse;
|
|
8709
8828
|
};
|
|
8710
8829
|
|
|
8711
|
-
export type
|
|
8830
|
+
export type CreateRepositorySubscriptionResponse = CreateRepositorySubscriptionResponses[keyof CreateRepositorySubscriptionResponses];
|
|
8712
8831
|
|
|
8713
8832
|
export type ListTablesData = {
|
|
8714
8833
|
body?: never;
|
|
@@ -8813,6 +8932,34 @@ export type QueryTablesResponses = {
|
|
|
8813
8932
|
|
|
8814
8933
|
export type QueryTablesResponse = QueryTablesResponses[keyof QueryTablesResponses];
|
|
8815
8934
|
|
|
8935
|
+
export type CreateViewData = {
|
|
8936
|
+
body: CreateViewRequest;
|
|
8937
|
+
path: {
|
|
8938
|
+
/**
|
|
8939
|
+
* Graph Id
|
|
8940
|
+
*/
|
|
8941
|
+
graph_id: string;
|
|
8942
|
+
};
|
|
8943
|
+
query?: never;
|
|
8944
|
+
url: '/v1/graphs/{graph_id}/views';
|
|
8945
|
+
};
|
|
8946
|
+
|
|
8947
|
+
export type CreateViewErrors = {
|
|
8948
|
+
/**
|
|
8949
|
+
* Validation Error
|
|
8950
|
+
*/
|
|
8951
|
+
422: HttpValidationError;
|
|
8952
|
+
};
|
|
8953
|
+
|
|
8954
|
+
export type CreateViewError = CreateViewErrors[keyof CreateViewErrors];
|
|
8955
|
+
|
|
8956
|
+
export type CreateViewResponses = {
|
|
8957
|
+
/**
|
|
8958
|
+
* Successful Response
|
|
8959
|
+
*/
|
|
8960
|
+
200: unknown;
|
|
8961
|
+
};
|
|
8962
|
+
|
|
8816
8963
|
export type GetMaterializationStatusData = {
|
|
8817
8964
|
body?: never;
|
|
8818
8965
|
path: {
|
package/sdk.gen.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Client, Options as Options2, TDataShape } from './client';
|
|
2
|
-
import type { AutoSelectAgentData, AutoSelectAgentErrors, AutoSelectAgentResponses, BatchProcessQueriesData, BatchProcessQueriesErrors, BatchProcessQueriesResponses, CallMcpToolData, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationErrors, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponses, CheckCreditBalanceData, CheckCreditBalanceErrors, CheckCreditBalanceResponses, CheckPasswordStrengthData, CheckPasswordStrengthErrors, CheckPasswordStrengthResponses, CheckStorageLimitsData, CheckStorageLimitsErrors, CheckStorageLimitsResponses, CompleteSsoAuthData, CompleteSsoAuthErrors, CompleteSsoAuthResponses, CreateBackupData, CreateBackupErrors, CreateBackupResponses, CreateCheckoutSessionData, CreateCheckoutSessionErrors, CreateCheckoutSessionResponses, CreateConnectionData, CreateConnectionErrors, CreateConnectionResponses, CreateFileUploadData, CreateFileUploadErrors, CreateFileUploadResponses, CreateGraphData, CreateGraphErrors, CreateGraphResponses, CreatePortalSessionData, CreatePortalSessionErrors, CreatePortalSessionResponses, CreateRepositorySubscriptionData, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionResponses, CreateSubgraphData, CreateSubgraphErrors, CreateSubgraphResponses, CreateUserApiKeyData, CreateUserApiKeyErrors, CreateUserApiKeyResponses, DeleteConnectionData, DeleteConnectionErrors, DeleteConnectionResponses, DeleteFileData, DeleteFileErrors, DeleteFileResponses, DeleteSubgraphData, DeleteSubgraphErrors, DeleteSubgraphResponses, ExecuteCypherQueryData, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaErrors, ExportGraphSchemaResponses, ForgotPasswordData, ForgotPasswordErrors, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenErrors, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataErrors, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsErrors, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsErrors, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusErrors, GetCheckoutStatusResponses, GetConnectionData, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsErrors, GetConnectionOptionsResponses, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryErrors, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserErrors, GetCurrentAuthUserResponses, GetCurrentUserData, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthErrors, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoErrors, GetDatabaseInfoResponses, GetFileData, GetFileErrors, GetFileResponses, GetGraphCapacityData, GetGraphCapacityErrors, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsErrors, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsErrors, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaErrors, GetGraphSchemaResponses, GetGraphsData, GetGraphsErrors, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionErrors, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponses, GetMaterializationStatusData, GetMaterializationStatusErrors, GetMaterializationStatusResponses, GetOperationStatusData, GetOperationStatusErrors, GetOperationStatusResponses, GetOrgBillingCustomerData, GetOrgBillingCustomerErrors, GetOrgBillingCustomerResponses, GetOrgData, GetOrgErrors, GetOrgLimitsData, GetOrgLimitsErrors, GetOrgLimitsResponses, GetOrgResponses, GetOrgSubscriptionData, GetOrgSubscriptionErrors, GetOrgSubscriptionResponses, GetOrgUpcomingInvoiceData, GetOrgUpcomingInvoiceErrors, GetOrgUpcomingInvoiceResponses, GetOrgUsageData, GetOrgUsageErrors, GetOrgUsageResponses, GetPasswordPolicyData, GetPasswordPolicyResponses, GetServiceOfferingsData, GetServiceOfferingsErrors, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponses, GetStorageUsageData, GetStorageUsageErrors, GetStorageUsageResponses, GetSubgraphInfoData, GetSubgraphInfoErrors, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaErrors, GetSubgraphQuotaResponses, InitOAuthData, InitOAuthErrors, InitOAuthResponses, InviteOrgMemberData, InviteOrgMemberErrors, InviteOrgMemberResponses, ListAgentsData, ListAgentsErrors, ListAgentsResponses, ListBackupsData, ListBackupsErrors, ListBackupsResponses, ListConnectionsData, ListConnectionsErrors, ListConnectionsResponses, ListCreditTransactionsData, ListCreditTransactionsErrors, ListCreditTransactionsResponses, ListFilesData, ListFilesErrors, ListFilesResponses, ListMcpToolsData, ListMcpToolsErrors, ListMcpToolsResponses, ListOrgGraphsData, ListOrgGraphsErrors, ListOrgGraphsResponses, ListOrgInvoicesData, ListOrgInvoicesErrors, ListOrgInvoicesResponses, ListOrgMembersData, ListOrgMembersErrors, ListOrgMembersResponses, ListOrgSubscriptionsData, ListOrgSubscriptionsErrors, ListOrgSubscriptionsResponses, ListSubgraphsData, ListSubgraphsErrors, ListSubgraphsResponses, ListTablesData, ListTablesErrors, ListTablesResponses, ListUserApiKeysData, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsResponses, LoginUserData, LoginUserErrors, LoginUserResponses, LogoutUserData, LogoutUserResponses, MaterializeGraphData, MaterializeGraphErrors, MaterializeGraphResponses, OauthCallbackData, OauthCallbackErrors, OauthCallbackResponses, QueryTablesData, QueryTablesErrors, QueryTablesResponses, RecommendAgentData, RecommendAgentErrors, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionErrors, RefreshAuthSessionResponses, RegisterUserData, RegisterUserErrors, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberErrors, RemoveOrgMemberResponses, ResendVerificationEmailData, ResendVerificationEmailErrors, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordErrors, ResetPasswordResponses, RestoreBackupData, RestoreBackupErrors, RestoreBackupResponses, RevokeUserApiKeyData, RevokeUserApiKeyErrors, RevokeUserApiKeyResponses, SelectGraphData, SelectGraphErrors, SelectGraphResponses, SsoTokenExchangeData, SsoTokenExchangeErrors, SsoTokenExchangeResponses, StreamOperationEventsData, StreamOperationEventsErrors, StreamOperationEventsResponses, SyncConnectionData, SyncConnectionErrors, SyncConnectionResponses, UpdateFileData, UpdateFileErrors, UpdateFileResponses, UpdateOrgData, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponses, UpdateOrgResponses, UpdateUserApiKeyData, UpdateUserApiKeyErrors, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordErrors, UpdateUserPasswordResponses, UpdateUserResponses,
|
|
2
|
+
import type { AutoSelectAgentData, AutoSelectAgentErrors, AutoSelectAgentResponses, BatchProcessQueriesData, BatchProcessQueriesErrors, BatchProcessQueriesResponses, CallMcpToolData, CallMcpToolErrors, CallMcpToolResponses, CancelOperationData, CancelOperationErrors, CancelOperationResponses, CancelOrgSubscriptionData, CancelOrgSubscriptionErrors, CancelOrgSubscriptionResponses, ChangeRepositoryPlanData, ChangeRepositoryPlanErrors, ChangeRepositoryPlanResponses, CheckCreditBalanceData, CheckCreditBalanceErrors, CheckCreditBalanceResponses, CheckPasswordStrengthData, CheckPasswordStrengthErrors, CheckPasswordStrengthResponses, CheckStorageLimitsData, CheckStorageLimitsErrors, CheckStorageLimitsResponses, CompleteSsoAuthData, CompleteSsoAuthErrors, CompleteSsoAuthResponses, CreateBackupData, CreateBackupErrors, CreateBackupResponses, CreateCheckoutSessionData, CreateCheckoutSessionErrors, CreateCheckoutSessionResponses, CreateConnectionData, CreateConnectionErrors, CreateConnectionResponses, CreateFileUploadData, CreateFileUploadErrors, CreateFileUploadResponses, CreateGraphData, CreateGraphErrors, CreateGraphResponses, CreatePortalSessionData, CreatePortalSessionErrors, CreatePortalSessionResponses, CreateRepositorySubscriptionData, CreateRepositorySubscriptionErrors, CreateRepositorySubscriptionResponses, CreateSubgraphData, CreateSubgraphErrors, CreateSubgraphResponses, CreateUserApiKeyData, CreateUserApiKeyErrors, CreateUserApiKeyResponses, CreateViewData, CreateViewErrors, CreateViewResponses, DeleteConnectionData, DeleteConnectionErrors, DeleteConnectionResponses, DeleteFileData, DeleteFileErrors, DeleteFileResponses, DeleteSubgraphData, DeleteSubgraphErrors, DeleteSubgraphResponses, ExecuteCypherQueryData, ExecuteCypherQueryErrors, ExecuteCypherQueryResponses, ExecuteSpecificAgentData, ExecuteSpecificAgentErrors, ExecuteSpecificAgentResponses, ExportGraphSchemaData, ExportGraphSchemaErrors, ExportGraphSchemaResponses, ForgotPasswordData, ForgotPasswordErrors, ForgotPasswordResponses, GenerateSsoTokenData, GenerateSsoTokenErrors, GenerateSsoTokenResponses, GetAgentMetadataData, GetAgentMetadataErrors, GetAgentMetadataResponses, GetAvailableExtensionsData, GetAvailableExtensionsErrors, GetAvailableExtensionsResponses, GetAvailableGraphTiersData, GetAvailableGraphTiersErrors, GetAvailableGraphTiersResponses, GetBackupDownloadUrlData, GetBackupDownloadUrlErrors, GetBackupDownloadUrlResponses, GetBackupStatsData, GetBackupStatsErrors, GetBackupStatsResponses, GetCaptchaConfigData, GetCaptchaConfigResponses, GetCheckoutStatusData, GetCheckoutStatusErrors, GetCheckoutStatusResponses, GetConnectionData, GetConnectionErrors, GetConnectionOptionsData, GetConnectionOptionsErrors, GetConnectionOptionsResponses, GetConnectionResponses, GetCreditSummaryData, GetCreditSummaryErrors, GetCreditSummaryResponses, GetCurrentAuthUserData, GetCurrentAuthUserErrors, GetCurrentAuthUserResponses, GetCurrentUserData, GetCurrentUserResponses, GetDatabaseHealthData, GetDatabaseHealthErrors, GetDatabaseHealthResponses, GetDatabaseInfoData, GetDatabaseInfoErrors, GetDatabaseInfoResponses, GetFileData, GetFileErrors, GetFileResponses, GetGraphCapacityData, GetGraphCapacityErrors, GetGraphCapacityResponses, GetGraphLimitsData, GetGraphLimitsErrors, GetGraphLimitsResponses, GetGraphMetricsData, GetGraphMetricsErrors, GetGraphMetricsResponses, GetGraphSchemaData, GetGraphSchemaErrors, GetGraphSchemaResponses, GetGraphsData, GetGraphsErrors, GetGraphsResponses, GetGraphSubscriptionData, GetGraphSubscriptionErrors, GetGraphSubscriptionResponses, GetGraphUsageAnalyticsData, GetGraphUsageAnalyticsErrors, GetGraphUsageAnalyticsResponses, GetMaterializationStatusData, GetMaterializationStatusErrors, GetMaterializationStatusResponses, GetOperationStatusData, GetOperationStatusErrors, GetOperationStatusResponses, GetOrgBillingCustomerData, GetOrgBillingCustomerErrors, GetOrgBillingCustomerResponses, GetOrgData, GetOrgErrors, GetOrgLimitsData, GetOrgLimitsErrors, GetOrgLimitsResponses, GetOrgResponses, GetOrgSubscriptionData, GetOrgSubscriptionErrors, GetOrgSubscriptionResponses, GetOrgUpcomingInvoiceData, GetOrgUpcomingInvoiceErrors, GetOrgUpcomingInvoiceResponses, GetOrgUsageData, GetOrgUsageErrors, GetOrgUsageResponses, GetPasswordPolicyData, GetPasswordPolicyResponses, GetServiceOfferingsData, GetServiceOfferingsErrors, GetServiceOfferingsResponses, GetServiceStatusData, GetServiceStatusResponses, GetStorageUsageData, GetStorageUsageErrors, GetStorageUsageResponses, GetSubgraphInfoData, GetSubgraphInfoErrors, GetSubgraphInfoResponses, GetSubgraphQuotaData, GetSubgraphQuotaErrors, GetSubgraphQuotaResponses, InitOAuthData, InitOAuthErrors, InitOAuthResponses, InviteOrgMemberData, InviteOrgMemberErrors, InviteOrgMemberResponses, ListAgentsData, ListAgentsErrors, ListAgentsResponses, ListBackupsData, ListBackupsErrors, ListBackupsResponses, ListConnectionsData, ListConnectionsErrors, ListConnectionsResponses, ListCreditTransactionsData, ListCreditTransactionsErrors, ListCreditTransactionsResponses, ListFilesData, ListFilesErrors, ListFilesResponses, ListMcpToolsData, ListMcpToolsErrors, ListMcpToolsResponses, ListOrgGraphsData, ListOrgGraphsErrors, ListOrgGraphsResponses, ListOrgInvoicesData, ListOrgInvoicesErrors, ListOrgInvoicesResponses, ListOrgMembersData, ListOrgMembersErrors, ListOrgMembersResponses, ListOrgSubscriptionsData, ListOrgSubscriptionsErrors, ListOrgSubscriptionsResponses, ListSubgraphsData, ListSubgraphsErrors, ListSubgraphsResponses, ListTablesData, ListTablesErrors, ListTablesResponses, ListUserApiKeysData, ListUserApiKeysResponses, ListUserOrgsData, ListUserOrgsResponses, LoginUserData, LoginUserErrors, LoginUserResponses, LogoutUserData, LogoutUserResponses, MaterializeGraphData, MaterializeGraphErrors, MaterializeGraphResponses, OauthCallbackData, OauthCallbackErrors, OauthCallbackResponses, QueryTablesData, QueryTablesErrors, QueryTablesResponses, RecommendAgentData, RecommendAgentErrors, RecommendAgentResponses, RefreshAuthSessionData, RefreshAuthSessionErrors, RefreshAuthSessionResponses, RegisterUserData, RegisterUserErrors, RegisterUserResponses, RemoveOrgMemberData, RemoveOrgMemberErrors, RemoveOrgMemberResponses, ResendVerificationEmailData, ResendVerificationEmailErrors, ResendVerificationEmailResponses, ResetPasswordData, ResetPasswordErrors, ResetPasswordResponses, RestoreBackupData, RestoreBackupErrors, RestoreBackupResponses, RevokeUserApiKeyData, RevokeUserApiKeyErrors, RevokeUserApiKeyResponses, SelectGraphData, SelectGraphErrors, SelectGraphResponses, SsoTokenExchangeData, SsoTokenExchangeErrors, SsoTokenExchangeResponses, StreamOperationEventsData, StreamOperationEventsErrors, StreamOperationEventsResponses, SyncConnectionData, SyncConnectionErrors, SyncConnectionResponses, UpdateFileData, UpdateFileErrors, UpdateFileResponses, UpdateOrgData, UpdateOrgErrors, UpdateOrgMemberRoleData, UpdateOrgMemberRoleErrors, UpdateOrgMemberRoleResponses, UpdateOrgResponses, UpdateUserApiKeyData, UpdateUserApiKeyErrors, UpdateUserApiKeyResponses, UpdateUserData, UpdateUserErrors, UpdateUserPasswordData, UpdateUserPasswordErrors, UpdateUserPasswordResponses, UpdateUserResponses, ValidateResetTokenData, ValidateResetTokenErrors, ValidateResetTokenResponses, ValidateSchemaData, ValidateSchemaErrors, ValidateSchemaResponses, VerifyEmailData, VerifyEmailErrors, VerifyEmailResponses } from './types.gen';
|
|
3
3
|
export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options2<TData, ThrowOnError> & {
|
|
4
4
|
/**
|
|
5
5
|
* You can provide a client instance returned by `createClient()` instead of
|
|
@@ -232,7 +232,7 @@ export declare const getOrgUsage: <ThrowOnError extends boolean = false>(options
|
|
|
232
232
|
* Returns active and inactive connections with their current status.
|
|
233
233
|
* Connections can be filtered by:
|
|
234
234
|
* - **Entity**: Show connections for a specific entity
|
|
235
|
-
* - **Provider**: Filter by connection type (sec, quickbooks
|
|
235
|
+
* - **Provider**: Filter by connection type (sec, quickbooks)
|
|
236
236
|
*
|
|
237
237
|
* Each connection shows:
|
|
238
238
|
* - Current sync status and health
|
|
@@ -260,11 +260,6 @@ export declare const listConnections: <ThrowOnError extends boolean = false>(opt
|
|
|
260
260
|
* - Requires admin permissions in QuickBooks
|
|
261
261
|
* - Complete with OAuth callback
|
|
262
262
|
*
|
|
263
|
-
* **Plaid Connections**:
|
|
264
|
-
* - Returns Plaid Link token
|
|
265
|
-
* - User completes bank authentication
|
|
266
|
-
* - Exchange public token for access
|
|
267
|
-
*
|
|
268
263
|
* Note:
|
|
269
264
|
* This operation is included - no credit consumption required.
|
|
270
265
|
*/
|
|
@@ -286,11 +281,6 @@ export declare const createConnection: <ThrowOnError extends boolean = false>(op
|
|
|
286
281
|
* - Chart of accounts, transactions, trial balance
|
|
287
282
|
* - Real-time sync capabilities
|
|
288
283
|
*
|
|
289
|
-
* **Plaid**: Bank account connections
|
|
290
|
-
* - Secure bank authentication via Plaid Link
|
|
291
|
-
* - Transaction history and balances
|
|
292
|
-
* - Multi-account support
|
|
293
|
-
*
|
|
294
284
|
* No credits are consumed for viewing connection options.
|
|
295
285
|
*/
|
|
296
286
|
export declare const getConnectionOptions: <ThrowOnError extends boolean = false>(options: Options<GetConnectionOptionsData, ThrowOnError>) => import("./client").RequestResult<GetConnectionOptionsResponses, GetConnectionOptionsErrors, ThrowOnError, "fields">;
|
|
@@ -377,11 +367,6 @@ export declare const getConnection: <ThrowOnError extends boolean = false>(optio
|
|
|
377
367
|
* - Generates fresh trial balance
|
|
378
368
|
* - Duration depends on data volume
|
|
379
369
|
*
|
|
380
|
-
* **Plaid Sync**:
|
|
381
|
-
* - Retrieves recent bank transactions
|
|
382
|
-
* - Updates account balances
|
|
383
|
-
* - Categorizes new transactions
|
|
384
|
-
*
|
|
385
370
|
* Note:
|
|
386
371
|
* This operation is included - no credit consumption required.
|
|
387
372
|
*
|
|
@@ -1328,6 +1313,23 @@ export declare const getSubgraphQuota: <ThrowOnError extends boolean = false>(op
|
|
|
1328
1313
|
* This unified endpoint automatically detects the resource type and returns the appropriate subscription.
|
|
1329
1314
|
*/
|
|
1330
1315
|
export declare const getGraphSubscription: <ThrowOnError extends boolean = false>(options: Options<GetGraphSubscriptionData, ThrowOnError>) => import("./client").RequestResult<GetGraphSubscriptionResponses, GetGraphSubscriptionErrors, ThrowOnError, "fields">;
|
|
1316
|
+
/**
|
|
1317
|
+
* Change Repository Plan
|
|
1318
|
+
*
|
|
1319
|
+
* Upgrade or downgrade a shared repository subscription plan.
|
|
1320
|
+
*
|
|
1321
|
+
* Changes the plan on an existing subscription (e.g., SEC starter -> advanced).
|
|
1322
|
+
* Stripe handles proration automatically.
|
|
1323
|
+
*
|
|
1324
|
+
* **Only for shared repositories** - graph subscriptions do not support plan changes
|
|
1325
|
+
* (cancel and re-subscribe instead).
|
|
1326
|
+
*
|
|
1327
|
+
* **Requirements:**
|
|
1328
|
+
* - User must be an OWNER of their organization
|
|
1329
|
+
* - Subscription must be active
|
|
1330
|
+
* - New plan must exist in the repository's manifest
|
|
1331
|
+
*/
|
|
1332
|
+
export declare const changeRepositoryPlan: <ThrowOnError extends boolean = false>(options: Options<ChangeRepositoryPlanData, ThrowOnError>) => import("./client").RequestResult<ChangeRepositoryPlanResponses, ChangeRepositoryPlanErrors, ThrowOnError, "fields">;
|
|
1331
1333
|
/**
|
|
1332
1334
|
* Create Repository Subscription
|
|
1333
1335
|
*
|
|
@@ -1339,15 +1341,6 @@ export declare const getGraphSubscription: <ThrowOnError extends boolean = false
|
|
|
1339
1341
|
* The subscription will be created in ACTIVE status immediately and credits will be allocated.
|
|
1340
1342
|
*/
|
|
1341
1343
|
export declare const createRepositorySubscription: <ThrowOnError extends boolean = false>(options: Options<CreateRepositorySubscriptionData, ThrowOnError>) => import("./client").RequestResult<CreateRepositorySubscriptionResponses, CreateRepositorySubscriptionErrors, ThrowOnError, "fields">;
|
|
1342
|
-
/**
|
|
1343
|
-
* Upgrade Subscription
|
|
1344
|
-
*
|
|
1345
|
-
* Upgrade a subscription to a different plan.
|
|
1346
|
-
*
|
|
1347
|
-
* Works for both user graphs and shared repositories.
|
|
1348
|
-
* The subscription will be immediately updated to the new plan and pricing.
|
|
1349
|
-
*/
|
|
1350
|
-
export declare const upgradeSubscription: <ThrowOnError extends boolean = false>(options: Options<UpgradeSubscriptionData, ThrowOnError>) => import("./client").RequestResult<UpgradeSubscriptionResponses, UpgradeSubscriptionErrors, ThrowOnError, "fields">;
|
|
1351
1344
|
/**
|
|
1352
1345
|
* List Staging Tables
|
|
1353
1346
|
*
|
|
@@ -1448,6 +1441,16 @@ export declare const listTables: <ThrowOnError extends boolean = false>(options:
|
|
|
1448
1441
|
* Staging table queries are included - no credit consumption
|
|
1449
1442
|
*/
|
|
1450
1443
|
export declare const queryTables: <ThrowOnError extends boolean = false>(options: Options<QueryTablesData, ThrowOnError>) => import("./client").RequestResult<QueryTablesResponses, QueryTablesErrors, ThrowOnError, "fields">;
|
|
1444
|
+
/**
|
|
1445
|
+
* Create View
|
|
1446
|
+
*
|
|
1447
|
+
* Build a fact grid from existing facts in the graph.
|
|
1448
|
+
*
|
|
1449
|
+
* Queries Fact nodes by element qnames or canonical concepts, with optional
|
|
1450
|
+
* filters for periods, entities, filing form, fiscal context, and period type.
|
|
1451
|
+
* Returns deduplicated consolidated facts as a pivot table.
|
|
1452
|
+
*/
|
|
1453
|
+
export declare const createView: <ThrowOnError extends boolean = false>(options: Options<CreateViewData, ThrowOnError>) => import("./client").RequestResult<CreateViewResponses, CreateViewErrors, ThrowOnError, "fields">;
|
|
1451
1454
|
/**
|
|
1452
1455
|
* Get Materialization Status
|
|
1453
1456
|
*
|
|
@@ -1843,7 +1846,7 @@ export declare const createGraph: <ThrowOnError extends boolean = false>(options
|
|
|
1843
1846
|
*
|
|
1844
1847
|
* **Available Extensions:**
|
|
1845
1848
|
* - **RoboLedger**: Complete accounting system with XBRL reporting, general ledger, and financial statements
|
|
1846
|
-
* - **RoboInvestor**: Investment portfolio management and
|
|
1849
|
+
* - **RoboInvestor**: Investment portfolio management with securities tracking, trade execution, and risk analysis
|
|
1847
1850
|
* - **RoboSCM**: Supply chain management and logistics
|
|
1848
1851
|
* - **RoboFO**: Front office operations and CRM
|
|
1849
1852
|
* - **RoboHRM**: Human resources management
|