@robosystems/client 0.2.36 → 0.2.38
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/DocumentClient.d.ts +77 -0
- package/extensions/DocumentClient.js +136 -0
- package/extensions/DocumentClient.ts +232 -0
- package/extensions/index.d.ts +5 -1
- package/extensions/index.js +13 -1
- package/extensions/index.ts +14 -0
- package/index.ts +2 -2
- package/package.json +1 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +4 -2
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +13 -1
- package/sdk/sdk.gen.js +27 -1
- package/sdk/sdk.gen.ts +27 -1
- package/sdk/types.gen.d.ts +286 -0
- package/sdk/types.gen.ts +298 -0
- package/sdk-extensions/DocumentClient.d.ts +77 -0
- package/sdk-extensions/DocumentClient.js +136 -0
- package/sdk-extensions/DocumentClient.ts +232 -0
- package/sdk-extensions/index.d.ts +5 -1
- package/sdk-extensions/index.js +13 -1
- package/sdk-extensions/index.ts +14 -0
- package/sdk.gen.d.ts +13 -1
- package/sdk.gen.js +27 -1
- package/sdk.gen.ts +27 -1
- package/types.gen.d.ts +286 -0
- package/types.gen.ts +298 -0
package/types.gen.ts
CHANGED
|
@@ -2192,6 +2192,10 @@ export type DetailedTransactionsResponse = {
|
|
|
2192
2192
|
* A document in the document list.
|
|
2193
2193
|
*/
|
|
2194
2194
|
export type DocumentListItem = {
|
|
2195
|
+
/**
|
|
2196
|
+
* Document Id
|
|
2197
|
+
*/
|
|
2198
|
+
document_id: string;
|
|
2195
2199
|
/**
|
|
2196
2200
|
* Document Title
|
|
2197
2201
|
*/
|
|
@@ -3808,6 +3812,138 @@ export type InvoicesResponse = {
|
|
|
3808
3812
|
has_more: boolean;
|
|
3809
3813
|
};
|
|
3810
3814
|
|
|
3815
|
+
/**
|
|
3816
|
+
* LedgerEntityResponse
|
|
3817
|
+
*
|
|
3818
|
+
* Entity details from the extensions OLTP database.
|
|
3819
|
+
*/
|
|
3820
|
+
export type LedgerEntityResponse = {
|
|
3821
|
+
/**
|
|
3822
|
+
* Id
|
|
3823
|
+
*/
|
|
3824
|
+
id: string;
|
|
3825
|
+
/**
|
|
3826
|
+
* Name
|
|
3827
|
+
*/
|
|
3828
|
+
name: string;
|
|
3829
|
+
/**
|
|
3830
|
+
* Legal Name
|
|
3831
|
+
*/
|
|
3832
|
+
legal_name?: string | null;
|
|
3833
|
+
/**
|
|
3834
|
+
* Uri
|
|
3835
|
+
*/
|
|
3836
|
+
uri?: string | null;
|
|
3837
|
+
/**
|
|
3838
|
+
* Cik
|
|
3839
|
+
*/
|
|
3840
|
+
cik?: string | null;
|
|
3841
|
+
/**
|
|
3842
|
+
* Ticker
|
|
3843
|
+
*/
|
|
3844
|
+
ticker?: string | null;
|
|
3845
|
+
/**
|
|
3846
|
+
* Exchange
|
|
3847
|
+
*/
|
|
3848
|
+
exchange?: string | null;
|
|
3849
|
+
/**
|
|
3850
|
+
* Sic
|
|
3851
|
+
*/
|
|
3852
|
+
sic?: string | null;
|
|
3853
|
+
/**
|
|
3854
|
+
* Sic Description
|
|
3855
|
+
*/
|
|
3856
|
+
sic_description?: string | null;
|
|
3857
|
+
/**
|
|
3858
|
+
* Category
|
|
3859
|
+
*/
|
|
3860
|
+
category?: string | null;
|
|
3861
|
+
/**
|
|
3862
|
+
* State Of Incorporation
|
|
3863
|
+
*/
|
|
3864
|
+
state_of_incorporation?: string | null;
|
|
3865
|
+
/**
|
|
3866
|
+
* Fiscal Year End
|
|
3867
|
+
*/
|
|
3868
|
+
fiscal_year_end?: string | null;
|
|
3869
|
+
/**
|
|
3870
|
+
* Tax Id
|
|
3871
|
+
*/
|
|
3872
|
+
tax_id?: string | null;
|
|
3873
|
+
/**
|
|
3874
|
+
* Lei
|
|
3875
|
+
*/
|
|
3876
|
+
lei?: string | null;
|
|
3877
|
+
/**
|
|
3878
|
+
* Industry
|
|
3879
|
+
*/
|
|
3880
|
+
industry?: string | null;
|
|
3881
|
+
/**
|
|
3882
|
+
* Entity Type
|
|
3883
|
+
*/
|
|
3884
|
+
entity_type?: string | null;
|
|
3885
|
+
/**
|
|
3886
|
+
* Phone
|
|
3887
|
+
*/
|
|
3888
|
+
phone?: string | null;
|
|
3889
|
+
/**
|
|
3890
|
+
* Website
|
|
3891
|
+
*/
|
|
3892
|
+
website?: string | null;
|
|
3893
|
+
/**
|
|
3894
|
+
* Status
|
|
3895
|
+
*/
|
|
3896
|
+
status?: string;
|
|
3897
|
+
/**
|
|
3898
|
+
* Is Parent
|
|
3899
|
+
*/
|
|
3900
|
+
is_parent?: boolean;
|
|
3901
|
+
/**
|
|
3902
|
+
* Parent Entity Id
|
|
3903
|
+
*/
|
|
3904
|
+
parent_entity_id?: string | null;
|
|
3905
|
+
/**
|
|
3906
|
+
* Source
|
|
3907
|
+
*/
|
|
3908
|
+
source?: string;
|
|
3909
|
+
/**
|
|
3910
|
+
* Source Id
|
|
3911
|
+
*/
|
|
3912
|
+
source_id?: string | null;
|
|
3913
|
+
/**
|
|
3914
|
+
* Connection Id
|
|
3915
|
+
*/
|
|
3916
|
+
connection_id?: string | null;
|
|
3917
|
+
/**
|
|
3918
|
+
* Address Line1
|
|
3919
|
+
*/
|
|
3920
|
+
address_line1?: string | null;
|
|
3921
|
+
/**
|
|
3922
|
+
* Address City
|
|
3923
|
+
*/
|
|
3924
|
+
address_city?: string | null;
|
|
3925
|
+
/**
|
|
3926
|
+
* Address State
|
|
3927
|
+
*/
|
|
3928
|
+
address_state?: string | null;
|
|
3929
|
+
/**
|
|
3930
|
+
* Address Postal Code
|
|
3931
|
+
*/
|
|
3932
|
+
address_postal_code?: string | null;
|
|
3933
|
+
/**
|
|
3934
|
+
* Address Country
|
|
3935
|
+
*/
|
|
3936
|
+
address_country?: string | null;
|
|
3937
|
+
/**
|
|
3938
|
+
* Created At
|
|
3939
|
+
*/
|
|
3940
|
+
created_at?: string | null;
|
|
3941
|
+
/**
|
|
3942
|
+
* Updated At
|
|
3943
|
+
*/
|
|
3944
|
+
updated_at?: string | null;
|
|
3945
|
+
};
|
|
3946
|
+
|
|
3811
3947
|
/**
|
|
3812
3948
|
* LedgerEntryResponse
|
|
3813
3949
|
*/
|
|
@@ -4243,6 +4379,12 @@ export type MaterializeRequest = {
|
|
|
4243
4379
|
* Validate limits without executing materialization. Returns usage, limits, and warnings.
|
|
4244
4380
|
*/
|
|
4245
4381
|
dry_run?: boolean;
|
|
4382
|
+
/**
|
|
4383
|
+
* Source
|
|
4384
|
+
*
|
|
4385
|
+
* Data source for materialization. Auto-detected from graph type if not specified. 'staged' materializes from uploaded files (generic graphs). 'extensions' materializes from the extensions OLTP database (entity graphs).
|
|
4386
|
+
*/
|
|
4387
|
+
source?: string | null;
|
|
4246
4388
|
};
|
|
4247
4389
|
|
|
4248
4390
|
/**
|
|
@@ -6457,6 +6599,102 @@ export type UpdateApiKeyRequest = {
|
|
|
6457
6599
|
description?: string | null;
|
|
6458
6600
|
};
|
|
6459
6601
|
|
|
6602
|
+
/**
|
|
6603
|
+
* UpdateEntityRequest
|
|
6604
|
+
*
|
|
6605
|
+
* Request to update entity details. Only provided fields are updated.
|
|
6606
|
+
*/
|
|
6607
|
+
export type UpdateEntityRequest = {
|
|
6608
|
+
/**
|
|
6609
|
+
* Name
|
|
6610
|
+
*/
|
|
6611
|
+
name?: string | null;
|
|
6612
|
+
/**
|
|
6613
|
+
* Legal Name
|
|
6614
|
+
*/
|
|
6615
|
+
legal_name?: string | null;
|
|
6616
|
+
/**
|
|
6617
|
+
* Uri
|
|
6618
|
+
*/
|
|
6619
|
+
uri?: string | null;
|
|
6620
|
+
/**
|
|
6621
|
+
* Cik
|
|
6622
|
+
*/
|
|
6623
|
+
cik?: string | null;
|
|
6624
|
+
/**
|
|
6625
|
+
* Ticker
|
|
6626
|
+
*/
|
|
6627
|
+
ticker?: string | null;
|
|
6628
|
+
/**
|
|
6629
|
+
* Exchange
|
|
6630
|
+
*/
|
|
6631
|
+
exchange?: string | null;
|
|
6632
|
+
/**
|
|
6633
|
+
* Sic
|
|
6634
|
+
*/
|
|
6635
|
+
sic?: string | null;
|
|
6636
|
+
/**
|
|
6637
|
+
* Sic Description
|
|
6638
|
+
*/
|
|
6639
|
+
sic_description?: string | null;
|
|
6640
|
+
/**
|
|
6641
|
+
* Category
|
|
6642
|
+
*/
|
|
6643
|
+
category?: string | null;
|
|
6644
|
+
/**
|
|
6645
|
+
* State Of Incorporation
|
|
6646
|
+
*/
|
|
6647
|
+
state_of_incorporation?: string | null;
|
|
6648
|
+
/**
|
|
6649
|
+
* Fiscal Year End
|
|
6650
|
+
*/
|
|
6651
|
+
fiscal_year_end?: string | null;
|
|
6652
|
+
/**
|
|
6653
|
+
* Tax Id
|
|
6654
|
+
*/
|
|
6655
|
+
tax_id?: string | null;
|
|
6656
|
+
/**
|
|
6657
|
+
* Lei
|
|
6658
|
+
*/
|
|
6659
|
+
lei?: string | null;
|
|
6660
|
+
/**
|
|
6661
|
+
* Industry
|
|
6662
|
+
*/
|
|
6663
|
+
industry?: string | null;
|
|
6664
|
+
/**
|
|
6665
|
+
* Entity Type
|
|
6666
|
+
*/
|
|
6667
|
+
entity_type?: string | null;
|
|
6668
|
+
/**
|
|
6669
|
+
* Phone
|
|
6670
|
+
*/
|
|
6671
|
+
phone?: string | null;
|
|
6672
|
+
/**
|
|
6673
|
+
* Website
|
|
6674
|
+
*/
|
|
6675
|
+
website?: string | null;
|
|
6676
|
+
/**
|
|
6677
|
+
* Address Line1
|
|
6678
|
+
*/
|
|
6679
|
+
address_line1?: string | null;
|
|
6680
|
+
/**
|
|
6681
|
+
* Address City
|
|
6682
|
+
*/
|
|
6683
|
+
address_city?: string | null;
|
|
6684
|
+
/**
|
|
6685
|
+
* Address State
|
|
6686
|
+
*/
|
|
6687
|
+
address_state?: string | null;
|
|
6688
|
+
/**
|
|
6689
|
+
* Address Postal Code
|
|
6690
|
+
*/
|
|
6691
|
+
address_postal_code?: string | null;
|
|
6692
|
+
/**
|
|
6693
|
+
* Address Country
|
|
6694
|
+
*/
|
|
6695
|
+
address_country?: string | null;
|
|
6696
|
+
};
|
|
6697
|
+
|
|
6460
6698
|
/**
|
|
6461
6699
|
* UpdateMemberRoleRequest
|
|
6462
6700
|
*
|
|
@@ -11065,6 +11303,66 @@ export type GetCheckoutStatusResponses = {
|
|
|
11065
11303
|
|
|
11066
11304
|
export type GetCheckoutStatusResponse = GetCheckoutStatusResponses[keyof GetCheckoutStatusResponses];
|
|
11067
11305
|
|
|
11306
|
+
export type GetLedgerEntityData = {
|
|
11307
|
+
body?: never;
|
|
11308
|
+
path: {
|
|
11309
|
+
/**
|
|
11310
|
+
* Graph Id
|
|
11311
|
+
*/
|
|
11312
|
+
graph_id: string;
|
|
11313
|
+
};
|
|
11314
|
+
query?: never;
|
|
11315
|
+
url: '/v1/ledger/{graph_id}/entity';
|
|
11316
|
+
};
|
|
11317
|
+
|
|
11318
|
+
export type GetLedgerEntityErrors = {
|
|
11319
|
+
/**
|
|
11320
|
+
* Validation Error
|
|
11321
|
+
*/
|
|
11322
|
+
422: HttpValidationError;
|
|
11323
|
+
};
|
|
11324
|
+
|
|
11325
|
+
export type GetLedgerEntityError = GetLedgerEntityErrors[keyof GetLedgerEntityErrors];
|
|
11326
|
+
|
|
11327
|
+
export type GetLedgerEntityResponses = {
|
|
11328
|
+
/**
|
|
11329
|
+
* Successful Response
|
|
11330
|
+
*/
|
|
11331
|
+
200: LedgerEntityResponse;
|
|
11332
|
+
};
|
|
11333
|
+
|
|
11334
|
+
export type GetLedgerEntityResponse = GetLedgerEntityResponses[keyof GetLedgerEntityResponses];
|
|
11335
|
+
|
|
11336
|
+
export type UpdateLedgerEntityData = {
|
|
11337
|
+
body: UpdateEntityRequest;
|
|
11338
|
+
path: {
|
|
11339
|
+
/**
|
|
11340
|
+
* Graph Id
|
|
11341
|
+
*/
|
|
11342
|
+
graph_id: string;
|
|
11343
|
+
};
|
|
11344
|
+
query?: never;
|
|
11345
|
+
url: '/v1/ledger/{graph_id}/entity';
|
|
11346
|
+
};
|
|
11347
|
+
|
|
11348
|
+
export type UpdateLedgerEntityErrors = {
|
|
11349
|
+
/**
|
|
11350
|
+
* Validation Error
|
|
11351
|
+
*/
|
|
11352
|
+
422: HttpValidationError;
|
|
11353
|
+
};
|
|
11354
|
+
|
|
11355
|
+
export type UpdateLedgerEntityError = UpdateLedgerEntityErrors[keyof UpdateLedgerEntityErrors];
|
|
11356
|
+
|
|
11357
|
+
export type UpdateLedgerEntityResponses = {
|
|
11358
|
+
/**
|
|
11359
|
+
* Successful Response
|
|
11360
|
+
*/
|
|
11361
|
+
200: LedgerEntityResponse;
|
|
11362
|
+
};
|
|
11363
|
+
|
|
11364
|
+
export type UpdateLedgerEntityResponse = UpdateLedgerEntityResponses[keyof UpdateLedgerEntityResponses];
|
|
11365
|
+
|
|
11068
11366
|
export type ListLedgerAccountsData = {
|
|
11069
11367
|
body?: never;
|
|
11070
11368
|
path: {
|