@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/types.gen.d.ts CHANGED
@@ -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
  */
@@ -2368,12 +2396,75 @@ export type DetailedTransactionsResponse = {
2368
2396
  [key: string]: string;
2369
2397
  };
2370
2398
  };
2399
+ /**
2400
+ * DocumentDetailResponse
2401
+ *
2402
+ * Full document detail with raw content.
2403
+ */
2404
+ export type DocumentDetailResponse = {
2405
+ /**
2406
+ * Id
2407
+ */
2408
+ id: string;
2409
+ /**
2410
+ * Graph Id
2411
+ */
2412
+ graph_id: string;
2413
+ /**
2414
+ * User Id
2415
+ */
2416
+ user_id: string;
2417
+ /**
2418
+ * Title
2419
+ */
2420
+ title: string;
2421
+ /**
2422
+ * Content
2423
+ */
2424
+ content: string;
2425
+ /**
2426
+ * Tags
2427
+ */
2428
+ tags?: Array<string> | null;
2429
+ /**
2430
+ * Folder
2431
+ */
2432
+ folder?: string | null;
2433
+ /**
2434
+ * External Id
2435
+ */
2436
+ external_id?: string | null;
2437
+ /**
2438
+ * Source Type
2439
+ */
2440
+ source_type: string;
2441
+ /**
2442
+ * Source Provider
2443
+ */
2444
+ source_provider?: string | null;
2445
+ /**
2446
+ * Sections Indexed
2447
+ */
2448
+ sections_indexed: number;
2449
+ /**
2450
+ * Created At
2451
+ */
2452
+ created_at: string;
2453
+ /**
2454
+ * Updated At
2455
+ */
2456
+ updated_at: string;
2457
+ };
2371
2458
  /**
2372
2459
  * DocumentListItem
2373
2460
  *
2374
2461
  * A document in the document list.
2375
2462
  */
2376
2463
  export type DocumentListItem = {
2464
+ /**
2465
+ * Id
2466
+ */
2467
+ id: string;
2377
2468
  /**
2378
2469
  * Document Title
2379
2470
  */
@@ -2395,9 +2486,13 @@ export type DocumentListItem = {
2395
2486
  */
2396
2487
  tags?: Array<string> | null;
2397
2488
  /**
2398
- * Last Indexed
2489
+ * Created At
2399
2490
  */
2400
- last_indexed?: string | null;
2491
+ created_at: string;
2492
+ /**
2493
+ * Updated At
2494
+ */
2495
+ updated_at: string;
2401
2496
  };
2402
2497
  /**
2403
2498
  * DocumentListResponse
@@ -2509,6 +2604,29 @@ export type DocumentSection = {
2509
2604
  */
2510
2605
  folder?: string | null;
2511
2606
  };
2607
+ /**
2608
+ * DocumentUpdateRequest
2609
+ *
2610
+ * Update a document's metadata and/or content.
2611
+ */
2612
+ export type DocumentUpdateRequest = {
2613
+ /**
2614
+ * Title
2615
+ */
2616
+ title?: string | null;
2617
+ /**
2618
+ * Content
2619
+ */
2620
+ content?: string | null;
2621
+ /**
2622
+ * Tags
2623
+ */
2624
+ tags?: Array<string> | null;
2625
+ /**
2626
+ * Folder
2627
+ */
2628
+ folder?: string | null;
2629
+ };
2512
2630
  /**
2513
2631
  * DocumentUploadRequest
2514
2632
  *
@@ -2552,6 +2670,10 @@ export type DocumentUploadRequest = {
2552
2670
  * Response from document upload.
2553
2671
  */
2554
2672
  export type DocumentUploadResponse = {
2673
+ /**
2674
+ * Id
2675
+ */
2676
+ id: string;
2555
2677
  /**
2556
2678
  * Document Id
2557
2679
  */
@@ -4324,6 +4446,10 @@ export type LedgerEntityResponse = {
4324
4446
  * Source Id
4325
4447
  */
4326
4448
  source_id?: string | null;
4449
+ /**
4450
+ * Source Graph Id
4451
+ */
4452
+ source_graph_id?: string | null;
4327
4453
  /**
4328
4454
  * Connection Id
4329
4455
  */
@@ -5748,6 +5874,117 @@ export type PositionResponse = {
5748
5874
  */
5749
5875
  updated_at: string;
5750
5876
  };
5877
+ /**
5878
+ * PublishListDetailResponse
5879
+ *
5880
+ * Full detail including members.
5881
+ */
5882
+ export type PublishListDetailResponse = {
5883
+ /**
5884
+ * Id
5885
+ */
5886
+ id: string;
5887
+ /**
5888
+ * Name
5889
+ */
5890
+ name: string;
5891
+ /**
5892
+ * Description
5893
+ */
5894
+ description?: string | null;
5895
+ /**
5896
+ * Member Count
5897
+ */
5898
+ member_count?: number;
5899
+ /**
5900
+ * Created By
5901
+ */
5902
+ created_by: string;
5903
+ /**
5904
+ * Created At
5905
+ */
5906
+ created_at: string;
5907
+ /**
5908
+ * Updated At
5909
+ */
5910
+ updated_at: string;
5911
+ /**
5912
+ * Members
5913
+ */
5914
+ members?: Array<PublishListMemberResponse>;
5915
+ };
5916
+ /**
5917
+ * PublishListListResponse
5918
+ */
5919
+ export type PublishListListResponse = {
5920
+ /**
5921
+ * Publish Lists
5922
+ */
5923
+ publish_lists: Array<PublishListResponse>;
5924
+ pagination: PaginationInfo;
5925
+ };
5926
+ /**
5927
+ * PublishListMemberResponse
5928
+ */
5929
+ export type PublishListMemberResponse = {
5930
+ /**
5931
+ * Id
5932
+ */
5933
+ id: string;
5934
+ /**
5935
+ * Target Graph Id
5936
+ */
5937
+ target_graph_id: string;
5938
+ /**
5939
+ * Target Graph Name
5940
+ */
5941
+ target_graph_name?: string | null;
5942
+ /**
5943
+ * Target Org Name
5944
+ */
5945
+ target_org_name?: string | null;
5946
+ /**
5947
+ * Added By
5948
+ */
5949
+ added_by: string;
5950
+ /**
5951
+ * Added At
5952
+ */
5953
+ added_at: string;
5954
+ };
5955
+ /**
5956
+ * PublishListResponse
5957
+ */
5958
+ export type PublishListResponse = {
5959
+ /**
5960
+ * Id
5961
+ */
5962
+ id: string;
5963
+ /**
5964
+ * Name
5965
+ */
5966
+ name: string;
5967
+ /**
5968
+ * Description
5969
+ */
5970
+ description?: string | null;
5971
+ /**
5972
+ * Member Count
5973
+ */
5974
+ member_count?: number;
5975
+ /**
5976
+ * Created By
5977
+ */
5978
+ created_by: string;
5979
+ /**
5980
+ * Created At
5981
+ */
5982
+ created_at: string;
5983
+ /**
5984
+ * Updated At
5985
+ */
5986
+ updated_at: string;
5987
+ };
5751
5988
  /**
5752
5989
  * QueryLimits
5753
5990
  *
@@ -5938,6 +6175,10 @@ export type ReportResponse = {
5938
6175
  * Structures
5939
6176
  */
5940
6177
  structures?: Array<StructureSummary>;
6178
+ /**
6179
+ * Entity Name
6180
+ */
6181
+ entity_name?: string | null;
5941
6182
  /**
5942
6183
  * Source Graph Id
5943
6184
  */
@@ -6513,6 +6754,10 @@ export type SecurityResponse = {
6513
6754
  * Entity Name
6514
6755
  */
6515
6756
  entity_name?: string | null;
6757
+ /**
6758
+ * Source Graph Id
6759
+ */
6760
+ source_graph_id?: string | null;
6516
6761
  /**
6517
6762
  * Name
6518
6763
  */
@@ -6652,11 +6897,11 @@ export type ServiceOfferingsResponse = {
6652
6897
  */
6653
6898
  export type ShareReportRequest = {
6654
6899
  /**
6655
- * Target Graph Ids
6900
+ * Publish List Id
6656
6901
  *
6657
- * Graph IDs to share the report to
6902
+ * Publish list to share the report to
6658
6903
  */
6659
- target_graph_ids: Array<string>;
6904
+ publish_list_id: string;
6660
6905
  };
6661
6906
  /**
6662
6907
  * ShareReportResponse
@@ -7786,10 +8031,31 @@ export type UpdatePositionRequest = {
7786
8031
  */
7787
8032
  notes?: string | null;
7788
8033
  };
8034
+ /**
8035
+ * UpdatePublishListRequest
8036
+ */
8037
+ export type UpdatePublishListRequest = {
8038
+ /**
8039
+ * Name
8040
+ */
8041
+ name?: string | null;
8042
+ /**
8043
+ * Description
8044
+ */
8045
+ description?: string | null;
8046
+ };
7789
8047
  /**
7790
8048
  * UpdateSecurityRequest
7791
8049
  */
7792
8050
  export type UpdateSecurityRequest = {
8051
+ /**
8052
+ * Entity Id
8053
+ */
8054
+ entity_id?: string | null;
8055
+ /**
8056
+ * Source Graph Id
8057
+ */
8058
+ source_graph_id?: string | null;
7793
8059
  /**
7794
8060
  * Name
7795
8061
  */
@@ -10926,32 +11192,36 @@ export type UploadDocumentResponses = {
10926
11192
  200: DocumentUploadResponse;
10927
11193
  };
10928
11194
  export type UploadDocumentResponse = UploadDocumentResponses[keyof UploadDocumentResponses];
10929
- export type UploadDocumentsBulkData = {
10930
- body: BulkDocumentUploadRequest;
11195
+ export type DeleteDocumentData = {
11196
+ body?: never;
10931
11197
  path: {
10932
11198
  /**
10933
11199
  * Graph Id
10934
11200
  */
10935
11201
  graph_id: string;
11202
+ /**
11203
+ * Document Id
11204
+ */
11205
+ document_id: string;
10936
11206
  };
10937
11207
  query?: never;
10938
- url: '/v1/graphs/{graph_id}/documents/bulk';
11208
+ url: '/v1/graphs/{graph_id}/documents/{document_id}';
10939
11209
  };
10940
- export type UploadDocumentsBulkErrors = {
11210
+ export type DeleteDocumentErrors = {
10941
11211
  /**
10942
11212
  * Validation Error
10943
11213
  */
10944
11214
  422: HttpValidationError;
10945
11215
  };
10946
- export type UploadDocumentsBulkError = UploadDocumentsBulkErrors[keyof UploadDocumentsBulkErrors];
10947
- export type UploadDocumentsBulkResponses = {
11216
+ export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
11217
+ export type DeleteDocumentResponses = {
10948
11218
  /**
10949
11219
  * Successful Response
10950
11220
  */
10951
- 200: BulkDocumentUploadResponse;
11221
+ 204: void;
10952
11222
  };
10953
- export type UploadDocumentsBulkResponse = UploadDocumentsBulkResponses[keyof UploadDocumentsBulkResponses];
10954
- export type DeleteDocumentData = {
11223
+ export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
11224
+ export type GetDocumentData = {
10955
11225
  body?: never;
10956
11226
  path: {
10957
11227
  /**
@@ -10966,20 +11236,74 @@ export type DeleteDocumentData = {
10966
11236
  query?: never;
10967
11237
  url: '/v1/graphs/{graph_id}/documents/{document_id}';
10968
11238
  };
10969
- export type DeleteDocumentErrors = {
11239
+ export type GetDocumentErrors = {
10970
11240
  /**
10971
11241
  * Validation Error
10972
11242
  */
10973
11243
  422: HttpValidationError;
10974
11244
  };
10975
- export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
10976
- export type DeleteDocumentResponses = {
11245
+ export type GetDocumentError = GetDocumentErrors[keyof GetDocumentErrors];
11246
+ export type GetDocumentResponses = {
10977
11247
  /**
10978
11248
  * Successful Response
10979
11249
  */
10980
- 204: void;
11250
+ 200: DocumentDetailResponse;
10981
11251
  };
10982
- export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
11252
+ export type GetDocumentResponse = GetDocumentResponses[keyof GetDocumentResponses];
11253
+ export type UpdateDocumentData = {
11254
+ body: DocumentUpdateRequest;
11255
+ path: {
11256
+ /**
11257
+ * Graph Id
11258
+ */
11259
+ graph_id: string;
11260
+ /**
11261
+ * Document Id
11262
+ */
11263
+ document_id: string;
11264
+ };
11265
+ query?: never;
11266
+ url: '/v1/graphs/{graph_id}/documents/{document_id}';
11267
+ };
11268
+ export type UpdateDocumentErrors = {
11269
+ /**
11270
+ * Validation Error
11271
+ */
11272
+ 422: HttpValidationError;
11273
+ };
11274
+ export type UpdateDocumentError = UpdateDocumentErrors[keyof UpdateDocumentErrors];
11275
+ export type UpdateDocumentResponses = {
11276
+ /**
11277
+ * Successful Response
11278
+ */
11279
+ 200: DocumentUploadResponse;
11280
+ };
11281
+ export type UpdateDocumentResponse = UpdateDocumentResponses[keyof UpdateDocumentResponses];
11282
+ export type UploadDocumentsBulkData = {
11283
+ body: BulkDocumentUploadRequest;
11284
+ path: {
11285
+ /**
11286
+ * Graph Id
11287
+ */
11288
+ graph_id: string;
11289
+ };
11290
+ query?: never;
11291
+ url: '/v1/graphs/{graph_id}/documents/bulk';
11292
+ };
11293
+ export type UploadDocumentsBulkErrors = {
11294
+ /**
11295
+ * Validation Error
11296
+ */
11297
+ 422: HttpValidationError;
11298
+ };
11299
+ export type UploadDocumentsBulkError = UploadDocumentsBulkErrors[keyof UploadDocumentsBulkErrors];
11300
+ export type UploadDocumentsBulkResponses = {
11301
+ /**
11302
+ * Successful Response
11303
+ */
11304
+ 200: BulkDocumentUploadResponse;
11305
+ };
11306
+ export type UploadDocumentsBulkResponse = UploadDocumentsBulkResponses[keyof UploadDocumentsBulkResponses];
10983
11307
  export type GetMaterializationStatusData = {
10984
11308
  body?: never;
10985
11309
  path: {
@@ -11909,6 +12233,40 @@ export type UpdateLedgerEntityResponses = {
11909
12233
  200: LedgerEntityResponse;
11910
12234
  };
11911
12235
  export type UpdateLedgerEntityResponse = UpdateLedgerEntityResponses[keyof UpdateLedgerEntityResponses];
12236
+ export type ListLedgerEntitiesData = {
12237
+ body?: never;
12238
+ path: {
12239
+ /**
12240
+ * Graph Id
12241
+ */
12242
+ graph_id: string;
12243
+ };
12244
+ query?: {
12245
+ /**
12246
+ * Source
12247
+ *
12248
+ * Filter by source (e.g., 'linked')
12249
+ */
12250
+ source?: string | null;
12251
+ };
12252
+ url: '/v1/ledger/{graph_id}/entities';
12253
+ };
12254
+ export type ListLedgerEntitiesErrors = {
12255
+ /**
12256
+ * Validation Error
12257
+ */
12258
+ 422: HttpValidationError;
12259
+ };
12260
+ export type ListLedgerEntitiesError = ListLedgerEntitiesErrors[keyof ListLedgerEntitiesErrors];
12261
+ export type ListLedgerEntitiesResponses = {
12262
+ /**
12263
+ * Response Listledgerentities
12264
+ *
12265
+ * Successful Response
12266
+ */
12267
+ 200: Array<LedgerEntityResponse>;
12268
+ };
12269
+ export type ListLedgerEntitiesResponse = ListLedgerEntitiesResponses[keyof ListLedgerEntitiesResponses];
11912
12270
  export type ListLedgerAccountsData = {
11913
12271
  body?: never;
11914
12272
  path: {
@@ -12786,6 +13144,216 @@ export type ShareReportResponses = {
12786
13144
  200: ShareReportResponse;
12787
13145
  };
12788
13146
  export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
13147
+ export type ListPublishListsData = {
13148
+ body?: never;
13149
+ path: {
13150
+ /**
13151
+ * Graph Id
13152
+ */
13153
+ graph_id: string;
13154
+ };
13155
+ query?: {
13156
+ /**
13157
+ * Limit
13158
+ */
13159
+ limit?: number;
13160
+ /**
13161
+ * Offset
13162
+ */
13163
+ offset?: number;
13164
+ };
13165
+ url: '/v1/ledger/{graph_id}/publish-lists';
13166
+ };
13167
+ export type ListPublishListsErrors = {
13168
+ /**
13169
+ * Validation Error
13170
+ */
13171
+ 422: HttpValidationError;
13172
+ };
13173
+ export type ListPublishListsError = ListPublishListsErrors[keyof ListPublishListsErrors];
13174
+ export type ListPublishListsResponses = {
13175
+ /**
13176
+ * Successful Response
13177
+ */
13178
+ 200: PublishListListResponse;
13179
+ };
13180
+ export type ListPublishListsResponse = ListPublishListsResponses[keyof ListPublishListsResponses];
13181
+ export type CreatePublishListData = {
13182
+ body: CreatePublishListRequest;
13183
+ path: {
13184
+ /**
13185
+ * Graph Id
13186
+ */
13187
+ graph_id: string;
13188
+ };
13189
+ query?: never;
13190
+ url: '/v1/ledger/{graph_id}/publish-lists';
13191
+ };
13192
+ export type CreatePublishListErrors = {
13193
+ /**
13194
+ * Validation Error
13195
+ */
13196
+ 422: HttpValidationError;
13197
+ };
13198
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
13199
+ export type CreatePublishListResponses = {
13200
+ /**
13201
+ * Successful Response
13202
+ */
13203
+ 201: PublishListResponse;
13204
+ };
13205
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
13206
+ export type DeletePublishListData = {
13207
+ body?: never;
13208
+ path: {
13209
+ /**
13210
+ * Graph Id
13211
+ */
13212
+ graph_id: string;
13213
+ /**
13214
+ * List Id
13215
+ */
13216
+ list_id: string;
13217
+ };
13218
+ query?: never;
13219
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
13220
+ };
13221
+ export type DeletePublishListErrors = {
13222
+ /**
13223
+ * Validation Error
13224
+ */
13225
+ 422: HttpValidationError;
13226
+ };
13227
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
13228
+ export type DeletePublishListResponses = {
13229
+ /**
13230
+ * Successful Response
13231
+ */
13232
+ 204: void;
13233
+ };
13234
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
13235
+ export type GetPublishListData = {
13236
+ body?: never;
13237
+ path: {
13238
+ /**
13239
+ * Graph Id
13240
+ */
13241
+ graph_id: string;
13242
+ /**
13243
+ * List Id
13244
+ */
13245
+ list_id: string;
13246
+ };
13247
+ query?: never;
13248
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
13249
+ };
13250
+ export type GetPublishListErrors = {
13251
+ /**
13252
+ * Validation Error
13253
+ */
13254
+ 422: HttpValidationError;
13255
+ };
13256
+ export type GetPublishListError = GetPublishListErrors[keyof GetPublishListErrors];
13257
+ export type GetPublishListResponses = {
13258
+ /**
13259
+ * Successful Response
13260
+ */
13261
+ 200: PublishListDetailResponse;
13262
+ };
13263
+ export type GetPublishListResponse = GetPublishListResponses[keyof GetPublishListResponses];
13264
+ export type UpdatePublishListData = {
13265
+ body: UpdatePublishListRequest;
13266
+ path: {
13267
+ /**
13268
+ * Graph Id
13269
+ */
13270
+ graph_id: string;
13271
+ /**
13272
+ * List Id
13273
+ */
13274
+ list_id: string;
13275
+ };
13276
+ query?: never;
13277
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}';
13278
+ };
13279
+ export type UpdatePublishListErrors = {
13280
+ /**
13281
+ * Validation Error
13282
+ */
13283
+ 422: HttpValidationError;
13284
+ };
13285
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
13286
+ export type UpdatePublishListResponses = {
13287
+ /**
13288
+ * Successful Response
13289
+ */
13290
+ 200: PublishListResponse;
13291
+ };
13292
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
13293
+ export type AddPublishListMembersData = {
13294
+ body: AddMembersRequest;
13295
+ path: {
13296
+ /**
13297
+ * Graph Id
13298
+ */
13299
+ graph_id: string;
13300
+ /**
13301
+ * List Id
13302
+ */
13303
+ list_id: string;
13304
+ };
13305
+ query?: never;
13306
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}/members';
13307
+ };
13308
+ export type AddPublishListMembersErrors = {
13309
+ /**
13310
+ * Validation Error
13311
+ */
13312
+ 422: HttpValidationError;
13313
+ };
13314
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
13315
+ export type AddPublishListMembersResponses = {
13316
+ /**
13317
+ * Response Addpublishlistmembers
13318
+ *
13319
+ * Successful Response
13320
+ */
13321
+ 201: Array<PublishListMemberResponse>;
13322
+ };
13323
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
13324
+ export type RemovePublishListMemberData = {
13325
+ body?: never;
13326
+ path: {
13327
+ /**
13328
+ * Graph Id
13329
+ */
13330
+ graph_id: string;
13331
+ /**
13332
+ * List Id
13333
+ */
13334
+ list_id: string;
13335
+ /**
13336
+ * Member Id
13337
+ */
13338
+ member_id: string;
13339
+ };
13340
+ query?: never;
13341
+ url: '/v1/ledger/{graph_id}/publish-lists/{list_id}/members/{member_id}';
13342
+ };
13343
+ export type RemovePublishListMemberErrors = {
13344
+ /**
13345
+ * Validation Error
13346
+ */
13347
+ 422: HttpValidationError;
13348
+ };
13349
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
13350
+ export type RemovePublishListMemberResponses = {
13351
+ /**
13352
+ * Successful Response
13353
+ */
13354
+ 204: void;
13355
+ };
13356
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
12789
13357
  export type ListPortfoliosData = {
12790
13358
  body?: never;
12791
13359
  path: {