@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.
package/types.gen.ts CHANGED
@@ -233,6 +233,18 @@ export type AccountTreeResponse = {
233
233
  total_accounts: number;
234
234
  };
235
235
 
236
+ /**
237
+ * AddMembersRequest
238
+ */
239
+ export type AddMembersRequest = {
240
+ /**
241
+ * Target Graph Ids
242
+ *
243
+ * Graph IDs to add to this list
244
+ */
245
+ target_graph_ids: Array<string>;
246
+ };
247
+
236
248
  /**
237
249
  * AgentListResponse
238
250
  *
@@ -1652,6 +1664,24 @@ export type CreatePositionRequest = {
1652
1664
  notes?: string | null;
1653
1665
  };
1654
1666
 
1667
+ /**
1668
+ * CreatePublishListRequest
1669
+ */
1670
+ export type CreatePublishListRequest = {
1671
+ /**
1672
+ * Name
1673
+ *
1674
+ * List name
1675
+ */
1676
+ name: string;
1677
+ /**
1678
+ * Description
1679
+ *
1680
+ * Optional description
1681
+ */
1682
+ description?: string | null;
1683
+ };
1684
+
1655
1685
  /**
1656
1686
  * CreateReportRequest
1657
1687
  */
@@ -4437,6 +4467,10 @@ export type LedgerEntityResponse = {
4437
4467
  * Source Id
4438
4468
  */
4439
4469
  source_id?: string | null;
4470
+ /**
4471
+ * Source Graph Id
4472
+ */
4473
+ source_graph_id?: string | null;
4440
4474
  /**
4441
4475
  * Connection Id
4442
4476
  */
@@ -5904,6 +5938,121 @@ export type PositionResponse = {
5904
5938
  updated_at: string;
5905
5939
  };
5906
5940
 
5941
+ /**
5942
+ * PublishListDetailResponse
5943
+ *
5944
+ * Full detail including members.
5945
+ */
5946
+ export type PublishListDetailResponse = {
5947
+ /**
5948
+ * Id
5949
+ */
5950
+ id: string;
5951
+ /**
5952
+ * Name
5953
+ */
5954
+ name: string;
5955
+ /**
5956
+ * Description
5957
+ */
5958
+ description?: string | null;
5959
+ /**
5960
+ * Member Count
5961
+ */
5962
+ member_count?: number;
5963
+ /**
5964
+ * Created By
5965
+ */
5966
+ created_by: string;
5967
+ /**
5968
+ * Created At
5969
+ */
5970
+ created_at: string;
5971
+ /**
5972
+ * Updated At
5973
+ */
5974
+ updated_at: string;
5975
+ /**
5976
+ * Members
5977
+ */
5978
+ members?: Array<PublishListMemberResponse>;
5979
+ };
5980
+
5981
+ /**
5982
+ * PublishListListResponse
5983
+ */
5984
+ export type PublishListListResponse = {
5985
+ /**
5986
+ * Publish Lists
5987
+ */
5988
+ publish_lists: Array<PublishListResponse>;
5989
+ pagination: PaginationInfo;
5990
+ };
5991
+
5992
+ /**
5993
+ * PublishListMemberResponse
5994
+ */
5995
+ export type PublishListMemberResponse = {
5996
+ /**
5997
+ * Id
5998
+ */
5999
+ id: string;
6000
+ /**
6001
+ * Target Graph Id
6002
+ */
6003
+ target_graph_id: string;
6004
+ /**
6005
+ * Target Graph Name
6006
+ */
6007
+ target_graph_name?: string | null;
6008
+ /**
6009
+ * Target Org Name
6010
+ */
6011
+ target_org_name?: string | null;
6012
+ /**
6013
+ * Added By
6014
+ */
6015
+ added_by: string;
6016
+ /**
6017
+ * Added At
6018
+ */
6019
+ added_at: string;
6020
+ };
6021
+
6022
+ /**
6023
+ * PublishListResponse
6024
+ */
6025
+ export type PublishListResponse = {
6026
+ /**
6027
+ * Id
6028
+ */
6029
+ id: string;
6030
+ /**
6031
+ * Name
6032
+ */
6033
+ name: string;
6034
+ /**
6035
+ * Description
6036
+ */
6037
+ description?: string | null;
6038
+ /**
6039
+ * Member Count
6040
+ */
6041
+ member_count?: number;
6042
+ /**
6043
+ * Created By
6044
+ */
6045
+ created_by: string;
6046
+ /**
6047
+ * Created At
6048
+ */
6049
+ created_at: string;
6050
+ /**
6051
+ * Updated At
6052
+ */
6053
+ updated_at: string;
6054
+ };
6055
+
5907
6056
  /**
5908
6057
  * QueryLimits
5909
6058
  *
@@ -6100,6 +6249,10 @@ export type ReportResponse = {
6100
6249
  * Structures
6101
6250
  */
6102
6251
  structures?: Array<StructureSummary>;
6252
+ /**
6253
+ * Entity Name
6254
+ */
6255
+ entity_name?: string | null;
6103
6256
  /**
6104
6257
  * Source Graph Id
6105
6258
  */
@@ -6694,6 +6847,10 @@ export type SecurityResponse = {
6694
6847
  * Entity Name
6695
6848
  */
6696
6849
  entity_name?: string | null;
6850
+ /**
6851
+ * Source Graph Id
6852
+ */
6853
+ source_graph_id?: string | null;
6697
6854
  /**
6698
6855
  * Name
6699
6856
  */
@@ -6837,11 +6994,11 @@ export type ServiceOfferingsResponse = {
6837
6994
  */
6838
6995
  export type ShareReportRequest = {
6839
6996
  /**
6840
- * Target Graph Ids
6997
+ * Publish List Id
6841
6998
  *
6842
- * Graph IDs to share the report to
6999
+ * Publish list to share the report to
6843
7000
  */
6844
- target_graph_ids: Array<string>;
7001
+ publish_list_id: string;
6845
7002
  };
6846
7003
 
6847
7004
  /**
@@ -8008,10 +8165,32 @@ export type UpdatePositionRequest = {
8008
8165
  notes?: string | null;
8009
8166
  };
8010
8167
 
8168
+ /**
8169
+ * UpdatePublishListRequest
8170
+ */
8171
+ export type UpdatePublishListRequest = {
8172
+ /**
8173
+ * Name
8174
+ */
8175
+ name?: string | null;
8176
+ /**
8177
+ * Description
8178
+ */
8179
+ description?: string | null;
8180
+ };
8181
+
8011
8182
  /**
8012
8183
  * UpdateSecurityRequest
8013
8184
  */
8014
8185
  export type UpdateSecurityRequest = {
8186
+ /**
8187
+ * Entity Id
8188
+ */
8189
+ entity_id?: string | null;
8190
+ /**
8191
+ * Source Graph Id
8192
+ */
8193
+ source_graph_id?: string | null;
8015
8194
  /**
8016
8195
  * Name
8017
8196
  */
@@ -12684,6 +12863,45 @@ export type UpdateLedgerEntityResponses = {
12684
12863
 
12685
12864
  export type UpdateLedgerEntityResponse = UpdateLedgerEntityResponses[keyof UpdateLedgerEntityResponses];
12686
12865
 
12866
+ export type ListLedgerEntitiesData = {
12867
+ body?: never;
12868
+ path: {
12869
+ /**
12870
+ * Graph Id
12871
+ */
12872
+ graph_id: string;
12873
+ };
12874
+ query?: {
12875
+ /**
12876
+ * Source
12877
+ *
12878
+ * Filter by source (e.g., 'linked')
12879
+ */
12880
+ source?: string | null;
12881
+ };
12882
+ url: '/v1/ledger/{graph_id}/entities';
12883
+ };
12884
+
12885
+ export type ListLedgerEntitiesErrors = {
12886
+ /**
12887
+ * Validation Error
12888
+ */
12889
+ 422: HttpValidationError;
12890
+ };
12891
+
12892
+ export type ListLedgerEntitiesError = ListLedgerEntitiesErrors[keyof ListLedgerEntitiesErrors];
12893
+
12894
+ export type ListLedgerEntitiesResponses = {
12895
+ /**
12896
+ * Response Listledgerentities
12897
+ *
12898
+ * Successful Response
12899
+ */
12900
+ 200: Array<LedgerEntityResponse>;
12901
+ };
12902
+
12903
+ export type ListLedgerEntitiesResponse = ListLedgerEntitiesResponses[keyof ListLedgerEntitiesResponses];
12904
+
12687
12905
  export type ListLedgerAccountsData = {
12688
12906
  body?: never;
12689
12907
  path: {
@@ -13694,6 +13912,251 @@ export type ShareReportResponses = {
13694
13912
 
13695
13913
  export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
13696
13914
 
13915
+ export type ListPublishListsData = {
13916
+ body?: never;
13917
+ path: {
13918
+ /**
13919
+ * Graph Id
13920
+ */
13921
+ graph_id: string;
13922
+ };
13923
+ query?: {
13924
+ /**
13925
+ * Limit
13926
+ */
13927
+ limit?: number;
13928
+ /**
13929
+ * Offset
13930
+ */
13931
+ offset?: number;
13932
+ };
13933
+ url: '/v1/ledger/{graph_id}/publish-lists';
13934
+ };
13935
+
13936
+ export type ListPublishListsErrors = {
13937
+ /**
13938
+ * Validation Error
13939
+ */
13940
+ 422: HttpValidationError;
13941
+ };
13942
+
13943
+ export type ListPublishListsError = ListPublishListsErrors[keyof ListPublishListsErrors];
13944
+
13945
+ export type ListPublishListsResponses = {
13946
+ /**
13947
+ * Successful Response
13948
+ */
13949
+ 200: PublishListListResponse;
13950
+ };
13951
+
13952
+ export type ListPublishListsResponse = ListPublishListsResponses[keyof ListPublishListsResponses];
13953
+
13954
+ export type CreatePublishListData = {
13955
+ body: CreatePublishListRequest;
13956
+ path: {
13957
+ /**
13958
+ * Graph Id
13959
+ */
13960
+ graph_id: string;
13961
+ };
13962
+ query?: never;
13963
+ url: '/v1/ledger/{graph_id}/publish-lists';
13964
+ };
13965
+
13966
+ export type CreatePublishListErrors = {
13967
+ /**
13968
+ * Validation Error
13969
+ */
13970
+ 422: HttpValidationError;
13971
+ };
13972
+
13973
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
13974
+
13975
+ export type CreatePublishListResponses = {
13976
+ /**
13977
+ * Successful Response
13978
+ */
13979
+ 201: PublishListResponse;
13980
+ };
13981
+
13982
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
13983
+
13984
+ export type DeletePublishListData = {
13985
+ body?: never;
13986
+ path: {
13987
+ /**
13988
+ * Graph Id
13989
+ */
13990
+ graph_id: string;
13991
+ /**
13992
+ * List Id
13993
+ */
13994
+ list_id: string;
13995
+ };
13996
+ query?: never;
13997
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
13998
+ };
13999
+
14000
+ export type DeletePublishListErrors = {
14001
+ /**
14002
+ * Validation Error
14003
+ */
14004
+ 422: HttpValidationError;
14005
+ };
14006
+
14007
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
14008
+
14009
+ export type DeletePublishListResponses = {
14010
+ /**
14011
+ * Successful Response
14012
+ */
14013
+ 204: void;
14014
+ };
14015
+
14016
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
14017
+
14018
+ export type GetPublishListData = {
14019
+ body?: never;
14020
+ path: {
14021
+ /**
14022
+ * Graph Id
14023
+ */
14024
+ graph_id: string;
14025
+ /**
14026
+ * List Id
14027
+ */
14028
+ list_id: string;
14029
+ };
14030
+ query?: never;
14031
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
14032
+ };
14033
+
14034
+ export type GetPublishListErrors = {
14035
+ /**
14036
+ * Validation Error
14037
+ */
14038
+ 422: HttpValidationError;
14039
+ };
14040
+
14041
+ export type GetPublishListError = GetPublishListErrors[keyof GetPublishListErrors];
14042
+
14043
+ export type GetPublishListResponses = {
14044
+ /**
14045
+ * Successful Response
14046
+ */
14047
+ 200: PublishListDetailResponse;
14048
+ };
14049
+
14050
+ export type GetPublishListResponse = GetPublishListResponses[keyof GetPublishListResponses];
14051
+
14052
+ export type UpdatePublishListData = {
14053
+ body: UpdatePublishListRequest;
14054
+ path: {
14055
+ /**
14056
+ * Graph Id
14057
+ */
14058
+ graph_id: string;
14059
+ /**
14060
+ * List Id
14061
+ */
14062
+ list_id: string;
14063
+ };
14064
+ query?: never;
14065
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
14066
+ };
14067
+
14068
+ export type UpdatePublishListErrors = {
14069
+ /**
14070
+ * Validation Error
14071
+ */
14072
+ 422: HttpValidationError;
14073
+ };
14074
+
14075
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
14076
+
14077
+ export type UpdatePublishListResponses = {
14078
+ /**
14079
+ * Successful Response
14080
+ */
14081
+ 200: PublishListResponse;
14082
+ };
14083
+
14084
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
14085
+
14086
+ export type AddPublishListMembersData = {
14087
+ body: AddMembersRequest;
14088
+ path: {
14089
+ /**
14090
+ * Graph Id
14091
+ */
14092
+ graph_id: string;
14093
+ /**
14094
+ * List Id
14095
+ */
14096
+ list_id: string;
14097
+ };
14098
+ query?: never;
14099
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}/members';
14100
+ };
14101
+
14102
+ export type AddPublishListMembersErrors = {
14103
+ /**
14104
+ * Validation Error
14105
+ */
14106
+ 422: HttpValidationError;
14107
+ };
14108
+
14109
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
14110
+
14111
+ export type AddPublishListMembersResponses = {
14112
+ /**
14113
+ * Response Addpublishlistmembers
14114
+ *
14115
+ * Successful Response
14116
+ */
14117
+ 201: Array<PublishListMemberResponse>;
14118
+ };
14119
+
14120
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
14121
+
14122
+ export type RemovePublishListMemberData = {
14123
+ body?: never;
14124
+ path: {
14125
+ /**
14126
+ * Graph Id
14127
+ */
14128
+ graph_id: string;
14129
+ /**
14130
+ * List Id
14131
+ */
14132
+ list_id: string;
14133
+ /**
14134
+ * Member Id
14135
+ */
14136
+ member_id: string;
14137
+ };
14138
+ query?: never;
14139
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}/members/{member_id}';
14140
+ };
14141
+
14142
+ export type RemovePublishListMemberErrors = {
14143
+ /**
14144
+ * Validation Error
14145
+ */
14146
+ 422: HttpValidationError;
14147
+ };
14148
+
14149
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
14150
+
14151
+ export type RemovePublishListMemberResponses = {
14152
+ /**
14153
+ * Successful Response
14154
+ */
14155
+ 204: void;
14156
+ };
14157
+
14158
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
14159
+
13697
14160
  export type ListPortfoliosData = {
13698
14161
  body?: never;
13699
14162
  path: {