@robosystems/client 0.2.41 → 0.2.42

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.
@@ -223,6 +223,17 @@ export type AccountTreeResponse = {
223
223
  */
224
224
  total_accounts: number;
225
225
  };
226
+ /**
227
+ * AddMembersRequest
228
+ */
229
+ export type AddMembersRequest = {
230
+ /**
231
+ * Target Graph Ids
232
+ *
233
+ * Graph IDs to add to this list
234
+ */
235
+ target_graph_ids: Array<string>;
236
+ };
226
237
  /**
227
238
  * AgentListResponse
228
239
  *
@@ -1602,6 +1613,23 @@ export type CreatePositionRequest = {
1602
1613
  */
1603
1614
  notes?: string | null;
1604
1615
  };
1616
+ /**
1617
+ * CreatePublishListRequest
1618
+ */
1619
+ export type CreatePublishListRequest = {
1620
+ /**
1621
+ * Name
1622
+ *
1623
+ * List name
1624
+ */
1625
+ name: string;
1626
+ /**
1627
+ * Description
1628
+ *
1629
+ * Optional description
1630
+ */
1631
+ description?: string | null;
1632
+ };
1605
1633
  /**
1606
1634
  * CreateReportRequest
1607
1635
  */
@@ -4324,6 +4352,10 @@ export type LedgerEntityResponse = {
4324
4352
  * Source Id
4325
4353
  */
4326
4354
  source_id?: string | null;
4355
+ /**
4356
+ * Source Graph Id
4357
+ */
4358
+ source_graph_id?: string | null;
4327
4359
  /**
4328
4360
  * Connection Id
4329
4361
  */
@@ -5748,6 +5780,117 @@ export type PositionResponse = {
5748
5780
  */
5749
5781
  updated_at: string;
5750
5782
  };
5783
+ /**
5784
+ * PublishListDetailResponse
5785
+ *
5786
+ * Full detail including members.
5787
+ */
5788
+ export type PublishListDetailResponse = {
5789
+ /**
5790
+ * Id
5791
+ */
5792
+ id: string;
5793
+ /**
5794
+ * Name
5795
+ */
5796
+ name: string;
5797
+ /**
5798
+ * Description
5799
+ */
5800
+ description?: string | null;
5801
+ /**
5802
+ * Member Count
5803
+ */
5804
+ member_count?: number;
5805
+ /**
5806
+ * Created By
5807
+ */
5808
+ created_by: string;
5809
+ /**
5810
+ * Created At
5811
+ */
5812
+ created_at: string;
5813
+ /**
5814
+ * Updated At
5815
+ */
5816
+ updated_at: string;
5817
+ /**
5818
+ * Members
5819
+ */
5820
+ members?: Array<PublishListMemberResponse>;
5821
+ };
5822
+ /**
5823
+ * PublishListListResponse
5824
+ */
5825
+ export type PublishListListResponse = {
5826
+ /**
5827
+ * Publish Lists
5828
+ */
5829
+ publish_lists: Array<PublishListResponse>;
5830
+ pagination: PaginationInfo;
5831
+ };
5832
+ /**
5833
+ * PublishListMemberResponse
5834
+ */
5835
+ export type PublishListMemberResponse = {
5836
+ /**
5837
+ * Id
5838
+ */
5839
+ id: string;
5840
+ /**
5841
+ * Target Graph Id
5842
+ */
5843
+ target_graph_id: string;
5844
+ /**
5845
+ * Target Graph Name
5846
+ */
5847
+ target_graph_name?: string | null;
5848
+ /**
5849
+ * Target Org Name
5850
+ */
5851
+ target_org_name?: string | null;
5852
+ /**
5853
+ * Added By
5854
+ */
5855
+ added_by: string;
5856
+ /**
5857
+ * Added At
5858
+ */
5859
+ added_at: string;
5860
+ };
5861
+ /**
5862
+ * PublishListResponse
5863
+ */
5864
+ export type PublishListResponse = {
5865
+ /**
5866
+ * Id
5867
+ */
5868
+ id: string;
5869
+ /**
5870
+ * Name
5871
+ */
5872
+ name: string;
5873
+ /**
5874
+ * Description
5875
+ */
5876
+ description?: string | null;
5877
+ /**
5878
+ * Member Count
5879
+ */
5880
+ member_count?: number;
5881
+ /**
5882
+ * Created By
5883
+ */
5884
+ created_by: string;
5885
+ /**
5886
+ * Created At
5887
+ */
5888
+ created_at: string;
5889
+ /**
5890
+ * Updated At
5891
+ */
5892
+ updated_at: string;
5893
+ };
5751
5894
  /**
5752
5895
  * QueryLimits
5753
5896
  *
@@ -5938,6 +6081,10 @@ export type ReportResponse = {
5938
6081
  * Structures
5939
6082
  */
5940
6083
  structures?: Array<StructureSummary>;
6084
+ /**
6085
+ * Entity Name
6086
+ */
6087
+ entity_name?: string | null;
5941
6088
  /**
5942
6089
  * Source Graph Id
5943
6090
  */
@@ -6513,6 +6660,10 @@ export type SecurityResponse = {
6513
6660
  * Entity Name
6514
6661
  */
6515
6662
  entity_name?: string | null;
6663
+ /**
6664
+ * Source Graph Id
6665
+ */
6666
+ source_graph_id?: string | null;
6516
6667
  /**
6517
6668
  * Name
6518
6669
  */
@@ -6652,11 +6803,11 @@ export type ServiceOfferingsResponse = {
6652
6803
  */
6653
6804
  export type ShareReportRequest = {
6654
6805
  /**
6655
- * Target Graph Ids
6806
+ * Publish List Id
6656
6807
  *
6657
- * Graph IDs to share the report to
6808
+ * Publish list to share the report to
6658
6809
  */
6659
- target_graph_ids: Array<string>;
6810
+ publish_list_id: string;
6660
6811
  };
6661
6812
  /**
6662
6813
  * ShareReportResponse
@@ -7786,10 +7937,31 @@ export type UpdatePositionRequest = {
7786
7937
  */
7787
7938
  notes?: string | null;
7788
7939
  };
7940
+ /**
7941
+ * UpdatePublishListRequest
7942
+ */
7943
+ export type UpdatePublishListRequest = {
7944
+ /**
7945
+ * Name
7946
+ */
7947
+ name?: string | null;
7948
+ /**
7949
+ * Description
7950
+ */
7951
+ description?: string | null;
7952
+ };
7789
7953
  /**
7790
7954
  * UpdateSecurityRequest
7791
7955
  */
7792
7956
  export type UpdateSecurityRequest = {
7957
+ /**
7958
+ * Entity Id
7959
+ */
7960
+ entity_id?: string | null;
7961
+ /**
7962
+ * Source Graph Id
7963
+ */
7964
+ source_graph_id?: string | null;
7793
7965
  /**
7794
7966
  * Name
7795
7967
  */
@@ -11909,6 +12081,40 @@ export type UpdateLedgerEntityResponses = {
11909
12081
  200: LedgerEntityResponse;
11910
12082
  };
11911
12083
  export type UpdateLedgerEntityResponse = UpdateLedgerEntityResponses[keyof UpdateLedgerEntityResponses];
12084
+ export type ListLedgerEntitiesData = {
12085
+ body?: never;
12086
+ path: {
12087
+ /**
12088
+ * Graph Id
12089
+ */
12090
+ graph_id: string;
12091
+ };
12092
+ query?: {
12093
+ /**
12094
+ * Source
12095
+ *
12096
+ * Filter by source (e.g., 'linked')
12097
+ */
12098
+ source?: string | null;
12099
+ };
12100
+ url: '/v1/ledger/{graph_id}/entities';
12101
+ };
12102
+ export type ListLedgerEntitiesErrors = {
12103
+ /**
12104
+ * Validation Error
12105
+ */
12106
+ 422: HttpValidationError;
12107
+ };
12108
+ export type ListLedgerEntitiesError = ListLedgerEntitiesErrors[keyof ListLedgerEntitiesErrors];
12109
+ export type ListLedgerEntitiesResponses = {
12110
+ /**
12111
+ * Response Listledgerentities
12112
+ *
12113
+ * Successful Response
12114
+ */
12115
+ 200: Array<LedgerEntityResponse>;
12116
+ };
12117
+ export type ListLedgerEntitiesResponse = ListLedgerEntitiesResponses[keyof ListLedgerEntitiesResponses];
11912
12118
  export type ListLedgerAccountsData = {
11913
12119
  body?: never;
11914
12120
  path: {
@@ -12786,6 +12992,216 @@ export type ShareReportResponses = {
12786
12992
  200: ShareReportResponse;
12787
12993
  };
12788
12994
  export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
12995
+ export type ListPublishListsData = {
12996
+ body?: never;
12997
+ path: {
12998
+ /**
12999
+ * Graph Id
13000
+ */
13001
+ graph_id: string;
13002
+ };
13003
+ query?: {
13004
+ /**
13005
+ * Limit
13006
+ */
13007
+ limit?: number;
13008
+ /**
13009
+ * Offset
13010
+ */
13011
+ offset?: number;
13012
+ };
13013
+ url: '/v1/ledger/{graph_id}/publish-lists';
13014
+ };
13015
+ export type ListPublishListsErrors = {
13016
+ /**
13017
+ * Validation Error
13018
+ */
13019
+ 422: HttpValidationError;
13020
+ };
13021
+ export type ListPublishListsError = ListPublishListsErrors[keyof ListPublishListsErrors];
13022
+ export type ListPublishListsResponses = {
13023
+ /**
13024
+ * Successful Response
13025
+ */
13026
+ 200: PublishListListResponse;
13027
+ };
13028
+ export type ListPublishListsResponse = ListPublishListsResponses[keyof ListPublishListsResponses];
13029
+ export type CreatePublishListData = {
13030
+ body: CreatePublishListRequest;
13031
+ path: {
13032
+ /**
13033
+ * Graph Id
13034
+ */
13035
+ graph_id: string;
13036
+ };
13037
+ query?: never;
13038
+ url: '/v1/ledger/{graph_id}/publish-lists';
13039
+ };
13040
+ export type CreatePublishListErrors = {
13041
+ /**
13042
+ * Validation Error
13043
+ */
13044
+ 422: HttpValidationError;
13045
+ };
13046
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
13047
+ export type CreatePublishListResponses = {
13048
+ /**
13049
+ * Successful Response
13050
+ */
13051
+ 201: PublishListResponse;
13052
+ };
13053
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
13054
+ export type DeletePublishListData = {
13055
+ body?: never;
13056
+ path: {
13057
+ /**
13058
+ * Graph Id
13059
+ */
13060
+ graph_id: string;
13061
+ /**
13062
+ * List Id
13063
+ */
13064
+ list_id: string;
13065
+ };
13066
+ query?: never;
13067
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
13068
+ };
13069
+ export type DeletePublishListErrors = {
13070
+ /**
13071
+ * Validation Error
13072
+ */
13073
+ 422: HttpValidationError;
13074
+ };
13075
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
13076
+ export type DeletePublishListResponses = {
13077
+ /**
13078
+ * Successful Response
13079
+ */
13080
+ 204: void;
13081
+ };
13082
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
13083
+ export type GetPublishListData = {
13084
+ body?: never;
13085
+ path: {
13086
+ /**
13087
+ * Graph Id
13088
+ */
13089
+ graph_id: string;
13090
+ /**
13091
+ * List Id
13092
+ */
13093
+ list_id: string;
13094
+ };
13095
+ query?: never;
13096
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
13097
+ };
13098
+ export type GetPublishListErrors = {
13099
+ /**
13100
+ * Validation Error
13101
+ */
13102
+ 422: HttpValidationError;
13103
+ };
13104
+ export type GetPublishListError = GetPublishListErrors[keyof GetPublishListErrors];
13105
+ export type GetPublishListResponses = {
13106
+ /**
13107
+ * Successful Response
13108
+ */
13109
+ 200: PublishListDetailResponse;
13110
+ };
13111
+ export type GetPublishListResponse = GetPublishListResponses[keyof GetPublishListResponses];
13112
+ export type UpdatePublishListData = {
13113
+ body: UpdatePublishListRequest;
13114
+ path: {
13115
+ /**
13116
+ * Graph Id
13117
+ */
13118
+ graph_id: string;
13119
+ /**
13120
+ * List Id
13121
+ */
13122
+ list_id: string;
13123
+ };
13124
+ query?: never;
13125
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
13126
+ };
13127
+ export type UpdatePublishListErrors = {
13128
+ /**
13129
+ * Validation Error
13130
+ */
13131
+ 422: HttpValidationError;
13132
+ };
13133
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
13134
+ export type UpdatePublishListResponses = {
13135
+ /**
13136
+ * Successful Response
13137
+ */
13138
+ 200: PublishListResponse;
13139
+ };
13140
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
13141
+ export type AddPublishListMembersData = {
13142
+ body: AddMembersRequest;
13143
+ path: {
13144
+ /**
13145
+ * Graph Id
13146
+ */
13147
+ graph_id: string;
13148
+ /**
13149
+ * List Id
13150
+ */
13151
+ list_id: string;
13152
+ };
13153
+ query?: never;
13154
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}/members';
13155
+ };
13156
+ export type AddPublishListMembersErrors = {
13157
+ /**
13158
+ * Validation Error
13159
+ */
13160
+ 422: HttpValidationError;
13161
+ };
13162
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
13163
+ export type AddPublishListMembersResponses = {
13164
+ /**
13165
+ * Response Addpublishlistmembers
13166
+ *
13167
+ * Successful Response
13168
+ */
13169
+ 201: Array<PublishListMemberResponse>;
13170
+ };
13171
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
13172
+ export type RemovePublishListMemberData = {
13173
+ body?: never;
13174
+ path: {
13175
+ /**
13176
+ * Graph Id
13177
+ */
13178
+ graph_id: string;
13179
+ /**
13180
+ * List Id
13181
+ */
13182
+ list_id: string;
13183
+ /**
13184
+ * Member Id
13185
+ */
13186
+ member_id: string;
13187
+ };
13188
+ query?: never;
13189
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}/members/{member_id}';
13190
+ };
13191
+ export type RemovePublishListMemberErrors = {
13192
+ /**
13193
+ * Validation Error
13194
+ */
13195
+ 422: HttpValidationError;
13196
+ };
13197
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
13198
+ export type RemovePublishListMemberResponses = {
13199
+ /**
13200
+ * Successful Response
13201
+ */
13202
+ 204: void;
13203
+ };
13204
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
12789
13205
  export type ListPortfoliosData = {
12790
13206
  body?: never;
12791
13207
  path: {