@robosystems/client 0.2.36 → 0.2.37

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