@robosystems/client 0.4.0 → 0.5.1

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 -385
  51. package/sdk/types.gen.ts +379 -390
  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 -385
  56. package/types.gen.ts +379 -390
package/types.gen.d.ts CHANGED
@@ -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
  /**
@@ -6552,12 +6552,6 @@ export type MaterializeOp = {
6552
6552
  * Rebuild the graph from scratch, dropping existing data
6553
6553
  */
6554
6554
  rebuild?: boolean;
6555
- /**
6556
- * Ignore Errors
6557
- *
6558
- * Continue past non-fatal row errors
6559
- */
6560
- ignore_errors?: boolean;
6561
6555
  /**
6562
6556
  * Dry Run
6563
6557
  *
@@ -10969,7 +10963,7 @@ export type SearchRequest = {
10969
10963
  /**
10970
10964
  * Source Type
10971
10965
  *
10972
- * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, memory)
10966
+ * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, connection_doc)
10973
10967
  */
10974
10968
  source_type?: string | null;
10975
10969
  /**
@@ -11779,7 +11773,7 @@ export type SubgraphSummary = {
11779
11773
  *
11780
11774
  * Types of subgraphs.
11781
11775
  */
11782
- export type SubgraphType = 'static' | 'temporal' | 'versioned' | 'memory';
11776
+ export type SubgraphType = 'static' | 'knowledge' | 'empty';
11783
11777
  /**
11784
11778
  * SuccessResponse
11785
11779
  *
@@ -16844,62 +16838,6 @@ export type ExportGraphSchemaResponses = {
16844
16838
  200: SchemaExportResponse;
16845
16839
  };
16846
16840
  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
16841
  export type GetCreditSummaryData = {
16904
16842
  body?: never;
16905
16843
  path: {
@@ -17993,7 +17931,7 @@ export type RecallMemoryResponses = {
17993
17931
  200: SearchResponse;
17994
17932
  };
17995
17933
  export type RecallMemoryResponse = RecallMemoryResponses[keyof RecallMemoryResponses];
17996
- export type OpCreateSubgraphData = {
17934
+ export type CreateSubgraphData = {
17997
17935
  body: CreateSubgraphRequest;
17998
17936
  headers?: {
17999
17937
  /**
@@ -18010,7 +17948,7 @@ export type OpCreateSubgraphData = {
18010
17948
  query?: never;
18011
17949
  url: '/v1/graphs/{graph_id}/operations/create-subgraph';
18012
17950
  };
18013
- export type OpCreateSubgraphErrors = {
17951
+ export type CreateSubgraphErrors = {
18014
17952
  /**
18015
17953
  * Invalid request
18016
17954
  */
@@ -18044,15 +17982,15 @@ export type OpCreateSubgraphErrors = {
18044
17982
  */
18045
17983
  500: ErrorResponse;
18046
17984
  };
18047
- export type OpCreateSubgraphError = OpCreateSubgraphErrors[keyof OpCreateSubgraphErrors];
18048
- export type OpCreateSubgraphResponses = {
17985
+ export type CreateSubgraphError = CreateSubgraphErrors[keyof CreateSubgraphErrors];
17986
+ export type CreateSubgraphResponses = {
18049
17987
  /**
18050
17988
  * Successful Response
18051
17989
  */
18052
17990
  200: OperationEnvelope;
18053
17991
  };
18054
- export type OpCreateSubgraphResponse = OpCreateSubgraphResponses[keyof OpCreateSubgraphResponses];
18055
- export type OpDeleteSubgraphData = {
17992
+ export type CreateSubgraphResponse = CreateSubgraphResponses[keyof CreateSubgraphResponses];
17993
+ export type DeleteSubgraphData = {
18056
17994
  body: DeleteSubgraphOp;
18057
17995
  headers?: {
18058
17996
  /**
@@ -18069,7 +18007,7 @@ export type OpDeleteSubgraphData = {
18069
18007
  query?: never;
18070
18008
  url: '/v1/graphs/{graph_id}/operations/delete-subgraph';
18071
18009
  };
18072
- export type OpDeleteSubgraphErrors = {
18010
+ export type DeleteSubgraphErrors = {
18073
18011
  /**
18074
18012
  * Invalid request
18075
18013
  */
@@ -18103,15 +18041,15 @@ export type OpDeleteSubgraphErrors = {
18103
18041
  */
18104
18042
  500: ErrorResponse;
18105
18043
  };
18106
- export type OpDeleteSubgraphError = OpDeleteSubgraphErrors[keyof OpDeleteSubgraphErrors];
18107
- export type OpDeleteSubgraphResponses = {
18044
+ export type DeleteSubgraphError = DeleteSubgraphErrors[keyof DeleteSubgraphErrors];
18045
+ export type DeleteSubgraphResponses = {
18108
18046
  /**
18109
18047
  * Successful Response
18110
18048
  */
18111
18049
  200: OperationEnvelope;
18112
18050
  };
18113
- export type OpDeleteSubgraphResponse = OpDeleteSubgraphResponses[keyof OpDeleteSubgraphResponses];
18114
- export type OpDeleteGraphData = {
18051
+ export type DeleteSubgraphResponse = DeleteSubgraphResponses[keyof DeleteSubgraphResponses];
18052
+ export type DeleteGraphData = {
18115
18053
  body: DeleteGraphOp;
18116
18054
  headers?: {
18117
18055
  /**
@@ -18128,7 +18066,7 @@ export type OpDeleteGraphData = {
18128
18066
  query?: never;
18129
18067
  url: '/v1/graphs/{graph_id}/operations/delete-graph';
18130
18068
  };
18131
- export type OpDeleteGraphErrors = {
18069
+ export type DeleteGraphErrors = {
18132
18070
  /**
18133
18071
  * Invalid request
18134
18072
  */
@@ -18162,15 +18100,15 @@ export type OpDeleteGraphErrors = {
18162
18100
  */
18163
18101
  500: ErrorResponse;
18164
18102
  };
18165
- export type OpDeleteGraphError = OpDeleteGraphErrors[keyof OpDeleteGraphErrors];
18166
- export type OpDeleteGraphResponses = {
18103
+ export type DeleteGraphError = DeleteGraphErrors[keyof DeleteGraphErrors];
18104
+ export type DeleteGraphResponses = {
18167
18105
  /**
18168
18106
  * Successful Response
18169
18107
  */
18170
18108
  202: OperationEnvelope;
18171
18109
  };
18172
- export type OpDeleteGraphResponse = OpDeleteGraphResponses[keyof OpDeleteGraphResponses];
18173
- export type OpCreateBackupData = {
18110
+ export type DeleteGraphResponse = DeleteGraphResponses[keyof DeleteGraphResponses];
18111
+ export type CreateBackupData = {
18174
18112
  body: BackupCreateRequest;
18175
18113
  headers?: {
18176
18114
  /**
@@ -18187,7 +18125,7 @@ export type OpCreateBackupData = {
18187
18125
  query?: never;
18188
18126
  url: '/v1/graphs/{graph_id}/operations/create-backup';
18189
18127
  };
18190
- export type OpCreateBackupErrors = {
18128
+ export type CreateBackupErrors = {
18191
18129
  /**
18192
18130
  * Invalid request
18193
18131
  */
@@ -18221,15 +18159,15 @@ export type OpCreateBackupErrors = {
18221
18159
  */
18222
18160
  500: ErrorResponse;
18223
18161
  };
18224
- export type OpCreateBackupError = OpCreateBackupErrors[keyof OpCreateBackupErrors];
18225
- export type OpCreateBackupResponses = {
18162
+ export type CreateBackupError = CreateBackupErrors[keyof CreateBackupErrors];
18163
+ export type CreateBackupResponses = {
18226
18164
  /**
18227
18165
  * Successful Response
18228
18166
  */
18229
18167
  202: OperationEnvelope;
18230
18168
  };
18231
- export type OpCreateBackupResponse = OpCreateBackupResponses[keyof OpCreateBackupResponses];
18232
- export type OpRestoreBackupData = {
18169
+ export type CreateBackupResponse = CreateBackupResponses[keyof CreateBackupResponses];
18170
+ export type RestoreBackupData = {
18233
18171
  body: RestoreBackupOp;
18234
18172
  headers?: {
18235
18173
  /**
@@ -18246,7 +18184,7 @@ export type OpRestoreBackupData = {
18246
18184
  query?: never;
18247
18185
  url: '/v1/graphs/{graph_id}/operations/restore-backup';
18248
18186
  };
18249
- export type OpRestoreBackupErrors = {
18187
+ export type RestoreBackupErrors = {
18250
18188
  /**
18251
18189
  * Invalid request
18252
18190
  */
@@ -18280,15 +18218,15 @@ export type OpRestoreBackupErrors = {
18280
18218
  */
18281
18219
  500: ErrorResponse;
18282
18220
  };
18283
- export type OpRestoreBackupError = OpRestoreBackupErrors[keyof OpRestoreBackupErrors];
18284
- export type OpRestoreBackupResponses = {
18221
+ export type RestoreBackupError = RestoreBackupErrors[keyof RestoreBackupErrors];
18222
+ export type RestoreBackupResponses = {
18285
18223
  /**
18286
18224
  * Successful Response
18287
18225
  */
18288
18226
  202: OperationEnvelope;
18289
18227
  };
18290
- export type OpRestoreBackupResponse = OpRestoreBackupResponses[keyof OpRestoreBackupResponses];
18291
- export type OpChangeTierData = {
18228
+ export type RestoreBackupResponse = RestoreBackupResponses[keyof RestoreBackupResponses];
18229
+ export type ChangeTierData = {
18292
18230
  body: ChangeTierOp;
18293
18231
  headers?: {
18294
18232
  /**
@@ -18305,7 +18243,7 @@ export type OpChangeTierData = {
18305
18243
  query?: never;
18306
18244
  url: '/v1/graphs/{graph_id}/operations/change-tier';
18307
18245
  };
18308
- export type OpChangeTierErrors = {
18246
+ export type ChangeTierErrors = {
18309
18247
  /**
18310
18248
  * Invalid request
18311
18249
  */
@@ -18339,15 +18277,15 @@ export type OpChangeTierErrors = {
18339
18277
  */
18340
18278
  500: ErrorResponse;
18341
18279
  };
18342
- export type OpChangeTierError = OpChangeTierErrors[keyof OpChangeTierErrors];
18343
- export type OpChangeTierResponses = {
18280
+ export type ChangeTierError = ChangeTierErrors[keyof ChangeTierErrors];
18281
+ export type ChangeTierResponses = {
18344
18282
  /**
18345
18283
  * Successful Response
18346
18284
  */
18347
18285
  202: OperationEnvelope;
18348
18286
  };
18349
- export type OpChangeTierResponse = OpChangeTierResponses[keyof OpChangeTierResponses];
18350
- export type OpMaterializeData = {
18287
+ export type ChangeTierResponse = ChangeTierResponses[keyof ChangeTierResponses];
18288
+ export type MaterializeData = {
18351
18289
  body: MaterializeOp;
18352
18290
  headers?: {
18353
18291
  /**
@@ -18364,7 +18302,7 @@ export type OpMaterializeData = {
18364
18302
  query?: never;
18365
18303
  url: '/v1/graphs/{graph_id}/operations/materialize';
18366
18304
  };
18367
- export type OpMaterializeErrors = {
18305
+ export type MaterializeErrors = {
18368
18306
  /**
18369
18307
  * Invalid request
18370
18308
  */
@@ -18398,15 +18336,15 @@ export type OpMaterializeErrors = {
18398
18336
  */
18399
18337
  500: ErrorResponse;
18400
18338
  };
18401
- export type OpMaterializeError = OpMaterializeErrors[keyof OpMaterializeErrors];
18402
- export type OpMaterializeResponses = {
18339
+ export type MaterializeError = MaterializeErrors[keyof MaterializeErrors];
18340
+ export type MaterializeResponses = {
18403
18341
  /**
18404
18342
  * Successful Response
18405
18343
  */
18406
18344
  202: OperationEnvelope;
18407
18345
  };
18408
- export type OpMaterializeResponse = OpMaterializeResponses[keyof OpMaterializeResponses];
18409
- export type OpRememberData = {
18346
+ export type MaterializeResponse = MaterializeResponses[keyof MaterializeResponses];
18347
+ export type RememberData = {
18410
18348
  body: RememberOp;
18411
18349
  headers?: {
18412
18350
  /**
@@ -18423,7 +18361,7 @@ export type OpRememberData = {
18423
18361
  query?: never;
18424
18362
  url: '/v1/graphs/{graph_id}/operations/remember';
18425
18363
  };
18426
- export type OpRememberErrors = {
18364
+ export type RememberErrors = {
18427
18365
  /**
18428
18366
  * Invalid request
18429
18367
  */
@@ -18457,15 +18395,15 @@ export type OpRememberErrors = {
18457
18395
  */
18458
18396
  500: ErrorResponse;
18459
18397
  };
18460
- export type OpRememberError = OpRememberErrors[keyof OpRememberErrors];
18461
- export type OpRememberResponses = {
18398
+ export type RememberError = RememberErrors[keyof RememberErrors];
18399
+ export type RememberResponses = {
18462
18400
  /**
18463
18401
  * Successful Response
18464
18402
  */
18465
18403
  200: OperationEnvelope;
18466
18404
  };
18467
- export type OpRememberResponse = OpRememberResponses[keyof OpRememberResponses];
18468
- export type OpForgetData = {
18405
+ export type RememberResponse = RememberResponses[keyof RememberResponses];
18406
+ export type ForgetData = {
18469
18407
  body: ForgetOp;
18470
18408
  headers?: {
18471
18409
  /**
@@ -18482,7 +18420,7 @@ export type OpForgetData = {
18482
18420
  query?: never;
18483
18421
  url: '/v1/graphs/{graph_id}/operations/forget';
18484
18422
  };
18485
- export type OpForgetErrors = {
18423
+ export type ForgetErrors = {
18486
18424
  /**
18487
18425
  * Invalid request
18488
18426
  */
@@ -18516,15 +18454,15 @@ export type OpForgetErrors = {
18516
18454
  */
18517
18455
  500: ErrorResponse;
18518
18456
  };
18519
- export type OpForgetError = OpForgetErrors[keyof OpForgetErrors];
18520
- export type OpForgetResponses = {
18457
+ export type ForgetError = ForgetErrors[keyof ForgetErrors];
18458
+ export type ForgetResponses = {
18521
18459
  /**
18522
18460
  * Successful Response
18523
18461
  */
18524
18462
  200: OperationEnvelope;
18525
18463
  };
18526
- export type OpForgetResponse = OpForgetResponses[keyof OpForgetResponses];
18527
- export type OpUpdateMemoryData = {
18464
+ export type ForgetResponse = ForgetResponses[keyof ForgetResponses];
18465
+ export type UpdateMemoryData = {
18528
18466
  body: UpdateMemoryOp;
18529
18467
  headers?: {
18530
18468
  /**
@@ -18541,7 +18479,7 @@ export type OpUpdateMemoryData = {
18541
18479
  query?: never;
18542
18480
  url: '/v1/graphs/{graph_id}/operations/update-memory';
18543
18481
  };
18544
- export type OpUpdateMemoryErrors = {
18482
+ export type UpdateMemoryErrors = {
18545
18483
  /**
18546
18484
  * Invalid request
18547
18485
  */
@@ -18575,15 +18513,15 @@ export type OpUpdateMemoryErrors = {
18575
18513
  */
18576
18514
  500: ErrorResponse;
18577
18515
  };
18578
- export type OpUpdateMemoryError = OpUpdateMemoryErrors[keyof OpUpdateMemoryErrors];
18579
- export type OpUpdateMemoryResponses = {
18516
+ export type UpdateMemoryError = UpdateMemoryErrors[keyof UpdateMemoryErrors];
18517
+ export type UpdateMemoryResponses = {
18580
18518
  /**
18581
18519
  * Successful Response
18582
18520
  */
18583
18521
  200: OperationEnvelope;
18584
18522
  };
18585
- export type OpUpdateMemoryResponse = OpUpdateMemoryResponses[keyof OpUpdateMemoryResponses];
18586
- export type OpIndexDocumentData = {
18523
+ export type UpdateMemoryResponse = UpdateMemoryResponses[keyof UpdateMemoryResponses];
18524
+ export type IndexDocumentData = {
18587
18525
  body: IndexDocumentOp;
18588
18526
  headers?: {
18589
18527
  /**
@@ -18600,7 +18538,7 @@ export type OpIndexDocumentData = {
18600
18538
  query?: never;
18601
18539
  url: '/v1/graphs/{graph_id}/operations/index-document';
18602
18540
  };
18603
- export type OpIndexDocumentErrors = {
18541
+ export type IndexDocumentErrors = {
18604
18542
  /**
18605
18543
  * Invalid request
18606
18544
  */
@@ -18634,15 +18572,15 @@ export type OpIndexDocumentErrors = {
18634
18572
  */
18635
18573
  500: ErrorResponse;
18636
18574
  };
18637
- export type OpIndexDocumentError = OpIndexDocumentErrors[keyof OpIndexDocumentErrors];
18638
- export type OpIndexDocumentResponses = {
18575
+ export type IndexDocumentError = IndexDocumentErrors[keyof IndexDocumentErrors];
18576
+ export type IndexDocumentResponses = {
18639
18577
  /**
18640
18578
  * Successful Response
18641
18579
  */
18642
18580
  200: OperationEnvelope;
18643
18581
  };
18644
- export type OpIndexDocumentResponse = OpIndexDocumentResponses[keyof OpIndexDocumentResponses];
18645
- export type OpDeleteDocumentData = {
18582
+ export type IndexDocumentResponse = IndexDocumentResponses[keyof IndexDocumentResponses];
18583
+ export type DeleteDocumentData = {
18646
18584
  body: DeleteDocumentOp;
18647
18585
  headers?: {
18648
18586
  /**
@@ -18659,7 +18597,7 @@ export type OpDeleteDocumentData = {
18659
18597
  query?: never;
18660
18598
  url: '/v1/graphs/{graph_id}/operations/delete-document';
18661
18599
  };
18662
- export type OpDeleteDocumentErrors = {
18600
+ export type DeleteDocumentErrors = {
18663
18601
  /**
18664
18602
  * Invalid request
18665
18603
  */
@@ -18693,15 +18631,15 @@ export type OpDeleteDocumentErrors = {
18693
18631
  */
18694
18632
  500: ErrorResponse;
18695
18633
  };
18696
- export type OpDeleteDocumentError = OpDeleteDocumentErrors[keyof OpDeleteDocumentErrors];
18697
- export type OpDeleteDocumentResponses = {
18634
+ export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
18635
+ export type DeleteDocumentResponses = {
18698
18636
  /**
18699
18637
  * Successful Response
18700
18638
  */
18701
18639
  200: OperationEnvelope;
18702
18640
  };
18703
- export type OpDeleteDocumentResponse = OpDeleteDocumentResponses[keyof OpDeleteDocumentResponses];
18704
- export type OpCreateFileUploadData = {
18641
+ export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
18642
+ export type CreateFileUploadData = {
18705
18643
  body: FileUploadRequest;
18706
18644
  headers?: {
18707
18645
  /**
@@ -18718,7 +18656,7 @@ export type OpCreateFileUploadData = {
18718
18656
  query?: never;
18719
18657
  url: '/v1/graphs/{graph_id}/operations/create-file-upload';
18720
18658
  };
18721
- export type OpCreateFileUploadErrors = {
18659
+ export type CreateFileUploadErrors = {
18722
18660
  /**
18723
18661
  * Invalid request
18724
18662
  */
@@ -18752,15 +18690,15 @@ export type OpCreateFileUploadErrors = {
18752
18690
  */
18753
18691
  500: ErrorResponse;
18754
18692
  };
18755
- export type OpCreateFileUploadError = OpCreateFileUploadErrors[keyof OpCreateFileUploadErrors];
18756
- export type OpCreateFileUploadResponses = {
18693
+ export type CreateFileUploadError = CreateFileUploadErrors[keyof CreateFileUploadErrors];
18694
+ export type CreateFileUploadResponses = {
18757
18695
  /**
18758
18696
  * Successful Response
18759
18697
  */
18760
18698
  200: OperationEnvelope;
18761
18699
  };
18762
- export type OpCreateFileUploadResponse = OpCreateFileUploadResponses[keyof OpCreateFileUploadResponses];
18763
- export type OpIngestFileData = {
18700
+ export type CreateFileUploadResponse = CreateFileUploadResponses[keyof CreateFileUploadResponses];
18701
+ export type IngestFileData = {
18764
18702
  body: IngestFileOp;
18765
18703
  headers?: {
18766
18704
  /**
@@ -18777,7 +18715,7 @@ export type OpIngestFileData = {
18777
18715
  query?: never;
18778
18716
  url: '/v1/graphs/{graph_id}/operations/ingest-file';
18779
18717
  };
18780
- export type OpIngestFileErrors = {
18718
+ export type IngestFileErrors = {
18781
18719
  /**
18782
18720
  * Invalid request
18783
18721
  */
@@ -18811,15 +18749,15 @@ export type OpIngestFileErrors = {
18811
18749
  */
18812
18750
  500: ErrorResponse;
18813
18751
  };
18814
- export type OpIngestFileError = OpIngestFileErrors[keyof OpIngestFileErrors];
18815
- export type OpIngestFileResponses = {
18752
+ export type IngestFileError = IngestFileErrors[keyof IngestFileErrors];
18753
+ export type IngestFileResponses = {
18816
18754
  /**
18817
18755
  * Successful Response
18818
18756
  */
18819
18757
  200: OperationEnvelope;
18820
18758
  };
18821
- export type OpIngestFileResponse = OpIngestFileResponses[keyof OpIngestFileResponses];
18822
- export type OpDeleteFileData = {
18759
+ export type IngestFileResponse = IngestFileResponses[keyof IngestFileResponses];
18760
+ export type DeleteFileData = {
18823
18761
  body: DeleteFileOp;
18824
18762
  headers?: {
18825
18763
  /**
@@ -18836,7 +18774,7 @@ export type OpDeleteFileData = {
18836
18774
  query?: never;
18837
18775
  url: '/v1/graphs/{graph_id}/operations/delete-file';
18838
18776
  };
18839
- export type OpDeleteFileErrors = {
18777
+ export type DeleteFileErrors = {
18840
18778
  /**
18841
18779
  * Invalid request
18842
18780
  */
@@ -18870,14 +18808,14 @@ export type OpDeleteFileErrors = {
18870
18808
  */
18871
18809
  500: ErrorResponse;
18872
18810
  };
18873
- export type OpDeleteFileError = OpDeleteFileErrors[keyof OpDeleteFileErrors];
18874
- export type OpDeleteFileResponses = {
18811
+ export type DeleteFileError = DeleteFileErrors[keyof DeleteFileErrors];
18812
+ export type DeleteFileResponses = {
18875
18813
  /**
18876
18814
  * Successful Response
18877
18815
  */
18878
18816
  200: OperationEnvelope;
18879
18817
  };
18880
- export type OpDeleteFileResponse = OpDeleteFileResponses[keyof OpDeleteFileResponses];
18818
+ export type DeleteFileResponse = DeleteFileResponses[keyof DeleteFileResponses];
18881
18819
  export type ListFilesData = {
18882
18820
  body?: never;
18883
18821
  path: {
@@ -19255,6 +19193,57 @@ export type SelectGraphResponses = {
19255
19193
  200: SuccessResponse;
19256
19194
  };
19257
19195
  export type SelectGraphResponse = SelectGraphResponses[keyof SelectGraphResponses];
19196
+ export type ValidateSchemaData = {
19197
+ /**
19198
+ * Schema definition to validate
19199
+ */
19200
+ body: SchemaValidationRequest;
19201
+ path?: never;
19202
+ query?: never;
19203
+ url: '/v1/graphs/schema/validate';
19204
+ };
19205
+ export type ValidateSchemaErrors = {
19206
+ /**
19207
+ * Invalid request
19208
+ */
19209
+ 400: ErrorResponse;
19210
+ /**
19211
+ * Authentication required
19212
+ */
19213
+ 401: ErrorResponse;
19214
+ /**
19215
+ * Access denied
19216
+ */
19217
+ 403: ErrorResponse;
19218
+ /**
19219
+ * Resource not found
19220
+ */
19221
+ 404: ErrorResponse;
19222
+ /**
19223
+ * Schema fails validation rules
19224
+ */
19225
+ 422: unknown;
19226
+ /**
19227
+ * Rate limit exceeded
19228
+ */
19229
+ 429: ErrorResponse;
19230
+ /**
19231
+ * Internal server error
19232
+ */
19233
+ 500: ErrorResponse;
19234
+ /**
19235
+ * Validation timed out
19236
+ */
19237
+ 504: unknown;
19238
+ };
19239
+ export type ValidateSchemaError = ValidateSchemaErrors[keyof ValidateSchemaErrors];
19240
+ export type ValidateSchemaResponses = {
19241
+ /**
19242
+ * Successful Response
19243
+ */
19244
+ 200: SchemaValidationResponse;
19245
+ };
19246
+ export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchemaResponses];
19258
19247
  export type GetServiceOfferingsData = {
19259
19248
  body?: never;
19260
19249
  path?: never;
@@ -19997,7 +19986,7 @@ export type HandleHttpPostExtensionsGraphIdGraphqlPostResponses = {
19997
19986
  */
19998
19987
  200: unknown;
19999
19988
  };
20000
- export type OpInitializeLedgerData = {
19989
+ export type InitializeLedgerData = {
20001
19990
  body: InitializeLedgerRequest;
20002
19991
  headers?: {
20003
19992
  /**
@@ -20014,7 +20003,7 @@ export type OpInitializeLedgerData = {
20014
20003
  query?: never;
20015
20004
  url: '/extensions/roboledger/{graph_id}/operations/initialize';
20016
20005
  };
20017
- export type OpInitializeLedgerErrors = {
20006
+ export type InitializeLedgerErrors = {
20018
20007
  /**
20019
20008
  * Invalid request
20020
20009
  */
@@ -20048,15 +20037,15 @@ export type OpInitializeLedgerErrors = {
20048
20037
  */
20049
20038
  500: ErrorResponse;
20050
20039
  };
20051
- export type OpInitializeLedgerError = OpInitializeLedgerErrors[keyof OpInitializeLedgerErrors];
20052
- export type OpInitializeLedgerResponses = {
20040
+ export type InitializeLedgerError = InitializeLedgerErrors[keyof InitializeLedgerErrors];
20041
+ export type InitializeLedgerResponses = {
20053
20042
  /**
20054
20043
  * Successful Response
20055
20044
  */
20056
20045
  200: OperationEnvelopeInitializeLedgerResponse;
20057
20046
  };
20058
- export type OpInitializeLedgerResponse = OpInitializeLedgerResponses[keyof OpInitializeLedgerResponses];
20059
- export type OpUpdateEntityData = {
20047
+ export type InitializeLedgerResponse2 = InitializeLedgerResponses[keyof InitializeLedgerResponses];
20048
+ export type UpdateEntityData = {
20060
20049
  body: UpdateEntityRequest;
20061
20050
  headers?: {
20062
20051
  /**
@@ -20073,7 +20062,7 @@ export type OpUpdateEntityData = {
20073
20062
  query?: never;
20074
20063
  url: '/extensions/roboledger/{graph_id}/operations/update-entity';
20075
20064
  };
20076
- export type OpUpdateEntityErrors = {
20065
+ export type UpdateEntityErrors = {
20077
20066
  /**
20078
20067
  * Invalid request
20079
20068
  */
@@ -20107,15 +20096,15 @@ export type OpUpdateEntityErrors = {
20107
20096
  */
20108
20097
  500: ErrorResponse;
20109
20098
  };
20110
- export type OpUpdateEntityError = OpUpdateEntityErrors[keyof OpUpdateEntityErrors];
20111
- export type OpUpdateEntityResponses = {
20099
+ export type UpdateEntityError = UpdateEntityErrors[keyof UpdateEntityErrors];
20100
+ export type UpdateEntityResponses = {
20112
20101
  /**
20113
20102
  * Successful Response
20114
20103
  */
20115
20104
  200: OperationEnvelopeLedgerEntityResponse;
20116
20105
  };
20117
- export type OpUpdateEntityResponse = OpUpdateEntityResponses[keyof OpUpdateEntityResponses];
20118
- export type OpChangeReportingStyleData = {
20106
+ export type UpdateEntityResponse = UpdateEntityResponses[keyof UpdateEntityResponses];
20107
+ export type ChangeReportingStyleData = {
20119
20108
  body: ChangeReportingStyleRequest;
20120
20109
  headers?: {
20121
20110
  /**
@@ -20132,7 +20121,7 @@ export type OpChangeReportingStyleData = {
20132
20121
  query?: never;
20133
20122
  url: '/extensions/roboledger/{graph_id}/operations/change-reporting-style';
20134
20123
  };
20135
- export type OpChangeReportingStyleErrors = {
20124
+ export type ChangeReportingStyleErrors = {
20136
20125
  /**
20137
20126
  * Invalid request
20138
20127
  */
@@ -20166,15 +20155,15 @@ export type OpChangeReportingStyleErrors = {
20166
20155
  */
20167
20156
  500: ErrorResponse;
20168
20157
  };
20169
- export type OpChangeReportingStyleError = OpChangeReportingStyleErrors[keyof OpChangeReportingStyleErrors];
20170
- export type OpChangeReportingStyleResponses = {
20158
+ export type ChangeReportingStyleError = ChangeReportingStyleErrors[keyof ChangeReportingStyleErrors];
20159
+ export type ChangeReportingStyleResponses = {
20171
20160
  /**
20172
20161
  * Successful Response
20173
20162
  */
20174
20163
  200: OperationEnvelopeChangeReportingStyleResponse;
20175
20164
  };
20176
- export type OpChangeReportingStyleResponse = OpChangeReportingStyleResponses[keyof OpChangeReportingStyleResponses];
20177
- export type OpCreateTaxonomyBlockData = {
20165
+ export type ChangeReportingStyleResponse2 = ChangeReportingStyleResponses[keyof ChangeReportingStyleResponses];
20166
+ export type CreateTaxonomyBlockData = {
20178
20167
  body: CreateTaxonomyBlockRequest;
20179
20168
  headers?: {
20180
20169
  /**
@@ -20191,7 +20180,7 @@ export type OpCreateTaxonomyBlockData = {
20191
20180
  query?: never;
20192
20181
  url: '/extensions/roboledger/{graph_id}/operations/create-taxonomy-block';
20193
20182
  };
20194
- export type OpCreateTaxonomyBlockErrors = {
20183
+ export type CreateTaxonomyBlockErrors = {
20195
20184
  /**
20196
20185
  * Invalid request
20197
20186
  */
@@ -20225,15 +20214,15 @@ export type OpCreateTaxonomyBlockErrors = {
20225
20214
  */
20226
20215
  500: ErrorResponse;
20227
20216
  };
20228
- export type OpCreateTaxonomyBlockError = OpCreateTaxonomyBlockErrors[keyof OpCreateTaxonomyBlockErrors];
20229
- export type OpCreateTaxonomyBlockResponses = {
20217
+ export type CreateTaxonomyBlockError = CreateTaxonomyBlockErrors[keyof CreateTaxonomyBlockErrors];
20218
+ export type CreateTaxonomyBlockResponses = {
20230
20219
  /**
20231
20220
  * Successful Response
20232
20221
  */
20233
20222
  200: OperationEnvelopeTaxonomyBlockEnvelope;
20234
20223
  };
20235
- export type OpCreateTaxonomyBlockResponse = OpCreateTaxonomyBlockResponses[keyof OpCreateTaxonomyBlockResponses];
20236
- export type OpUpdateTaxonomyBlockData = {
20224
+ export type CreateTaxonomyBlockResponse = CreateTaxonomyBlockResponses[keyof CreateTaxonomyBlockResponses];
20225
+ export type UpdateTaxonomyBlockData = {
20237
20226
  body: UpdateTaxonomyBlockRequest;
20238
20227
  headers?: {
20239
20228
  /**
@@ -20250,7 +20239,7 @@ export type OpUpdateTaxonomyBlockData = {
20250
20239
  query?: never;
20251
20240
  url: '/extensions/roboledger/{graph_id}/operations/update-taxonomy-block';
20252
20241
  };
20253
- export type OpUpdateTaxonomyBlockErrors = {
20242
+ export type UpdateTaxonomyBlockErrors = {
20254
20243
  /**
20255
20244
  * Invalid request
20256
20245
  */
@@ -20284,15 +20273,15 @@ export type OpUpdateTaxonomyBlockErrors = {
20284
20273
  */
20285
20274
  500: ErrorResponse;
20286
20275
  };
20287
- export type OpUpdateTaxonomyBlockError = OpUpdateTaxonomyBlockErrors[keyof OpUpdateTaxonomyBlockErrors];
20288
- export type OpUpdateTaxonomyBlockResponses = {
20276
+ export type UpdateTaxonomyBlockError = UpdateTaxonomyBlockErrors[keyof UpdateTaxonomyBlockErrors];
20277
+ export type UpdateTaxonomyBlockResponses = {
20289
20278
  /**
20290
20279
  * Successful Response
20291
20280
  */
20292
20281
  200: OperationEnvelopeTaxonomyBlockEnvelope;
20293
20282
  };
20294
- export type OpUpdateTaxonomyBlockResponse = OpUpdateTaxonomyBlockResponses[keyof OpUpdateTaxonomyBlockResponses];
20295
- export type OpDeleteTaxonomyBlockData = {
20283
+ export type UpdateTaxonomyBlockResponse = UpdateTaxonomyBlockResponses[keyof UpdateTaxonomyBlockResponses];
20284
+ export type DeleteTaxonomyBlockData = {
20296
20285
  body: DeleteTaxonomyBlockRequest;
20297
20286
  headers?: {
20298
20287
  /**
@@ -20309,7 +20298,7 @@ export type OpDeleteTaxonomyBlockData = {
20309
20298
  query?: never;
20310
20299
  url: '/extensions/roboledger/{graph_id}/operations/delete-taxonomy-block';
20311
20300
  };
20312
- export type OpDeleteTaxonomyBlockErrors = {
20301
+ export type DeleteTaxonomyBlockErrors = {
20313
20302
  /**
20314
20303
  * Invalid request
20315
20304
  */
@@ -20343,15 +20332,15 @@ export type OpDeleteTaxonomyBlockErrors = {
20343
20332
  */
20344
20333
  500: ErrorResponse;
20345
20334
  };
20346
- export type OpDeleteTaxonomyBlockError = OpDeleteTaxonomyBlockErrors[keyof OpDeleteTaxonomyBlockErrors];
20347
- export type OpDeleteTaxonomyBlockResponses = {
20335
+ export type DeleteTaxonomyBlockError = DeleteTaxonomyBlockErrors[keyof DeleteTaxonomyBlockErrors];
20336
+ export type DeleteTaxonomyBlockResponses = {
20348
20337
  /**
20349
20338
  * Successful Response
20350
20339
  */
20351
20340
  200: OperationEnvelopeDeleteTaxonomyBlockResponse;
20352
20341
  };
20353
- export type OpDeleteTaxonomyBlockResponse = OpDeleteTaxonomyBlockResponses[keyof OpDeleteTaxonomyBlockResponses];
20354
- export type OpLinkEntityTaxonomyData = {
20342
+ export type DeleteTaxonomyBlockResponse2 = DeleteTaxonomyBlockResponses[keyof DeleteTaxonomyBlockResponses];
20343
+ export type LinkEntityTaxonomyData = {
20355
20344
  body: LinkEntityTaxonomyRequest;
20356
20345
  headers?: {
20357
20346
  /**
@@ -20368,7 +20357,7 @@ export type OpLinkEntityTaxonomyData = {
20368
20357
  query?: never;
20369
20358
  url: '/extensions/roboledger/{graph_id}/operations/link-entity-taxonomy';
20370
20359
  };
20371
- export type OpLinkEntityTaxonomyErrors = {
20360
+ export type LinkEntityTaxonomyErrors = {
20372
20361
  /**
20373
20362
  * Invalid request
20374
20363
  */
@@ -20402,15 +20391,15 @@ export type OpLinkEntityTaxonomyErrors = {
20402
20391
  */
20403
20392
  500: ErrorResponse;
20404
20393
  };
20405
- export type OpLinkEntityTaxonomyError = OpLinkEntityTaxonomyErrors[keyof OpLinkEntityTaxonomyErrors];
20406
- export type OpLinkEntityTaxonomyResponses = {
20394
+ export type LinkEntityTaxonomyError = LinkEntityTaxonomyErrors[keyof LinkEntityTaxonomyErrors];
20395
+ export type LinkEntityTaxonomyResponses = {
20407
20396
  /**
20408
20397
  * Successful Response
20409
20398
  */
20410
20399
  200: OperationEnvelopeEntityTaxonomyResponse;
20411
20400
  };
20412
- export type OpLinkEntityTaxonomyResponse = OpLinkEntityTaxonomyResponses[keyof OpLinkEntityTaxonomyResponses];
20413
- export type OpCreateMappingAssociationData = {
20401
+ export type LinkEntityTaxonomyResponse = LinkEntityTaxonomyResponses[keyof LinkEntityTaxonomyResponses];
20402
+ export type CreateMappingAssociationData = {
20414
20403
  body: CreateMappingAssociationOperation;
20415
20404
  headers?: {
20416
20405
  /**
@@ -20427,7 +20416,7 @@ export type OpCreateMappingAssociationData = {
20427
20416
  query?: never;
20428
20417
  url: '/extensions/roboledger/{graph_id}/operations/create-mapping-association';
20429
20418
  };
20430
- export type OpCreateMappingAssociationErrors = {
20419
+ export type CreateMappingAssociationErrors = {
20431
20420
  /**
20432
20421
  * Invalid request
20433
20422
  */
@@ -20461,15 +20450,15 @@ export type OpCreateMappingAssociationErrors = {
20461
20450
  */
20462
20451
  500: ErrorResponse;
20463
20452
  };
20464
- export type OpCreateMappingAssociationError = OpCreateMappingAssociationErrors[keyof OpCreateMappingAssociationErrors];
20465
- export type OpCreateMappingAssociationResponses = {
20453
+ export type CreateMappingAssociationError = CreateMappingAssociationErrors[keyof CreateMappingAssociationErrors];
20454
+ export type CreateMappingAssociationResponses = {
20466
20455
  /**
20467
20456
  * Successful Response
20468
20457
  */
20469
20458
  200: OperationEnvelopeAssociationResponse;
20470
20459
  };
20471
- export type OpCreateMappingAssociationResponse = OpCreateMappingAssociationResponses[keyof OpCreateMappingAssociationResponses];
20472
- export type OpDeleteMappingAssociationData = {
20460
+ export type CreateMappingAssociationResponse = CreateMappingAssociationResponses[keyof CreateMappingAssociationResponses];
20461
+ export type DeleteMappingAssociationData = {
20473
20462
  body: DeleteMappingAssociationOperation;
20474
20463
  headers?: {
20475
20464
  /**
@@ -20486,7 +20475,7 @@ export type OpDeleteMappingAssociationData = {
20486
20475
  query?: never;
20487
20476
  url: '/extensions/roboledger/{graph_id}/operations/delete-mapping-association';
20488
20477
  };
20489
- export type OpDeleteMappingAssociationErrors = {
20478
+ export type DeleteMappingAssociationErrors = {
20490
20479
  /**
20491
20480
  * Invalid request
20492
20481
  */
@@ -20520,15 +20509,15 @@ export type OpDeleteMappingAssociationErrors = {
20520
20509
  */
20521
20510
  500: ErrorResponse;
20522
20511
  };
20523
- export type OpDeleteMappingAssociationError = OpDeleteMappingAssociationErrors[keyof OpDeleteMappingAssociationErrors];
20524
- export type OpDeleteMappingAssociationResponses = {
20512
+ export type DeleteMappingAssociationError = DeleteMappingAssociationErrors[keyof DeleteMappingAssociationErrors];
20513
+ export type DeleteMappingAssociationResponses = {
20525
20514
  /**
20526
20515
  * Successful Response
20527
20516
  */
20528
20517
  200: OperationEnvelopeDeleteResult;
20529
20518
  };
20530
- export type OpDeleteMappingAssociationResponse = OpDeleteMappingAssociationResponses[keyof OpDeleteMappingAssociationResponses];
20531
- export type OpAutoMapElementsData = {
20519
+ export type DeleteMappingAssociationResponse = DeleteMappingAssociationResponses[keyof DeleteMappingAssociationResponses];
20520
+ export type AutoMapElementsData = {
20532
20521
  body: AutoMapElementsOperation;
20533
20522
  headers?: {
20534
20523
  /**
@@ -20545,7 +20534,7 @@ export type OpAutoMapElementsData = {
20545
20534
  query?: never;
20546
20535
  url: '/extensions/roboledger/{graph_id}/operations/auto-map-elements';
20547
20536
  };
20548
- export type OpAutoMapElementsErrors = {
20537
+ export type AutoMapElementsErrors = {
20549
20538
  /**
20550
20539
  * Invalid request
20551
20540
  */
@@ -20579,15 +20568,15 @@ export type OpAutoMapElementsErrors = {
20579
20568
  */
20580
20569
  500: ErrorResponse;
20581
20570
  };
20582
- export type OpAutoMapElementsError = OpAutoMapElementsErrors[keyof OpAutoMapElementsErrors];
20583
- export type OpAutoMapElementsResponses = {
20571
+ export type AutoMapElementsError = AutoMapElementsErrors[keyof AutoMapElementsErrors];
20572
+ export type AutoMapElementsResponses = {
20584
20573
  /**
20585
20574
  * Successful Response
20586
20575
  */
20587
20576
  202: OperationEnvelope;
20588
20577
  };
20589
- export type OpAutoMapElementsResponse = OpAutoMapElementsResponses[keyof OpAutoMapElementsResponses];
20590
- export type OpCreateInformationBlockData = {
20578
+ export type AutoMapElementsResponse = AutoMapElementsResponses[keyof AutoMapElementsResponses];
20579
+ export type CreateInformationBlockData = {
20591
20580
  body: CreateInformationBlockRequest;
20592
20581
  headers?: {
20593
20582
  /**
@@ -20604,7 +20593,7 @@ export type OpCreateInformationBlockData = {
20604
20593
  query?: never;
20605
20594
  url: '/extensions/roboledger/{graph_id}/operations/create-information-block';
20606
20595
  };
20607
- export type OpCreateInformationBlockErrors = {
20596
+ export type CreateInformationBlockErrors = {
20608
20597
  /**
20609
20598
  * Invalid request
20610
20599
  */
@@ -20638,15 +20627,15 @@ export type OpCreateInformationBlockErrors = {
20638
20627
  */
20639
20628
  500: ErrorResponse;
20640
20629
  };
20641
- export type OpCreateInformationBlockError = OpCreateInformationBlockErrors[keyof OpCreateInformationBlockErrors];
20642
- export type OpCreateInformationBlockResponses = {
20630
+ export type CreateInformationBlockError = CreateInformationBlockErrors[keyof CreateInformationBlockErrors];
20631
+ export type CreateInformationBlockResponses = {
20643
20632
  /**
20644
20633
  * Successful Response
20645
20634
  */
20646
20635
  200: OperationEnvelopeInformationBlockEnvelope;
20647
20636
  };
20648
- export type OpCreateInformationBlockResponse = OpCreateInformationBlockResponses[keyof OpCreateInformationBlockResponses];
20649
- export type OpUpdateInformationBlockData = {
20637
+ export type CreateInformationBlockResponse = CreateInformationBlockResponses[keyof CreateInformationBlockResponses];
20638
+ export type UpdateInformationBlockData = {
20650
20639
  body: UpdateInformationBlockRequest;
20651
20640
  headers?: {
20652
20641
  /**
@@ -20663,7 +20652,7 @@ export type OpUpdateInformationBlockData = {
20663
20652
  query?: never;
20664
20653
  url: '/extensions/roboledger/{graph_id}/operations/update-information-block';
20665
20654
  };
20666
- export type OpUpdateInformationBlockErrors = {
20655
+ export type UpdateInformationBlockErrors = {
20667
20656
  /**
20668
20657
  * Invalid request
20669
20658
  */
@@ -20697,15 +20686,15 @@ export type OpUpdateInformationBlockErrors = {
20697
20686
  */
20698
20687
  500: ErrorResponse;
20699
20688
  };
20700
- export type OpUpdateInformationBlockError = OpUpdateInformationBlockErrors[keyof OpUpdateInformationBlockErrors];
20701
- export type OpUpdateInformationBlockResponses = {
20689
+ export type UpdateInformationBlockError = UpdateInformationBlockErrors[keyof UpdateInformationBlockErrors];
20690
+ export type UpdateInformationBlockResponses = {
20702
20691
  /**
20703
20692
  * Successful Response
20704
20693
  */
20705
20694
  200: OperationEnvelopeInformationBlockEnvelope;
20706
20695
  };
20707
- export type OpUpdateInformationBlockResponse = OpUpdateInformationBlockResponses[keyof OpUpdateInformationBlockResponses];
20708
- export type OpDeleteInformationBlockData = {
20696
+ export type UpdateInformationBlockResponse = UpdateInformationBlockResponses[keyof UpdateInformationBlockResponses];
20697
+ export type DeleteInformationBlockData = {
20709
20698
  body: DeleteInformationBlockRequest;
20710
20699
  headers?: {
20711
20700
  /**
@@ -20722,7 +20711,7 @@ export type OpDeleteInformationBlockData = {
20722
20711
  query?: never;
20723
20712
  url: '/extensions/roboledger/{graph_id}/operations/delete-information-block';
20724
20713
  };
20725
- export type OpDeleteInformationBlockErrors = {
20714
+ export type DeleteInformationBlockErrors = {
20726
20715
  /**
20727
20716
  * Invalid request
20728
20717
  */
@@ -20756,15 +20745,15 @@ export type OpDeleteInformationBlockErrors = {
20756
20745
  */
20757
20746
  500: ErrorResponse;
20758
20747
  };
20759
- export type OpDeleteInformationBlockError = OpDeleteInformationBlockErrors[keyof OpDeleteInformationBlockErrors];
20760
- export type OpDeleteInformationBlockResponses = {
20748
+ export type DeleteInformationBlockError = DeleteInformationBlockErrors[keyof DeleteInformationBlockErrors];
20749
+ export type DeleteInformationBlockResponses = {
20761
20750
  /**
20762
20751
  * Successful Response
20763
20752
  */
20764
20753
  200: OperationEnvelopeDeleteInformationBlockResponse;
20765
20754
  };
20766
- export type OpDeleteInformationBlockResponse = OpDeleteInformationBlockResponses[keyof OpDeleteInformationBlockResponses];
20767
- export type OpEvaluateRulesData = {
20755
+ export type DeleteInformationBlockResponse2 = DeleteInformationBlockResponses[keyof DeleteInformationBlockResponses];
20756
+ export type EvaluateRulesData = {
20768
20757
  body: EvaluateRulesRequest;
20769
20758
  headers?: {
20770
20759
  /**
@@ -20781,7 +20770,7 @@ export type OpEvaluateRulesData = {
20781
20770
  query?: never;
20782
20771
  url: '/extensions/roboledger/{graph_id}/operations/evaluate-rules';
20783
20772
  };
20784
- export type OpEvaluateRulesErrors = {
20773
+ export type EvaluateRulesErrors = {
20785
20774
  /**
20786
20775
  * Invalid request
20787
20776
  */
@@ -20815,15 +20804,15 @@ export type OpEvaluateRulesErrors = {
20815
20804
  */
20816
20805
  500: ErrorResponse;
20817
20806
  };
20818
- export type OpEvaluateRulesError = OpEvaluateRulesErrors[keyof OpEvaluateRulesErrors];
20819
- export type OpEvaluateRulesResponses = {
20807
+ export type EvaluateRulesError = EvaluateRulesErrors[keyof EvaluateRulesErrors];
20808
+ export type EvaluateRulesResponses = {
20820
20809
  /**
20821
20810
  * Successful Response
20822
20811
  */
20823
20812
  200: OperationEnvelopeEvaluateRulesResponse;
20824
20813
  };
20825
- export type OpEvaluateRulesResponse = OpEvaluateRulesResponses[keyof OpEvaluateRulesResponses];
20826
- export type OpCreateAgentData = {
20814
+ export type EvaluateRulesResponse2 = EvaluateRulesResponses[keyof EvaluateRulesResponses];
20815
+ export type CreateAgentData = {
20827
20816
  body: CreateAgentRequest;
20828
20817
  headers?: {
20829
20818
  /**
@@ -20840,7 +20829,7 @@ export type OpCreateAgentData = {
20840
20829
  query?: never;
20841
20830
  url: '/extensions/roboledger/{graph_id}/operations/create-agent';
20842
20831
  };
20843
- export type OpCreateAgentErrors = {
20832
+ export type CreateAgentErrors = {
20844
20833
  /**
20845
20834
  * Invalid request
20846
20835
  */
@@ -20874,15 +20863,15 @@ export type OpCreateAgentErrors = {
20874
20863
  */
20875
20864
  500: ErrorResponse;
20876
20865
  };
20877
- export type OpCreateAgentError = OpCreateAgentErrors[keyof OpCreateAgentErrors];
20878
- export type OpCreateAgentResponses = {
20866
+ export type CreateAgentError = CreateAgentErrors[keyof CreateAgentErrors];
20867
+ export type CreateAgentResponses = {
20879
20868
  /**
20880
20869
  * Successful Response
20881
20870
  */
20882
20871
  200: OperationEnvelopeLedgerAgentResponse;
20883
20872
  };
20884
- export type OpCreateAgentResponse = OpCreateAgentResponses[keyof OpCreateAgentResponses];
20885
- export type OpUpdateAgentData = {
20873
+ export type CreateAgentResponse = CreateAgentResponses[keyof CreateAgentResponses];
20874
+ export type UpdateAgentData = {
20886
20875
  body: UpdateAgentRequest;
20887
20876
  headers?: {
20888
20877
  /**
@@ -20899,7 +20888,7 @@ export type OpUpdateAgentData = {
20899
20888
  query?: never;
20900
20889
  url: '/extensions/roboledger/{graph_id}/operations/update-agent';
20901
20890
  };
20902
- export type OpUpdateAgentErrors = {
20891
+ export type UpdateAgentErrors = {
20903
20892
  /**
20904
20893
  * Invalid request
20905
20894
  */
@@ -20933,15 +20922,15 @@ export type OpUpdateAgentErrors = {
20933
20922
  */
20934
20923
  500: ErrorResponse;
20935
20924
  };
20936
- export type OpUpdateAgentError = OpUpdateAgentErrors[keyof OpUpdateAgentErrors];
20937
- export type OpUpdateAgentResponses = {
20925
+ export type UpdateAgentError = UpdateAgentErrors[keyof UpdateAgentErrors];
20926
+ export type UpdateAgentResponses = {
20938
20927
  /**
20939
20928
  * Successful Response
20940
20929
  */
20941
20930
  200: OperationEnvelopeLedgerAgentResponse;
20942
20931
  };
20943
- export type OpUpdateAgentResponse = OpUpdateAgentResponses[keyof OpUpdateAgentResponses];
20944
- export type OpCreateEventBlockData = {
20932
+ export type UpdateAgentResponse = UpdateAgentResponses[keyof UpdateAgentResponses];
20933
+ export type CreateEventBlockData = {
20945
20934
  body: CreateEventBlockRequest;
20946
20935
  headers?: {
20947
20936
  /**
@@ -20958,7 +20947,7 @@ export type OpCreateEventBlockData = {
20958
20947
  query?: never;
20959
20948
  url: '/extensions/roboledger/{graph_id}/operations/create-event-block';
20960
20949
  };
20961
- export type OpCreateEventBlockErrors = {
20950
+ export type CreateEventBlockErrors = {
20962
20951
  /**
20963
20952
  * Invalid request
20964
20953
  */
@@ -20992,15 +20981,15 @@ export type OpCreateEventBlockErrors = {
20992
20981
  */
20993
20982
  500: ErrorResponse;
20994
20983
  };
20995
- export type OpCreateEventBlockError = OpCreateEventBlockErrors[keyof OpCreateEventBlockErrors];
20996
- export type OpCreateEventBlockResponses = {
20984
+ export type CreateEventBlockError = CreateEventBlockErrors[keyof CreateEventBlockErrors];
20985
+ export type CreateEventBlockResponses = {
20997
20986
  /**
20998
20987
  * Successful Response
20999
20988
  */
21000
20989
  200: OperationEnvelopeEventBlockEnvelope;
21001
20990
  };
21002
- export type OpCreateEventBlockResponse = OpCreateEventBlockResponses[keyof OpCreateEventBlockResponses];
21003
- export type OpUpdateEventBlockData = {
20991
+ export type CreateEventBlockResponse = CreateEventBlockResponses[keyof CreateEventBlockResponses];
20992
+ export type UpdateEventBlockData = {
21004
20993
  body: UpdateEventBlockRequest;
21005
20994
  headers?: {
21006
20995
  /**
@@ -21017,7 +21006,7 @@ export type OpUpdateEventBlockData = {
21017
21006
  query?: never;
21018
21007
  url: '/extensions/roboledger/{graph_id}/operations/update-event-block';
21019
21008
  };
21020
- export type OpUpdateEventBlockErrors = {
21009
+ export type UpdateEventBlockErrors = {
21021
21010
  /**
21022
21011
  * Invalid request
21023
21012
  */
@@ -21051,15 +21040,15 @@ export type OpUpdateEventBlockErrors = {
21051
21040
  */
21052
21041
  500: ErrorResponse;
21053
21042
  };
21054
- export type OpUpdateEventBlockError = OpUpdateEventBlockErrors[keyof OpUpdateEventBlockErrors];
21055
- export type OpUpdateEventBlockResponses = {
21043
+ export type UpdateEventBlockError = UpdateEventBlockErrors[keyof UpdateEventBlockErrors];
21044
+ export type UpdateEventBlockResponses = {
21056
21045
  /**
21057
21046
  * Successful Response
21058
21047
  */
21059
21048
  200: OperationEnvelopeEventBlockEnvelope;
21060
21049
  };
21061
- export type OpUpdateEventBlockResponse = OpUpdateEventBlockResponses[keyof OpUpdateEventBlockResponses];
21062
- export type OpExecuteEventBlockData = {
21050
+ export type UpdateEventBlockResponse = UpdateEventBlockResponses[keyof UpdateEventBlockResponses];
21051
+ export type ExecuteEventBlockData = {
21063
21052
  body: ExecuteEventBlockRequest;
21064
21053
  headers?: {
21065
21054
  /**
@@ -21076,7 +21065,7 @@ export type OpExecuteEventBlockData = {
21076
21065
  query?: never;
21077
21066
  url: '/extensions/roboledger/{graph_id}/operations/execute-event-block';
21078
21067
  };
21079
- export type OpExecuteEventBlockErrors = {
21068
+ export type ExecuteEventBlockErrors = {
21080
21069
  /**
21081
21070
  * Invalid request
21082
21071
  */
@@ -21110,15 +21099,15 @@ export type OpExecuteEventBlockErrors = {
21110
21099
  */
21111
21100
  500: ErrorResponse;
21112
21101
  };
21113
- export type OpExecuteEventBlockError = OpExecuteEventBlockErrors[keyof OpExecuteEventBlockErrors];
21114
- export type OpExecuteEventBlockResponses = {
21102
+ export type ExecuteEventBlockError = ExecuteEventBlockErrors[keyof ExecuteEventBlockErrors];
21103
+ export type ExecuteEventBlockResponses = {
21115
21104
  /**
21116
21105
  * Successful Response
21117
21106
  */
21118
21107
  200: OperationEnvelopeExecuteEventBlockResponse;
21119
21108
  };
21120
- export type OpExecuteEventBlockResponse = OpExecuteEventBlockResponses[keyof OpExecuteEventBlockResponses];
21121
- export type OpCreateEventHandlerData = {
21109
+ export type ExecuteEventBlockResponse2 = ExecuteEventBlockResponses[keyof ExecuteEventBlockResponses];
21110
+ export type CreateEventHandlerData = {
21122
21111
  body: CreateEventHandlerRequest;
21123
21112
  headers?: {
21124
21113
  /**
@@ -21135,7 +21124,7 @@ export type OpCreateEventHandlerData = {
21135
21124
  query?: never;
21136
21125
  url: '/extensions/roboledger/{graph_id}/operations/create-event-handler';
21137
21126
  };
21138
- export type OpCreateEventHandlerErrors = {
21127
+ export type CreateEventHandlerErrors = {
21139
21128
  /**
21140
21129
  * Invalid request
21141
21130
  */
@@ -21169,15 +21158,15 @@ export type OpCreateEventHandlerErrors = {
21169
21158
  */
21170
21159
  500: ErrorResponse;
21171
21160
  };
21172
- export type OpCreateEventHandlerError = OpCreateEventHandlerErrors[keyof OpCreateEventHandlerErrors];
21173
- export type OpCreateEventHandlerResponses = {
21161
+ export type CreateEventHandlerError = CreateEventHandlerErrors[keyof CreateEventHandlerErrors];
21162
+ export type CreateEventHandlerResponses = {
21174
21163
  /**
21175
21164
  * Successful Response
21176
21165
  */
21177
21166
  200: OperationEnvelopeEventHandlerResponse;
21178
21167
  };
21179
- export type OpCreateEventHandlerResponse = OpCreateEventHandlerResponses[keyof OpCreateEventHandlerResponses];
21180
- export type OpUpdateEventHandlerData = {
21168
+ export type CreateEventHandlerResponse = CreateEventHandlerResponses[keyof CreateEventHandlerResponses];
21169
+ export type UpdateEventHandlerData = {
21181
21170
  body: UpdateEventHandlerRequest;
21182
21171
  headers?: {
21183
21172
  /**
@@ -21194,7 +21183,7 @@ export type OpUpdateEventHandlerData = {
21194
21183
  query?: never;
21195
21184
  url: '/extensions/roboledger/{graph_id}/operations/update-event-handler';
21196
21185
  };
21197
- export type OpUpdateEventHandlerErrors = {
21186
+ export type UpdateEventHandlerErrors = {
21198
21187
  /**
21199
21188
  * Invalid request
21200
21189
  */
@@ -21228,15 +21217,15 @@ export type OpUpdateEventHandlerErrors = {
21228
21217
  */
21229
21218
  500: ErrorResponse;
21230
21219
  };
21231
- export type OpUpdateEventHandlerError = OpUpdateEventHandlerErrors[keyof OpUpdateEventHandlerErrors];
21232
- export type OpUpdateEventHandlerResponses = {
21220
+ export type UpdateEventHandlerError = UpdateEventHandlerErrors[keyof UpdateEventHandlerErrors];
21221
+ export type UpdateEventHandlerResponses = {
21233
21222
  /**
21234
21223
  * Successful Response
21235
21224
  */
21236
21225
  200: OperationEnvelopeEventHandlerResponse;
21237
21226
  };
21238
- export type OpUpdateEventHandlerResponse = OpUpdateEventHandlerResponses[keyof OpUpdateEventHandlerResponses];
21239
- export type OpPreviewEventBlockData = {
21227
+ export type UpdateEventHandlerResponse = UpdateEventHandlerResponses[keyof UpdateEventHandlerResponses];
21228
+ export type PreviewEventBlockData = {
21240
21229
  body: CreateEventBlockRequest;
21241
21230
  headers?: {
21242
21231
  /**
@@ -21253,7 +21242,7 @@ export type OpPreviewEventBlockData = {
21253
21242
  query?: never;
21254
21243
  url: '/extensions/roboledger/{graph_id}/operations/preview-event-block';
21255
21244
  };
21256
- export type OpPreviewEventBlockErrors = {
21245
+ export type PreviewEventBlockErrors = {
21257
21246
  /**
21258
21247
  * Invalid request
21259
21248
  */
@@ -21287,15 +21276,15 @@ export type OpPreviewEventBlockErrors = {
21287
21276
  */
21288
21277
  500: ErrorResponse;
21289
21278
  };
21290
- export type OpPreviewEventBlockError = OpPreviewEventBlockErrors[keyof OpPreviewEventBlockErrors];
21291
- export type OpPreviewEventBlockResponses = {
21279
+ export type PreviewEventBlockError = PreviewEventBlockErrors[keyof PreviewEventBlockErrors];
21280
+ export type PreviewEventBlockResponses = {
21292
21281
  /**
21293
21282
  * Successful Response
21294
21283
  */
21295
21284
  200: OperationEnvelopePreviewEventBlockResponse;
21296
21285
  };
21297
- export type OpPreviewEventBlockResponse = OpPreviewEventBlockResponses[keyof OpPreviewEventBlockResponses];
21298
- export type OpUpdateJournalEntryData = {
21286
+ export type PreviewEventBlockResponse2 = PreviewEventBlockResponses[keyof PreviewEventBlockResponses];
21287
+ export type UpdateJournalEntryData = {
21299
21288
  body: UpdateJournalEntryRequest;
21300
21289
  headers?: {
21301
21290
  /**
@@ -21312,7 +21301,7 @@ export type OpUpdateJournalEntryData = {
21312
21301
  query?: never;
21313
21302
  url: '/extensions/roboledger/{graph_id}/operations/update-journal-entry';
21314
21303
  };
21315
- export type OpUpdateJournalEntryErrors = {
21304
+ export type UpdateJournalEntryErrors = {
21316
21305
  /**
21317
21306
  * Invalid request
21318
21307
  */
@@ -21346,15 +21335,15 @@ export type OpUpdateJournalEntryErrors = {
21346
21335
  */
21347
21336
  500: ErrorResponse;
21348
21337
  };
21349
- export type OpUpdateJournalEntryError = OpUpdateJournalEntryErrors[keyof OpUpdateJournalEntryErrors];
21350
- export type OpUpdateJournalEntryResponses = {
21338
+ export type UpdateJournalEntryError = UpdateJournalEntryErrors[keyof UpdateJournalEntryErrors];
21339
+ export type UpdateJournalEntryResponses = {
21351
21340
  /**
21352
21341
  * Successful Response
21353
21342
  */
21354
21343
  200: OperationEnvelopeJournalEntryResponse;
21355
21344
  };
21356
- export type OpUpdateJournalEntryResponse = OpUpdateJournalEntryResponses[keyof OpUpdateJournalEntryResponses];
21357
- export type OpDeleteJournalEntryData = {
21345
+ export type UpdateJournalEntryResponse = UpdateJournalEntryResponses[keyof UpdateJournalEntryResponses];
21346
+ export type DeleteJournalEntryData = {
21358
21347
  body: DeleteJournalEntryRequest;
21359
21348
  headers?: {
21360
21349
  /**
@@ -21371,7 +21360,7 @@ export type OpDeleteJournalEntryData = {
21371
21360
  query?: never;
21372
21361
  url: '/extensions/roboledger/{graph_id}/operations/delete-journal-entry';
21373
21362
  };
21374
- export type OpDeleteJournalEntryErrors = {
21363
+ export type DeleteJournalEntryErrors = {
21375
21364
  /**
21376
21365
  * Invalid request
21377
21366
  */
@@ -21405,15 +21394,15 @@ export type OpDeleteJournalEntryErrors = {
21405
21394
  */
21406
21395
  500: ErrorResponse;
21407
21396
  };
21408
- export type OpDeleteJournalEntryError = OpDeleteJournalEntryErrors[keyof OpDeleteJournalEntryErrors];
21409
- export type OpDeleteJournalEntryResponses = {
21397
+ export type DeleteJournalEntryError = DeleteJournalEntryErrors[keyof DeleteJournalEntryErrors];
21398
+ export type DeleteJournalEntryResponses = {
21410
21399
  /**
21411
21400
  * Successful Response
21412
21401
  */
21413
21402
  200: OperationEnvelopeDeleteResult;
21414
21403
  };
21415
- export type OpDeleteJournalEntryResponse = OpDeleteJournalEntryResponses[keyof OpDeleteJournalEntryResponses];
21416
- export type OpPromoteObligationsData = {
21404
+ export type DeleteJournalEntryResponse = DeleteJournalEntryResponses[keyof DeleteJournalEntryResponses];
21405
+ export type PromoteObligationsData = {
21417
21406
  body: PromoteObligationsRequest;
21418
21407
  headers?: {
21419
21408
  /**
@@ -21430,7 +21419,7 @@ export type OpPromoteObligationsData = {
21430
21419
  query?: never;
21431
21420
  url: '/extensions/roboledger/{graph_id}/operations/promote-obligations';
21432
21421
  };
21433
- export type OpPromoteObligationsErrors = {
21422
+ export type PromoteObligationsErrors = {
21434
21423
  /**
21435
21424
  * Invalid request
21436
21425
  */
@@ -21464,15 +21453,15 @@ export type OpPromoteObligationsErrors = {
21464
21453
  */
21465
21454
  500: ErrorResponse;
21466
21455
  };
21467
- export type OpPromoteObligationsError = OpPromoteObligationsErrors[keyof OpPromoteObligationsErrors];
21468
- export type OpPromoteObligationsResponses = {
21456
+ export type PromoteObligationsError = PromoteObligationsErrors[keyof PromoteObligationsErrors];
21457
+ export type PromoteObligationsResponses = {
21469
21458
  /**
21470
21459
  * Successful Response
21471
21460
  */
21472
21461
  200: OperationEnvelopePromoteObligationsResponse;
21473
21462
  };
21474
- export type OpPromoteObligationsResponse = OpPromoteObligationsResponses[keyof OpPromoteObligationsResponses];
21475
- export type OpRebuildScheduleData = {
21463
+ export type PromoteObligationsResponse2 = PromoteObligationsResponses[keyof PromoteObligationsResponses];
21464
+ export type RebuildScheduleData = {
21476
21465
  body: RebuildScheduleRequest;
21477
21466
  headers?: {
21478
21467
  /**
@@ -21489,7 +21478,7 @@ export type OpRebuildScheduleData = {
21489
21478
  query?: never;
21490
21479
  url: '/extensions/roboledger/{graph_id}/operations/rebuild-schedule';
21491
21480
  };
21492
- export type OpRebuildScheduleErrors = {
21481
+ export type RebuildScheduleErrors = {
21493
21482
  /**
21494
21483
  * Invalid request
21495
21484
  */
@@ -21523,15 +21512,15 @@ export type OpRebuildScheduleErrors = {
21523
21512
  */
21524
21513
  500: ErrorResponse;
21525
21514
  };
21526
- export type OpRebuildScheduleError = OpRebuildScheduleErrors[keyof OpRebuildScheduleErrors];
21527
- export type OpRebuildScheduleResponses = {
21515
+ export type RebuildScheduleError = RebuildScheduleErrors[keyof RebuildScheduleErrors];
21516
+ export type RebuildScheduleResponses = {
21528
21517
  /**
21529
21518
  * Successful Response
21530
21519
  */
21531
21520
  200: OperationEnvelopeScheduleCreatedResponse;
21532
21521
  };
21533
- export type OpRebuildScheduleResponse = OpRebuildScheduleResponses[keyof OpRebuildScheduleResponses];
21534
- export type OpSetCloseTargetData = {
21522
+ export type RebuildScheduleResponse = RebuildScheduleResponses[keyof RebuildScheduleResponses];
21523
+ export type SetCloseTargetData = {
21535
21524
  body: SetCloseTargetOperation;
21536
21525
  headers?: {
21537
21526
  /**
@@ -21548,7 +21537,7 @@ export type OpSetCloseTargetData = {
21548
21537
  query?: never;
21549
21538
  url: '/extensions/roboledger/{graph_id}/operations/set-close-target';
21550
21539
  };
21551
- export type OpSetCloseTargetErrors = {
21540
+ export type SetCloseTargetErrors = {
21552
21541
  /**
21553
21542
  * Invalid request
21554
21543
  */
@@ -21582,15 +21571,15 @@ export type OpSetCloseTargetErrors = {
21582
21571
  */
21583
21572
  500: ErrorResponse;
21584
21573
  };
21585
- export type OpSetCloseTargetError = OpSetCloseTargetErrors[keyof OpSetCloseTargetErrors];
21586
- export type OpSetCloseTargetResponses = {
21574
+ export type SetCloseTargetError = SetCloseTargetErrors[keyof SetCloseTargetErrors];
21575
+ export type SetCloseTargetResponses = {
21587
21576
  /**
21588
21577
  * Successful Response
21589
21578
  */
21590
21579
  200: OperationEnvelopeFiscalCalendarResponse;
21591
21580
  };
21592
- export type OpSetCloseTargetResponse = OpSetCloseTargetResponses[keyof OpSetCloseTargetResponses];
21593
- export type OpClosePeriodData = {
21581
+ export type SetCloseTargetResponse = SetCloseTargetResponses[keyof SetCloseTargetResponses];
21582
+ export type ClosePeriodData = {
21594
21583
  body: ClosePeriodOperation;
21595
21584
  headers?: {
21596
21585
  /**
@@ -21607,7 +21596,7 @@ export type OpClosePeriodData = {
21607
21596
  query?: never;
21608
21597
  url: '/extensions/roboledger/{graph_id}/operations/close-period';
21609
21598
  };
21610
- export type OpClosePeriodErrors = {
21599
+ export type ClosePeriodErrors = {
21611
21600
  /**
21612
21601
  * Invalid request
21613
21602
  */
@@ -21641,15 +21630,15 @@ export type OpClosePeriodErrors = {
21641
21630
  */
21642
21631
  500: ErrorResponse;
21643
21632
  };
21644
- export type OpClosePeriodError = OpClosePeriodErrors[keyof OpClosePeriodErrors];
21645
- export type OpClosePeriodResponses = {
21633
+ export type ClosePeriodError = ClosePeriodErrors[keyof ClosePeriodErrors];
21634
+ export type ClosePeriodResponses = {
21646
21635
  /**
21647
21636
  * Successful Response
21648
21637
  */
21649
21638
  200: OperationEnvelopeClosePeriodResponse;
21650
21639
  };
21651
- export type OpClosePeriodResponse = OpClosePeriodResponses[keyof OpClosePeriodResponses];
21652
- export type OpReopenPeriodData = {
21640
+ export type ClosePeriodResponse2 = ClosePeriodResponses[keyof ClosePeriodResponses];
21641
+ export type ReopenPeriodData = {
21653
21642
  body: ReopenPeriodOperation;
21654
21643
  headers?: {
21655
21644
  /**
@@ -21666,7 +21655,7 @@ export type OpReopenPeriodData = {
21666
21655
  query?: never;
21667
21656
  url: '/extensions/roboledger/{graph_id}/operations/reopen-period';
21668
21657
  };
21669
- export type OpReopenPeriodErrors = {
21658
+ export type ReopenPeriodErrors = {
21670
21659
  /**
21671
21660
  * Invalid request
21672
21661
  */
@@ -21700,15 +21689,15 @@ export type OpReopenPeriodErrors = {
21700
21689
  */
21701
21690
  500: ErrorResponse;
21702
21691
  };
21703
- export type OpReopenPeriodError = OpReopenPeriodErrors[keyof OpReopenPeriodErrors];
21704
- export type OpReopenPeriodResponses = {
21692
+ export type ReopenPeriodError = ReopenPeriodErrors[keyof ReopenPeriodErrors];
21693
+ export type ReopenPeriodResponses = {
21705
21694
  /**
21706
21695
  * Successful Response
21707
21696
  */
21708
21697
  200: OperationEnvelopeFiscalCalendarResponse;
21709
21698
  };
21710
- export type OpReopenPeriodResponse = OpReopenPeriodResponses[keyof OpReopenPeriodResponses];
21711
- export type OpCreateReportData = {
21699
+ export type ReopenPeriodResponse = ReopenPeriodResponses[keyof ReopenPeriodResponses];
21700
+ export type CreateReportData = {
21712
21701
  body: CreateReportRequest;
21713
21702
  headers?: {
21714
21703
  /**
@@ -21725,7 +21714,7 @@ export type OpCreateReportData = {
21725
21714
  query?: never;
21726
21715
  url: '/extensions/roboledger/{graph_id}/operations/create-report';
21727
21716
  };
21728
- export type OpCreateReportErrors = {
21717
+ export type CreateReportErrors = {
21729
21718
  /**
21730
21719
  * Invalid request
21731
21720
  */
@@ -21759,15 +21748,15 @@ export type OpCreateReportErrors = {
21759
21748
  */
21760
21749
  500: ErrorResponse;
21761
21750
  };
21762
- export type OpCreateReportError = OpCreateReportErrors[keyof OpCreateReportErrors];
21763
- export type OpCreateReportResponses = {
21751
+ export type CreateReportError = CreateReportErrors[keyof CreateReportErrors];
21752
+ export type CreateReportResponses = {
21764
21753
  /**
21765
21754
  * Successful Response
21766
21755
  */
21767
21756
  200: OperationEnvelopeReportResponse;
21768
21757
  };
21769
- export type OpCreateReportResponse = OpCreateReportResponses[keyof OpCreateReportResponses];
21770
- export type OpRegenerateReportData = {
21758
+ export type CreateReportResponse = CreateReportResponses[keyof CreateReportResponses];
21759
+ export type RegenerateReportData = {
21771
21760
  body: RegenerateReportOperation;
21772
21761
  headers?: {
21773
21762
  /**
@@ -21784,7 +21773,7 @@ export type OpRegenerateReportData = {
21784
21773
  query?: never;
21785
21774
  url: '/extensions/roboledger/{graph_id}/operations/regenerate-report';
21786
21775
  };
21787
- export type OpRegenerateReportErrors = {
21776
+ export type RegenerateReportErrors = {
21788
21777
  /**
21789
21778
  * Invalid request
21790
21779
  */
@@ -21818,15 +21807,15 @@ export type OpRegenerateReportErrors = {
21818
21807
  */
21819
21808
  500: ErrorResponse;
21820
21809
  };
21821
- export type OpRegenerateReportError = OpRegenerateReportErrors[keyof OpRegenerateReportErrors];
21822
- export type OpRegenerateReportResponses = {
21810
+ export type RegenerateReportError = RegenerateReportErrors[keyof RegenerateReportErrors];
21811
+ export type RegenerateReportResponses = {
21823
21812
  /**
21824
21813
  * Successful Response
21825
21814
  */
21826
21815
  200: OperationEnvelopeReportResponse;
21827
21816
  };
21828
- export type OpRegenerateReportResponse = OpRegenerateReportResponses[keyof OpRegenerateReportResponses];
21829
- export type OpDeleteReportData = {
21817
+ export type RegenerateReportResponse = RegenerateReportResponses[keyof RegenerateReportResponses];
21818
+ export type DeleteReportData = {
21830
21819
  body: DeleteReportOperation;
21831
21820
  headers?: {
21832
21821
  /**
@@ -21843,7 +21832,7 @@ export type OpDeleteReportData = {
21843
21832
  query?: never;
21844
21833
  url: '/extensions/roboledger/{graph_id}/operations/delete-report';
21845
21834
  };
21846
- export type OpDeleteReportErrors = {
21835
+ export type DeleteReportErrors = {
21847
21836
  /**
21848
21837
  * Invalid request
21849
21838
  */
@@ -21877,15 +21866,15 @@ export type OpDeleteReportErrors = {
21877
21866
  */
21878
21867
  500: ErrorResponse;
21879
21868
  };
21880
- export type OpDeleteReportError = OpDeleteReportErrors[keyof OpDeleteReportErrors];
21881
- export type OpDeleteReportResponses = {
21869
+ export type DeleteReportError = DeleteReportErrors[keyof DeleteReportErrors];
21870
+ export type DeleteReportResponses = {
21882
21871
  /**
21883
21872
  * Successful Response
21884
21873
  */
21885
21874
  200: OperationEnvelopeDeleteResult;
21886
21875
  };
21887
- export type OpDeleteReportResponse = OpDeleteReportResponses[keyof OpDeleteReportResponses];
21888
- export type OpShareReportData = {
21876
+ export type DeleteReportResponse = DeleteReportResponses[keyof DeleteReportResponses];
21877
+ export type ShareReportData = {
21889
21878
  body: ShareReportOperation;
21890
21879
  headers?: {
21891
21880
  /**
@@ -21902,7 +21891,7 @@ export type OpShareReportData = {
21902
21891
  query?: never;
21903
21892
  url: '/extensions/roboledger/{graph_id}/operations/share-report';
21904
21893
  };
21905
- export type OpShareReportErrors = {
21894
+ export type ShareReportErrors = {
21906
21895
  /**
21907
21896
  * Invalid request
21908
21897
  */
@@ -21936,15 +21925,15 @@ export type OpShareReportErrors = {
21936
21925
  */
21937
21926
  500: ErrorResponse;
21938
21927
  };
21939
- export type OpShareReportError = OpShareReportErrors[keyof OpShareReportErrors];
21940
- export type OpShareReportResponses = {
21928
+ export type ShareReportError = ShareReportErrors[keyof ShareReportErrors];
21929
+ export type ShareReportResponses = {
21941
21930
  /**
21942
21931
  * Successful Response
21943
21932
  */
21944
21933
  200: OperationEnvelopeShareReportResponse;
21945
21934
  };
21946
- export type OpShareReportResponse = OpShareReportResponses[keyof OpShareReportResponses];
21947
- export type OpFileReportData = {
21935
+ export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
21936
+ export type FileReportData = {
21948
21937
  body: FileReportRequest;
21949
21938
  headers?: {
21950
21939
  /**
@@ -21961,7 +21950,7 @@ export type OpFileReportData = {
21961
21950
  query?: never;
21962
21951
  url: '/extensions/roboledger/{graph_id}/operations/file-report';
21963
21952
  };
21964
- export type OpFileReportErrors = {
21953
+ export type FileReportErrors = {
21965
21954
  /**
21966
21955
  * Invalid request
21967
21956
  */
@@ -21995,15 +21984,15 @@ export type OpFileReportErrors = {
21995
21984
  */
21996
21985
  500: ErrorResponse;
21997
21986
  };
21998
- export type OpFileReportError = OpFileReportErrors[keyof OpFileReportErrors];
21999
- export type OpFileReportResponses = {
21987
+ export type FileReportError = FileReportErrors[keyof FileReportErrors];
21988
+ export type FileReportResponses = {
22000
21989
  /**
22001
21990
  * Successful Response
22002
21991
  */
22003
21992
  200: OperationEnvelopeReportResponse;
22004
21993
  };
22005
- export type OpFileReportResponse = OpFileReportResponses[keyof OpFileReportResponses];
22006
- export type OpTransitionFilingStatusData = {
21994
+ export type FileReportResponse = FileReportResponses[keyof FileReportResponses];
21995
+ export type TransitionFilingStatusData = {
22007
21996
  body: TransitionFilingStatusRequest;
22008
21997
  headers?: {
22009
21998
  /**
@@ -22020,7 +22009,7 @@ export type OpTransitionFilingStatusData = {
22020
22009
  query?: never;
22021
22010
  url: '/extensions/roboledger/{graph_id}/operations/transition-filing-status';
22022
22011
  };
22023
- export type OpTransitionFilingStatusErrors = {
22012
+ export type TransitionFilingStatusErrors = {
22024
22013
  /**
22025
22014
  * Invalid request
22026
22015
  */
@@ -22054,15 +22043,15 @@ export type OpTransitionFilingStatusErrors = {
22054
22043
  */
22055
22044
  500: ErrorResponse;
22056
22045
  };
22057
- export type OpTransitionFilingStatusError = OpTransitionFilingStatusErrors[keyof OpTransitionFilingStatusErrors];
22058
- export type OpTransitionFilingStatusResponses = {
22046
+ export type TransitionFilingStatusError = TransitionFilingStatusErrors[keyof TransitionFilingStatusErrors];
22047
+ export type TransitionFilingStatusResponses = {
22059
22048
  /**
22060
22049
  * Successful Response
22061
22050
  */
22062
22051
  200: OperationEnvelopeReportResponse;
22063
22052
  };
22064
- export type OpTransitionFilingStatusResponse = OpTransitionFilingStatusResponses[keyof OpTransitionFilingStatusResponses];
22065
- export type OpCreatePublishListData = {
22053
+ export type TransitionFilingStatusResponse = TransitionFilingStatusResponses[keyof TransitionFilingStatusResponses];
22054
+ export type CreatePublishListData = {
22066
22055
  body: CreatePublishListRequest;
22067
22056
  headers?: {
22068
22057
  /**
@@ -22079,7 +22068,7 @@ export type OpCreatePublishListData = {
22079
22068
  query?: never;
22080
22069
  url: '/extensions/roboledger/{graph_id}/operations/create-publish-list';
22081
22070
  };
22082
- export type OpCreatePublishListErrors = {
22071
+ export type CreatePublishListErrors = {
22083
22072
  /**
22084
22073
  * Invalid request
22085
22074
  */
@@ -22113,15 +22102,15 @@ export type OpCreatePublishListErrors = {
22113
22102
  */
22114
22103
  500: ErrorResponse;
22115
22104
  };
22116
- export type OpCreatePublishListError = OpCreatePublishListErrors[keyof OpCreatePublishListErrors];
22117
- export type OpCreatePublishListResponses = {
22105
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
22106
+ export type CreatePublishListResponses = {
22118
22107
  /**
22119
22108
  * Successful Response
22120
22109
  */
22121
22110
  200: OperationEnvelopePublishListResponse;
22122
22111
  };
22123
- export type OpCreatePublishListResponse = OpCreatePublishListResponses[keyof OpCreatePublishListResponses];
22124
- export type OpUpdatePublishListData = {
22112
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
22113
+ export type UpdatePublishListData = {
22125
22114
  body: UpdatePublishListOperation;
22126
22115
  headers?: {
22127
22116
  /**
@@ -22138,7 +22127,7 @@ export type OpUpdatePublishListData = {
22138
22127
  query?: never;
22139
22128
  url: '/extensions/roboledger/{graph_id}/operations/update-publish-list';
22140
22129
  };
22141
- export type OpUpdatePublishListErrors = {
22130
+ export type UpdatePublishListErrors = {
22142
22131
  /**
22143
22132
  * Invalid request
22144
22133
  */
@@ -22172,15 +22161,15 @@ export type OpUpdatePublishListErrors = {
22172
22161
  */
22173
22162
  500: ErrorResponse;
22174
22163
  };
22175
- export type OpUpdatePublishListError = OpUpdatePublishListErrors[keyof OpUpdatePublishListErrors];
22176
- export type OpUpdatePublishListResponses = {
22164
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
22165
+ export type UpdatePublishListResponses = {
22177
22166
  /**
22178
22167
  * Successful Response
22179
22168
  */
22180
22169
  200: OperationEnvelopePublishListResponse;
22181
22170
  };
22182
- export type OpUpdatePublishListResponse = OpUpdatePublishListResponses[keyof OpUpdatePublishListResponses];
22183
- export type OpDeletePublishListData = {
22171
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
22172
+ export type DeletePublishListData = {
22184
22173
  body: DeletePublishListOperation;
22185
22174
  headers?: {
22186
22175
  /**
@@ -22197,7 +22186,7 @@ export type OpDeletePublishListData = {
22197
22186
  query?: never;
22198
22187
  url: '/extensions/roboledger/{graph_id}/operations/delete-publish-list';
22199
22188
  };
22200
- export type OpDeletePublishListErrors = {
22189
+ export type DeletePublishListErrors = {
22201
22190
  /**
22202
22191
  * Invalid request
22203
22192
  */
@@ -22231,15 +22220,15 @@ export type OpDeletePublishListErrors = {
22231
22220
  */
22232
22221
  500: ErrorResponse;
22233
22222
  };
22234
- export type OpDeletePublishListError = OpDeletePublishListErrors[keyof OpDeletePublishListErrors];
22235
- export type OpDeletePublishListResponses = {
22223
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
22224
+ export type DeletePublishListResponses = {
22236
22225
  /**
22237
22226
  * Successful Response
22238
22227
  */
22239
22228
  200: OperationEnvelopeDeleteResult;
22240
22229
  };
22241
- export type OpDeletePublishListResponse = OpDeletePublishListResponses[keyof OpDeletePublishListResponses];
22242
- export type OpAddPublishListMembersData = {
22230
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
22231
+ export type AddPublishListMembersData = {
22243
22232
  body: AddPublishListMembersOperation;
22244
22233
  headers?: {
22245
22234
  /**
@@ -22256,7 +22245,7 @@ export type OpAddPublishListMembersData = {
22256
22245
  query?: never;
22257
22246
  url: '/extensions/roboledger/{graph_id}/operations/add-publish-list-members';
22258
22247
  };
22259
- export type OpAddPublishListMembersErrors = {
22248
+ export type AddPublishListMembersErrors = {
22260
22249
  /**
22261
22250
  * Invalid request
22262
22251
  */
@@ -22290,15 +22279,15 @@ export type OpAddPublishListMembersErrors = {
22290
22279
  */
22291
22280
  500: ErrorResponse;
22292
22281
  };
22293
- export type OpAddPublishListMembersError = OpAddPublishListMembersErrors[keyof OpAddPublishListMembersErrors];
22294
- export type OpAddPublishListMembersResponses = {
22282
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
22283
+ export type AddPublishListMembersResponses = {
22295
22284
  /**
22296
22285
  * Successful Response
22297
22286
  */
22298
22287
  200: OperationEnvelopeListPublishListMemberResponse;
22299
22288
  };
22300
- export type OpAddPublishListMembersResponse = OpAddPublishListMembersResponses[keyof OpAddPublishListMembersResponses];
22301
- export type OpRemovePublishListMemberData = {
22289
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
22290
+ export type RemovePublishListMemberData = {
22302
22291
  body: RemovePublishListMemberOperation;
22303
22292
  headers?: {
22304
22293
  /**
@@ -22315,7 +22304,7 @@ export type OpRemovePublishListMemberData = {
22315
22304
  query?: never;
22316
22305
  url: '/extensions/roboledger/{graph_id}/operations/remove-publish-list-member';
22317
22306
  };
22318
- export type OpRemovePublishListMemberErrors = {
22307
+ export type RemovePublishListMemberErrors = {
22319
22308
  /**
22320
22309
  * Invalid request
22321
22310
  */
@@ -22349,15 +22338,15 @@ export type OpRemovePublishListMemberErrors = {
22349
22338
  */
22350
22339
  500: ErrorResponse;
22351
22340
  };
22352
- export type OpRemovePublishListMemberError = OpRemovePublishListMemberErrors[keyof OpRemovePublishListMemberErrors];
22353
- export type OpRemovePublishListMemberResponses = {
22341
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
22342
+ export type RemovePublishListMemberResponses = {
22354
22343
  /**
22355
22344
  * Successful Response
22356
22345
  */
22357
22346
  200: OperationEnvelopeDeleteResult;
22358
22347
  };
22359
- export type OpRemovePublishListMemberResponse = OpRemovePublishListMemberResponses[keyof OpRemovePublishListMemberResponses];
22360
- export type OpLiveFinancialStatementData = {
22348
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
22349
+ export type LiveFinancialStatementData = {
22361
22350
  body: LiveFinancialStatementRequest;
22362
22351
  headers?: {
22363
22352
  /**
@@ -22374,7 +22363,7 @@ export type OpLiveFinancialStatementData = {
22374
22363
  query?: never;
22375
22364
  url: '/extensions/roboledger/{graph_id}/operations/live-financial-statement';
22376
22365
  };
22377
- export type OpLiveFinancialStatementErrors = {
22366
+ export type LiveFinancialStatementErrors = {
22378
22367
  /**
22379
22368
  * Invalid request
22380
22369
  */
@@ -22408,15 +22397,15 @@ export type OpLiveFinancialStatementErrors = {
22408
22397
  */
22409
22398
  500: ErrorResponse;
22410
22399
  };
22411
- export type OpLiveFinancialStatementError = OpLiveFinancialStatementErrors[keyof OpLiveFinancialStatementErrors];
22412
- export type OpLiveFinancialStatementResponses = {
22400
+ export type LiveFinancialStatementError = LiveFinancialStatementErrors[keyof LiveFinancialStatementErrors];
22401
+ export type LiveFinancialStatementResponses = {
22413
22402
  /**
22414
22403
  * Successful Response
22415
22404
  */
22416
22405
  200: OperationEnvelope;
22417
22406
  };
22418
- export type OpLiveFinancialStatementResponse = OpLiveFinancialStatementResponses[keyof OpLiveFinancialStatementResponses];
22419
- export type OpBuildFactGridData = {
22407
+ export type LiveFinancialStatementResponse = LiveFinancialStatementResponses[keyof LiveFinancialStatementResponses];
22408
+ export type BuildFactGridData = {
22420
22409
  body: CreateViewRequest;
22421
22410
  headers?: {
22422
22411
  /**
@@ -22433,7 +22422,7 @@ export type OpBuildFactGridData = {
22433
22422
  query?: never;
22434
22423
  url: '/extensions/roboledger/{graph_id}/operations/build-fact-grid';
22435
22424
  };
22436
- export type OpBuildFactGridErrors = {
22425
+ export type BuildFactGridErrors = {
22437
22426
  /**
22438
22427
  * Invalid request
22439
22428
  */
@@ -22467,15 +22456,15 @@ export type OpBuildFactGridErrors = {
22467
22456
  */
22468
22457
  500: ErrorResponse;
22469
22458
  };
22470
- export type OpBuildFactGridError = OpBuildFactGridErrors[keyof OpBuildFactGridErrors];
22471
- export type OpBuildFactGridResponses = {
22459
+ export type BuildFactGridError = BuildFactGridErrors[keyof BuildFactGridErrors];
22460
+ export type BuildFactGridResponses = {
22472
22461
  /**
22473
22462
  * Successful Response
22474
22463
  */
22475
22464
  200: OperationEnvelope;
22476
22465
  };
22477
- export type OpBuildFactGridResponse = OpBuildFactGridResponses[keyof OpBuildFactGridResponses];
22478
- export type OpFinancialStatementAnalysisData = {
22466
+ export type BuildFactGridResponse = BuildFactGridResponses[keyof BuildFactGridResponses];
22467
+ export type FinancialStatementAnalysisData = {
22479
22468
  body: FinancialStatementAnalysisRequest;
22480
22469
  headers?: {
22481
22470
  /**
@@ -22492,7 +22481,7 @@ export type OpFinancialStatementAnalysisData = {
22492
22481
  query?: never;
22493
22482
  url: '/extensions/roboledger/{graph_id}/operations/financial-statement-analysis';
22494
22483
  };
22495
- export type OpFinancialStatementAnalysisErrors = {
22484
+ export type FinancialStatementAnalysisErrors = {
22496
22485
  /**
22497
22486
  * Invalid request
22498
22487
  */
@@ -22526,15 +22515,15 @@ export type OpFinancialStatementAnalysisErrors = {
22526
22515
  */
22527
22516
  500: ErrorResponse;
22528
22517
  };
22529
- export type OpFinancialStatementAnalysisError = OpFinancialStatementAnalysisErrors[keyof OpFinancialStatementAnalysisErrors];
22530
- export type OpFinancialStatementAnalysisResponses = {
22518
+ export type FinancialStatementAnalysisError = FinancialStatementAnalysisErrors[keyof FinancialStatementAnalysisErrors];
22519
+ export type FinancialStatementAnalysisResponses = {
22531
22520
  /**
22532
22521
  * Successful Response
22533
22522
  */
22534
22523
  200: OperationEnvelope;
22535
22524
  };
22536
- export type OpFinancialStatementAnalysisResponse = OpFinancialStatementAnalysisResponses[keyof OpFinancialStatementAnalysisResponses];
22537
- export type OpCreatePortfolioBlockData = {
22525
+ export type FinancialStatementAnalysisResponse = FinancialStatementAnalysisResponses[keyof FinancialStatementAnalysisResponses];
22526
+ export type CreatePortfolioBlockData = {
22538
22527
  body: CreatePortfolioBlockRequest;
22539
22528
  headers?: {
22540
22529
  /**
@@ -22551,7 +22540,7 @@ export type OpCreatePortfolioBlockData = {
22551
22540
  query?: never;
22552
22541
  url: '/extensions/roboinvestor/{graph_id}/operations/create-portfolio-block';
22553
22542
  };
22554
- export type OpCreatePortfolioBlockErrors = {
22543
+ export type CreatePortfolioBlockErrors = {
22555
22544
  /**
22556
22545
  * Invalid request
22557
22546
  */
@@ -22585,15 +22574,15 @@ export type OpCreatePortfolioBlockErrors = {
22585
22574
  */
22586
22575
  500: ErrorResponse;
22587
22576
  };
22588
- export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
22589
- export type OpCreatePortfolioBlockResponses = {
22577
+ export type CreatePortfolioBlockError = CreatePortfolioBlockErrors[keyof CreatePortfolioBlockErrors];
22578
+ export type CreatePortfolioBlockResponses = {
22590
22579
  /**
22591
22580
  * Successful Response
22592
22581
  */
22593
22582
  200: OperationEnvelopePortfolioBlockEnvelope;
22594
22583
  };
22595
- export type OpCreatePortfolioBlockResponse = OpCreatePortfolioBlockResponses[keyof OpCreatePortfolioBlockResponses];
22596
- export type OpUpdatePortfolioBlockData = {
22584
+ export type CreatePortfolioBlockResponse = CreatePortfolioBlockResponses[keyof CreatePortfolioBlockResponses];
22585
+ export type UpdatePortfolioBlockData = {
22597
22586
  body: UpdatePortfolioBlockOperation;
22598
22587
  headers?: {
22599
22588
  /**
@@ -22610,7 +22599,7 @@ export type OpUpdatePortfolioBlockData = {
22610
22599
  query?: never;
22611
22600
  url: '/extensions/roboinvestor/{graph_id}/operations/update-portfolio-block';
22612
22601
  };
22613
- export type OpUpdatePortfolioBlockErrors = {
22602
+ export type UpdatePortfolioBlockErrors = {
22614
22603
  /**
22615
22604
  * Invalid request
22616
22605
  */
@@ -22644,15 +22633,15 @@ export type OpUpdatePortfolioBlockErrors = {
22644
22633
  */
22645
22634
  500: ErrorResponse;
22646
22635
  };
22647
- export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
22648
- export type OpUpdatePortfolioBlockResponses = {
22636
+ export type UpdatePortfolioBlockError = UpdatePortfolioBlockErrors[keyof UpdatePortfolioBlockErrors];
22637
+ export type UpdatePortfolioBlockResponses = {
22649
22638
  /**
22650
22639
  * Successful Response
22651
22640
  */
22652
22641
  200: OperationEnvelopePortfolioBlockEnvelope;
22653
22642
  };
22654
- export type OpUpdatePortfolioBlockResponse = OpUpdatePortfolioBlockResponses[keyof OpUpdatePortfolioBlockResponses];
22655
- export type OpDeletePortfolioBlockData = {
22643
+ export type UpdatePortfolioBlockResponse = UpdatePortfolioBlockResponses[keyof UpdatePortfolioBlockResponses];
22644
+ export type DeletePortfolioBlockData = {
22656
22645
  body: DeletePortfolioBlockOperation;
22657
22646
  headers?: {
22658
22647
  /**
@@ -22669,7 +22658,7 @@ export type OpDeletePortfolioBlockData = {
22669
22658
  query?: never;
22670
22659
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-portfolio-block';
22671
22660
  };
22672
- export type OpDeletePortfolioBlockErrors = {
22661
+ export type DeletePortfolioBlockErrors = {
22673
22662
  /**
22674
22663
  * Invalid request
22675
22664
  */
@@ -22703,15 +22692,15 @@ export type OpDeletePortfolioBlockErrors = {
22703
22692
  */
22704
22693
  500: ErrorResponse;
22705
22694
  };
22706
- export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
22707
- export type OpDeletePortfolioBlockResponses = {
22695
+ export type DeletePortfolioBlockError = DeletePortfolioBlockErrors[keyof DeletePortfolioBlockErrors];
22696
+ export type DeletePortfolioBlockResponses = {
22708
22697
  /**
22709
22698
  * Successful Response
22710
22699
  */
22711
22700
  200: OperationEnvelopeDeletePortfolioBlockResponse;
22712
22701
  };
22713
- export type OpDeletePortfolioBlockResponse = OpDeletePortfolioBlockResponses[keyof OpDeletePortfolioBlockResponses];
22714
- export type OpCreateSecurityData = {
22702
+ export type DeletePortfolioBlockResponse2 = DeletePortfolioBlockResponses[keyof DeletePortfolioBlockResponses];
22703
+ export type CreateSecurityData = {
22715
22704
  body: CreateSecurityRequest;
22716
22705
  headers?: {
22717
22706
  /**
@@ -22728,7 +22717,7 @@ export type OpCreateSecurityData = {
22728
22717
  query?: never;
22729
22718
  url: '/extensions/roboinvestor/{graph_id}/operations/create-security';
22730
22719
  };
22731
- export type OpCreateSecurityErrors = {
22720
+ export type CreateSecurityErrors = {
22732
22721
  /**
22733
22722
  * Invalid request
22734
22723
  */
@@ -22762,15 +22751,15 @@ export type OpCreateSecurityErrors = {
22762
22751
  */
22763
22752
  500: ErrorResponse;
22764
22753
  };
22765
- export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
22766
- export type OpCreateSecurityResponses = {
22754
+ export type CreateSecurityError = CreateSecurityErrors[keyof CreateSecurityErrors];
22755
+ export type CreateSecurityResponses = {
22767
22756
  /**
22768
22757
  * Successful Response
22769
22758
  */
22770
22759
  200: OperationEnvelopeSecurityResponse;
22771
22760
  };
22772
- export type OpCreateSecurityResponse = OpCreateSecurityResponses[keyof OpCreateSecurityResponses];
22773
- export type OpUpdateSecurityData = {
22761
+ export type CreateSecurityResponse = CreateSecurityResponses[keyof CreateSecurityResponses];
22762
+ export type UpdateSecurityData = {
22774
22763
  body: UpdateSecurityOperation;
22775
22764
  headers?: {
22776
22765
  /**
@@ -22787,7 +22776,7 @@ export type OpUpdateSecurityData = {
22787
22776
  query?: never;
22788
22777
  url: '/extensions/roboinvestor/{graph_id}/operations/update-security';
22789
22778
  };
22790
- export type OpUpdateSecurityErrors = {
22779
+ export type UpdateSecurityErrors = {
22791
22780
  /**
22792
22781
  * Invalid request
22793
22782
  */
@@ -22821,15 +22810,15 @@ export type OpUpdateSecurityErrors = {
22821
22810
  */
22822
22811
  500: ErrorResponse;
22823
22812
  };
22824
- export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
22825
- export type OpUpdateSecurityResponses = {
22813
+ export type UpdateSecurityError = UpdateSecurityErrors[keyof UpdateSecurityErrors];
22814
+ export type UpdateSecurityResponses = {
22826
22815
  /**
22827
22816
  * Successful Response
22828
22817
  */
22829
22818
  200: OperationEnvelopeSecurityResponse;
22830
22819
  };
22831
- export type OpUpdateSecurityResponse = OpUpdateSecurityResponses[keyof OpUpdateSecurityResponses];
22832
- export type OpDeleteSecurityData = {
22820
+ export type UpdateSecurityResponse = UpdateSecurityResponses[keyof UpdateSecurityResponses];
22821
+ export type DeleteSecurityData = {
22833
22822
  body: DeleteSecurityOperation;
22834
22823
  headers?: {
22835
22824
  /**
@@ -22846,7 +22835,7 @@ export type OpDeleteSecurityData = {
22846
22835
  query?: never;
22847
22836
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-security';
22848
22837
  };
22849
- export type OpDeleteSecurityErrors = {
22838
+ export type DeleteSecurityErrors = {
22850
22839
  /**
22851
22840
  * Invalid request
22852
22841
  */
@@ -22880,11 +22869,11 @@ export type OpDeleteSecurityErrors = {
22880
22869
  */
22881
22870
  500: ErrorResponse;
22882
22871
  };
22883
- export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];
22884
- export type OpDeleteSecurityResponses = {
22872
+ export type DeleteSecurityError = DeleteSecurityErrors[keyof DeleteSecurityErrors];
22873
+ export type DeleteSecurityResponses = {
22885
22874
  /**
22886
22875
  * Successful Response
22887
22876
  */
22888
22877
  200: OperationEnvelopeDeleteResult;
22889
22878
  };
22890
- export type OpDeleteSecurityResponse = OpDeleteSecurityResponses[keyof OpDeleteSecurityResponses];
22879
+ export type DeleteSecurityResponse = DeleteSecurityResponses[keyof DeleteSecurityResponses];