@robosystems/client 0.2.41 → 0.2.43

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/sdk/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
  */
@@ -2436,12 +2466,76 @@ export type DetailedTransactionsResponse = {
2436
2466
  };
2437
2467
  };
2438
2468
 
2469
+ /**
2470
+ * DocumentDetailResponse
2471
+ *
2472
+ * Full document detail with raw content.
2473
+ */
2474
+ export type DocumentDetailResponse = {
2475
+ /**
2476
+ * Id
2477
+ */
2478
+ id: string;
2479
+ /**
2480
+ * Graph Id
2481
+ */
2482
+ graph_id: string;
2483
+ /**
2484
+ * User Id
2485
+ */
2486
+ user_id: string;
2487
+ /**
2488
+ * Title
2489
+ */
2490
+ title: string;
2491
+ /**
2492
+ * Content
2493
+ */
2494
+ content: string;
2495
+ /**
2496
+ * Tags
2497
+ */
2498
+ tags?: Array<string> | null;
2499
+ /**
2500
+ * Folder
2501
+ */
2502
+ folder?: string | null;
2503
+ /**
2504
+ * External Id
2505
+ */
2506
+ external_id?: string | null;
2507
+ /**
2508
+ * Source Type
2509
+ */
2510
+ source_type: string;
2511
+ /**
2512
+ * Source Provider
2513
+ */
2514
+ source_provider?: string | null;
2515
+ /**
2516
+ * Sections Indexed
2517
+ */
2518
+ sections_indexed: number;
2519
+ /**
2520
+ * Created At
2521
+ */
2522
+ created_at: string;
2523
+ /**
2524
+ * Updated At
2525
+ */
2526
+ updated_at: string;
2527
+ };
2528
+
2439
2529
  /**
2440
2530
  * DocumentListItem
2441
2531
  *
2442
2532
  * A document in the document list.
2443
2533
  */
2444
2534
  export type DocumentListItem = {
2535
+ /**
2536
+ * Id
2537
+ */
2538
+ id: string;
2445
2539
  /**
2446
2540
  * Document Title
2447
2541
  */
@@ -2463,9 +2557,13 @@ export type DocumentListItem = {
2463
2557
  */
2464
2558
  tags?: Array<string> | null;
2465
2559
  /**
2466
- * Last Indexed
2560
+ * Created At
2561
+ */
2562
+ created_at: string;
2563
+ /**
2564
+ * Updated At
2467
2565
  */
2468
- last_indexed?: string | null;
2566
+ updated_at: string;
2469
2567
  };
2470
2568
 
2471
2569
  /**
@@ -2580,6 +2678,30 @@ export type DocumentSection = {
2580
2678
  folder?: string | null;
2581
2679
  };
2582
2680
 
2681
+ /**
2682
+ * DocumentUpdateRequest
2683
+ *
2684
+ * Update a document's metadata and/or content.
2685
+ */
2686
+ export type DocumentUpdateRequest = {
2687
+ /**
2688
+ * Title
2689
+ */
2690
+ title?: string | null;
2691
+ /**
2692
+ * Content
2693
+ */
2694
+ content?: string | null;
2695
+ /**
2696
+ * Tags
2697
+ */
2698
+ tags?: Array<string> | null;
2699
+ /**
2700
+ * Folder
2701
+ */
2702
+ folder?: string | null;
2703
+ };
2704
+
2583
2705
  /**
2584
2706
  * DocumentUploadRequest
2585
2707
  *
@@ -2624,6 +2746,10 @@ export type DocumentUploadRequest = {
2624
2746
  * Response from document upload.
2625
2747
  */
2626
2748
  export type DocumentUploadResponse = {
2749
+ /**
2750
+ * Id
2751
+ */
2752
+ id: string;
2627
2753
  /**
2628
2754
  * Document Id
2629
2755
  */
@@ -4437,6 +4563,10 @@ export type LedgerEntityResponse = {
4437
4563
  * Source Id
4438
4564
  */
4439
4565
  source_id?: string | null;
4566
+ /**
4567
+ * Source Graph Id
4568
+ */
4569
+ source_graph_id?: string | null;
4440
4570
  /**
4441
4571
  * Connection Id
4442
4572
  */
@@ -5904,6 +6034,121 @@ export type PositionResponse = {
5904
6034
  updated_at: string;
5905
6035
  };
5906
6036
 
6037
+ /**
6038
+ * PublishListDetailResponse
6039
+ *
6040
+ * Full detail including members.
6041
+ */
6042
+ export type PublishListDetailResponse = {
6043
+ /**
6044
+ * Id
6045
+ */
6046
+ id: string;
6047
+ /**
6048
+ * Name
6049
+ */
6050
+ name: string;
6051
+ /**
6052
+ * Description
6053
+ */
6054
+ description?: string | null;
6055
+ /**
6056
+ * Member Count
6057
+ */
6058
+ member_count?: number;
6059
+ /**
6060
+ * Created By
6061
+ */
6062
+ created_by: string;
6063
+ /**
6064
+ * Created At
6065
+ */
6066
+ created_at: string;
6067
+ /**
6068
+ * Updated At
6069
+ */
6070
+ updated_at: string;
6071
+ /**
6072
+ * Members
6073
+ */
6074
+ members?: Array<PublishListMemberResponse>;
6075
+ };
6076
+
6077
+ /**
6078
+ * PublishListListResponse
6079
+ */
6080
+ export type PublishListListResponse = {
6081
+ /**
6082
+ * Publish Lists
6083
+ */
6084
+ publish_lists: Array<PublishListResponse>;
6085
+ pagination: PaginationInfo;
6086
+ };
6087
+
6088
+ /**
6089
+ * PublishListMemberResponse
6090
+ */
6091
+ export type PublishListMemberResponse = {
6092
+ /**
6093
+ * Id
6094
+ */
6095
+ id: string;
6096
+ /**
6097
+ * Target Graph Id
6098
+ */
6099
+ target_graph_id: string;
6100
+ /**
6101
+ * Target Graph Name
6102
+ */
6103
+ target_graph_name?: string | null;
6104
+ /**
6105
+ * Target Org Name
6106
+ */
6107
+ target_org_name?: string | null;
6108
+ /**
6109
+ * Added By
6110
+ */
6111
+ added_by: string;
6112
+ /**
6113
+ * Added At
6114
+ */
6115
+ added_at: string;
6116
+ };
6117
+
6118
+ /**
6119
+ * PublishListResponse
6120
+ */
6121
+ export type PublishListResponse = {
6122
+ /**
6123
+ * Id
6124
+ */
6125
+ id: string;
6126
+ /**
6127
+ * Name
6128
+ */
6129
+ name: string;
6130
+ /**
6131
+ * Description
6132
+ */
6133
+ description?: string | null;
6134
+ /**
6135
+ * Member Count
6136
+ */
6137
+ member_count?: number;
6138
+ /**
6139
+ * Created By
6140
+ */
6141
+ created_by: string;
6142
+ /**
6143
+ * Created At
6144
+ */
6145
+ created_at: string;
6146
+ /**
6147
+ * Updated At
6148
+ */
6149
+ updated_at: string;
6150
+ };
6151
+
5907
6152
  /**
5908
6153
  * QueryLimits
5909
6154
  *
@@ -6100,6 +6345,10 @@ export type ReportResponse = {
6100
6345
  * Structures
6101
6346
  */
6102
6347
  structures?: Array<StructureSummary>;
6348
+ /**
6349
+ * Entity Name
6350
+ */
6351
+ entity_name?: string | null;
6103
6352
  /**
6104
6353
  * Source Graph Id
6105
6354
  */
@@ -6694,6 +6943,10 @@ export type SecurityResponse = {
6694
6943
  * Entity Name
6695
6944
  */
6696
6945
  entity_name?: string | null;
6946
+ /**
6947
+ * Source Graph Id
6948
+ */
6949
+ source_graph_id?: string | null;
6697
6950
  /**
6698
6951
  * Name
6699
6952
  */
@@ -6837,11 +7090,11 @@ export type ServiceOfferingsResponse = {
6837
7090
  */
6838
7091
  export type ShareReportRequest = {
6839
7092
  /**
6840
- * Target Graph Ids
7093
+ * Publish List Id
6841
7094
  *
6842
- * Graph IDs to share the report to
7095
+ * Publish list to share the report to
6843
7096
  */
6844
- target_graph_ids: Array<string>;
7097
+ publish_list_id: string;
6845
7098
  };
6846
7099
 
6847
7100
  /**
@@ -8008,10 +8261,32 @@ export type UpdatePositionRequest = {
8008
8261
  notes?: string | null;
8009
8262
  };
8010
8263
 
8264
+ /**
8265
+ * UpdatePublishListRequest
8266
+ */
8267
+ export type UpdatePublishListRequest = {
8268
+ /**
8269
+ * Name
8270
+ */
8271
+ name?: string | null;
8272
+ /**
8273
+ * Description
8274
+ */
8275
+ description?: string | null;
8276
+ };
8277
+
8011
8278
  /**
8012
8279
  * UpdateSecurityRequest
8013
8280
  */
8014
8281
  export type UpdateSecurityRequest = {
8282
+ /**
8283
+ * Entity Id
8284
+ */
8285
+ entity_id?: string | null;
8286
+ /**
8287
+ * Source Graph Id
8288
+ */
8289
+ source_graph_id?: string | null;
8015
8290
  /**
8016
8291
  * Name
8017
8292
  */
@@ -11556,37 +11831,41 @@ export type UploadDocumentResponses = {
11556
11831
 
11557
11832
  export type UploadDocumentResponse = UploadDocumentResponses[keyof UploadDocumentResponses];
11558
11833
 
11559
- export type UploadDocumentsBulkData = {
11560
- body: BulkDocumentUploadRequest;
11834
+ export type DeleteDocumentData = {
11835
+ body?: never;
11561
11836
  path: {
11562
11837
  /**
11563
11838
  * Graph Id
11564
11839
  */
11565
11840
  graph_id: string;
11841
+ /**
11842
+ * Document Id
11843
+ */
11844
+ document_id: string;
11566
11845
  };
11567
11846
  query?: never;
11568
- url: '/v1/graphs/{graph_id}/documents/bulk';
11847
+ url: '/v1/graphs/{graph_id}/documents/{document_id}';
11569
11848
  };
11570
11849
 
11571
- export type UploadDocumentsBulkErrors = {
11850
+ export type DeleteDocumentErrors = {
11572
11851
  /**
11573
11852
  * Validation Error
11574
11853
  */
11575
11854
  422: HttpValidationError;
11576
11855
  };
11577
11856
 
11578
- export type UploadDocumentsBulkError = UploadDocumentsBulkErrors[keyof UploadDocumentsBulkErrors];
11857
+ export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
11579
11858
 
11580
- export type UploadDocumentsBulkResponses = {
11859
+ export type DeleteDocumentResponses = {
11581
11860
  /**
11582
11861
  * Successful Response
11583
11862
  */
11584
- 200: BulkDocumentUploadResponse;
11863
+ 204: void;
11585
11864
  };
11586
11865
 
11587
- export type UploadDocumentsBulkResponse = UploadDocumentsBulkResponses[keyof UploadDocumentsBulkResponses];
11866
+ export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
11588
11867
 
11589
- export type DeleteDocumentData = {
11868
+ export type GetDocumentData = {
11590
11869
  body?: never;
11591
11870
  path: {
11592
11871
  /**
@@ -11602,23 +11881,87 @@ export type DeleteDocumentData = {
11602
11881
  url: '/v1/graphs/{graph_id}/documents/{document_id}';
11603
11882
  };
11604
11883
 
11605
- export type DeleteDocumentErrors = {
11884
+ export type GetDocumentErrors = {
11606
11885
  /**
11607
11886
  * Validation Error
11608
11887
  */
11609
11888
  422: HttpValidationError;
11610
11889
  };
11611
11890
 
11612
- export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
11891
+ export type GetDocumentError = GetDocumentErrors[keyof GetDocumentErrors];
11613
11892
 
11614
- export type DeleteDocumentResponses = {
11893
+ export type GetDocumentResponses = {
11615
11894
  /**
11616
11895
  * Successful Response
11617
11896
  */
11618
- 204: void;
11897
+ 200: DocumentDetailResponse;
11619
11898
  };
11620
11899
 
11621
- export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
11900
+ export type GetDocumentResponse = GetDocumentResponses[keyof GetDocumentResponses];
11901
+
11902
+ export type UpdateDocumentData = {
11903
+ body: DocumentUpdateRequest;
11904
+ path: {
11905
+ /**
11906
+ * Graph Id
11907
+ */
11908
+ graph_id: string;
11909
+ /**
11910
+ * Document Id
11911
+ */
11912
+ document_id: string;
11913
+ };
11914
+ query?: never;
11915
+ url: '/v1/graphs/{graph_id}/documents/{document_id}';
11916
+ };
11917
+
11918
+ export type UpdateDocumentErrors = {
11919
+ /**
11920
+ * Validation Error
11921
+ */
11922
+ 422: HttpValidationError;
11923
+ };
11924
+
11925
+ export type UpdateDocumentError = UpdateDocumentErrors[keyof UpdateDocumentErrors];
11926
+
11927
+ export type UpdateDocumentResponses = {
11928
+ /**
11929
+ * Successful Response
11930
+ */
11931
+ 200: DocumentUploadResponse;
11932
+ };
11933
+
11934
+ export type UpdateDocumentResponse = UpdateDocumentResponses[keyof UpdateDocumentResponses];
11935
+
11936
+ export type UploadDocumentsBulkData = {
11937
+ body: BulkDocumentUploadRequest;
11938
+ path: {
11939
+ /**
11940
+ * Graph Id
11941
+ */
11942
+ graph_id: string;
11943
+ };
11944
+ query?: never;
11945
+ url: '/v1/graphs/{graph_id}/documents/bulk';
11946
+ };
11947
+
11948
+ export type UploadDocumentsBulkErrors = {
11949
+ /**
11950
+ * Validation Error
11951
+ */
11952
+ 422: HttpValidationError;
11953
+ };
11954
+
11955
+ export type UploadDocumentsBulkError = UploadDocumentsBulkErrors[keyof UploadDocumentsBulkErrors];
11956
+
11957
+ export type UploadDocumentsBulkResponses = {
11958
+ /**
11959
+ * Successful Response
11960
+ */
11961
+ 200: BulkDocumentUploadResponse;
11962
+ };
11963
+
11964
+ export type UploadDocumentsBulkResponse = UploadDocumentsBulkResponses[keyof UploadDocumentsBulkResponses];
11622
11965
 
11623
11966
  export type GetMaterializationStatusData = {
11624
11967
  body?: never;
@@ -12684,6 +13027,45 @@ export type UpdateLedgerEntityResponses = {
12684
13027
 
12685
13028
  export type UpdateLedgerEntityResponse = UpdateLedgerEntityResponses[keyof UpdateLedgerEntityResponses];
12686
13029
 
13030
+ export type ListLedgerEntitiesData = {
13031
+ body?: never;
13032
+ path: {
13033
+ /**
13034
+ * Graph Id
13035
+ */
13036
+ graph_id: string;
13037
+ };
13038
+ query?: {
13039
+ /**
13040
+ * Source
13041
+ *
13042
+ * Filter by source (e.g., 'linked')
13043
+ */
13044
+ source?: string | null;
13045
+ };
13046
+ url: '/v1/ledger/{graph_id}/entities';
13047
+ };
13048
+
13049
+ export type ListLedgerEntitiesErrors = {
13050
+ /**
13051
+ * Validation Error
13052
+ */
13053
+ 422: HttpValidationError;
13054
+ };
13055
+
13056
+ export type ListLedgerEntitiesError = ListLedgerEntitiesErrors[keyof ListLedgerEntitiesErrors];
13057
+
13058
+ export type ListLedgerEntitiesResponses = {
13059
+ /**
13060
+ * Response Listledgerentities
13061
+ *
13062
+ * Successful Response
13063
+ */
13064
+ 200: Array<LedgerEntityResponse>;
13065
+ };
13066
+
13067
+ export type ListLedgerEntitiesResponse = ListLedgerEntitiesResponses[keyof ListLedgerEntitiesResponses];
13068
+
12687
13069
  export type ListLedgerAccountsData = {
12688
13070
  body?: never;
12689
13071
  path: {
@@ -13694,6 +14076,251 @@ export type ShareReportResponses = {
13694
14076
 
13695
14077
  export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
13696
14078
 
14079
+ export type ListPublishListsData = {
14080
+ body?: never;
14081
+ path: {
14082
+ /**
14083
+ * Graph Id
14084
+ */
14085
+ graph_id: string;
14086
+ };
14087
+ query?: {
14088
+ /**
14089
+ * Limit
14090
+ */
14091
+ limit?: number;
14092
+ /**
14093
+ * Offset
14094
+ */
14095
+ offset?: number;
14096
+ };
14097
+ url: '/v1/ledger/{graph_id}/publish-lists';
14098
+ };
14099
+
14100
+ export type ListPublishListsErrors = {
14101
+ /**
14102
+ * Validation Error
14103
+ */
14104
+ 422: HttpValidationError;
14105
+ };
14106
+
14107
+ export type ListPublishListsError = ListPublishListsErrors[keyof ListPublishListsErrors];
14108
+
14109
+ export type ListPublishListsResponses = {
14110
+ /**
14111
+ * Successful Response
14112
+ */
14113
+ 200: PublishListListResponse;
14114
+ };
14115
+
14116
+ export type ListPublishListsResponse = ListPublishListsResponses[keyof ListPublishListsResponses];
14117
+
14118
+ export type CreatePublishListData = {
14119
+ body: CreatePublishListRequest;
14120
+ path: {
14121
+ /**
14122
+ * Graph Id
14123
+ */
14124
+ graph_id: string;
14125
+ };
14126
+ query?: never;
14127
+ url: '/v1/ledger/{graph_id}/publish-lists';
14128
+ };
14129
+
14130
+ export type CreatePublishListErrors = {
14131
+ /**
14132
+ * Validation Error
14133
+ */
14134
+ 422: HttpValidationError;
14135
+ };
14136
+
14137
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
14138
+
14139
+ export type CreatePublishListResponses = {
14140
+ /**
14141
+ * Successful Response
14142
+ */
14143
+ 201: PublishListResponse;
14144
+ };
14145
+
14146
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
14147
+
14148
+ export type DeletePublishListData = {
14149
+ body?: never;
14150
+ path: {
14151
+ /**
14152
+ * Graph Id
14153
+ */
14154
+ graph_id: string;
14155
+ /**
14156
+ * List Id
14157
+ */
14158
+ list_id: string;
14159
+ };
14160
+ query?: never;
14161
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
14162
+ };
14163
+
14164
+ export type DeletePublishListErrors = {
14165
+ /**
14166
+ * Validation Error
14167
+ */
14168
+ 422: HttpValidationError;
14169
+ };
14170
+
14171
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
14172
+
14173
+ export type DeletePublishListResponses = {
14174
+ /**
14175
+ * Successful Response
14176
+ */
14177
+ 204: void;
14178
+ };
14179
+
14180
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
14181
+
14182
+ export type GetPublishListData = {
14183
+ body?: never;
14184
+ path: {
14185
+ /**
14186
+ * Graph Id
14187
+ */
14188
+ graph_id: string;
14189
+ /**
14190
+ * List Id
14191
+ */
14192
+ list_id: string;
14193
+ };
14194
+ query?: never;
14195
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
14196
+ };
14197
+
14198
+ export type GetPublishListErrors = {
14199
+ /**
14200
+ * Validation Error
14201
+ */
14202
+ 422: HttpValidationError;
14203
+ };
14204
+
14205
+ export type GetPublishListError = GetPublishListErrors[keyof GetPublishListErrors];
14206
+
14207
+ export type GetPublishListResponses = {
14208
+ /**
14209
+ * Successful Response
14210
+ */
14211
+ 200: PublishListDetailResponse;
14212
+ };
14213
+
14214
+ export type GetPublishListResponse = GetPublishListResponses[keyof GetPublishListResponses];
14215
+
14216
+ export type UpdatePublishListData = {
14217
+ body: UpdatePublishListRequest;
14218
+ path: {
14219
+ /**
14220
+ * Graph Id
14221
+ */
14222
+ graph_id: string;
14223
+ /**
14224
+ * List Id
14225
+ */
14226
+ list_id: string;
14227
+ };
14228
+ query?: never;
14229
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
14230
+ };
14231
+
14232
+ export type UpdatePublishListErrors = {
14233
+ /**
14234
+ * Validation Error
14235
+ */
14236
+ 422: HttpValidationError;
14237
+ };
14238
+
14239
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
14240
+
14241
+ export type UpdatePublishListResponses = {
14242
+ /**
14243
+ * Successful Response
14244
+ */
14245
+ 200: PublishListResponse;
14246
+ };
14247
+
14248
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
14249
+
14250
+ export type AddPublishListMembersData = {
14251
+ body: AddMembersRequest;
14252
+ path: {
14253
+ /**
14254
+ * Graph Id
14255
+ */
14256
+ graph_id: string;
14257
+ /**
14258
+ * List Id
14259
+ */
14260
+ list_id: string;
14261
+ };
14262
+ query?: never;
14263
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}/members';
14264
+ };
14265
+
14266
+ export type AddPublishListMembersErrors = {
14267
+ /**
14268
+ * Validation Error
14269
+ */
14270
+ 422: HttpValidationError;
14271
+ };
14272
+
14273
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
14274
+
14275
+ export type AddPublishListMembersResponses = {
14276
+ /**
14277
+ * Response Addpublishlistmembers
14278
+ *
14279
+ * Successful Response
14280
+ */
14281
+ 201: Array<PublishListMemberResponse>;
14282
+ };
14283
+
14284
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
14285
+
14286
+ export type RemovePublishListMemberData = {
14287
+ body?: never;
14288
+ path: {
14289
+ /**
14290
+ * Graph Id
14291
+ */
14292
+ graph_id: string;
14293
+ /**
14294
+ * List Id
14295
+ */
14296
+ list_id: string;
14297
+ /**
14298
+ * Member Id
14299
+ */
14300
+ member_id: string;
14301
+ };
14302
+ query?: never;
14303
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}/members/{member_id}';
14304
+ };
14305
+
14306
+ export type RemovePublishListMemberErrors = {
14307
+ /**
14308
+ * Validation Error
14309
+ */
14310
+ 422: HttpValidationError;
14311
+ };
14312
+
14313
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
14314
+
14315
+ export type RemovePublishListMemberResponses = {
14316
+ /**
14317
+ * Successful Response
14318
+ */
14319
+ 204: void;
14320
+ };
14321
+
14322
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
14323
+
13697
14324
  export type ListPortfoliosData = {
13698
14325
  body?: never;
13699
14326
  path: {