@robosystems/client 0.4.0 → 0.5.0

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.
Files changed (56) hide show
  1. package/artifacts/InvestorClient.js +7 -7
  2. package/artifacts/InvestorClient.ts +13 -13
  3. package/artifacts/LedgerClient.d.ts +2 -2
  4. package/artifacts/LedgerClient.js +48 -48
  5. package/artifacts/LedgerClient.ts +91 -91
  6. package/client/client.gen.js +109 -126
  7. package/client/client.gen.ts +129 -139
  8. package/client/types.gen.d.ts +7 -4
  9. package/client/types.gen.ts +10 -5
  10. package/client/utils.gen.d.ts +7 -3
  11. package/client/utils.gen.js +6 -6
  12. package/client/utils.gen.ts +11 -11
  13. package/core/bodySerializer.gen.d.ts +4 -4
  14. package/core/bodySerializer.gen.ts +6 -8
  15. package/core/params.gen.js +5 -5
  16. package/core/params.gen.ts +5 -5
  17. package/core/serverSentEvents.gen.d.ts +1 -1
  18. package/core/serverSentEvents.gen.js +4 -6
  19. package/core/serverSentEvents.gen.ts +4 -5
  20. package/core/types.gen.d.ts +1 -1
  21. package/core/types.gen.ts +1 -1
  22. package/core/utils.gen.js +1 -1
  23. package/core/utils.gen.ts +1 -1
  24. package/index.ts +2 -2
  25. package/package.json +2 -2
  26. package/sdk/client/client.gen.js +109 -126
  27. package/sdk/client/client.gen.ts +129 -139
  28. package/sdk/client/types.gen.d.ts +7 -4
  29. package/sdk/client/types.gen.ts +10 -5
  30. package/sdk/client/utils.gen.d.ts +7 -3
  31. package/sdk/client/utils.gen.js +6 -6
  32. package/sdk/client/utils.gen.ts +11 -11
  33. package/sdk/core/bodySerializer.gen.d.ts +4 -4
  34. package/sdk/core/bodySerializer.gen.ts +6 -8
  35. package/sdk/core/params.gen.js +5 -5
  36. package/sdk/core/params.gen.ts +5 -5
  37. package/sdk/core/serverSentEvents.gen.d.ts +1 -1
  38. package/sdk/core/serverSentEvents.gen.js +4 -6
  39. package/sdk/core/serverSentEvents.gen.ts +4 -5
  40. package/sdk/core/types.gen.d.ts +1 -1
  41. package/sdk/core/types.gen.ts +1 -1
  42. package/sdk/core/utils.gen.js +1 -1
  43. package/sdk/core/utils.gen.ts +1 -1
  44. package/sdk/index.d.ts +2 -2
  45. package/sdk/index.js +68 -68
  46. package/sdk/index.ts +2 -2
  47. package/sdk/sdk.gen.d.ts +80 -80
  48. package/sdk/sdk.gen.js +154 -154
  49. package/sdk/sdk.gen.ts +89 -89
  50. package/sdk/types.gen.d.ts +374 -379
  51. package/sdk/types.gen.ts +379 -384
  52. package/sdk.gen.d.ts +80 -80
  53. package/sdk.gen.js +154 -154
  54. package/sdk.gen.ts +89 -89
  55. package/types.gen.d.ts +374 -379
  56. package/types.gen.ts +379 -384
@@ -2133,7 +2133,7 @@ export type CreateSubgraphRequest = {
2133
2133
  */
2134
2134
  schema_extensions?: Array<string>;
2135
2135
  /**
2136
- * Type of subgraph (currently only 'static' is supported)
2136
+ * Type of subgraph: 'static' (parent's base + extensions), 'knowledge' (knowledge-only schema), or 'empty' (bare database, no schema).
2137
2137
  */
2138
2138
  subgraph_type?: SubgraphType;
2139
2139
  /**
@@ -10969,7 +10969,7 @@ export type SearchRequest = {
10969
10969
  /**
10970
10970
  * Source Type
10971
10971
  *
10972
- * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, memory)
10972
+ * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, connection_doc)
10973
10973
  */
10974
10974
  source_type?: string | null;
10975
10975
  /**
@@ -11779,7 +11779,7 @@ export type SubgraphSummary = {
11779
11779
  *
11780
11780
  * Types of subgraphs.
11781
11781
  */
11782
- export type SubgraphType = 'static' | 'temporal' | 'versioned' | 'memory';
11782
+ export type SubgraphType = 'static' | 'knowledge' | 'empty';
11783
11783
  /**
11784
11784
  * SuccessResponse
11785
11785
  *
@@ -16844,62 +16844,6 @@ export type ExportGraphSchemaResponses = {
16844
16844
  200: SchemaExportResponse;
16845
16845
  };
16846
16846
  export type ExportGraphSchemaResponse = ExportGraphSchemaResponses[keyof ExportGraphSchemaResponses];
16847
- export type ValidateSchemaData = {
16848
- /**
16849
- * Schema definition to validate
16850
- */
16851
- body: SchemaValidationRequest;
16852
- path: {
16853
- /**
16854
- * Graph Id
16855
- */
16856
- graph_id: string;
16857
- };
16858
- query?: never;
16859
- url: '/v1/graphs/{graph_id}/schema/validate';
16860
- };
16861
- export type ValidateSchemaErrors = {
16862
- /**
16863
- * Invalid request
16864
- */
16865
- 400: ErrorResponse;
16866
- /**
16867
- * Authentication required
16868
- */
16869
- 401: ErrorResponse;
16870
- /**
16871
- * Access denied
16872
- */
16873
- 403: ErrorResponse;
16874
- /**
16875
- * Resource not found
16876
- */
16877
- 404: ErrorResponse;
16878
- /**
16879
- * Schema fails validation rules
16880
- */
16881
- 422: unknown;
16882
- /**
16883
- * Rate limit exceeded
16884
- */
16885
- 429: ErrorResponse;
16886
- /**
16887
- * Internal server error
16888
- */
16889
- 500: ErrorResponse;
16890
- /**
16891
- * Validation timed out
16892
- */
16893
- 504: unknown;
16894
- };
16895
- export type ValidateSchemaError = ValidateSchemaErrors[keyof ValidateSchemaErrors];
16896
- export type ValidateSchemaResponses = {
16897
- /**
16898
- * Successful Response
16899
- */
16900
- 200: SchemaValidationResponse;
16901
- };
16902
- export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchemaResponses];
16903
16847
  export type GetCreditSummaryData = {
16904
16848
  body?: never;
16905
16849
  path: {
@@ -17993,7 +17937,7 @@ export type RecallMemoryResponses = {
17993
17937
  200: SearchResponse;
17994
17938
  };
17995
17939
  export type RecallMemoryResponse = RecallMemoryResponses[keyof RecallMemoryResponses];
17996
- export type OpCreateSubgraphData = {
17940
+ export type CreateSubgraphData = {
17997
17941
  body: CreateSubgraphRequest;
17998
17942
  headers?: {
17999
17943
  /**
@@ -18010,7 +17954,7 @@ export type OpCreateSubgraphData = {
18010
17954
  query?: never;
18011
17955
  url: '/v1/graphs/{graph_id}/operations/create-subgraph';
18012
17956
  };
18013
- export type OpCreateSubgraphErrors = {
17957
+ export type CreateSubgraphErrors = {
18014
17958
  /**
18015
17959
  * Invalid request
18016
17960
  */
@@ -18044,15 +17988,15 @@ export type OpCreateSubgraphErrors = {
18044
17988
  */
18045
17989
  500: ErrorResponse;
18046
17990
  };
18047
- export type OpCreateSubgraphError = OpCreateSubgraphErrors[keyof OpCreateSubgraphErrors];
18048
- export type OpCreateSubgraphResponses = {
17991
+ export type CreateSubgraphError = CreateSubgraphErrors[keyof CreateSubgraphErrors];
17992
+ export type CreateSubgraphResponses = {
18049
17993
  /**
18050
17994
  * Successful Response
18051
17995
  */
18052
17996
  200: OperationEnvelope;
18053
17997
  };
18054
- export type OpCreateSubgraphResponse = OpCreateSubgraphResponses[keyof OpCreateSubgraphResponses];
18055
- export type OpDeleteSubgraphData = {
17998
+ export type CreateSubgraphResponse = CreateSubgraphResponses[keyof CreateSubgraphResponses];
17999
+ export type DeleteSubgraphData = {
18056
18000
  body: DeleteSubgraphOp;
18057
18001
  headers?: {
18058
18002
  /**
@@ -18069,7 +18013,7 @@ export type OpDeleteSubgraphData = {
18069
18013
  query?: never;
18070
18014
  url: '/v1/graphs/{graph_id}/operations/delete-subgraph';
18071
18015
  };
18072
- export type OpDeleteSubgraphErrors = {
18016
+ export type DeleteSubgraphErrors = {
18073
18017
  /**
18074
18018
  * Invalid request
18075
18019
  */
@@ -18103,15 +18047,15 @@ export type OpDeleteSubgraphErrors = {
18103
18047
  */
18104
18048
  500: ErrorResponse;
18105
18049
  };
18106
- export type OpDeleteSubgraphError = OpDeleteSubgraphErrors[keyof OpDeleteSubgraphErrors];
18107
- export type OpDeleteSubgraphResponses = {
18050
+ export type DeleteSubgraphError = DeleteSubgraphErrors[keyof DeleteSubgraphErrors];
18051
+ export type DeleteSubgraphResponses = {
18108
18052
  /**
18109
18053
  * Successful Response
18110
18054
  */
18111
18055
  200: OperationEnvelope;
18112
18056
  };
18113
- export type OpDeleteSubgraphResponse = OpDeleteSubgraphResponses[keyof OpDeleteSubgraphResponses];
18114
- export type OpDeleteGraphData = {
18057
+ export type DeleteSubgraphResponse = DeleteSubgraphResponses[keyof DeleteSubgraphResponses];
18058
+ export type DeleteGraphData = {
18115
18059
  body: DeleteGraphOp;
18116
18060
  headers?: {
18117
18061
  /**
@@ -18128,7 +18072,7 @@ export type OpDeleteGraphData = {
18128
18072
  query?: never;
18129
18073
  url: '/v1/graphs/{graph_id}/operations/delete-graph';
18130
18074
  };
18131
- export type OpDeleteGraphErrors = {
18075
+ export type DeleteGraphErrors = {
18132
18076
  /**
18133
18077
  * Invalid request
18134
18078
  */
@@ -18162,15 +18106,15 @@ export type OpDeleteGraphErrors = {
18162
18106
  */
18163
18107
  500: ErrorResponse;
18164
18108
  };
18165
- export type OpDeleteGraphError = OpDeleteGraphErrors[keyof OpDeleteGraphErrors];
18166
- export type OpDeleteGraphResponses = {
18109
+ export type DeleteGraphError = DeleteGraphErrors[keyof DeleteGraphErrors];
18110
+ export type DeleteGraphResponses = {
18167
18111
  /**
18168
18112
  * Successful Response
18169
18113
  */
18170
18114
  202: OperationEnvelope;
18171
18115
  };
18172
- export type OpDeleteGraphResponse = OpDeleteGraphResponses[keyof OpDeleteGraphResponses];
18173
- export type OpCreateBackupData = {
18116
+ export type DeleteGraphResponse = DeleteGraphResponses[keyof DeleteGraphResponses];
18117
+ export type CreateBackupData = {
18174
18118
  body: BackupCreateRequest;
18175
18119
  headers?: {
18176
18120
  /**
@@ -18187,7 +18131,7 @@ export type OpCreateBackupData = {
18187
18131
  query?: never;
18188
18132
  url: '/v1/graphs/{graph_id}/operations/create-backup';
18189
18133
  };
18190
- export type OpCreateBackupErrors = {
18134
+ export type CreateBackupErrors = {
18191
18135
  /**
18192
18136
  * Invalid request
18193
18137
  */
@@ -18221,15 +18165,15 @@ export type OpCreateBackupErrors = {
18221
18165
  */
18222
18166
  500: ErrorResponse;
18223
18167
  };
18224
- export type OpCreateBackupError = OpCreateBackupErrors[keyof OpCreateBackupErrors];
18225
- export type OpCreateBackupResponses = {
18168
+ export type CreateBackupError = CreateBackupErrors[keyof CreateBackupErrors];
18169
+ export type CreateBackupResponses = {
18226
18170
  /**
18227
18171
  * Successful Response
18228
18172
  */
18229
18173
  202: OperationEnvelope;
18230
18174
  };
18231
- export type OpCreateBackupResponse = OpCreateBackupResponses[keyof OpCreateBackupResponses];
18232
- export type OpRestoreBackupData = {
18175
+ export type CreateBackupResponse = CreateBackupResponses[keyof CreateBackupResponses];
18176
+ export type RestoreBackupData = {
18233
18177
  body: RestoreBackupOp;
18234
18178
  headers?: {
18235
18179
  /**
@@ -18246,7 +18190,7 @@ export type OpRestoreBackupData = {
18246
18190
  query?: never;
18247
18191
  url: '/v1/graphs/{graph_id}/operations/restore-backup';
18248
18192
  };
18249
- export type OpRestoreBackupErrors = {
18193
+ export type RestoreBackupErrors = {
18250
18194
  /**
18251
18195
  * Invalid request
18252
18196
  */
@@ -18280,15 +18224,15 @@ export type OpRestoreBackupErrors = {
18280
18224
  */
18281
18225
  500: ErrorResponse;
18282
18226
  };
18283
- export type OpRestoreBackupError = OpRestoreBackupErrors[keyof OpRestoreBackupErrors];
18284
- export type OpRestoreBackupResponses = {
18227
+ export type RestoreBackupError = RestoreBackupErrors[keyof RestoreBackupErrors];
18228
+ export type RestoreBackupResponses = {
18285
18229
  /**
18286
18230
  * Successful Response
18287
18231
  */
18288
18232
  202: OperationEnvelope;
18289
18233
  };
18290
- export type OpRestoreBackupResponse = OpRestoreBackupResponses[keyof OpRestoreBackupResponses];
18291
- export type OpChangeTierData = {
18234
+ export type RestoreBackupResponse = RestoreBackupResponses[keyof RestoreBackupResponses];
18235
+ export type ChangeTierData = {
18292
18236
  body: ChangeTierOp;
18293
18237
  headers?: {
18294
18238
  /**
@@ -18305,7 +18249,7 @@ export type OpChangeTierData = {
18305
18249
  query?: never;
18306
18250
  url: '/v1/graphs/{graph_id}/operations/change-tier';
18307
18251
  };
18308
- export type OpChangeTierErrors = {
18252
+ export type ChangeTierErrors = {
18309
18253
  /**
18310
18254
  * Invalid request
18311
18255
  */
@@ -18339,15 +18283,15 @@ export type OpChangeTierErrors = {
18339
18283
  */
18340
18284
  500: ErrorResponse;
18341
18285
  };
18342
- export type OpChangeTierError = OpChangeTierErrors[keyof OpChangeTierErrors];
18343
- export type OpChangeTierResponses = {
18286
+ export type ChangeTierError = ChangeTierErrors[keyof ChangeTierErrors];
18287
+ export type ChangeTierResponses = {
18344
18288
  /**
18345
18289
  * Successful Response
18346
18290
  */
18347
18291
  202: OperationEnvelope;
18348
18292
  };
18349
- export type OpChangeTierResponse = OpChangeTierResponses[keyof OpChangeTierResponses];
18350
- export type OpMaterializeData = {
18293
+ export type ChangeTierResponse = ChangeTierResponses[keyof ChangeTierResponses];
18294
+ export type MaterializeData = {
18351
18295
  body: MaterializeOp;
18352
18296
  headers?: {
18353
18297
  /**
@@ -18364,7 +18308,7 @@ export type OpMaterializeData = {
18364
18308
  query?: never;
18365
18309
  url: '/v1/graphs/{graph_id}/operations/materialize';
18366
18310
  };
18367
- export type OpMaterializeErrors = {
18311
+ export type MaterializeErrors = {
18368
18312
  /**
18369
18313
  * Invalid request
18370
18314
  */
@@ -18398,15 +18342,15 @@ export type OpMaterializeErrors = {
18398
18342
  */
18399
18343
  500: ErrorResponse;
18400
18344
  };
18401
- export type OpMaterializeError = OpMaterializeErrors[keyof OpMaterializeErrors];
18402
- export type OpMaterializeResponses = {
18345
+ export type MaterializeError = MaterializeErrors[keyof MaterializeErrors];
18346
+ export type MaterializeResponses = {
18403
18347
  /**
18404
18348
  * Successful Response
18405
18349
  */
18406
18350
  202: OperationEnvelope;
18407
18351
  };
18408
- export type OpMaterializeResponse = OpMaterializeResponses[keyof OpMaterializeResponses];
18409
- export type OpRememberData = {
18352
+ export type MaterializeResponse = MaterializeResponses[keyof MaterializeResponses];
18353
+ export type RememberData = {
18410
18354
  body: RememberOp;
18411
18355
  headers?: {
18412
18356
  /**
@@ -18423,7 +18367,7 @@ export type OpRememberData = {
18423
18367
  query?: never;
18424
18368
  url: '/v1/graphs/{graph_id}/operations/remember';
18425
18369
  };
18426
- export type OpRememberErrors = {
18370
+ export type RememberErrors = {
18427
18371
  /**
18428
18372
  * Invalid request
18429
18373
  */
@@ -18457,15 +18401,15 @@ export type OpRememberErrors = {
18457
18401
  */
18458
18402
  500: ErrorResponse;
18459
18403
  };
18460
- export type OpRememberError = OpRememberErrors[keyof OpRememberErrors];
18461
- export type OpRememberResponses = {
18404
+ export type RememberError = RememberErrors[keyof RememberErrors];
18405
+ export type RememberResponses = {
18462
18406
  /**
18463
18407
  * Successful Response
18464
18408
  */
18465
18409
  200: OperationEnvelope;
18466
18410
  };
18467
- export type OpRememberResponse = OpRememberResponses[keyof OpRememberResponses];
18468
- export type OpForgetData = {
18411
+ export type RememberResponse = RememberResponses[keyof RememberResponses];
18412
+ export type ForgetData = {
18469
18413
  body: ForgetOp;
18470
18414
  headers?: {
18471
18415
  /**
@@ -18482,7 +18426,7 @@ export type OpForgetData = {
18482
18426
  query?: never;
18483
18427
  url: '/v1/graphs/{graph_id}/operations/forget';
18484
18428
  };
18485
- export type OpForgetErrors = {
18429
+ export type ForgetErrors = {
18486
18430
  /**
18487
18431
  * Invalid request
18488
18432
  */
@@ -18516,15 +18460,15 @@ export type OpForgetErrors = {
18516
18460
  */
18517
18461
  500: ErrorResponse;
18518
18462
  };
18519
- export type OpForgetError = OpForgetErrors[keyof OpForgetErrors];
18520
- export type OpForgetResponses = {
18463
+ export type ForgetError = ForgetErrors[keyof ForgetErrors];
18464
+ export type ForgetResponses = {
18521
18465
  /**
18522
18466
  * Successful Response
18523
18467
  */
18524
18468
  200: OperationEnvelope;
18525
18469
  };
18526
- export type OpForgetResponse = OpForgetResponses[keyof OpForgetResponses];
18527
- export type OpUpdateMemoryData = {
18470
+ export type ForgetResponse = ForgetResponses[keyof ForgetResponses];
18471
+ export type UpdateMemoryData = {
18528
18472
  body: UpdateMemoryOp;
18529
18473
  headers?: {
18530
18474
  /**
@@ -18541,7 +18485,7 @@ export type OpUpdateMemoryData = {
18541
18485
  query?: never;
18542
18486
  url: '/v1/graphs/{graph_id}/operations/update-memory';
18543
18487
  };
18544
- export type OpUpdateMemoryErrors = {
18488
+ export type UpdateMemoryErrors = {
18545
18489
  /**
18546
18490
  * Invalid request
18547
18491
  */
@@ -18575,15 +18519,15 @@ export type OpUpdateMemoryErrors = {
18575
18519
  */
18576
18520
  500: ErrorResponse;
18577
18521
  };
18578
- export type OpUpdateMemoryError = OpUpdateMemoryErrors[keyof OpUpdateMemoryErrors];
18579
- export type OpUpdateMemoryResponses = {
18522
+ export type UpdateMemoryError = UpdateMemoryErrors[keyof UpdateMemoryErrors];
18523
+ export type UpdateMemoryResponses = {
18580
18524
  /**
18581
18525
  * Successful Response
18582
18526
  */
18583
18527
  200: OperationEnvelope;
18584
18528
  };
18585
- export type OpUpdateMemoryResponse = OpUpdateMemoryResponses[keyof OpUpdateMemoryResponses];
18586
- export type OpIndexDocumentData = {
18529
+ export type UpdateMemoryResponse = UpdateMemoryResponses[keyof UpdateMemoryResponses];
18530
+ export type IndexDocumentData = {
18587
18531
  body: IndexDocumentOp;
18588
18532
  headers?: {
18589
18533
  /**
@@ -18600,7 +18544,7 @@ export type OpIndexDocumentData = {
18600
18544
  query?: never;
18601
18545
  url: '/v1/graphs/{graph_id}/operations/index-document';
18602
18546
  };
18603
- export type OpIndexDocumentErrors = {
18547
+ export type IndexDocumentErrors = {
18604
18548
  /**
18605
18549
  * Invalid request
18606
18550
  */
@@ -18634,15 +18578,15 @@ export type OpIndexDocumentErrors = {
18634
18578
  */
18635
18579
  500: ErrorResponse;
18636
18580
  };
18637
- export type OpIndexDocumentError = OpIndexDocumentErrors[keyof OpIndexDocumentErrors];
18638
- export type OpIndexDocumentResponses = {
18581
+ export type IndexDocumentError = IndexDocumentErrors[keyof IndexDocumentErrors];
18582
+ export type IndexDocumentResponses = {
18639
18583
  /**
18640
18584
  * Successful Response
18641
18585
  */
18642
18586
  200: OperationEnvelope;
18643
18587
  };
18644
- export type OpIndexDocumentResponse = OpIndexDocumentResponses[keyof OpIndexDocumentResponses];
18645
- export type OpDeleteDocumentData = {
18588
+ export type IndexDocumentResponse = IndexDocumentResponses[keyof IndexDocumentResponses];
18589
+ export type DeleteDocumentData = {
18646
18590
  body: DeleteDocumentOp;
18647
18591
  headers?: {
18648
18592
  /**
@@ -18659,7 +18603,7 @@ export type OpDeleteDocumentData = {
18659
18603
  query?: never;
18660
18604
  url: '/v1/graphs/{graph_id}/operations/delete-document';
18661
18605
  };
18662
- export type OpDeleteDocumentErrors = {
18606
+ export type DeleteDocumentErrors = {
18663
18607
  /**
18664
18608
  * Invalid request
18665
18609
  */
@@ -18693,15 +18637,15 @@ export type OpDeleteDocumentErrors = {
18693
18637
  */
18694
18638
  500: ErrorResponse;
18695
18639
  };
18696
- export type OpDeleteDocumentError = OpDeleteDocumentErrors[keyof OpDeleteDocumentErrors];
18697
- export type OpDeleteDocumentResponses = {
18640
+ export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
18641
+ export type DeleteDocumentResponses = {
18698
18642
  /**
18699
18643
  * Successful Response
18700
18644
  */
18701
18645
  200: OperationEnvelope;
18702
18646
  };
18703
- export type OpDeleteDocumentResponse = OpDeleteDocumentResponses[keyof OpDeleteDocumentResponses];
18704
- export type OpCreateFileUploadData = {
18647
+ export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
18648
+ export type CreateFileUploadData = {
18705
18649
  body: FileUploadRequest;
18706
18650
  headers?: {
18707
18651
  /**
@@ -18718,7 +18662,7 @@ export type OpCreateFileUploadData = {
18718
18662
  query?: never;
18719
18663
  url: '/v1/graphs/{graph_id}/operations/create-file-upload';
18720
18664
  };
18721
- export type OpCreateFileUploadErrors = {
18665
+ export type CreateFileUploadErrors = {
18722
18666
  /**
18723
18667
  * Invalid request
18724
18668
  */
@@ -18752,15 +18696,15 @@ export type OpCreateFileUploadErrors = {
18752
18696
  */
18753
18697
  500: ErrorResponse;
18754
18698
  };
18755
- export type OpCreateFileUploadError = OpCreateFileUploadErrors[keyof OpCreateFileUploadErrors];
18756
- export type OpCreateFileUploadResponses = {
18699
+ export type CreateFileUploadError = CreateFileUploadErrors[keyof CreateFileUploadErrors];
18700
+ export type CreateFileUploadResponses = {
18757
18701
  /**
18758
18702
  * Successful Response
18759
18703
  */
18760
18704
  200: OperationEnvelope;
18761
18705
  };
18762
- export type OpCreateFileUploadResponse = OpCreateFileUploadResponses[keyof OpCreateFileUploadResponses];
18763
- export type OpIngestFileData = {
18706
+ export type CreateFileUploadResponse = CreateFileUploadResponses[keyof CreateFileUploadResponses];
18707
+ export type IngestFileData = {
18764
18708
  body: IngestFileOp;
18765
18709
  headers?: {
18766
18710
  /**
@@ -18777,7 +18721,7 @@ export type OpIngestFileData = {
18777
18721
  query?: never;
18778
18722
  url: '/v1/graphs/{graph_id}/operations/ingest-file';
18779
18723
  };
18780
- export type OpIngestFileErrors = {
18724
+ export type IngestFileErrors = {
18781
18725
  /**
18782
18726
  * Invalid request
18783
18727
  */
@@ -18811,15 +18755,15 @@ export type OpIngestFileErrors = {
18811
18755
  */
18812
18756
  500: ErrorResponse;
18813
18757
  };
18814
- export type OpIngestFileError = OpIngestFileErrors[keyof OpIngestFileErrors];
18815
- export type OpIngestFileResponses = {
18758
+ export type IngestFileError = IngestFileErrors[keyof IngestFileErrors];
18759
+ export type IngestFileResponses = {
18816
18760
  /**
18817
18761
  * Successful Response
18818
18762
  */
18819
18763
  200: OperationEnvelope;
18820
18764
  };
18821
- export type OpIngestFileResponse = OpIngestFileResponses[keyof OpIngestFileResponses];
18822
- export type OpDeleteFileData = {
18765
+ export type IngestFileResponse = IngestFileResponses[keyof IngestFileResponses];
18766
+ export type DeleteFileData = {
18823
18767
  body: DeleteFileOp;
18824
18768
  headers?: {
18825
18769
  /**
@@ -18836,7 +18780,7 @@ export type OpDeleteFileData = {
18836
18780
  query?: never;
18837
18781
  url: '/v1/graphs/{graph_id}/operations/delete-file';
18838
18782
  };
18839
- export type OpDeleteFileErrors = {
18783
+ export type DeleteFileErrors = {
18840
18784
  /**
18841
18785
  * Invalid request
18842
18786
  */
@@ -18870,14 +18814,14 @@ export type OpDeleteFileErrors = {
18870
18814
  */
18871
18815
  500: ErrorResponse;
18872
18816
  };
18873
- export type OpDeleteFileError = OpDeleteFileErrors[keyof OpDeleteFileErrors];
18874
- export type OpDeleteFileResponses = {
18817
+ export type DeleteFileError = DeleteFileErrors[keyof DeleteFileErrors];
18818
+ export type DeleteFileResponses = {
18875
18819
  /**
18876
18820
  * Successful Response
18877
18821
  */
18878
18822
  200: OperationEnvelope;
18879
18823
  };
18880
- export type OpDeleteFileResponse = OpDeleteFileResponses[keyof OpDeleteFileResponses];
18824
+ export type DeleteFileResponse = DeleteFileResponses[keyof DeleteFileResponses];
18881
18825
  export type ListFilesData = {
18882
18826
  body?: never;
18883
18827
  path: {
@@ -19255,6 +19199,57 @@ export type SelectGraphResponses = {
19255
19199
  200: SuccessResponse;
19256
19200
  };
19257
19201
  export type SelectGraphResponse = SelectGraphResponses[keyof SelectGraphResponses];
19202
+ export type ValidateSchemaData = {
19203
+ /**
19204
+ * Schema definition to validate
19205
+ */
19206
+ body: SchemaValidationRequest;
19207
+ path?: never;
19208
+ query?: never;
19209
+ url: '/v1/graphs/schema/validate';
19210
+ };
19211
+ export type ValidateSchemaErrors = {
19212
+ /**
19213
+ * Invalid request
19214
+ */
19215
+ 400: ErrorResponse;
19216
+ /**
19217
+ * Authentication required
19218
+ */
19219
+ 401: ErrorResponse;
19220
+ /**
19221
+ * Access denied
19222
+ */
19223
+ 403: ErrorResponse;
19224
+ /**
19225
+ * Resource not found
19226
+ */
19227
+ 404: ErrorResponse;
19228
+ /**
19229
+ * Schema fails validation rules
19230
+ */
19231
+ 422: unknown;
19232
+ /**
19233
+ * Rate limit exceeded
19234
+ */
19235
+ 429: ErrorResponse;
19236
+ /**
19237
+ * Internal server error
19238
+ */
19239
+ 500: ErrorResponse;
19240
+ /**
19241
+ * Validation timed out
19242
+ */
19243
+ 504: unknown;
19244
+ };
19245
+ export type ValidateSchemaError = ValidateSchemaErrors[keyof ValidateSchemaErrors];
19246
+ export type ValidateSchemaResponses = {
19247
+ /**
19248
+ * Successful Response
19249
+ */
19250
+ 200: SchemaValidationResponse;
19251
+ };
19252
+ export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchemaResponses];
19258
19253
  export type GetServiceOfferingsData = {
19259
19254
  body?: never;
19260
19255
  path?: never;
@@ -19997,7 +19992,7 @@ export type HandleHttpPostExtensionsGraphIdGraphqlPostResponses = {
19997
19992
  */
19998
19993
  200: unknown;
19999
19994
  };
20000
- export type OpInitializeLedgerData = {
19995
+ export type InitializeLedgerData = {
20001
19996
  body: InitializeLedgerRequest;
20002
19997
  headers?: {
20003
19998
  /**
@@ -20014,7 +20009,7 @@ export type OpInitializeLedgerData = {
20014
20009
  query?: never;
20015
20010
  url: '/extensions/roboledger/{graph_id}/operations/initialize';
20016
20011
  };
20017
- export type OpInitializeLedgerErrors = {
20012
+ export type InitializeLedgerErrors = {
20018
20013
  /**
20019
20014
  * Invalid request
20020
20015
  */
@@ -20048,15 +20043,15 @@ export type OpInitializeLedgerErrors = {
20048
20043
  */
20049
20044
  500: ErrorResponse;
20050
20045
  };
20051
- export type OpInitializeLedgerError = OpInitializeLedgerErrors[keyof OpInitializeLedgerErrors];
20052
- export type OpInitializeLedgerResponses = {
20046
+ export type InitializeLedgerError = InitializeLedgerErrors[keyof InitializeLedgerErrors];
20047
+ export type InitializeLedgerResponses = {
20053
20048
  /**
20054
20049
  * Successful Response
20055
20050
  */
20056
20051
  200: OperationEnvelopeInitializeLedgerResponse;
20057
20052
  };
20058
- export type OpInitializeLedgerResponse = OpInitializeLedgerResponses[keyof OpInitializeLedgerResponses];
20059
- export type OpUpdateEntityData = {
20053
+ export type InitializeLedgerResponse2 = InitializeLedgerResponses[keyof InitializeLedgerResponses];
20054
+ export type UpdateEntityData = {
20060
20055
  body: UpdateEntityRequest;
20061
20056
  headers?: {
20062
20057
  /**
@@ -20073,7 +20068,7 @@ export type OpUpdateEntityData = {
20073
20068
  query?: never;
20074
20069
  url: '/extensions/roboledger/{graph_id}/operations/update-entity';
20075
20070
  };
20076
- export type OpUpdateEntityErrors = {
20071
+ export type UpdateEntityErrors = {
20077
20072
  /**
20078
20073
  * Invalid request
20079
20074
  */
@@ -20107,15 +20102,15 @@ export type OpUpdateEntityErrors = {
20107
20102
  */
20108
20103
  500: ErrorResponse;
20109
20104
  };
20110
- export type OpUpdateEntityError = OpUpdateEntityErrors[keyof OpUpdateEntityErrors];
20111
- export type OpUpdateEntityResponses = {
20105
+ export type UpdateEntityError = UpdateEntityErrors[keyof UpdateEntityErrors];
20106
+ export type UpdateEntityResponses = {
20112
20107
  /**
20113
20108
  * Successful Response
20114
20109
  */
20115
20110
  200: OperationEnvelopeLedgerEntityResponse;
20116
20111
  };
20117
- export type OpUpdateEntityResponse = OpUpdateEntityResponses[keyof OpUpdateEntityResponses];
20118
- export type OpChangeReportingStyleData = {
20112
+ export type UpdateEntityResponse = UpdateEntityResponses[keyof UpdateEntityResponses];
20113
+ export type ChangeReportingStyleData = {
20119
20114
  body: ChangeReportingStyleRequest;
20120
20115
  headers?: {
20121
20116
  /**
@@ -20132,7 +20127,7 @@ export type OpChangeReportingStyleData = {
20132
20127
  query?: never;
20133
20128
  url: '/extensions/roboledger/{graph_id}/operations/change-reporting-style';
20134
20129
  };
20135
- export type OpChangeReportingStyleErrors = {
20130
+ export type ChangeReportingStyleErrors = {
20136
20131
  /**
20137
20132
  * Invalid request
20138
20133
  */
@@ -20166,15 +20161,15 @@ export type OpChangeReportingStyleErrors = {
20166
20161
  */
20167
20162
  500: ErrorResponse;
20168
20163
  };
20169
- export type OpChangeReportingStyleError = OpChangeReportingStyleErrors[keyof OpChangeReportingStyleErrors];
20170
- export type OpChangeReportingStyleResponses = {
20164
+ export type ChangeReportingStyleError = ChangeReportingStyleErrors[keyof ChangeReportingStyleErrors];
20165
+ export type ChangeReportingStyleResponses = {
20171
20166
  /**
20172
20167
  * Successful Response
20173
20168
  */
20174
20169
  200: OperationEnvelopeChangeReportingStyleResponse;
20175
20170
  };
20176
- export type OpChangeReportingStyleResponse = OpChangeReportingStyleResponses[keyof OpChangeReportingStyleResponses];
20177
- export type OpCreateTaxonomyBlockData = {
20171
+ export type ChangeReportingStyleResponse2 = ChangeReportingStyleResponses[keyof ChangeReportingStyleResponses];
20172
+ export type CreateTaxonomyBlockData = {
20178
20173
  body: CreateTaxonomyBlockRequest;
20179
20174
  headers?: {
20180
20175
  /**
@@ -20191,7 +20186,7 @@ export type OpCreateTaxonomyBlockData = {
20191
20186
  query?: never;
20192
20187
  url: '/extensions/roboledger/{graph_id}/operations/create-taxonomy-block';
20193
20188
  };
20194
- export type OpCreateTaxonomyBlockErrors = {
20189
+ export type CreateTaxonomyBlockErrors = {
20195
20190
  /**
20196
20191
  * Invalid request
20197
20192
  */
@@ -20225,15 +20220,15 @@ export type OpCreateTaxonomyBlockErrors = {
20225
20220
  */
20226
20221
  500: ErrorResponse;
20227
20222
  };
20228
- export type OpCreateTaxonomyBlockError = OpCreateTaxonomyBlockErrors[keyof OpCreateTaxonomyBlockErrors];
20229
- export type OpCreateTaxonomyBlockResponses = {
20223
+ export type CreateTaxonomyBlockError = CreateTaxonomyBlockErrors[keyof CreateTaxonomyBlockErrors];
20224
+ export type CreateTaxonomyBlockResponses = {
20230
20225
  /**
20231
20226
  * Successful Response
20232
20227
  */
20233
20228
  200: OperationEnvelopeTaxonomyBlockEnvelope;
20234
20229
  };
20235
- export type OpCreateTaxonomyBlockResponse = OpCreateTaxonomyBlockResponses[keyof OpCreateTaxonomyBlockResponses];
20236
- export type OpUpdateTaxonomyBlockData = {
20230
+ export type CreateTaxonomyBlockResponse = CreateTaxonomyBlockResponses[keyof CreateTaxonomyBlockResponses];
20231
+ export type UpdateTaxonomyBlockData = {
20237
20232
  body: UpdateTaxonomyBlockRequest;
20238
20233
  headers?: {
20239
20234
  /**
@@ -20250,7 +20245,7 @@ export type OpUpdateTaxonomyBlockData = {
20250
20245
  query?: never;
20251
20246
  url: '/extensions/roboledger/{graph_id}/operations/update-taxonomy-block';
20252
20247
  };
20253
- export type OpUpdateTaxonomyBlockErrors = {
20248
+ export type UpdateTaxonomyBlockErrors = {
20254
20249
  /**
20255
20250
  * Invalid request
20256
20251
  */
@@ -20284,15 +20279,15 @@ export type OpUpdateTaxonomyBlockErrors = {
20284
20279
  */
20285
20280
  500: ErrorResponse;
20286
20281
  };
20287
- export type OpUpdateTaxonomyBlockError = OpUpdateTaxonomyBlockErrors[keyof OpUpdateTaxonomyBlockErrors];
20288
- export type OpUpdateTaxonomyBlockResponses = {
20282
+ export type UpdateTaxonomyBlockError = UpdateTaxonomyBlockErrors[keyof UpdateTaxonomyBlockErrors];
20283
+ export type UpdateTaxonomyBlockResponses = {
20289
20284
  /**
20290
20285
  * Successful Response
20291
20286
  */
20292
20287
  200: OperationEnvelopeTaxonomyBlockEnvelope;
20293
20288
  };
20294
- export type OpUpdateTaxonomyBlockResponse = OpUpdateTaxonomyBlockResponses[keyof OpUpdateTaxonomyBlockResponses];
20295
- export type OpDeleteTaxonomyBlockData = {
20289
+ export type UpdateTaxonomyBlockResponse = UpdateTaxonomyBlockResponses[keyof UpdateTaxonomyBlockResponses];
20290
+ export type DeleteTaxonomyBlockData = {
20296
20291
  body: DeleteTaxonomyBlockRequest;
20297
20292
  headers?: {
20298
20293
  /**
@@ -20309,7 +20304,7 @@ export type OpDeleteTaxonomyBlockData = {
20309
20304
  query?: never;
20310
20305
  url: '/extensions/roboledger/{graph_id}/operations/delete-taxonomy-block';
20311
20306
  };
20312
- export type OpDeleteTaxonomyBlockErrors = {
20307
+ export type DeleteTaxonomyBlockErrors = {
20313
20308
  /**
20314
20309
  * Invalid request
20315
20310
  */
@@ -20343,15 +20338,15 @@ export type OpDeleteTaxonomyBlockErrors = {
20343
20338
  */
20344
20339
  500: ErrorResponse;
20345
20340
  };
20346
- export type OpDeleteTaxonomyBlockError = OpDeleteTaxonomyBlockErrors[keyof OpDeleteTaxonomyBlockErrors];
20347
- export type OpDeleteTaxonomyBlockResponses = {
20341
+ export type DeleteTaxonomyBlockError = DeleteTaxonomyBlockErrors[keyof DeleteTaxonomyBlockErrors];
20342
+ export type DeleteTaxonomyBlockResponses = {
20348
20343
  /**
20349
20344
  * Successful Response
20350
20345
  */
20351
20346
  200: OperationEnvelopeDeleteTaxonomyBlockResponse;
20352
20347
  };
20353
- export type OpDeleteTaxonomyBlockResponse = OpDeleteTaxonomyBlockResponses[keyof OpDeleteTaxonomyBlockResponses];
20354
- export type OpLinkEntityTaxonomyData = {
20348
+ export type DeleteTaxonomyBlockResponse2 = DeleteTaxonomyBlockResponses[keyof DeleteTaxonomyBlockResponses];
20349
+ export type LinkEntityTaxonomyData = {
20355
20350
  body: LinkEntityTaxonomyRequest;
20356
20351
  headers?: {
20357
20352
  /**
@@ -20368,7 +20363,7 @@ export type OpLinkEntityTaxonomyData = {
20368
20363
  query?: never;
20369
20364
  url: '/extensions/roboledger/{graph_id}/operations/link-entity-taxonomy';
20370
20365
  };
20371
- export type OpLinkEntityTaxonomyErrors = {
20366
+ export type LinkEntityTaxonomyErrors = {
20372
20367
  /**
20373
20368
  * Invalid request
20374
20369
  */
@@ -20402,15 +20397,15 @@ export type OpLinkEntityTaxonomyErrors = {
20402
20397
  */
20403
20398
  500: ErrorResponse;
20404
20399
  };
20405
- export type OpLinkEntityTaxonomyError = OpLinkEntityTaxonomyErrors[keyof OpLinkEntityTaxonomyErrors];
20406
- export type OpLinkEntityTaxonomyResponses = {
20400
+ export type LinkEntityTaxonomyError = LinkEntityTaxonomyErrors[keyof LinkEntityTaxonomyErrors];
20401
+ export type LinkEntityTaxonomyResponses = {
20407
20402
  /**
20408
20403
  * Successful Response
20409
20404
  */
20410
20405
  200: OperationEnvelopeEntityTaxonomyResponse;
20411
20406
  };
20412
- export type OpLinkEntityTaxonomyResponse = OpLinkEntityTaxonomyResponses[keyof OpLinkEntityTaxonomyResponses];
20413
- export type OpCreateMappingAssociationData = {
20407
+ export type LinkEntityTaxonomyResponse = LinkEntityTaxonomyResponses[keyof LinkEntityTaxonomyResponses];
20408
+ export type CreateMappingAssociationData = {
20414
20409
  body: CreateMappingAssociationOperation;
20415
20410
  headers?: {
20416
20411
  /**
@@ -20427,7 +20422,7 @@ export type OpCreateMappingAssociationData = {
20427
20422
  query?: never;
20428
20423
  url: '/extensions/roboledger/{graph_id}/operations/create-mapping-association';
20429
20424
  };
20430
- export type OpCreateMappingAssociationErrors = {
20425
+ export type CreateMappingAssociationErrors = {
20431
20426
  /**
20432
20427
  * Invalid request
20433
20428
  */
@@ -20461,15 +20456,15 @@ export type OpCreateMappingAssociationErrors = {
20461
20456
  */
20462
20457
  500: ErrorResponse;
20463
20458
  };
20464
- export type OpCreateMappingAssociationError = OpCreateMappingAssociationErrors[keyof OpCreateMappingAssociationErrors];
20465
- export type OpCreateMappingAssociationResponses = {
20459
+ export type CreateMappingAssociationError = CreateMappingAssociationErrors[keyof CreateMappingAssociationErrors];
20460
+ export type CreateMappingAssociationResponses = {
20466
20461
  /**
20467
20462
  * Successful Response
20468
20463
  */
20469
20464
  200: OperationEnvelopeAssociationResponse;
20470
20465
  };
20471
- export type OpCreateMappingAssociationResponse = OpCreateMappingAssociationResponses[keyof OpCreateMappingAssociationResponses];
20472
- export type OpDeleteMappingAssociationData = {
20466
+ export type CreateMappingAssociationResponse = CreateMappingAssociationResponses[keyof CreateMappingAssociationResponses];
20467
+ export type DeleteMappingAssociationData = {
20473
20468
  body: DeleteMappingAssociationOperation;
20474
20469
  headers?: {
20475
20470
  /**
@@ -20486,7 +20481,7 @@ export type OpDeleteMappingAssociationData = {
20486
20481
  query?: never;
20487
20482
  url: '/extensions/roboledger/{graph_id}/operations/delete-mapping-association';
20488
20483
  };
20489
- export type OpDeleteMappingAssociationErrors = {
20484
+ export type DeleteMappingAssociationErrors = {
20490
20485
  /**
20491
20486
  * Invalid request
20492
20487
  */
@@ -20520,15 +20515,15 @@ export type OpDeleteMappingAssociationErrors = {
20520
20515
  */
20521
20516
  500: ErrorResponse;
20522
20517
  };
20523
- export type OpDeleteMappingAssociationError = OpDeleteMappingAssociationErrors[keyof OpDeleteMappingAssociationErrors];
20524
- export type OpDeleteMappingAssociationResponses = {
20518
+ export type DeleteMappingAssociationError = DeleteMappingAssociationErrors[keyof DeleteMappingAssociationErrors];
20519
+ export type DeleteMappingAssociationResponses = {
20525
20520
  /**
20526
20521
  * Successful Response
20527
20522
  */
20528
20523
  200: OperationEnvelopeDeleteResult;
20529
20524
  };
20530
- export type OpDeleteMappingAssociationResponse = OpDeleteMappingAssociationResponses[keyof OpDeleteMappingAssociationResponses];
20531
- export type OpAutoMapElementsData = {
20525
+ export type DeleteMappingAssociationResponse = DeleteMappingAssociationResponses[keyof DeleteMappingAssociationResponses];
20526
+ export type AutoMapElementsData = {
20532
20527
  body: AutoMapElementsOperation;
20533
20528
  headers?: {
20534
20529
  /**
@@ -20545,7 +20540,7 @@ export type OpAutoMapElementsData = {
20545
20540
  query?: never;
20546
20541
  url: '/extensions/roboledger/{graph_id}/operations/auto-map-elements';
20547
20542
  };
20548
- export type OpAutoMapElementsErrors = {
20543
+ export type AutoMapElementsErrors = {
20549
20544
  /**
20550
20545
  * Invalid request
20551
20546
  */
@@ -20579,15 +20574,15 @@ export type OpAutoMapElementsErrors = {
20579
20574
  */
20580
20575
  500: ErrorResponse;
20581
20576
  };
20582
- export type OpAutoMapElementsError = OpAutoMapElementsErrors[keyof OpAutoMapElementsErrors];
20583
- export type OpAutoMapElementsResponses = {
20577
+ export type AutoMapElementsError = AutoMapElementsErrors[keyof AutoMapElementsErrors];
20578
+ export type AutoMapElementsResponses = {
20584
20579
  /**
20585
20580
  * Successful Response
20586
20581
  */
20587
20582
  202: OperationEnvelope;
20588
20583
  };
20589
- export type OpAutoMapElementsResponse = OpAutoMapElementsResponses[keyof OpAutoMapElementsResponses];
20590
- export type OpCreateInformationBlockData = {
20584
+ export type AutoMapElementsResponse = AutoMapElementsResponses[keyof AutoMapElementsResponses];
20585
+ export type CreateInformationBlockData = {
20591
20586
  body: CreateInformationBlockRequest;
20592
20587
  headers?: {
20593
20588
  /**
@@ -20604,7 +20599,7 @@ export type OpCreateInformationBlockData = {
20604
20599
  query?: never;
20605
20600
  url: '/extensions/roboledger/{graph_id}/operations/create-information-block';
20606
20601
  };
20607
- export type OpCreateInformationBlockErrors = {
20602
+ export type CreateInformationBlockErrors = {
20608
20603
  /**
20609
20604
  * Invalid request
20610
20605
  */
@@ -20638,15 +20633,15 @@ export type OpCreateInformationBlockErrors = {
20638
20633
  */
20639
20634
  500: ErrorResponse;
20640
20635
  };
20641
- export type OpCreateInformationBlockError = OpCreateInformationBlockErrors[keyof OpCreateInformationBlockErrors];
20642
- export type OpCreateInformationBlockResponses = {
20636
+ export type CreateInformationBlockError = CreateInformationBlockErrors[keyof CreateInformationBlockErrors];
20637
+ export type CreateInformationBlockResponses = {
20643
20638
  /**
20644
20639
  * Successful Response
20645
20640
  */
20646
20641
  200: OperationEnvelopeInformationBlockEnvelope;
20647
20642
  };
20648
- export type OpCreateInformationBlockResponse = OpCreateInformationBlockResponses[keyof OpCreateInformationBlockResponses];
20649
- export type OpUpdateInformationBlockData = {
20643
+ export type CreateInformationBlockResponse = CreateInformationBlockResponses[keyof CreateInformationBlockResponses];
20644
+ export type UpdateInformationBlockData = {
20650
20645
  body: UpdateInformationBlockRequest;
20651
20646
  headers?: {
20652
20647
  /**
@@ -20663,7 +20658,7 @@ export type OpUpdateInformationBlockData = {
20663
20658
  query?: never;
20664
20659
  url: '/extensions/roboledger/{graph_id}/operations/update-information-block';
20665
20660
  };
20666
- export type OpUpdateInformationBlockErrors = {
20661
+ export type UpdateInformationBlockErrors = {
20667
20662
  /**
20668
20663
  * Invalid request
20669
20664
  */
@@ -20697,15 +20692,15 @@ export type OpUpdateInformationBlockErrors = {
20697
20692
  */
20698
20693
  500: ErrorResponse;
20699
20694
  };
20700
- export type OpUpdateInformationBlockError = OpUpdateInformationBlockErrors[keyof OpUpdateInformationBlockErrors];
20701
- export type OpUpdateInformationBlockResponses = {
20695
+ export type UpdateInformationBlockError = UpdateInformationBlockErrors[keyof UpdateInformationBlockErrors];
20696
+ export type UpdateInformationBlockResponses = {
20702
20697
  /**
20703
20698
  * Successful Response
20704
20699
  */
20705
20700
  200: OperationEnvelopeInformationBlockEnvelope;
20706
20701
  };
20707
- export type OpUpdateInformationBlockResponse = OpUpdateInformationBlockResponses[keyof OpUpdateInformationBlockResponses];
20708
- export type OpDeleteInformationBlockData = {
20702
+ export type UpdateInformationBlockResponse = UpdateInformationBlockResponses[keyof UpdateInformationBlockResponses];
20703
+ export type DeleteInformationBlockData = {
20709
20704
  body: DeleteInformationBlockRequest;
20710
20705
  headers?: {
20711
20706
  /**
@@ -20722,7 +20717,7 @@ export type OpDeleteInformationBlockData = {
20722
20717
  query?: never;
20723
20718
  url: '/extensions/roboledger/{graph_id}/operations/delete-information-block';
20724
20719
  };
20725
- export type OpDeleteInformationBlockErrors = {
20720
+ export type DeleteInformationBlockErrors = {
20726
20721
  /**
20727
20722
  * Invalid request
20728
20723
  */
@@ -20756,15 +20751,15 @@ export type OpDeleteInformationBlockErrors = {
20756
20751
  */
20757
20752
  500: ErrorResponse;
20758
20753
  };
20759
- export type OpDeleteInformationBlockError = OpDeleteInformationBlockErrors[keyof OpDeleteInformationBlockErrors];
20760
- export type OpDeleteInformationBlockResponses = {
20754
+ export type DeleteInformationBlockError = DeleteInformationBlockErrors[keyof DeleteInformationBlockErrors];
20755
+ export type DeleteInformationBlockResponses = {
20761
20756
  /**
20762
20757
  * Successful Response
20763
20758
  */
20764
20759
  200: OperationEnvelopeDeleteInformationBlockResponse;
20765
20760
  };
20766
- export type OpDeleteInformationBlockResponse = OpDeleteInformationBlockResponses[keyof OpDeleteInformationBlockResponses];
20767
- export type OpEvaluateRulesData = {
20761
+ export type DeleteInformationBlockResponse2 = DeleteInformationBlockResponses[keyof DeleteInformationBlockResponses];
20762
+ export type EvaluateRulesData = {
20768
20763
  body: EvaluateRulesRequest;
20769
20764
  headers?: {
20770
20765
  /**
@@ -20781,7 +20776,7 @@ export type OpEvaluateRulesData = {
20781
20776
  query?: never;
20782
20777
  url: '/extensions/roboledger/{graph_id}/operations/evaluate-rules';
20783
20778
  };
20784
- export type OpEvaluateRulesErrors = {
20779
+ export type EvaluateRulesErrors = {
20785
20780
  /**
20786
20781
  * Invalid request
20787
20782
  */
@@ -20815,15 +20810,15 @@ export type OpEvaluateRulesErrors = {
20815
20810
  */
20816
20811
  500: ErrorResponse;
20817
20812
  };
20818
- export type OpEvaluateRulesError = OpEvaluateRulesErrors[keyof OpEvaluateRulesErrors];
20819
- export type OpEvaluateRulesResponses = {
20813
+ export type EvaluateRulesError = EvaluateRulesErrors[keyof EvaluateRulesErrors];
20814
+ export type EvaluateRulesResponses = {
20820
20815
  /**
20821
20816
  * Successful Response
20822
20817
  */
20823
20818
  200: OperationEnvelopeEvaluateRulesResponse;
20824
20819
  };
20825
- export type OpEvaluateRulesResponse = OpEvaluateRulesResponses[keyof OpEvaluateRulesResponses];
20826
- export type OpCreateAgentData = {
20820
+ export type EvaluateRulesResponse2 = EvaluateRulesResponses[keyof EvaluateRulesResponses];
20821
+ export type CreateAgentData = {
20827
20822
  body: CreateAgentRequest;
20828
20823
  headers?: {
20829
20824
  /**
@@ -20840,7 +20835,7 @@ export type OpCreateAgentData = {
20840
20835
  query?: never;
20841
20836
  url: '/extensions/roboledger/{graph_id}/operations/create-agent';
20842
20837
  };
20843
- export type OpCreateAgentErrors = {
20838
+ export type CreateAgentErrors = {
20844
20839
  /**
20845
20840
  * Invalid request
20846
20841
  */
@@ -20874,15 +20869,15 @@ export type OpCreateAgentErrors = {
20874
20869
  */
20875
20870
  500: ErrorResponse;
20876
20871
  };
20877
- export type OpCreateAgentError = OpCreateAgentErrors[keyof OpCreateAgentErrors];
20878
- export type OpCreateAgentResponses = {
20872
+ export type CreateAgentError = CreateAgentErrors[keyof CreateAgentErrors];
20873
+ export type CreateAgentResponses = {
20879
20874
  /**
20880
20875
  * Successful Response
20881
20876
  */
20882
20877
  200: OperationEnvelopeLedgerAgentResponse;
20883
20878
  };
20884
- export type OpCreateAgentResponse = OpCreateAgentResponses[keyof OpCreateAgentResponses];
20885
- export type OpUpdateAgentData = {
20879
+ export type CreateAgentResponse = CreateAgentResponses[keyof CreateAgentResponses];
20880
+ export type UpdateAgentData = {
20886
20881
  body: UpdateAgentRequest;
20887
20882
  headers?: {
20888
20883
  /**
@@ -20899,7 +20894,7 @@ export type OpUpdateAgentData = {
20899
20894
  query?: never;
20900
20895
  url: '/extensions/roboledger/{graph_id}/operations/update-agent';
20901
20896
  };
20902
- export type OpUpdateAgentErrors = {
20897
+ export type UpdateAgentErrors = {
20903
20898
  /**
20904
20899
  * Invalid request
20905
20900
  */
@@ -20933,15 +20928,15 @@ export type OpUpdateAgentErrors = {
20933
20928
  */
20934
20929
  500: ErrorResponse;
20935
20930
  };
20936
- export type OpUpdateAgentError = OpUpdateAgentErrors[keyof OpUpdateAgentErrors];
20937
- export type OpUpdateAgentResponses = {
20931
+ export type UpdateAgentError = UpdateAgentErrors[keyof UpdateAgentErrors];
20932
+ export type UpdateAgentResponses = {
20938
20933
  /**
20939
20934
  * Successful Response
20940
20935
  */
20941
20936
  200: OperationEnvelopeLedgerAgentResponse;
20942
20937
  };
20943
- export type OpUpdateAgentResponse = OpUpdateAgentResponses[keyof OpUpdateAgentResponses];
20944
- export type OpCreateEventBlockData = {
20938
+ export type UpdateAgentResponse = UpdateAgentResponses[keyof UpdateAgentResponses];
20939
+ export type CreateEventBlockData = {
20945
20940
  body: CreateEventBlockRequest;
20946
20941
  headers?: {
20947
20942
  /**
@@ -20958,7 +20953,7 @@ export type OpCreateEventBlockData = {
20958
20953
  query?: never;
20959
20954
  url: '/extensions/roboledger/{graph_id}/operations/create-event-block';
20960
20955
  };
20961
- export type OpCreateEventBlockErrors = {
20956
+ export type CreateEventBlockErrors = {
20962
20957
  /**
20963
20958
  * Invalid request
20964
20959
  */
@@ -20992,15 +20987,15 @@ export type OpCreateEventBlockErrors = {
20992
20987
  */
20993
20988
  500: ErrorResponse;
20994
20989
  };
20995
- export type OpCreateEventBlockError = OpCreateEventBlockErrors[keyof OpCreateEventBlockErrors];
20996
- export type OpCreateEventBlockResponses = {
20990
+ export type CreateEventBlockError = CreateEventBlockErrors[keyof CreateEventBlockErrors];
20991
+ export type CreateEventBlockResponses = {
20997
20992
  /**
20998
20993
  * Successful Response
20999
20994
  */
21000
20995
  200: OperationEnvelopeEventBlockEnvelope;
21001
20996
  };
21002
- export type OpCreateEventBlockResponse = OpCreateEventBlockResponses[keyof OpCreateEventBlockResponses];
21003
- export type OpUpdateEventBlockData = {
20997
+ export type CreateEventBlockResponse = CreateEventBlockResponses[keyof CreateEventBlockResponses];
20998
+ export type UpdateEventBlockData = {
21004
20999
  body: UpdateEventBlockRequest;
21005
21000
  headers?: {
21006
21001
  /**
@@ -21017,7 +21012,7 @@ export type OpUpdateEventBlockData = {
21017
21012
  query?: never;
21018
21013
  url: '/extensions/roboledger/{graph_id}/operations/update-event-block';
21019
21014
  };
21020
- export type OpUpdateEventBlockErrors = {
21015
+ export type UpdateEventBlockErrors = {
21021
21016
  /**
21022
21017
  * Invalid request
21023
21018
  */
@@ -21051,15 +21046,15 @@ export type OpUpdateEventBlockErrors = {
21051
21046
  */
21052
21047
  500: ErrorResponse;
21053
21048
  };
21054
- export type OpUpdateEventBlockError = OpUpdateEventBlockErrors[keyof OpUpdateEventBlockErrors];
21055
- export type OpUpdateEventBlockResponses = {
21049
+ export type UpdateEventBlockError = UpdateEventBlockErrors[keyof UpdateEventBlockErrors];
21050
+ export type UpdateEventBlockResponses = {
21056
21051
  /**
21057
21052
  * Successful Response
21058
21053
  */
21059
21054
  200: OperationEnvelopeEventBlockEnvelope;
21060
21055
  };
21061
- export type OpUpdateEventBlockResponse = OpUpdateEventBlockResponses[keyof OpUpdateEventBlockResponses];
21062
- export type OpExecuteEventBlockData = {
21056
+ export type UpdateEventBlockResponse = UpdateEventBlockResponses[keyof UpdateEventBlockResponses];
21057
+ export type ExecuteEventBlockData = {
21063
21058
  body: ExecuteEventBlockRequest;
21064
21059
  headers?: {
21065
21060
  /**
@@ -21076,7 +21071,7 @@ export type OpExecuteEventBlockData = {
21076
21071
  query?: never;
21077
21072
  url: '/extensions/roboledger/{graph_id}/operations/execute-event-block';
21078
21073
  };
21079
- export type OpExecuteEventBlockErrors = {
21074
+ export type ExecuteEventBlockErrors = {
21080
21075
  /**
21081
21076
  * Invalid request
21082
21077
  */
@@ -21110,15 +21105,15 @@ export type OpExecuteEventBlockErrors = {
21110
21105
  */
21111
21106
  500: ErrorResponse;
21112
21107
  };
21113
- export type OpExecuteEventBlockError = OpExecuteEventBlockErrors[keyof OpExecuteEventBlockErrors];
21114
- export type OpExecuteEventBlockResponses = {
21108
+ export type ExecuteEventBlockError = ExecuteEventBlockErrors[keyof ExecuteEventBlockErrors];
21109
+ export type ExecuteEventBlockResponses = {
21115
21110
  /**
21116
21111
  * Successful Response
21117
21112
  */
21118
21113
  200: OperationEnvelopeExecuteEventBlockResponse;
21119
21114
  };
21120
- export type OpExecuteEventBlockResponse = OpExecuteEventBlockResponses[keyof OpExecuteEventBlockResponses];
21121
- export type OpCreateEventHandlerData = {
21115
+ export type ExecuteEventBlockResponse2 = ExecuteEventBlockResponses[keyof ExecuteEventBlockResponses];
21116
+ export type CreateEventHandlerData = {
21122
21117
  body: CreateEventHandlerRequest;
21123
21118
  headers?: {
21124
21119
  /**
@@ -21135,7 +21130,7 @@ export type OpCreateEventHandlerData = {
21135
21130
  query?: never;
21136
21131
  url: '/extensions/roboledger/{graph_id}/operations/create-event-handler';
21137
21132
  };
21138
- export type OpCreateEventHandlerErrors = {
21133
+ export type CreateEventHandlerErrors = {
21139
21134
  /**
21140
21135
  * Invalid request
21141
21136
  */
@@ -21169,15 +21164,15 @@ export type OpCreateEventHandlerErrors = {
21169
21164
  */
21170
21165
  500: ErrorResponse;
21171
21166
  };
21172
- export type OpCreateEventHandlerError = OpCreateEventHandlerErrors[keyof OpCreateEventHandlerErrors];
21173
- export type OpCreateEventHandlerResponses = {
21167
+ export type CreateEventHandlerError = CreateEventHandlerErrors[keyof CreateEventHandlerErrors];
21168
+ export type CreateEventHandlerResponses = {
21174
21169
  /**
21175
21170
  * Successful Response
21176
21171
  */
21177
21172
  200: OperationEnvelopeEventHandlerResponse;
21178
21173
  };
21179
- export type OpCreateEventHandlerResponse = OpCreateEventHandlerResponses[keyof OpCreateEventHandlerResponses];
21180
- export type OpUpdateEventHandlerData = {
21174
+ export type CreateEventHandlerResponse = CreateEventHandlerResponses[keyof CreateEventHandlerResponses];
21175
+ export type UpdateEventHandlerData = {
21181
21176
  body: UpdateEventHandlerRequest;
21182
21177
  headers?: {
21183
21178
  /**
@@ -21194,7 +21189,7 @@ export type OpUpdateEventHandlerData = {
21194
21189
  query?: never;
21195
21190
  url: '/extensions/roboledger/{graph_id}/operations/update-event-handler';
21196
21191
  };
21197
- export type OpUpdateEventHandlerErrors = {
21192
+ export type UpdateEventHandlerErrors = {
21198
21193
  /**
21199
21194
  * Invalid request
21200
21195
  */
@@ -21228,15 +21223,15 @@ export type OpUpdateEventHandlerErrors = {
21228
21223
  */
21229
21224
  500: ErrorResponse;
21230
21225
  };
21231
- export type OpUpdateEventHandlerError = OpUpdateEventHandlerErrors[keyof OpUpdateEventHandlerErrors];
21232
- export type OpUpdateEventHandlerResponses = {
21226
+ export type UpdateEventHandlerError = UpdateEventHandlerErrors[keyof UpdateEventHandlerErrors];
21227
+ export type UpdateEventHandlerResponses = {
21233
21228
  /**
21234
21229
  * Successful Response
21235
21230
  */
21236
21231
  200: OperationEnvelopeEventHandlerResponse;
21237
21232
  };
21238
- export type OpUpdateEventHandlerResponse = OpUpdateEventHandlerResponses[keyof OpUpdateEventHandlerResponses];
21239
- export type OpPreviewEventBlockData = {
21233
+ export type UpdateEventHandlerResponse = UpdateEventHandlerResponses[keyof UpdateEventHandlerResponses];
21234
+ export type PreviewEventBlockData = {
21240
21235
  body: CreateEventBlockRequest;
21241
21236
  headers?: {
21242
21237
  /**
@@ -21253,7 +21248,7 @@ export type OpPreviewEventBlockData = {
21253
21248
  query?: never;
21254
21249
  url: '/extensions/roboledger/{graph_id}/operations/preview-event-block';
21255
21250
  };
21256
- export type OpPreviewEventBlockErrors = {
21251
+ export type PreviewEventBlockErrors = {
21257
21252
  /**
21258
21253
  * Invalid request
21259
21254
  */
@@ -21287,15 +21282,15 @@ export type OpPreviewEventBlockErrors = {
21287
21282
  */
21288
21283
  500: ErrorResponse;
21289
21284
  };
21290
- export type OpPreviewEventBlockError = OpPreviewEventBlockErrors[keyof OpPreviewEventBlockErrors];
21291
- export type OpPreviewEventBlockResponses = {
21285
+ export type PreviewEventBlockError = PreviewEventBlockErrors[keyof PreviewEventBlockErrors];
21286
+ export type PreviewEventBlockResponses = {
21292
21287
  /**
21293
21288
  * Successful Response
21294
21289
  */
21295
21290
  200: OperationEnvelopePreviewEventBlockResponse;
21296
21291
  };
21297
- export type OpPreviewEventBlockResponse = OpPreviewEventBlockResponses[keyof OpPreviewEventBlockResponses];
21298
- export type OpUpdateJournalEntryData = {
21292
+ export type PreviewEventBlockResponse2 = PreviewEventBlockResponses[keyof PreviewEventBlockResponses];
21293
+ export type UpdateJournalEntryData = {
21299
21294
  body: UpdateJournalEntryRequest;
21300
21295
  headers?: {
21301
21296
  /**
@@ -21312,7 +21307,7 @@ export type OpUpdateJournalEntryData = {
21312
21307
  query?: never;
21313
21308
  url: '/extensions/roboledger/{graph_id}/operations/update-journal-entry';
21314
21309
  };
21315
- export type OpUpdateJournalEntryErrors = {
21310
+ export type UpdateJournalEntryErrors = {
21316
21311
  /**
21317
21312
  * Invalid request
21318
21313
  */
@@ -21346,15 +21341,15 @@ export type OpUpdateJournalEntryErrors = {
21346
21341
  */
21347
21342
  500: ErrorResponse;
21348
21343
  };
21349
- export type OpUpdateJournalEntryError = OpUpdateJournalEntryErrors[keyof OpUpdateJournalEntryErrors];
21350
- export type OpUpdateJournalEntryResponses = {
21344
+ export type UpdateJournalEntryError = UpdateJournalEntryErrors[keyof UpdateJournalEntryErrors];
21345
+ export type UpdateJournalEntryResponses = {
21351
21346
  /**
21352
21347
  * Successful Response
21353
21348
  */
21354
21349
  200: OperationEnvelopeJournalEntryResponse;
21355
21350
  };
21356
- export type OpUpdateJournalEntryResponse = OpUpdateJournalEntryResponses[keyof OpUpdateJournalEntryResponses];
21357
- export type OpDeleteJournalEntryData = {
21351
+ export type UpdateJournalEntryResponse = UpdateJournalEntryResponses[keyof UpdateJournalEntryResponses];
21352
+ export type DeleteJournalEntryData = {
21358
21353
  body: DeleteJournalEntryRequest;
21359
21354
  headers?: {
21360
21355
  /**
@@ -21371,7 +21366,7 @@ export type OpDeleteJournalEntryData = {
21371
21366
  query?: never;
21372
21367
  url: '/extensions/roboledger/{graph_id}/operations/delete-journal-entry';
21373
21368
  };
21374
- export type OpDeleteJournalEntryErrors = {
21369
+ export type DeleteJournalEntryErrors = {
21375
21370
  /**
21376
21371
  * Invalid request
21377
21372
  */
@@ -21405,15 +21400,15 @@ export type OpDeleteJournalEntryErrors = {
21405
21400
  */
21406
21401
  500: ErrorResponse;
21407
21402
  };
21408
- export type OpDeleteJournalEntryError = OpDeleteJournalEntryErrors[keyof OpDeleteJournalEntryErrors];
21409
- export type OpDeleteJournalEntryResponses = {
21403
+ export type DeleteJournalEntryError = DeleteJournalEntryErrors[keyof DeleteJournalEntryErrors];
21404
+ export type DeleteJournalEntryResponses = {
21410
21405
  /**
21411
21406
  * Successful Response
21412
21407
  */
21413
21408
  200: OperationEnvelopeDeleteResult;
21414
21409
  };
21415
- export type OpDeleteJournalEntryResponse = OpDeleteJournalEntryResponses[keyof OpDeleteJournalEntryResponses];
21416
- export type OpPromoteObligationsData = {
21410
+ export type DeleteJournalEntryResponse = DeleteJournalEntryResponses[keyof DeleteJournalEntryResponses];
21411
+ export type PromoteObligationsData = {
21417
21412
  body: PromoteObligationsRequest;
21418
21413
  headers?: {
21419
21414
  /**
@@ -21430,7 +21425,7 @@ export type OpPromoteObligationsData = {
21430
21425
  query?: never;
21431
21426
  url: '/extensions/roboledger/{graph_id}/operations/promote-obligations';
21432
21427
  };
21433
- export type OpPromoteObligationsErrors = {
21428
+ export type PromoteObligationsErrors = {
21434
21429
  /**
21435
21430
  * Invalid request
21436
21431
  */
@@ -21464,15 +21459,15 @@ export type OpPromoteObligationsErrors = {
21464
21459
  */
21465
21460
  500: ErrorResponse;
21466
21461
  };
21467
- export type OpPromoteObligationsError = OpPromoteObligationsErrors[keyof OpPromoteObligationsErrors];
21468
- export type OpPromoteObligationsResponses = {
21462
+ export type PromoteObligationsError = PromoteObligationsErrors[keyof PromoteObligationsErrors];
21463
+ export type PromoteObligationsResponses = {
21469
21464
  /**
21470
21465
  * Successful Response
21471
21466
  */
21472
21467
  200: OperationEnvelopePromoteObligationsResponse;
21473
21468
  };
21474
- export type OpPromoteObligationsResponse = OpPromoteObligationsResponses[keyof OpPromoteObligationsResponses];
21475
- export type OpRebuildScheduleData = {
21469
+ export type PromoteObligationsResponse2 = PromoteObligationsResponses[keyof PromoteObligationsResponses];
21470
+ export type RebuildScheduleData = {
21476
21471
  body: RebuildScheduleRequest;
21477
21472
  headers?: {
21478
21473
  /**
@@ -21489,7 +21484,7 @@ export type OpRebuildScheduleData = {
21489
21484
  query?: never;
21490
21485
  url: '/extensions/roboledger/{graph_id}/operations/rebuild-schedule';
21491
21486
  };
21492
- export type OpRebuildScheduleErrors = {
21487
+ export type RebuildScheduleErrors = {
21493
21488
  /**
21494
21489
  * Invalid request
21495
21490
  */
@@ -21523,15 +21518,15 @@ export type OpRebuildScheduleErrors = {
21523
21518
  */
21524
21519
  500: ErrorResponse;
21525
21520
  };
21526
- export type OpRebuildScheduleError = OpRebuildScheduleErrors[keyof OpRebuildScheduleErrors];
21527
- export type OpRebuildScheduleResponses = {
21521
+ export type RebuildScheduleError = RebuildScheduleErrors[keyof RebuildScheduleErrors];
21522
+ export type RebuildScheduleResponses = {
21528
21523
  /**
21529
21524
  * Successful Response
21530
21525
  */
21531
21526
  200: OperationEnvelopeScheduleCreatedResponse;
21532
21527
  };
21533
- export type OpRebuildScheduleResponse = OpRebuildScheduleResponses[keyof OpRebuildScheduleResponses];
21534
- export type OpSetCloseTargetData = {
21528
+ export type RebuildScheduleResponse = RebuildScheduleResponses[keyof RebuildScheduleResponses];
21529
+ export type SetCloseTargetData = {
21535
21530
  body: SetCloseTargetOperation;
21536
21531
  headers?: {
21537
21532
  /**
@@ -21548,7 +21543,7 @@ export type OpSetCloseTargetData = {
21548
21543
  query?: never;
21549
21544
  url: '/extensions/roboledger/{graph_id}/operations/set-close-target';
21550
21545
  };
21551
- export type OpSetCloseTargetErrors = {
21546
+ export type SetCloseTargetErrors = {
21552
21547
  /**
21553
21548
  * Invalid request
21554
21549
  */
@@ -21582,15 +21577,15 @@ export type OpSetCloseTargetErrors = {
21582
21577
  */
21583
21578
  500: ErrorResponse;
21584
21579
  };
21585
- export type OpSetCloseTargetError = OpSetCloseTargetErrors[keyof OpSetCloseTargetErrors];
21586
- export type OpSetCloseTargetResponses = {
21580
+ export type SetCloseTargetError = SetCloseTargetErrors[keyof SetCloseTargetErrors];
21581
+ export type SetCloseTargetResponses = {
21587
21582
  /**
21588
21583
  * Successful Response
21589
21584
  */
21590
21585
  200: OperationEnvelopeFiscalCalendarResponse;
21591
21586
  };
21592
- export type OpSetCloseTargetResponse = OpSetCloseTargetResponses[keyof OpSetCloseTargetResponses];
21593
- export type OpClosePeriodData = {
21587
+ export type SetCloseTargetResponse = SetCloseTargetResponses[keyof SetCloseTargetResponses];
21588
+ export type ClosePeriodData = {
21594
21589
  body: ClosePeriodOperation;
21595
21590
  headers?: {
21596
21591
  /**
@@ -21607,7 +21602,7 @@ export type OpClosePeriodData = {
21607
21602
  query?: never;
21608
21603
  url: '/extensions/roboledger/{graph_id}/operations/close-period';
21609
21604
  };
21610
- export type OpClosePeriodErrors = {
21605
+ export type ClosePeriodErrors = {
21611
21606
  /**
21612
21607
  * Invalid request
21613
21608
  */
@@ -21641,15 +21636,15 @@ export type OpClosePeriodErrors = {
21641
21636
  */
21642
21637
  500: ErrorResponse;
21643
21638
  };
21644
- export type OpClosePeriodError = OpClosePeriodErrors[keyof OpClosePeriodErrors];
21645
- export type OpClosePeriodResponses = {
21639
+ export type ClosePeriodError = ClosePeriodErrors[keyof ClosePeriodErrors];
21640
+ export type ClosePeriodResponses = {
21646
21641
  /**
21647
21642
  * Successful Response
21648
21643
  */
21649
21644
  200: OperationEnvelopeClosePeriodResponse;
21650
21645
  };
21651
- export type OpClosePeriodResponse = OpClosePeriodResponses[keyof OpClosePeriodResponses];
21652
- export type OpReopenPeriodData = {
21646
+ export type ClosePeriodResponse2 = ClosePeriodResponses[keyof ClosePeriodResponses];
21647
+ export type ReopenPeriodData = {
21653
21648
  body: ReopenPeriodOperation;
21654
21649
  headers?: {
21655
21650
  /**
@@ -21666,7 +21661,7 @@ export type OpReopenPeriodData = {
21666
21661
  query?: never;
21667
21662
  url: '/extensions/roboledger/{graph_id}/operations/reopen-period';
21668
21663
  };
21669
- export type OpReopenPeriodErrors = {
21664
+ export type ReopenPeriodErrors = {
21670
21665
  /**
21671
21666
  * Invalid request
21672
21667
  */
@@ -21700,15 +21695,15 @@ export type OpReopenPeriodErrors = {
21700
21695
  */
21701
21696
  500: ErrorResponse;
21702
21697
  };
21703
- export type OpReopenPeriodError = OpReopenPeriodErrors[keyof OpReopenPeriodErrors];
21704
- export type OpReopenPeriodResponses = {
21698
+ export type ReopenPeriodError = ReopenPeriodErrors[keyof ReopenPeriodErrors];
21699
+ export type ReopenPeriodResponses = {
21705
21700
  /**
21706
21701
  * Successful Response
21707
21702
  */
21708
21703
  200: OperationEnvelopeFiscalCalendarResponse;
21709
21704
  };
21710
- export type OpReopenPeriodResponse = OpReopenPeriodResponses[keyof OpReopenPeriodResponses];
21711
- export type OpCreateReportData = {
21705
+ export type ReopenPeriodResponse = ReopenPeriodResponses[keyof ReopenPeriodResponses];
21706
+ export type CreateReportData = {
21712
21707
  body: CreateReportRequest;
21713
21708
  headers?: {
21714
21709
  /**
@@ -21725,7 +21720,7 @@ export type OpCreateReportData = {
21725
21720
  query?: never;
21726
21721
  url: '/extensions/roboledger/{graph_id}/operations/create-report';
21727
21722
  };
21728
- export type OpCreateReportErrors = {
21723
+ export type CreateReportErrors = {
21729
21724
  /**
21730
21725
  * Invalid request
21731
21726
  */
@@ -21759,15 +21754,15 @@ export type OpCreateReportErrors = {
21759
21754
  */
21760
21755
  500: ErrorResponse;
21761
21756
  };
21762
- export type OpCreateReportError = OpCreateReportErrors[keyof OpCreateReportErrors];
21763
- export type OpCreateReportResponses = {
21757
+ export type CreateReportError = CreateReportErrors[keyof CreateReportErrors];
21758
+ export type CreateReportResponses = {
21764
21759
  /**
21765
21760
  * Successful Response
21766
21761
  */
21767
21762
  200: OperationEnvelopeReportResponse;
21768
21763
  };
21769
- export type OpCreateReportResponse = OpCreateReportResponses[keyof OpCreateReportResponses];
21770
- export type OpRegenerateReportData = {
21764
+ export type CreateReportResponse = CreateReportResponses[keyof CreateReportResponses];
21765
+ export type RegenerateReportData = {
21771
21766
  body: RegenerateReportOperation;
21772
21767
  headers?: {
21773
21768
  /**
@@ -21784,7 +21779,7 @@ export type OpRegenerateReportData = {
21784
21779
  query?: never;
21785
21780
  url: '/extensions/roboledger/{graph_id}/operations/regenerate-report';
21786
21781
  };
21787
- export type OpRegenerateReportErrors = {
21782
+ export type RegenerateReportErrors = {
21788
21783
  /**
21789
21784
  * Invalid request
21790
21785
  */
@@ -21818,15 +21813,15 @@ export type OpRegenerateReportErrors = {
21818
21813
  */
21819
21814
  500: ErrorResponse;
21820
21815
  };
21821
- export type OpRegenerateReportError = OpRegenerateReportErrors[keyof OpRegenerateReportErrors];
21822
- export type OpRegenerateReportResponses = {
21816
+ export type RegenerateReportError = RegenerateReportErrors[keyof RegenerateReportErrors];
21817
+ export type RegenerateReportResponses = {
21823
21818
  /**
21824
21819
  * Successful Response
21825
21820
  */
21826
21821
  200: OperationEnvelopeReportResponse;
21827
21822
  };
21828
- export type OpRegenerateReportResponse = OpRegenerateReportResponses[keyof OpRegenerateReportResponses];
21829
- export type OpDeleteReportData = {
21823
+ export type RegenerateReportResponse = RegenerateReportResponses[keyof RegenerateReportResponses];
21824
+ export type DeleteReportData = {
21830
21825
  body: DeleteReportOperation;
21831
21826
  headers?: {
21832
21827
  /**
@@ -21843,7 +21838,7 @@ export type OpDeleteReportData = {
21843
21838
  query?: never;
21844
21839
  url: '/extensions/roboledger/{graph_id}/operations/delete-report';
21845
21840
  };
21846
- export type OpDeleteReportErrors = {
21841
+ export type DeleteReportErrors = {
21847
21842
  /**
21848
21843
  * Invalid request
21849
21844
  */
@@ -21877,15 +21872,15 @@ export type OpDeleteReportErrors = {
21877
21872
  */
21878
21873
  500: ErrorResponse;
21879
21874
  };
21880
- export type OpDeleteReportError = OpDeleteReportErrors[keyof OpDeleteReportErrors];
21881
- export type OpDeleteReportResponses = {
21875
+ export type DeleteReportError = DeleteReportErrors[keyof DeleteReportErrors];
21876
+ export type DeleteReportResponses = {
21882
21877
  /**
21883
21878
  * Successful Response
21884
21879
  */
21885
21880
  200: OperationEnvelopeDeleteResult;
21886
21881
  };
21887
- export type OpDeleteReportResponse = OpDeleteReportResponses[keyof OpDeleteReportResponses];
21888
- export type OpShareReportData = {
21882
+ export type DeleteReportResponse = DeleteReportResponses[keyof DeleteReportResponses];
21883
+ export type ShareReportData = {
21889
21884
  body: ShareReportOperation;
21890
21885
  headers?: {
21891
21886
  /**
@@ -21902,7 +21897,7 @@ export type OpShareReportData = {
21902
21897
  query?: never;
21903
21898
  url: '/extensions/roboledger/{graph_id}/operations/share-report';
21904
21899
  };
21905
- export type OpShareReportErrors = {
21900
+ export type ShareReportErrors = {
21906
21901
  /**
21907
21902
  * Invalid request
21908
21903
  */
@@ -21936,15 +21931,15 @@ export type OpShareReportErrors = {
21936
21931
  */
21937
21932
  500: ErrorResponse;
21938
21933
  };
21939
- export type OpShareReportError = OpShareReportErrors[keyof OpShareReportErrors];
21940
- export type OpShareReportResponses = {
21934
+ export type ShareReportError = ShareReportErrors[keyof ShareReportErrors];
21935
+ export type ShareReportResponses = {
21941
21936
  /**
21942
21937
  * Successful Response
21943
21938
  */
21944
21939
  200: OperationEnvelopeShareReportResponse;
21945
21940
  };
21946
- export type OpShareReportResponse = OpShareReportResponses[keyof OpShareReportResponses];
21947
- export type OpFileReportData = {
21941
+ export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
21942
+ export type FileReportData = {
21948
21943
  body: FileReportRequest;
21949
21944
  headers?: {
21950
21945
  /**
@@ -21961,7 +21956,7 @@ export type OpFileReportData = {
21961
21956
  query?: never;
21962
21957
  url: '/extensions/roboledger/{graph_id}/operations/file-report';
21963
21958
  };
21964
- export type OpFileReportErrors = {
21959
+ export type FileReportErrors = {
21965
21960
  /**
21966
21961
  * Invalid request
21967
21962
  */
@@ -21995,15 +21990,15 @@ export type OpFileReportErrors = {
21995
21990
  */
21996
21991
  500: ErrorResponse;
21997
21992
  };
21998
- export type OpFileReportError = OpFileReportErrors[keyof OpFileReportErrors];
21999
- export type OpFileReportResponses = {
21993
+ export type FileReportError = FileReportErrors[keyof FileReportErrors];
21994
+ export type FileReportResponses = {
22000
21995
  /**
22001
21996
  * Successful Response
22002
21997
  */
22003
21998
  200: OperationEnvelopeReportResponse;
22004
21999
  };
22005
- export type OpFileReportResponse = OpFileReportResponses[keyof OpFileReportResponses];
22006
- export type OpTransitionFilingStatusData = {
22000
+ export type FileReportResponse = FileReportResponses[keyof FileReportResponses];
22001
+ export type TransitionFilingStatusData = {
22007
22002
  body: TransitionFilingStatusRequest;
22008
22003
  headers?: {
22009
22004
  /**
@@ -22020,7 +22015,7 @@ export type OpTransitionFilingStatusData = {
22020
22015
  query?: never;
22021
22016
  url: '/extensions/roboledger/{graph_id}/operations/transition-filing-status';
22022
22017
  };
22023
- export type OpTransitionFilingStatusErrors = {
22018
+ export type TransitionFilingStatusErrors = {
22024
22019
  /**
22025
22020
  * Invalid request
22026
22021
  */
@@ -22054,15 +22049,15 @@ export type OpTransitionFilingStatusErrors = {
22054
22049
  */
22055
22050
  500: ErrorResponse;
22056
22051
  };
22057
- export type OpTransitionFilingStatusError = OpTransitionFilingStatusErrors[keyof OpTransitionFilingStatusErrors];
22058
- export type OpTransitionFilingStatusResponses = {
22052
+ export type TransitionFilingStatusError = TransitionFilingStatusErrors[keyof TransitionFilingStatusErrors];
22053
+ export type TransitionFilingStatusResponses = {
22059
22054
  /**
22060
22055
  * Successful Response
22061
22056
  */
22062
22057
  200: OperationEnvelopeReportResponse;
22063
22058
  };
22064
- export type OpTransitionFilingStatusResponse = OpTransitionFilingStatusResponses[keyof OpTransitionFilingStatusResponses];
22065
- export type OpCreatePublishListData = {
22059
+ export type TransitionFilingStatusResponse = TransitionFilingStatusResponses[keyof TransitionFilingStatusResponses];
22060
+ export type CreatePublishListData = {
22066
22061
  body: CreatePublishListRequest;
22067
22062
  headers?: {
22068
22063
  /**
@@ -22079,7 +22074,7 @@ export type OpCreatePublishListData = {
22079
22074
  query?: never;
22080
22075
  url: '/extensions/roboledger/{graph_id}/operations/create-publish-list';
22081
22076
  };
22082
- export type OpCreatePublishListErrors = {
22077
+ export type CreatePublishListErrors = {
22083
22078
  /**
22084
22079
  * Invalid request
22085
22080
  */
@@ -22113,15 +22108,15 @@ export type OpCreatePublishListErrors = {
22113
22108
  */
22114
22109
  500: ErrorResponse;
22115
22110
  };
22116
- export type OpCreatePublishListError = OpCreatePublishListErrors[keyof OpCreatePublishListErrors];
22117
- export type OpCreatePublishListResponses = {
22111
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
22112
+ export type CreatePublishListResponses = {
22118
22113
  /**
22119
22114
  * Successful Response
22120
22115
  */
22121
22116
  200: OperationEnvelopePublishListResponse;
22122
22117
  };
22123
- export type OpCreatePublishListResponse = OpCreatePublishListResponses[keyof OpCreatePublishListResponses];
22124
- export type OpUpdatePublishListData = {
22118
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
22119
+ export type UpdatePublishListData = {
22125
22120
  body: UpdatePublishListOperation;
22126
22121
  headers?: {
22127
22122
  /**
@@ -22138,7 +22133,7 @@ export type OpUpdatePublishListData = {
22138
22133
  query?: never;
22139
22134
  url: '/extensions/roboledger/{graph_id}/operations/update-publish-list';
22140
22135
  };
22141
- export type OpUpdatePublishListErrors = {
22136
+ export type UpdatePublishListErrors = {
22142
22137
  /**
22143
22138
  * Invalid request
22144
22139
  */
@@ -22172,15 +22167,15 @@ export type OpUpdatePublishListErrors = {
22172
22167
  */
22173
22168
  500: ErrorResponse;
22174
22169
  };
22175
- export type OpUpdatePublishListError = OpUpdatePublishListErrors[keyof OpUpdatePublishListErrors];
22176
- export type OpUpdatePublishListResponses = {
22170
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
22171
+ export type UpdatePublishListResponses = {
22177
22172
  /**
22178
22173
  * Successful Response
22179
22174
  */
22180
22175
  200: OperationEnvelopePublishListResponse;
22181
22176
  };
22182
- export type OpUpdatePublishListResponse = OpUpdatePublishListResponses[keyof OpUpdatePublishListResponses];
22183
- export type OpDeletePublishListData = {
22177
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
22178
+ export type DeletePublishListData = {
22184
22179
  body: DeletePublishListOperation;
22185
22180
  headers?: {
22186
22181
  /**
@@ -22197,7 +22192,7 @@ export type OpDeletePublishListData = {
22197
22192
  query?: never;
22198
22193
  url: '/extensions/roboledger/{graph_id}/operations/delete-publish-list';
22199
22194
  };
22200
- export type OpDeletePublishListErrors = {
22195
+ export type DeletePublishListErrors = {
22201
22196
  /**
22202
22197
  * Invalid request
22203
22198
  */
@@ -22231,15 +22226,15 @@ export type OpDeletePublishListErrors = {
22231
22226
  */
22232
22227
  500: ErrorResponse;
22233
22228
  };
22234
- export type OpDeletePublishListError = OpDeletePublishListErrors[keyof OpDeletePublishListErrors];
22235
- export type OpDeletePublishListResponses = {
22229
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
22230
+ export type DeletePublishListResponses = {
22236
22231
  /**
22237
22232
  * Successful Response
22238
22233
  */
22239
22234
  200: OperationEnvelopeDeleteResult;
22240
22235
  };
22241
- export type OpDeletePublishListResponse = OpDeletePublishListResponses[keyof OpDeletePublishListResponses];
22242
- export type OpAddPublishListMembersData = {
22236
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
22237
+ export type AddPublishListMembersData = {
22243
22238
  body: AddPublishListMembersOperation;
22244
22239
  headers?: {
22245
22240
  /**
@@ -22256,7 +22251,7 @@ export type OpAddPublishListMembersData = {
22256
22251
  query?: never;
22257
22252
  url: '/extensions/roboledger/{graph_id}/operations/add-publish-list-members';
22258
22253
  };
22259
- export type OpAddPublishListMembersErrors = {
22254
+ export type AddPublishListMembersErrors = {
22260
22255
  /**
22261
22256
  * Invalid request
22262
22257
  */
@@ -22290,15 +22285,15 @@ export type OpAddPublishListMembersErrors = {
22290
22285
  */
22291
22286
  500: ErrorResponse;
22292
22287
  };
22293
- export type OpAddPublishListMembersError = OpAddPublishListMembersErrors[keyof OpAddPublishListMembersErrors];
22294
- export type OpAddPublishListMembersResponses = {
22288
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
22289
+ export type AddPublishListMembersResponses = {
22295
22290
  /**
22296
22291
  * Successful Response
22297
22292
  */
22298
22293
  200: OperationEnvelopeListPublishListMemberResponse;
22299
22294
  };
22300
- export type OpAddPublishListMembersResponse = OpAddPublishListMembersResponses[keyof OpAddPublishListMembersResponses];
22301
- export type OpRemovePublishListMemberData = {
22295
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
22296
+ export type RemovePublishListMemberData = {
22302
22297
  body: RemovePublishListMemberOperation;
22303
22298
  headers?: {
22304
22299
  /**
@@ -22315,7 +22310,7 @@ export type OpRemovePublishListMemberData = {
22315
22310
  query?: never;
22316
22311
  url: '/extensions/roboledger/{graph_id}/operations/remove-publish-list-member';
22317
22312
  };
22318
- export type OpRemovePublishListMemberErrors = {
22313
+ export type RemovePublishListMemberErrors = {
22319
22314
  /**
22320
22315
  * Invalid request
22321
22316
  */
@@ -22349,15 +22344,15 @@ export type OpRemovePublishListMemberErrors = {
22349
22344
  */
22350
22345
  500: ErrorResponse;
22351
22346
  };
22352
- export type OpRemovePublishListMemberError = OpRemovePublishListMemberErrors[keyof OpRemovePublishListMemberErrors];
22353
- export type OpRemovePublishListMemberResponses = {
22347
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
22348
+ export type RemovePublishListMemberResponses = {
22354
22349
  /**
22355
22350
  * Successful Response
22356
22351
  */
22357
22352
  200: OperationEnvelopeDeleteResult;
22358
22353
  };
22359
- export type OpRemovePublishListMemberResponse = OpRemovePublishListMemberResponses[keyof OpRemovePublishListMemberResponses];
22360
- export type OpLiveFinancialStatementData = {
22354
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
22355
+ export type LiveFinancialStatementData = {
22361
22356
  body: LiveFinancialStatementRequest;
22362
22357
  headers?: {
22363
22358
  /**
@@ -22374,7 +22369,7 @@ export type OpLiveFinancialStatementData = {
22374
22369
  query?: never;
22375
22370
  url: '/extensions/roboledger/{graph_id}/operations/live-financial-statement';
22376
22371
  };
22377
- export type OpLiveFinancialStatementErrors = {
22372
+ export type LiveFinancialStatementErrors = {
22378
22373
  /**
22379
22374
  * Invalid request
22380
22375
  */
@@ -22408,15 +22403,15 @@ export type OpLiveFinancialStatementErrors = {
22408
22403
  */
22409
22404
  500: ErrorResponse;
22410
22405
  };
22411
- export type OpLiveFinancialStatementError = OpLiveFinancialStatementErrors[keyof OpLiveFinancialStatementErrors];
22412
- export type OpLiveFinancialStatementResponses = {
22406
+ export type LiveFinancialStatementError = LiveFinancialStatementErrors[keyof LiveFinancialStatementErrors];
22407
+ export type LiveFinancialStatementResponses = {
22413
22408
  /**
22414
22409
  * Successful Response
22415
22410
  */
22416
22411
  200: OperationEnvelope;
22417
22412
  };
22418
- export type OpLiveFinancialStatementResponse = OpLiveFinancialStatementResponses[keyof OpLiveFinancialStatementResponses];
22419
- export type OpBuildFactGridData = {
22413
+ export type LiveFinancialStatementResponse = LiveFinancialStatementResponses[keyof LiveFinancialStatementResponses];
22414
+ export type BuildFactGridData = {
22420
22415
  body: CreateViewRequest;
22421
22416
  headers?: {
22422
22417
  /**
@@ -22433,7 +22428,7 @@ export type OpBuildFactGridData = {
22433
22428
  query?: never;
22434
22429
  url: '/extensions/roboledger/{graph_id}/operations/build-fact-grid';
22435
22430
  };
22436
- export type OpBuildFactGridErrors = {
22431
+ export type BuildFactGridErrors = {
22437
22432
  /**
22438
22433
  * Invalid request
22439
22434
  */
@@ -22467,15 +22462,15 @@ export type OpBuildFactGridErrors = {
22467
22462
  */
22468
22463
  500: ErrorResponse;
22469
22464
  };
22470
- export type OpBuildFactGridError = OpBuildFactGridErrors[keyof OpBuildFactGridErrors];
22471
- export type OpBuildFactGridResponses = {
22465
+ export type BuildFactGridError = BuildFactGridErrors[keyof BuildFactGridErrors];
22466
+ export type BuildFactGridResponses = {
22472
22467
  /**
22473
22468
  * Successful Response
22474
22469
  */
22475
22470
  200: OperationEnvelope;
22476
22471
  };
22477
- export type OpBuildFactGridResponse = OpBuildFactGridResponses[keyof OpBuildFactGridResponses];
22478
- export type OpFinancialStatementAnalysisData = {
22472
+ export type BuildFactGridResponse = BuildFactGridResponses[keyof BuildFactGridResponses];
22473
+ export type FinancialStatementAnalysisData = {
22479
22474
  body: FinancialStatementAnalysisRequest;
22480
22475
  headers?: {
22481
22476
  /**
@@ -22492,7 +22487,7 @@ export type OpFinancialStatementAnalysisData = {
22492
22487
  query?: never;
22493
22488
  url: '/extensions/roboledger/{graph_id}/operations/financial-statement-analysis';
22494
22489
  };
22495
- export type OpFinancialStatementAnalysisErrors = {
22490
+ export type FinancialStatementAnalysisErrors = {
22496
22491
  /**
22497
22492
  * Invalid request
22498
22493
  */
@@ -22526,15 +22521,15 @@ export type OpFinancialStatementAnalysisErrors = {
22526
22521
  */
22527
22522
  500: ErrorResponse;
22528
22523
  };
22529
- export type OpFinancialStatementAnalysisError = OpFinancialStatementAnalysisErrors[keyof OpFinancialStatementAnalysisErrors];
22530
- export type OpFinancialStatementAnalysisResponses = {
22524
+ export type FinancialStatementAnalysisError = FinancialStatementAnalysisErrors[keyof FinancialStatementAnalysisErrors];
22525
+ export type FinancialStatementAnalysisResponses = {
22531
22526
  /**
22532
22527
  * Successful Response
22533
22528
  */
22534
22529
  200: OperationEnvelope;
22535
22530
  };
22536
- export type OpFinancialStatementAnalysisResponse = OpFinancialStatementAnalysisResponses[keyof OpFinancialStatementAnalysisResponses];
22537
- export type OpCreatePortfolioBlockData = {
22531
+ export type FinancialStatementAnalysisResponse = FinancialStatementAnalysisResponses[keyof FinancialStatementAnalysisResponses];
22532
+ export type CreatePortfolioBlockData = {
22538
22533
  body: CreatePortfolioBlockRequest;
22539
22534
  headers?: {
22540
22535
  /**
@@ -22551,7 +22546,7 @@ export type OpCreatePortfolioBlockData = {
22551
22546
  query?: never;
22552
22547
  url: '/extensions/roboinvestor/{graph_id}/operations/create-portfolio-block';
22553
22548
  };
22554
- export type OpCreatePortfolioBlockErrors = {
22549
+ export type CreatePortfolioBlockErrors = {
22555
22550
  /**
22556
22551
  * Invalid request
22557
22552
  */
@@ -22585,15 +22580,15 @@ export type OpCreatePortfolioBlockErrors = {
22585
22580
  */
22586
22581
  500: ErrorResponse;
22587
22582
  };
22588
- export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
22589
- export type OpCreatePortfolioBlockResponses = {
22583
+ export type CreatePortfolioBlockError = CreatePortfolioBlockErrors[keyof CreatePortfolioBlockErrors];
22584
+ export type CreatePortfolioBlockResponses = {
22590
22585
  /**
22591
22586
  * Successful Response
22592
22587
  */
22593
22588
  200: OperationEnvelopePortfolioBlockEnvelope;
22594
22589
  };
22595
- export type OpCreatePortfolioBlockResponse = OpCreatePortfolioBlockResponses[keyof OpCreatePortfolioBlockResponses];
22596
- export type OpUpdatePortfolioBlockData = {
22590
+ export type CreatePortfolioBlockResponse = CreatePortfolioBlockResponses[keyof CreatePortfolioBlockResponses];
22591
+ export type UpdatePortfolioBlockData = {
22597
22592
  body: UpdatePortfolioBlockOperation;
22598
22593
  headers?: {
22599
22594
  /**
@@ -22610,7 +22605,7 @@ export type OpUpdatePortfolioBlockData = {
22610
22605
  query?: never;
22611
22606
  url: '/extensions/roboinvestor/{graph_id}/operations/update-portfolio-block';
22612
22607
  };
22613
- export type OpUpdatePortfolioBlockErrors = {
22608
+ export type UpdatePortfolioBlockErrors = {
22614
22609
  /**
22615
22610
  * Invalid request
22616
22611
  */
@@ -22644,15 +22639,15 @@ export type OpUpdatePortfolioBlockErrors = {
22644
22639
  */
22645
22640
  500: ErrorResponse;
22646
22641
  };
22647
- export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
22648
- export type OpUpdatePortfolioBlockResponses = {
22642
+ export type UpdatePortfolioBlockError = UpdatePortfolioBlockErrors[keyof UpdatePortfolioBlockErrors];
22643
+ export type UpdatePortfolioBlockResponses = {
22649
22644
  /**
22650
22645
  * Successful Response
22651
22646
  */
22652
22647
  200: OperationEnvelopePortfolioBlockEnvelope;
22653
22648
  };
22654
- export type OpUpdatePortfolioBlockResponse = OpUpdatePortfolioBlockResponses[keyof OpUpdatePortfolioBlockResponses];
22655
- export type OpDeletePortfolioBlockData = {
22649
+ export type UpdatePortfolioBlockResponse = UpdatePortfolioBlockResponses[keyof UpdatePortfolioBlockResponses];
22650
+ export type DeletePortfolioBlockData = {
22656
22651
  body: DeletePortfolioBlockOperation;
22657
22652
  headers?: {
22658
22653
  /**
@@ -22669,7 +22664,7 @@ export type OpDeletePortfolioBlockData = {
22669
22664
  query?: never;
22670
22665
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-portfolio-block';
22671
22666
  };
22672
- export type OpDeletePortfolioBlockErrors = {
22667
+ export type DeletePortfolioBlockErrors = {
22673
22668
  /**
22674
22669
  * Invalid request
22675
22670
  */
@@ -22703,15 +22698,15 @@ export type OpDeletePortfolioBlockErrors = {
22703
22698
  */
22704
22699
  500: ErrorResponse;
22705
22700
  };
22706
- export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
22707
- export type OpDeletePortfolioBlockResponses = {
22701
+ export type DeletePortfolioBlockError = DeletePortfolioBlockErrors[keyof DeletePortfolioBlockErrors];
22702
+ export type DeletePortfolioBlockResponses = {
22708
22703
  /**
22709
22704
  * Successful Response
22710
22705
  */
22711
22706
  200: OperationEnvelopeDeletePortfolioBlockResponse;
22712
22707
  };
22713
- export type OpDeletePortfolioBlockResponse = OpDeletePortfolioBlockResponses[keyof OpDeletePortfolioBlockResponses];
22714
- export type OpCreateSecurityData = {
22708
+ export type DeletePortfolioBlockResponse2 = DeletePortfolioBlockResponses[keyof DeletePortfolioBlockResponses];
22709
+ export type CreateSecurityData = {
22715
22710
  body: CreateSecurityRequest;
22716
22711
  headers?: {
22717
22712
  /**
@@ -22728,7 +22723,7 @@ export type OpCreateSecurityData = {
22728
22723
  query?: never;
22729
22724
  url: '/extensions/roboinvestor/{graph_id}/operations/create-security';
22730
22725
  };
22731
- export type OpCreateSecurityErrors = {
22726
+ export type CreateSecurityErrors = {
22732
22727
  /**
22733
22728
  * Invalid request
22734
22729
  */
@@ -22762,15 +22757,15 @@ export type OpCreateSecurityErrors = {
22762
22757
  */
22763
22758
  500: ErrorResponse;
22764
22759
  };
22765
- export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
22766
- export type OpCreateSecurityResponses = {
22760
+ export type CreateSecurityError = CreateSecurityErrors[keyof CreateSecurityErrors];
22761
+ export type CreateSecurityResponses = {
22767
22762
  /**
22768
22763
  * Successful Response
22769
22764
  */
22770
22765
  200: OperationEnvelopeSecurityResponse;
22771
22766
  };
22772
- export type OpCreateSecurityResponse = OpCreateSecurityResponses[keyof OpCreateSecurityResponses];
22773
- export type OpUpdateSecurityData = {
22767
+ export type CreateSecurityResponse = CreateSecurityResponses[keyof CreateSecurityResponses];
22768
+ export type UpdateSecurityData = {
22774
22769
  body: UpdateSecurityOperation;
22775
22770
  headers?: {
22776
22771
  /**
@@ -22787,7 +22782,7 @@ export type OpUpdateSecurityData = {
22787
22782
  query?: never;
22788
22783
  url: '/extensions/roboinvestor/{graph_id}/operations/update-security';
22789
22784
  };
22790
- export type OpUpdateSecurityErrors = {
22785
+ export type UpdateSecurityErrors = {
22791
22786
  /**
22792
22787
  * Invalid request
22793
22788
  */
@@ -22821,15 +22816,15 @@ export type OpUpdateSecurityErrors = {
22821
22816
  */
22822
22817
  500: ErrorResponse;
22823
22818
  };
22824
- export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
22825
- export type OpUpdateSecurityResponses = {
22819
+ export type UpdateSecurityError = UpdateSecurityErrors[keyof UpdateSecurityErrors];
22820
+ export type UpdateSecurityResponses = {
22826
22821
  /**
22827
22822
  * Successful Response
22828
22823
  */
22829
22824
  200: OperationEnvelopeSecurityResponse;
22830
22825
  };
22831
- export type OpUpdateSecurityResponse = OpUpdateSecurityResponses[keyof OpUpdateSecurityResponses];
22832
- export type OpDeleteSecurityData = {
22826
+ export type UpdateSecurityResponse = UpdateSecurityResponses[keyof UpdateSecurityResponses];
22827
+ export type DeleteSecurityData = {
22833
22828
  body: DeleteSecurityOperation;
22834
22829
  headers?: {
22835
22830
  /**
@@ -22846,7 +22841,7 @@ export type OpDeleteSecurityData = {
22846
22841
  query?: never;
22847
22842
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-security';
22848
22843
  };
22849
- export type OpDeleteSecurityErrors = {
22844
+ export type DeleteSecurityErrors = {
22850
22845
  /**
22851
22846
  * Invalid request
22852
22847
  */
@@ -22880,11 +22875,11 @@ export type OpDeleteSecurityErrors = {
22880
22875
  */
22881
22876
  500: ErrorResponse;
22882
22877
  };
22883
- export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];
22884
- export type OpDeleteSecurityResponses = {
22878
+ export type DeleteSecurityError = DeleteSecurityErrors[keyof DeleteSecurityErrors];
22879
+ export type DeleteSecurityResponses = {
22885
22880
  /**
22886
22881
  * Successful Response
22887
22882
  */
22888
22883
  200: OperationEnvelopeDeleteResult;
22889
22884
  };
22890
- export type OpDeleteSecurityResponse = OpDeleteSecurityResponses[keyof OpDeleteSecurityResponses];
22885
+ export type DeleteSecurityResponse = DeleteSecurityResponses[keyof DeleteSecurityResponses];