@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.ts CHANGED
@@ -2189,7 +2189,7 @@ export type CreateSubgraphRequest = {
2189
2189
  */
2190
2190
  schema_extensions?: Array<string>;
2191
2191
  /**
2192
- * Type of subgraph (currently only 'static' is supported)
2192
+ * Type of subgraph: 'static' (parent's base + extensions), 'knowledge' (knowledge-only schema), or 'empty' (bare database, no schema).
2193
2193
  */
2194
2194
  subgraph_type?: SubgraphType;
2195
2195
  /**
@@ -6711,12 +6711,6 @@ export type MaterializeOp = {
6711
6711
  * Rebuild the graph from scratch, dropping existing data
6712
6712
  */
6713
6713
  rebuild?: boolean;
6714
- /**
6715
- * Ignore Errors
6716
- *
6717
- * Continue past non-fatal row errors
6718
- */
6719
- ignore_errors?: boolean;
6720
6714
  /**
6721
6715
  * Dry Run
6722
6716
  *
@@ -11243,7 +11237,7 @@ export type SearchRequest = {
11243
11237
  /**
11244
11238
  * Source Type
11245
11239
  *
11246
- * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, memory)
11240
+ * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, connection_doc)
11247
11241
  */
11248
11242
  source_type?: string | null;
11249
11243
  /**
@@ -12075,7 +12069,7 @@ export type SubgraphSummary = {
12075
12069
  *
12076
12070
  * Types of subgraphs.
12077
12071
  */
12078
- export type SubgraphType = 'static' | 'temporal' | 'versioned' | 'memory';
12072
+ export type SubgraphType = 'static' | 'knowledge' | 'empty';
12079
12073
 
12080
12074
  /**
12081
12075
  * SuccessResponse
@@ -17497,67 +17491,6 @@ export type ExportGraphSchemaResponses = {
17497
17491
 
17498
17492
  export type ExportGraphSchemaResponse = ExportGraphSchemaResponses[keyof ExportGraphSchemaResponses];
17499
17493
 
17500
- export type ValidateSchemaData = {
17501
- /**
17502
- * Schema definition to validate
17503
- */
17504
- body: SchemaValidationRequest;
17505
- path: {
17506
- /**
17507
- * Graph Id
17508
- */
17509
- graph_id: string;
17510
- };
17511
- query?: never;
17512
- url: '/v1/graphs/{graph_id}/schema/validate';
17513
- };
17514
-
17515
- export type ValidateSchemaErrors = {
17516
- /**
17517
- * Invalid request
17518
- */
17519
- 400: ErrorResponse;
17520
- /**
17521
- * Authentication required
17522
- */
17523
- 401: ErrorResponse;
17524
- /**
17525
- * Access denied
17526
- */
17527
- 403: ErrorResponse;
17528
- /**
17529
- * Resource not found
17530
- */
17531
- 404: ErrorResponse;
17532
- /**
17533
- * Schema fails validation rules
17534
- */
17535
- 422: unknown;
17536
- /**
17537
- * Rate limit exceeded
17538
- */
17539
- 429: ErrorResponse;
17540
- /**
17541
- * Internal server error
17542
- */
17543
- 500: ErrorResponse;
17544
- /**
17545
- * Validation timed out
17546
- */
17547
- 504: unknown;
17548
- };
17549
-
17550
- export type ValidateSchemaError = ValidateSchemaErrors[keyof ValidateSchemaErrors];
17551
-
17552
- export type ValidateSchemaResponses = {
17553
- /**
17554
- * Successful Response
17555
- */
17556
- 200: SchemaValidationResponse;
17557
- };
17558
-
17559
- export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchemaResponses];
17560
-
17561
17494
  export type GetCreditSummaryData = {
17562
17495
  body?: never;
17563
17496
  path: {
@@ -18751,7 +18684,7 @@ export type RecallMemoryResponses = {
18751
18684
 
18752
18685
  export type RecallMemoryResponse = RecallMemoryResponses[keyof RecallMemoryResponses];
18753
18686
 
18754
- export type OpCreateSubgraphData = {
18687
+ export type CreateSubgraphData = {
18755
18688
  body: CreateSubgraphRequest;
18756
18689
  headers?: {
18757
18690
  /**
@@ -18769,7 +18702,7 @@ export type OpCreateSubgraphData = {
18769
18702
  url: '/v1/graphs/{graph_id}/operations/create-subgraph';
18770
18703
  };
18771
18704
 
18772
- export type OpCreateSubgraphErrors = {
18705
+ export type CreateSubgraphErrors = {
18773
18706
  /**
18774
18707
  * Invalid request
18775
18708
  */
@@ -18804,18 +18737,18 @@ export type OpCreateSubgraphErrors = {
18804
18737
  500: ErrorResponse;
18805
18738
  };
18806
18739
 
18807
- export type OpCreateSubgraphError = OpCreateSubgraphErrors[keyof OpCreateSubgraphErrors];
18740
+ export type CreateSubgraphError = CreateSubgraphErrors[keyof CreateSubgraphErrors];
18808
18741
 
18809
- export type OpCreateSubgraphResponses = {
18742
+ export type CreateSubgraphResponses = {
18810
18743
  /**
18811
18744
  * Successful Response
18812
18745
  */
18813
18746
  200: OperationEnvelope;
18814
18747
  };
18815
18748
 
18816
- export type OpCreateSubgraphResponse = OpCreateSubgraphResponses[keyof OpCreateSubgraphResponses];
18749
+ export type CreateSubgraphResponse = CreateSubgraphResponses[keyof CreateSubgraphResponses];
18817
18750
 
18818
- export type OpDeleteSubgraphData = {
18751
+ export type DeleteSubgraphData = {
18819
18752
  body: DeleteSubgraphOp;
18820
18753
  headers?: {
18821
18754
  /**
@@ -18833,7 +18766,7 @@ export type OpDeleteSubgraphData = {
18833
18766
  url: '/v1/graphs/{graph_id}/operations/delete-subgraph';
18834
18767
  };
18835
18768
 
18836
- export type OpDeleteSubgraphErrors = {
18769
+ export type DeleteSubgraphErrors = {
18837
18770
  /**
18838
18771
  * Invalid request
18839
18772
  */
@@ -18868,18 +18801,18 @@ export type OpDeleteSubgraphErrors = {
18868
18801
  500: ErrorResponse;
18869
18802
  };
18870
18803
 
18871
- export type OpDeleteSubgraphError = OpDeleteSubgraphErrors[keyof OpDeleteSubgraphErrors];
18804
+ export type DeleteSubgraphError = DeleteSubgraphErrors[keyof DeleteSubgraphErrors];
18872
18805
 
18873
- export type OpDeleteSubgraphResponses = {
18806
+ export type DeleteSubgraphResponses = {
18874
18807
  /**
18875
18808
  * Successful Response
18876
18809
  */
18877
18810
  200: OperationEnvelope;
18878
18811
  };
18879
18812
 
18880
- export type OpDeleteSubgraphResponse = OpDeleteSubgraphResponses[keyof OpDeleteSubgraphResponses];
18813
+ export type DeleteSubgraphResponse = DeleteSubgraphResponses[keyof DeleteSubgraphResponses];
18881
18814
 
18882
- export type OpDeleteGraphData = {
18815
+ export type DeleteGraphData = {
18883
18816
  body: DeleteGraphOp;
18884
18817
  headers?: {
18885
18818
  /**
@@ -18897,7 +18830,7 @@ export type OpDeleteGraphData = {
18897
18830
  url: '/v1/graphs/{graph_id}/operations/delete-graph';
18898
18831
  };
18899
18832
 
18900
- export type OpDeleteGraphErrors = {
18833
+ export type DeleteGraphErrors = {
18901
18834
  /**
18902
18835
  * Invalid request
18903
18836
  */
@@ -18932,18 +18865,18 @@ export type OpDeleteGraphErrors = {
18932
18865
  500: ErrorResponse;
18933
18866
  };
18934
18867
 
18935
- export type OpDeleteGraphError = OpDeleteGraphErrors[keyof OpDeleteGraphErrors];
18868
+ export type DeleteGraphError = DeleteGraphErrors[keyof DeleteGraphErrors];
18936
18869
 
18937
- export type OpDeleteGraphResponses = {
18870
+ export type DeleteGraphResponses = {
18938
18871
  /**
18939
18872
  * Successful Response
18940
18873
  */
18941
18874
  202: OperationEnvelope;
18942
18875
  };
18943
18876
 
18944
- export type OpDeleteGraphResponse = OpDeleteGraphResponses[keyof OpDeleteGraphResponses];
18877
+ export type DeleteGraphResponse = DeleteGraphResponses[keyof DeleteGraphResponses];
18945
18878
 
18946
- export type OpCreateBackupData = {
18879
+ export type CreateBackupData = {
18947
18880
  body: BackupCreateRequest;
18948
18881
  headers?: {
18949
18882
  /**
@@ -18961,7 +18894,7 @@ export type OpCreateBackupData = {
18961
18894
  url: '/v1/graphs/{graph_id}/operations/create-backup';
18962
18895
  };
18963
18896
 
18964
- export type OpCreateBackupErrors = {
18897
+ export type CreateBackupErrors = {
18965
18898
  /**
18966
18899
  * Invalid request
18967
18900
  */
@@ -18996,18 +18929,18 @@ export type OpCreateBackupErrors = {
18996
18929
  500: ErrorResponse;
18997
18930
  };
18998
18931
 
18999
- export type OpCreateBackupError = OpCreateBackupErrors[keyof OpCreateBackupErrors];
18932
+ export type CreateBackupError = CreateBackupErrors[keyof CreateBackupErrors];
19000
18933
 
19001
- export type OpCreateBackupResponses = {
18934
+ export type CreateBackupResponses = {
19002
18935
  /**
19003
18936
  * Successful Response
19004
18937
  */
19005
18938
  202: OperationEnvelope;
19006
18939
  };
19007
18940
 
19008
- export type OpCreateBackupResponse = OpCreateBackupResponses[keyof OpCreateBackupResponses];
18941
+ export type CreateBackupResponse = CreateBackupResponses[keyof CreateBackupResponses];
19009
18942
 
19010
- export type OpRestoreBackupData = {
18943
+ export type RestoreBackupData = {
19011
18944
  body: RestoreBackupOp;
19012
18945
  headers?: {
19013
18946
  /**
@@ -19025,7 +18958,7 @@ export type OpRestoreBackupData = {
19025
18958
  url: '/v1/graphs/{graph_id}/operations/restore-backup';
19026
18959
  };
19027
18960
 
19028
- export type OpRestoreBackupErrors = {
18961
+ export type RestoreBackupErrors = {
19029
18962
  /**
19030
18963
  * Invalid request
19031
18964
  */
@@ -19060,18 +18993,18 @@ export type OpRestoreBackupErrors = {
19060
18993
  500: ErrorResponse;
19061
18994
  };
19062
18995
 
19063
- export type OpRestoreBackupError = OpRestoreBackupErrors[keyof OpRestoreBackupErrors];
18996
+ export type RestoreBackupError = RestoreBackupErrors[keyof RestoreBackupErrors];
19064
18997
 
19065
- export type OpRestoreBackupResponses = {
18998
+ export type RestoreBackupResponses = {
19066
18999
  /**
19067
19000
  * Successful Response
19068
19001
  */
19069
19002
  202: OperationEnvelope;
19070
19003
  };
19071
19004
 
19072
- export type OpRestoreBackupResponse = OpRestoreBackupResponses[keyof OpRestoreBackupResponses];
19005
+ export type RestoreBackupResponse = RestoreBackupResponses[keyof RestoreBackupResponses];
19073
19006
 
19074
- export type OpChangeTierData = {
19007
+ export type ChangeTierData = {
19075
19008
  body: ChangeTierOp;
19076
19009
  headers?: {
19077
19010
  /**
@@ -19089,7 +19022,7 @@ export type OpChangeTierData = {
19089
19022
  url: '/v1/graphs/{graph_id}/operations/change-tier';
19090
19023
  };
19091
19024
 
19092
- export type OpChangeTierErrors = {
19025
+ export type ChangeTierErrors = {
19093
19026
  /**
19094
19027
  * Invalid request
19095
19028
  */
@@ -19124,18 +19057,18 @@ export type OpChangeTierErrors = {
19124
19057
  500: ErrorResponse;
19125
19058
  };
19126
19059
 
19127
- export type OpChangeTierError = OpChangeTierErrors[keyof OpChangeTierErrors];
19060
+ export type ChangeTierError = ChangeTierErrors[keyof ChangeTierErrors];
19128
19061
 
19129
- export type OpChangeTierResponses = {
19062
+ export type ChangeTierResponses = {
19130
19063
  /**
19131
19064
  * Successful Response
19132
19065
  */
19133
19066
  202: OperationEnvelope;
19134
19067
  };
19135
19068
 
19136
- export type OpChangeTierResponse = OpChangeTierResponses[keyof OpChangeTierResponses];
19069
+ export type ChangeTierResponse = ChangeTierResponses[keyof ChangeTierResponses];
19137
19070
 
19138
- export type OpMaterializeData = {
19071
+ export type MaterializeData = {
19139
19072
  body: MaterializeOp;
19140
19073
  headers?: {
19141
19074
  /**
@@ -19153,7 +19086,7 @@ export type OpMaterializeData = {
19153
19086
  url: '/v1/graphs/{graph_id}/operations/materialize';
19154
19087
  };
19155
19088
 
19156
- export type OpMaterializeErrors = {
19089
+ export type MaterializeErrors = {
19157
19090
  /**
19158
19091
  * Invalid request
19159
19092
  */
@@ -19188,18 +19121,18 @@ export type OpMaterializeErrors = {
19188
19121
  500: ErrorResponse;
19189
19122
  };
19190
19123
 
19191
- export type OpMaterializeError = OpMaterializeErrors[keyof OpMaterializeErrors];
19124
+ export type MaterializeError = MaterializeErrors[keyof MaterializeErrors];
19192
19125
 
19193
- export type OpMaterializeResponses = {
19126
+ export type MaterializeResponses = {
19194
19127
  /**
19195
19128
  * Successful Response
19196
19129
  */
19197
19130
  202: OperationEnvelope;
19198
19131
  };
19199
19132
 
19200
- export type OpMaterializeResponse = OpMaterializeResponses[keyof OpMaterializeResponses];
19133
+ export type MaterializeResponse = MaterializeResponses[keyof MaterializeResponses];
19201
19134
 
19202
- export type OpRememberData = {
19135
+ export type RememberData = {
19203
19136
  body: RememberOp;
19204
19137
  headers?: {
19205
19138
  /**
@@ -19217,7 +19150,7 @@ export type OpRememberData = {
19217
19150
  url: '/v1/graphs/{graph_id}/operations/remember';
19218
19151
  };
19219
19152
 
19220
- export type OpRememberErrors = {
19153
+ export type RememberErrors = {
19221
19154
  /**
19222
19155
  * Invalid request
19223
19156
  */
@@ -19252,18 +19185,18 @@ export type OpRememberErrors = {
19252
19185
  500: ErrorResponse;
19253
19186
  };
19254
19187
 
19255
- export type OpRememberError = OpRememberErrors[keyof OpRememberErrors];
19188
+ export type RememberError = RememberErrors[keyof RememberErrors];
19256
19189
 
19257
- export type OpRememberResponses = {
19190
+ export type RememberResponses = {
19258
19191
  /**
19259
19192
  * Successful Response
19260
19193
  */
19261
19194
  200: OperationEnvelope;
19262
19195
  };
19263
19196
 
19264
- export type OpRememberResponse = OpRememberResponses[keyof OpRememberResponses];
19197
+ export type RememberResponse = RememberResponses[keyof RememberResponses];
19265
19198
 
19266
- export type OpForgetData = {
19199
+ export type ForgetData = {
19267
19200
  body: ForgetOp;
19268
19201
  headers?: {
19269
19202
  /**
@@ -19281,7 +19214,7 @@ export type OpForgetData = {
19281
19214
  url: '/v1/graphs/{graph_id}/operations/forget';
19282
19215
  };
19283
19216
 
19284
- export type OpForgetErrors = {
19217
+ export type ForgetErrors = {
19285
19218
  /**
19286
19219
  * Invalid request
19287
19220
  */
@@ -19316,18 +19249,18 @@ export type OpForgetErrors = {
19316
19249
  500: ErrorResponse;
19317
19250
  };
19318
19251
 
19319
- export type OpForgetError = OpForgetErrors[keyof OpForgetErrors];
19252
+ export type ForgetError = ForgetErrors[keyof ForgetErrors];
19320
19253
 
19321
- export type OpForgetResponses = {
19254
+ export type ForgetResponses = {
19322
19255
  /**
19323
19256
  * Successful Response
19324
19257
  */
19325
19258
  200: OperationEnvelope;
19326
19259
  };
19327
19260
 
19328
- export type OpForgetResponse = OpForgetResponses[keyof OpForgetResponses];
19261
+ export type ForgetResponse = ForgetResponses[keyof ForgetResponses];
19329
19262
 
19330
- export type OpUpdateMemoryData = {
19263
+ export type UpdateMemoryData = {
19331
19264
  body: UpdateMemoryOp;
19332
19265
  headers?: {
19333
19266
  /**
@@ -19345,7 +19278,7 @@ export type OpUpdateMemoryData = {
19345
19278
  url: '/v1/graphs/{graph_id}/operations/update-memory';
19346
19279
  };
19347
19280
 
19348
- export type OpUpdateMemoryErrors = {
19281
+ export type UpdateMemoryErrors = {
19349
19282
  /**
19350
19283
  * Invalid request
19351
19284
  */
@@ -19380,18 +19313,18 @@ export type OpUpdateMemoryErrors = {
19380
19313
  500: ErrorResponse;
19381
19314
  };
19382
19315
 
19383
- export type OpUpdateMemoryError = OpUpdateMemoryErrors[keyof OpUpdateMemoryErrors];
19316
+ export type UpdateMemoryError = UpdateMemoryErrors[keyof UpdateMemoryErrors];
19384
19317
 
19385
- export type OpUpdateMemoryResponses = {
19318
+ export type UpdateMemoryResponses = {
19386
19319
  /**
19387
19320
  * Successful Response
19388
19321
  */
19389
19322
  200: OperationEnvelope;
19390
19323
  };
19391
19324
 
19392
- export type OpUpdateMemoryResponse = OpUpdateMemoryResponses[keyof OpUpdateMemoryResponses];
19325
+ export type UpdateMemoryResponse = UpdateMemoryResponses[keyof UpdateMemoryResponses];
19393
19326
 
19394
- export type OpIndexDocumentData = {
19327
+ export type IndexDocumentData = {
19395
19328
  body: IndexDocumentOp;
19396
19329
  headers?: {
19397
19330
  /**
@@ -19409,7 +19342,7 @@ export type OpIndexDocumentData = {
19409
19342
  url: '/v1/graphs/{graph_id}/operations/index-document';
19410
19343
  };
19411
19344
 
19412
- export type OpIndexDocumentErrors = {
19345
+ export type IndexDocumentErrors = {
19413
19346
  /**
19414
19347
  * Invalid request
19415
19348
  */
@@ -19444,18 +19377,18 @@ export type OpIndexDocumentErrors = {
19444
19377
  500: ErrorResponse;
19445
19378
  };
19446
19379
 
19447
- export type OpIndexDocumentError = OpIndexDocumentErrors[keyof OpIndexDocumentErrors];
19380
+ export type IndexDocumentError = IndexDocumentErrors[keyof IndexDocumentErrors];
19448
19381
 
19449
- export type OpIndexDocumentResponses = {
19382
+ export type IndexDocumentResponses = {
19450
19383
  /**
19451
19384
  * Successful Response
19452
19385
  */
19453
19386
  200: OperationEnvelope;
19454
19387
  };
19455
19388
 
19456
- export type OpIndexDocumentResponse = OpIndexDocumentResponses[keyof OpIndexDocumentResponses];
19389
+ export type IndexDocumentResponse = IndexDocumentResponses[keyof IndexDocumentResponses];
19457
19390
 
19458
- export type OpDeleteDocumentData = {
19391
+ export type DeleteDocumentData = {
19459
19392
  body: DeleteDocumentOp;
19460
19393
  headers?: {
19461
19394
  /**
@@ -19473,7 +19406,7 @@ export type OpDeleteDocumentData = {
19473
19406
  url: '/v1/graphs/{graph_id}/operations/delete-document';
19474
19407
  };
19475
19408
 
19476
- export type OpDeleteDocumentErrors = {
19409
+ export type DeleteDocumentErrors = {
19477
19410
  /**
19478
19411
  * Invalid request
19479
19412
  */
@@ -19508,18 +19441,18 @@ export type OpDeleteDocumentErrors = {
19508
19441
  500: ErrorResponse;
19509
19442
  };
19510
19443
 
19511
- export type OpDeleteDocumentError = OpDeleteDocumentErrors[keyof OpDeleteDocumentErrors];
19444
+ export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
19512
19445
 
19513
- export type OpDeleteDocumentResponses = {
19446
+ export type DeleteDocumentResponses = {
19514
19447
  /**
19515
19448
  * Successful Response
19516
19449
  */
19517
19450
  200: OperationEnvelope;
19518
19451
  };
19519
19452
 
19520
- export type OpDeleteDocumentResponse = OpDeleteDocumentResponses[keyof OpDeleteDocumentResponses];
19453
+ export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
19521
19454
 
19522
- export type OpCreateFileUploadData = {
19455
+ export type CreateFileUploadData = {
19523
19456
  body: FileUploadRequest;
19524
19457
  headers?: {
19525
19458
  /**
@@ -19537,7 +19470,7 @@ export type OpCreateFileUploadData = {
19537
19470
  url: '/v1/graphs/{graph_id}/operations/create-file-upload';
19538
19471
  };
19539
19472
 
19540
- export type OpCreateFileUploadErrors = {
19473
+ export type CreateFileUploadErrors = {
19541
19474
  /**
19542
19475
  * Invalid request
19543
19476
  */
@@ -19572,18 +19505,18 @@ export type OpCreateFileUploadErrors = {
19572
19505
  500: ErrorResponse;
19573
19506
  };
19574
19507
 
19575
- export type OpCreateFileUploadError = OpCreateFileUploadErrors[keyof OpCreateFileUploadErrors];
19508
+ export type CreateFileUploadError = CreateFileUploadErrors[keyof CreateFileUploadErrors];
19576
19509
 
19577
- export type OpCreateFileUploadResponses = {
19510
+ export type CreateFileUploadResponses = {
19578
19511
  /**
19579
19512
  * Successful Response
19580
19513
  */
19581
19514
  200: OperationEnvelope;
19582
19515
  };
19583
19516
 
19584
- export type OpCreateFileUploadResponse = OpCreateFileUploadResponses[keyof OpCreateFileUploadResponses];
19517
+ export type CreateFileUploadResponse = CreateFileUploadResponses[keyof CreateFileUploadResponses];
19585
19518
 
19586
- export type OpIngestFileData = {
19519
+ export type IngestFileData = {
19587
19520
  body: IngestFileOp;
19588
19521
  headers?: {
19589
19522
  /**
@@ -19601,7 +19534,7 @@ export type OpIngestFileData = {
19601
19534
  url: '/v1/graphs/{graph_id}/operations/ingest-file';
19602
19535
  };
19603
19536
 
19604
- export type OpIngestFileErrors = {
19537
+ export type IngestFileErrors = {
19605
19538
  /**
19606
19539
  * Invalid request
19607
19540
  */
@@ -19636,18 +19569,18 @@ export type OpIngestFileErrors = {
19636
19569
  500: ErrorResponse;
19637
19570
  };
19638
19571
 
19639
- export type OpIngestFileError = OpIngestFileErrors[keyof OpIngestFileErrors];
19572
+ export type IngestFileError = IngestFileErrors[keyof IngestFileErrors];
19640
19573
 
19641
- export type OpIngestFileResponses = {
19574
+ export type IngestFileResponses = {
19642
19575
  /**
19643
19576
  * Successful Response
19644
19577
  */
19645
19578
  200: OperationEnvelope;
19646
19579
  };
19647
19580
 
19648
- export type OpIngestFileResponse = OpIngestFileResponses[keyof OpIngestFileResponses];
19581
+ export type IngestFileResponse = IngestFileResponses[keyof IngestFileResponses];
19649
19582
 
19650
- export type OpDeleteFileData = {
19583
+ export type DeleteFileData = {
19651
19584
  body: DeleteFileOp;
19652
19585
  headers?: {
19653
19586
  /**
@@ -19665,7 +19598,7 @@ export type OpDeleteFileData = {
19665
19598
  url: '/v1/graphs/{graph_id}/operations/delete-file';
19666
19599
  };
19667
19600
 
19668
- export type OpDeleteFileErrors = {
19601
+ export type DeleteFileErrors = {
19669
19602
  /**
19670
19603
  * Invalid request
19671
19604
  */
@@ -19700,16 +19633,16 @@ export type OpDeleteFileErrors = {
19700
19633
  500: ErrorResponse;
19701
19634
  };
19702
19635
 
19703
- export type OpDeleteFileError = OpDeleteFileErrors[keyof OpDeleteFileErrors];
19636
+ export type DeleteFileError = DeleteFileErrors[keyof DeleteFileErrors];
19704
19637
 
19705
- export type OpDeleteFileResponses = {
19638
+ export type DeleteFileResponses = {
19706
19639
  /**
19707
19640
  * Successful Response
19708
19641
  */
19709
19642
  200: OperationEnvelope;
19710
19643
  };
19711
19644
 
19712
- export type OpDeleteFileResponse = OpDeleteFileResponses[keyof OpDeleteFileResponses];
19645
+ export type DeleteFileResponse = DeleteFileResponses[keyof DeleteFileResponses];
19713
19646
 
19714
19647
  export type ListFilesData = {
19715
19648
  body?: never;
@@ -20128,6 +20061,62 @@ export type SelectGraphResponses = {
20128
20061
 
20129
20062
  export type SelectGraphResponse = SelectGraphResponses[keyof SelectGraphResponses];
20130
20063
 
20064
+ export type ValidateSchemaData = {
20065
+ /**
20066
+ * Schema definition to validate
20067
+ */
20068
+ body: SchemaValidationRequest;
20069
+ path?: never;
20070
+ query?: never;
20071
+ url: '/v1/graphs/schema/validate';
20072
+ };
20073
+
20074
+ export type ValidateSchemaErrors = {
20075
+ /**
20076
+ * Invalid request
20077
+ */
20078
+ 400: ErrorResponse;
20079
+ /**
20080
+ * Authentication required
20081
+ */
20082
+ 401: ErrorResponse;
20083
+ /**
20084
+ * Access denied
20085
+ */
20086
+ 403: ErrorResponse;
20087
+ /**
20088
+ * Resource not found
20089
+ */
20090
+ 404: ErrorResponse;
20091
+ /**
20092
+ * Schema fails validation rules
20093
+ */
20094
+ 422: unknown;
20095
+ /**
20096
+ * Rate limit exceeded
20097
+ */
20098
+ 429: ErrorResponse;
20099
+ /**
20100
+ * Internal server error
20101
+ */
20102
+ 500: ErrorResponse;
20103
+ /**
20104
+ * Validation timed out
20105
+ */
20106
+ 504: unknown;
20107
+ };
20108
+
20109
+ export type ValidateSchemaError = ValidateSchemaErrors[keyof ValidateSchemaErrors];
20110
+
20111
+ export type ValidateSchemaResponses = {
20112
+ /**
20113
+ * Successful Response
20114
+ */
20115
+ 200: SchemaValidationResponse;
20116
+ };
20117
+
20118
+ export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchemaResponses];
20119
+
20131
20120
  export type GetServiceOfferingsData = {
20132
20121
  body?: never;
20133
20122
  path?: never;
@@ -20942,7 +20931,7 @@ export type HandleHttpPostExtensionsGraphIdGraphqlPostResponses = {
20942
20931
  200: unknown;
20943
20932
  };
20944
20933
 
20945
- export type OpInitializeLedgerData = {
20934
+ export type InitializeLedgerData = {
20946
20935
  body: InitializeLedgerRequest;
20947
20936
  headers?: {
20948
20937
  /**
@@ -20960,7 +20949,7 @@ export type OpInitializeLedgerData = {
20960
20949
  url: '/extensions/roboledger/{graph_id}/operations/initialize';
20961
20950
  };
20962
20951
 
20963
- export type OpInitializeLedgerErrors = {
20952
+ export type InitializeLedgerErrors = {
20964
20953
  /**
20965
20954
  * Invalid request
20966
20955
  */
@@ -20995,18 +20984,18 @@ export type OpInitializeLedgerErrors = {
20995
20984
  500: ErrorResponse;
20996
20985
  };
20997
20986
 
20998
- export type OpInitializeLedgerError = OpInitializeLedgerErrors[keyof OpInitializeLedgerErrors];
20987
+ export type InitializeLedgerError = InitializeLedgerErrors[keyof InitializeLedgerErrors];
20999
20988
 
21000
- export type OpInitializeLedgerResponses = {
20989
+ export type InitializeLedgerResponses = {
21001
20990
  /**
21002
20991
  * Successful Response
21003
20992
  */
21004
20993
  200: OperationEnvelopeInitializeLedgerResponse;
21005
20994
  };
21006
20995
 
21007
- export type OpInitializeLedgerResponse = OpInitializeLedgerResponses[keyof OpInitializeLedgerResponses];
20996
+ export type InitializeLedgerResponse2 = InitializeLedgerResponses[keyof InitializeLedgerResponses];
21008
20997
 
21009
- export type OpUpdateEntityData = {
20998
+ export type UpdateEntityData = {
21010
20999
  body: UpdateEntityRequest;
21011
21000
  headers?: {
21012
21001
  /**
@@ -21024,7 +21013,7 @@ export type OpUpdateEntityData = {
21024
21013
  url: '/extensions/roboledger/{graph_id}/operations/update-entity';
21025
21014
  };
21026
21015
 
21027
- export type OpUpdateEntityErrors = {
21016
+ export type UpdateEntityErrors = {
21028
21017
  /**
21029
21018
  * Invalid request
21030
21019
  */
@@ -21059,18 +21048,18 @@ export type OpUpdateEntityErrors = {
21059
21048
  500: ErrorResponse;
21060
21049
  };
21061
21050
 
21062
- export type OpUpdateEntityError = OpUpdateEntityErrors[keyof OpUpdateEntityErrors];
21051
+ export type UpdateEntityError = UpdateEntityErrors[keyof UpdateEntityErrors];
21063
21052
 
21064
- export type OpUpdateEntityResponses = {
21053
+ export type UpdateEntityResponses = {
21065
21054
  /**
21066
21055
  * Successful Response
21067
21056
  */
21068
21057
  200: OperationEnvelopeLedgerEntityResponse;
21069
21058
  };
21070
21059
 
21071
- export type OpUpdateEntityResponse = OpUpdateEntityResponses[keyof OpUpdateEntityResponses];
21060
+ export type UpdateEntityResponse = UpdateEntityResponses[keyof UpdateEntityResponses];
21072
21061
 
21073
- export type OpChangeReportingStyleData = {
21062
+ export type ChangeReportingStyleData = {
21074
21063
  body: ChangeReportingStyleRequest;
21075
21064
  headers?: {
21076
21065
  /**
@@ -21088,7 +21077,7 @@ export type OpChangeReportingStyleData = {
21088
21077
  url: '/extensions/roboledger/{graph_id}/operations/change-reporting-style';
21089
21078
  };
21090
21079
 
21091
- export type OpChangeReportingStyleErrors = {
21080
+ export type ChangeReportingStyleErrors = {
21092
21081
  /**
21093
21082
  * Invalid request
21094
21083
  */
@@ -21123,18 +21112,18 @@ export type OpChangeReportingStyleErrors = {
21123
21112
  500: ErrorResponse;
21124
21113
  };
21125
21114
 
21126
- export type OpChangeReportingStyleError = OpChangeReportingStyleErrors[keyof OpChangeReportingStyleErrors];
21115
+ export type ChangeReportingStyleError = ChangeReportingStyleErrors[keyof ChangeReportingStyleErrors];
21127
21116
 
21128
- export type OpChangeReportingStyleResponses = {
21117
+ export type ChangeReportingStyleResponses = {
21129
21118
  /**
21130
21119
  * Successful Response
21131
21120
  */
21132
21121
  200: OperationEnvelopeChangeReportingStyleResponse;
21133
21122
  };
21134
21123
 
21135
- export type OpChangeReportingStyleResponse = OpChangeReportingStyleResponses[keyof OpChangeReportingStyleResponses];
21124
+ export type ChangeReportingStyleResponse2 = ChangeReportingStyleResponses[keyof ChangeReportingStyleResponses];
21136
21125
 
21137
- export type OpCreateTaxonomyBlockData = {
21126
+ export type CreateTaxonomyBlockData = {
21138
21127
  body: CreateTaxonomyBlockRequest;
21139
21128
  headers?: {
21140
21129
  /**
@@ -21152,7 +21141,7 @@ export type OpCreateTaxonomyBlockData = {
21152
21141
  url: '/extensions/roboledger/{graph_id}/operations/create-taxonomy-block';
21153
21142
  };
21154
21143
 
21155
- export type OpCreateTaxonomyBlockErrors = {
21144
+ export type CreateTaxonomyBlockErrors = {
21156
21145
  /**
21157
21146
  * Invalid request
21158
21147
  */
@@ -21187,18 +21176,18 @@ export type OpCreateTaxonomyBlockErrors = {
21187
21176
  500: ErrorResponse;
21188
21177
  };
21189
21178
 
21190
- export type OpCreateTaxonomyBlockError = OpCreateTaxonomyBlockErrors[keyof OpCreateTaxonomyBlockErrors];
21179
+ export type CreateTaxonomyBlockError = CreateTaxonomyBlockErrors[keyof CreateTaxonomyBlockErrors];
21191
21180
 
21192
- export type OpCreateTaxonomyBlockResponses = {
21181
+ export type CreateTaxonomyBlockResponses = {
21193
21182
  /**
21194
21183
  * Successful Response
21195
21184
  */
21196
21185
  200: OperationEnvelopeTaxonomyBlockEnvelope;
21197
21186
  };
21198
21187
 
21199
- export type OpCreateTaxonomyBlockResponse = OpCreateTaxonomyBlockResponses[keyof OpCreateTaxonomyBlockResponses];
21188
+ export type CreateTaxonomyBlockResponse = CreateTaxonomyBlockResponses[keyof CreateTaxonomyBlockResponses];
21200
21189
 
21201
- export type OpUpdateTaxonomyBlockData = {
21190
+ export type UpdateTaxonomyBlockData = {
21202
21191
  body: UpdateTaxonomyBlockRequest;
21203
21192
  headers?: {
21204
21193
  /**
@@ -21216,7 +21205,7 @@ export type OpUpdateTaxonomyBlockData = {
21216
21205
  url: '/extensions/roboledger/{graph_id}/operations/update-taxonomy-block';
21217
21206
  };
21218
21207
 
21219
- export type OpUpdateTaxonomyBlockErrors = {
21208
+ export type UpdateTaxonomyBlockErrors = {
21220
21209
  /**
21221
21210
  * Invalid request
21222
21211
  */
@@ -21251,18 +21240,18 @@ export type OpUpdateTaxonomyBlockErrors = {
21251
21240
  500: ErrorResponse;
21252
21241
  };
21253
21242
 
21254
- export type OpUpdateTaxonomyBlockError = OpUpdateTaxonomyBlockErrors[keyof OpUpdateTaxonomyBlockErrors];
21243
+ export type UpdateTaxonomyBlockError = UpdateTaxonomyBlockErrors[keyof UpdateTaxonomyBlockErrors];
21255
21244
 
21256
- export type OpUpdateTaxonomyBlockResponses = {
21245
+ export type UpdateTaxonomyBlockResponses = {
21257
21246
  /**
21258
21247
  * Successful Response
21259
21248
  */
21260
21249
  200: OperationEnvelopeTaxonomyBlockEnvelope;
21261
21250
  };
21262
21251
 
21263
- export type OpUpdateTaxonomyBlockResponse = OpUpdateTaxonomyBlockResponses[keyof OpUpdateTaxonomyBlockResponses];
21252
+ export type UpdateTaxonomyBlockResponse = UpdateTaxonomyBlockResponses[keyof UpdateTaxonomyBlockResponses];
21264
21253
 
21265
- export type OpDeleteTaxonomyBlockData = {
21254
+ export type DeleteTaxonomyBlockData = {
21266
21255
  body: DeleteTaxonomyBlockRequest;
21267
21256
  headers?: {
21268
21257
  /**
@@ -21280,7 +21269,7 @@ export type OpDeleteTaxonomyBlockData = {
21280
21269
  url: '/extensions/roboledger/{graph_id}/operations/delete-taxonomy-block';
21281
21270
  };
21282
21271
 
21283
- export type OpDeleteTaxonomyBlockErrors = {
21272
+ export type DeleteTaxonomyBlockErrors = {
21284
21273
  /**
21285
21274
  * Invalid request
21286
21275
  */
@@ -21315,18 +21304,18 @@ export type OpDeleteTaxonomyBlockErrors = {
21315
21304
  500: ErrorResponse;
21316
21305
  };
21317
21306
 
21318
- export type OpDeleteTaxonomyBlockError = OpDeleteTaxonomyBlockErrors[keyof OpDeleteTaxonomyBlockErrors];
21307
+ export type DeleteTaxonomyBlockError = DeleteTaxonomyBlockErrors[keyof DeleteTaxonomyBlockErrors];
21319
21308
 
21320
- export type OpDeleteTaxonomyBlockResponses = {
21309
+ export type DeleteTaxonomyBlockResponses = {
21321
21310
  /**
21322
21311
  * Successful Response
21323
21312
  */
21324
21313
  200: OperationEnvelopeDeleteTaxonomyBlockResponse;
21325
21314
  };
21326
21315
 
21327
- export type OpDeleteTaxonomyBlockResponse = OpDeleteTaxonomyBlockResponses[keyof OpDeleteTaxonomyBlockResponses];
21316
+ export type DeleteTaxonomyBlockResponse2 = DeleteTaxonomyBlockResponses[keyof DeleteTaxonomyBlockResponses];
21328
21317
 
21329
- export type OpLinkEntityTaxonomyData = {
21318
+ export type LinkEntityTaxonomyData = {
21330
21319
  body: LinkEntityTaxonomyRequest;
21331
21320
  headers?: {
21332
21321
  /**
@@ -21344,7 +21333,7 @@ export type OpLinkEntityTaxonomyData = {
21344
21333
  url: '/extensions/roboledger/{graph_id}/operations/link-entity-taxonomy';
21345
21334
  };
21346
21335
 
21347
- export type OpLinkEntityTaxonomyErrors = {
21336
+ export type LinkEntityTaxonomyErrors = {
21348
21337
  /**
21349
21338
  * Invalid request
21350
21339
  */
@@ -21379,18 +21368,18 @@ export type OpLinkEntityTaxonomyErrors = {
21379
21368
  500: ErrorResponse;
21380
21369
  };
21381
21370
 
21382
- export type OpLinkEntityTaxonomyError = OpLinkEntityTaxonomyErrors[keyof OpLinkEntityTaxonomyErrors];
21371
+ export type LinkEntityTaxonomyError = LinkEntityTaxonomyErrors[keyof LinkEntityTaxonomyErrors];
21383
21372
 
21384
- export type OpLinkEntityTaxonomyResponses = {
21373
+ export type LinkEntityTaxonomyResponses = {
21385
21374
  /**
21386
21375
  * Successful Response
21387
21376
  */
21388
21377
  200: OperationEnvelopeEntityTaxonomyResponse;
21389
21378
  };
21390
21379
 
21391
- export type OpLinkEntityTaxonomyResponse = OpLinkEntityTaxonomyResponses[keyof OpLinkEntityTaxonomyResponses];
21380
+ export type LinkEntityTaxonomyResponse = LinkEntityTaxonomyResponses[keyof LinkEntityTaxonomyResponses];
21392
21381
 
21393
- export type OpCreateMappingAssociationData = {
21382
+ export type CreateMappingAssociationData = {
21394
21383
  body: CreateMappingAssociationOperation;
21395
21384
  headers?: {
21396
21385
  /**
@@ -21408,7 +21397,7 @@ export type OpCreateMappingAssociationData = {
21408
21397
  url: '/extensions/roboledger/{graph_id}/operations/create-mapping-association';
21409
21398
  };
21410
21399
 
21411
- export type OpCreateMappingAssociationErrors = {
21400
+ export type CreateMappingAssociationErrors = {
21412
21401
  /**
21413
21402
  * Invalid request
21414
21403
  */
@@ -21443,18 +21432,18 @@ export type OpCreateMappingAssociationErrors = {
21443
21432
  500: ErrorResponse;
21444
21433
  };
21445
21434
 
21446
- export type OpCreateMappingAssociationError = OpCreateMappingAssociationErrors[keyof OpCreateMappingAssociationErrors];
21435
+ export type CreateMappingAssociationError = CreateMappingAssociationErrors[keyof CreateMappingAssociationErrors];
21447
21436
 
21448
- export type OpCreateMappingAssociationResponses = {
21437
+ export type CreateMappingAssociationResponses = {
21449
21438
  /**
21450
21439
  * Successful Response
21451
21440
  */
21452
21441
  200: OperationEnvelopeAssociationResponse;
21453
21442
  };
21454
21443
 
21455
- export type OpCreateMappingAssociationResponse = OpCreateMappingAssociationResponses[keyof OpCreateMappingAssociationResponses];
21444
+ export type CreateMappingAssociationResponse = CreateMappingAssociationResponses[keyof CreateMappingAssociationResponses];
21456
21445
 
21457
- export type OpDeleteMappingAssociationData = {
21446
+ export type DeleteMappingAssociationData = {
21458
21447
  body: DeleteMappingAssociationOperation;
21459
21448
  headers?: {
21460
21449
  /**
@@ -21472,7 +21461,7 @@ export type OpDeleteMappingAssociationData = {
21472
21461
  url: '/extensions/roboledger/{graph_id}/operations/delete-mapping-association';
21473
21462
  };
21474
21463
 
21475
- export type OpDeleteMappingAssociationErrors = {
21464
+ export type DeleteMappingAssociationErrors = {
21476
21465
  /**
21477
21466
  * Invalid request
21478
21467
  */
@@ -21507,18 +21496,18 @@ export type OpDeleteMappingAssociationErrors = {
21507
21496
  500: ErrorResponse;
21508
21497
  };
21509
21498
 
21510
- export type OpDeleteMappingAssociationError = OpDeleteMappingAssociationErrors[keyof OpDeleteMappingAssociationErrors];
21499
+ export type DeleteMappingAssociationError = DeleteMappingAssociationErrors[keyof DeleteMappingAssociationErrors];
21511
21500
 
21512
- export type OpDeleteMappingAssociationResponses = {
21501
+ export type DeleteMappingAssociationResponses = {
21513
21502
  /**
21514
21503
  * Successful Response
21515
21504
  */
21516
21505
  200: OperationEnvelopeDeleteResult;
21517
21506
  };
21518
21507
 
21519
- export type OpDeleteMappingAssociationResponse = OpDeleteMappingAssociationResponses[keyof OpDeleteMappingAssociationResponses];
21508
+ export type DeleteMappingAssociationResponse = DeleteMappingAssociationResponses[keyof DeleteMappingAssociationResponses];
21520
21509
 
21521
- export type OpAutoMapElementsData = {
21510
+ export type AutoMapElementsData = {
21522
21511
  body: AutoMapElementsOperation;
21523
21512
  headers?: {
21524
21513
  /**
@@ -21536,7 +21525,7 @@ export type OpAutoMapElementsData = {
21536
21525
  url: '/extensions/roboledger/{graph_id}/operations/auto-map-elements';
21537
21526
  };
21538
21527
 
21539
- export type OpAutoMapElementsErrors = {
21528
+ export type AutoMapElementsErrors = {
21540
21529
  /**
21541
21530
  * Invalid request
21542
21531
  */
@@ -21571,18 +21560,18 @@ export type OpAutoMapElementsErrors = {
21571
21560
  500: ErrorResponse;
21572
21561
  };
21573
21562
 
21574
- export type OpAutoMapElementsError = OpAutoMapElementsErrors[keyof OpAutoMapElementsErrors];
21563
+ export type AutoMapElementsError = AutoMapElementsErrors[keyof AutoMapElementsErrors];
21575
21564
 
21576
- export type OpAutoMapElementsResponses = {
21565
+ export type AutoMapElementsResponses = {
21577
21566
  /**
21578
21567
  * Successful Response
21579
21568
  */
21580
21569
  202: OperationEnvelope;
21581
21570
  };
21582
21571
 
21583
- export type OpAutoMapElementsResponse = OpAutoMapElementsResponses[keyof OpAutoMapElementsResponses];
21572
+ export type AutoMapElementsResponse = AutoMapElementsResponses[keyof AutoMapElementsResponses];
21584
21573
 
21585
- export type OpCreateInformationBlockData = {
21574
+ export type CreateInformationBlockData = {
21586
21575
  body: CreateInformationBlockRequest;
21587
21576
  headers?: {
21588
21577
  /**
@@ -21600,7 +21589,7 @@ export type OpCreateInformationBlockData = {
21600
21589
  url: '/extensions/roboledger/{graph_id}/operations/create-information-block';
21601
21590
  };
21602
21591
 
21603
- export type OpCreateInformationBlockErrors = {
21592
+ export type CreateInformationBlockErrors = {
21604
21593
  /**
21605
21594
  * Invalid request
21606
21595
  */
@@ -21635,18 +21624,18 @@ export type OpCreateInformationBlockErrors = {
21635
21624
  500: ErrorResponse;
21636
21625
  };
21637
21626
 
21638
- export type OpCreateInformationBlockError = OpCreateInformationBlockErrors[keyof OpCreateInformationBlockErrors];
21627
+ export type CreateInformationBlockError = CreateInformationBlockErrors[keyof CreateInformationBlockErrors];
21639
21628
 
21640
- export type OpCreateInformationBlockResponses = {
21629
+ export type CreateInformationBlockResponses = {
21641
21630
  /**
21642
21631
  * Successful Response
21643
21632
  */
21644
21633
  200: OperationEnvelopeInformationBlockEnvelope;
21645
21634
  };
21646
21635
 
21647
- export type OpCreateInformationBlockResponse = OpCreateInformationBlockResponses[keyof OpCreateInformationBlockResponses];
21636
+ export type CreateInformationBlockResponse = CreateInformationBlockResponses[keyof CreateInformationBlockResponses];
21648
21637
 
21649
- export type OpUpdateInformationBlockData = {
21638
+ export type UpdateInformationBlockData = {
21650
21639
  body: UpdateInformationBlockRequest;
21651
21640
  headers?: {
21652
21641
  /**
@@ -21664,7 +21653,7 @@ export type OpUpdateInformationBlockData = {
21664
21653
  url: '/extensions/roboledger/{graph_id}/operations/update-information-block';
21665
21654
  };
21666
21655
 
21667
- export type OpUpdateInformationBlockErrors = {
21656
+ export type UpdateInformationBlockErrors = {
21668
21657
  /**
21669
21658
  * Invalid request
21670
21659
  */
@@ -21699,18 +21688,18 @@ export type OpUpdateInformationBlockErrors = {
21699
21688
  500: ErrorResponse;
21700
21689
  };
21701
21690
 
21702
- export type OpUpdateInformationBlockError = OpUpdateInformationBlockErrors[keyof OpUpdateInformationBlockErrors];
21691
+ export type UpdateInformationBlockError = UpdateInformationBlockErrors[keyof UpdateInformationBlockErrors];
21703
21692
 
21704
- export type OpUpdateInformationBlockResponses = {
21693
+ export type UpdateInformationBlockResponses = {
21705
21694
  /**
21706
21695
  * Successful Response
21707
21696
  */
21708
21697
  200: OperationEnvelopeInformationBlockEnvelope;
21709
21698
  };
21710
21699
 
21711
- export type OpUpdateInformationBlockResponse = OpUpdateInformationBlockResponses[keyof OpUpdateInformationBlockResponses];
21700
+ export type UpdateInformationBlockResponse = UpdateInformationBlockResponses[keyof UpdateInformationBlockResponses];
21712
21701
 
21713
- export type OpDeleteInformationBlockData = {
21702
+ export type DeleteInformationBlockData = {
21714
21703
  body: DeleteInformationBlockRequest;
21715
21704
  headers?: {
21716
21705
  /**
@@ -21728,7 +21717,7 @@ export type OpDeleteInformationBlockData = {
21728
21717
  url: '/extensions/roboledger/{graph_id}/operations/delete-information-block';
21729
21718
  };
21730
21719
 
21731
- export type OpDeleteInformationBlockErrors = {
21720
+ export type DeleteInformationBlockErrors = {
21732
21721
  /**
21733
21722
  * Invalid request
21734
21723
  */
@@ -21763,18 +21752,18 @@ export type OpDeleteInformationBlockErrors = {
21763
21752
  500: ErrorResponse;
21764
21753
  };
21765
21754
 
21766
- export type OpDeleteInformationBlockError = OpDeleteInformationBlockErrors[keyof OpDeleteInformationBlockErrors];
21755
+ export type DeleteInformationBlockError = DeleteInformationBlockErrors[keyof DeleteInformationBlockErrors];
21767
21756
 
21768
- export type OpDeleteInformationBlockResponses = {
21757
+ export type DeleteInformationBlockResponses = {
21769
21758
  /**
21770
21759
  * Successful Response
21771
21760
  */
21772
21761
  200: OperationEnvelopeDeleteInformationBlockResponse;
21773
21762
  };
21774
21763
 
21775
- export type OpDeleteInformationBlockResponse = OpDeleteInformationBlockResponses[keyof OpDeleteInformationBlockResponses];
21764
+ export type DeleteInformationBlockResponse2 = DeleteInformationBlockResponses[keyof DeleteInformationBlockResponses];
21776
21765
 
21777
- export type OpEvaluateRulesData = {
21766
+ export type EvaluateRulesData = {
21778
21767
  body: EvaluateRulesRequest;
21779
21768
  headers?: {
21780
21769
  /**
@@ -21792,7 +21781,7 @@ export type OpEvaluateRulesData = {
21792
21781
  url: '/extensions/roboledger/{graph_id}/operations/evaluate-rules';
21793
21782
  };
21794
21783
 
21795
- export type OpEvaluateRulesErrors = {
21784
+ export type EvaluateRulesErrors = {
21796
21785
  /**
21797
21786
  * Invalid request
21798
21787
  */
@@ -21827,18 +21816,18 @@ export type OpEvaluateRulesErrors = {
21827
21816
  500: ErrorResponse;
21828
21817
  };
21829
21818
 
21830
- export type OpEvaluateRulesError = OpEvaluateRulesErrors[keyof OpEvaluateRulesErrors];
21819
+ export type EvaluateRulesError = EvaluateRulesErrors[keyof EvaluateRulesErrors];
21831
21820
 
21832
- export type OpEvaluateRulesResponses = {
21821
+ export type EvaluateRulesResponses = {
21833
21822
  /**
21834
21823
  * Successful Response
21835
21824
  */
21836
21825
  200: OperationEnvelopeEvaluateRulesResponse;
21837
21826
  };
21838
21827
 
21839
- export type OpEvaluateRulesResponse = OpEvaluateRulesResponses[keyof OpEvaluateRulesResponses];
21828
+ export type EvaluateRulesResponse2 = EvaluateRulesResponses[keyof EvaluateRulesResponses];
21840
21829
 
21841
- export type OpCreateAgentData = {
21830
+ export type CreateAgentData = {
21842
21831
  body: CreateAgentRequest;
21843
21832
  headers?: {
21844
21833
  /**
@@ -21856,7 +21845,7 @@ export type OpCreateAgentData = {
21856
21845
  url: '/extensions/roboledger/{graph_id}/operations/create-agent';
21857
21846
  };
21858
21847
 
21859
- export type OpCreateAgentErrors = {
21848
+ export type CreateAgentErrors = {
21860
21849
  /**
21861
21850
  * Invalid request
21862
21851
  */
@@ -21891,18 +21880,18 @@ export type OpCreateAgentErrors = {
21891
21880
  500: ErrorResponse;
21892
21881
  };
21893
21882
 
21894
- export type OpCreateAgentError = OpCreateAgentErrors[keyof OpCreateAgentErrors];
21883
+ export type CreateAgentError = CreateAgentErrors[keyof CreateAgentErrors];
21895
21884
 
21896
- export type OpCreateAgentResponses = {
21885
+ export type CreateAgentResponses = {
21897
21886
  /**
21898
21887
  * Successful Response
21899
21888
  */
21900
21889
  200: OperationEnvelopeLedgerAgentResponse;
21901
21890
  };
21902
21891
 
21903
- export type OpCreateAgentResponse = OpCreateAgentResponses[keyof OpCreateAgentResponses];
21892
+ export type CreateAgentResponse = CreateAgentResponses[keyof CreateAgentResponses];
21904
21893
 
21905
- export type OpUpdateAgentData = {
21894
+ export type UpdateAgentData = {
21906
21895
  body: UpdateAgentRequest;
21907
21896
  headers?: {
21908
21897
  /**
@@ -21920,7 +21909,7 @@ export type OpUpdateAgentData = {
21920
21909
  url: '/extensions/roboledger/{graph_id}/operations/update-agent';
21921
21910
  };
21922
21911
 
21923
- export type OpUpdateAgentErrors = {
21912
+ export type UpdateAgentErrors = {
21924
21913
  /**
21925
21914
  * Invalid request
21926
21915
  */
@@ -21955,18 +21944,18 @@ export type OpUpdateAgentErrors = {
21955
21944
  500: ErrorResponse;
21956
21945
  };
21957
21946
 
21958
- export type OpUpdateAgentError = OpUpdateAgentErrors[keyof OpUpdateAgentErrors];
21947
+ export type UpdateAgentError = UpdateAgentErrors[keyof UpdateAgentErrors];
21959
21948
 
21960
- export type OpUpdateAgentResponses = {
21949
+ export type UpdateAgentResponses = {
21961
21950
  /**
21962
21951
  * Successful Response
21963
21952
  */
21964
21953
  200: OperationEnvelopeLedgerAgentResponse;
21965
21954
  };
21966
21955
 
21967
- export type OpUpdateAgentResponse = OpUpdateAgentResponses[keyof OpUpdateAgentResponses];
21956
+ export type UpdateAgentResponse = UpdateAgentResponses[keyof UpdateAgentResponses];
21968
21957
 
21969
- export type OpCreateEventBlockData = {
21958
+ export type CreateEventBlockData = {
21970
21959
  body: CreateEventBlockRequest;
21971
21960
  headers?: {
21972
21961
  /**
@@ -21984,7 +21973,7 @@ export type OpCreateEventBlockData = {
21984
21973
  url: '/extensions/roboledger/{graph_id}/operations/create-event-block';
21985
21974
  };
21986
21975
 
21987
- export type OpCreateEventBlockErrors = {
21976
+ export type CreateEventBlockErrors = {
21988
21977
  /**
21989
21978
  * Invalid request
21990
21979
  */
@@ -22019,18 +22008,18 @@ export type OpCreateEventBlockErrors = {
22019
22008
  500: ErrorResponse;
22020
22009
  };
22021
22010
 
22022
- export type OpCreateEventBlockError = OpCreateEventBlockErrors[keyof OpCreateEventBlockErrors];
22011
+ export type CreateEventBlockError = CreateEventBlockErrors[keyof CreateEventBlockErrors];
22023
22012
 
22024
- export type OpCreateEventBlockResponses = {
22013
+ export type CreateEventBlockResponses = {
22025
22014
  /**
22026
22015
  * Successful Response
22027
22016
  */
22028
22017
  200: OperationEnvelopeEventBlockEnvelope;
22029
22018
  };
22030
22019
 
22031
- export type OpCreateEventBlockResponse = OpCreateEventBlockResponses[keyof OpCreateEventBlockResponses];
22020
+ export type CreateEventBlockResponse = CreateEventBlockResponses[keyof CreateEventBlockResponses];
22032
22021
 
22033
- export type OpUpdateEventBlockData = {
22022
+ export type UpdateEventBlockData = {
22034
22023
  body: UpdateEventBlockRequest;
22035
22024
  headers?: {
22036
22025
  /**
@@ -22048,7 +22037,7 @@ export type OpUpdateEventBlockData = {
22048
22037
  url: '/extensions/roboledger/{graph_id}/operations/update-event-block';
22049
22038
  };
22050
22039
 
22051
- export type OpUpdateEventBlockErrors = {
22040
+ export type UpdateEventBlockErrors = {
22052
22041
  /**
22053
22042
  * Invalid request
22054
22043
  */
@@ -22083,18 +22072,18 @@ export type OpUpdateEventBlockErrors = {
22083
22072
  500: ErrorResponse;
22084
22073
  };
22085
22074
 
22086
- export type OpUpdateEventBlockError = OpUpdateEventBlockErrors[keyof OpUpdateEventBlockErrors];
22075
+ export type UpdateEventBlockError = UpdateEventBlockErrors[keyof UpdateEventBlockErrors];
22087
22076
 
22088
- export type OpUpdateEventBlockResponses = {
22077
+ export type UpdateEventBlockResponses = {
22089
22078
  /**
22090
22079
  * Successful Response
22091
22080
  */
22092
22081
  200: OperationEnvelopeEventBlockEnvelope;
22093
22082
  };
22094
22083
 
22095
- export type OpUpdateEventBlockResponse = OpUpdateEventBlockResponses[keyof OpUpdateEventBlockResponses];
22084
+ export type UpdateEventBlockResponse = UpdateEventBlockResponses[keyof UpdateEventBlockResponses];
22096
22085
 
22097
- export type OpExecuteEventBlockData = {
22086
+ export type ExecuteEventBlockData = {
22098
22087
  body: ExecuteEventBlockRequest;
22099
22088
  headers?: {
22100
22089
  /**
@@ -22112,7 +22101,7 @@ export type OpExecuteEventBlockData = {
22112
22101
  url: '/extensions/roboledger/{graph_id}/operations/execute-event-block';
22113
22102
  };
22114
22103
 
22115
- export type OpExecuteEventBlockErrors = {
22104
+ export type ExecuteEventBlockErrors = {
22116
22105
  /**
22117
22106
  * Invalid request
22118
22107
  */
@@ -22147,18 +22136,18 @@ export type OpExecuteEventBlockErrors = {
22147
22136
  500: ErrorResponse;
22148
22137
  };
22149
22138
 
22150
- export type OpExecuteEventBlockError = OpExecuteEventBlockErrors[keyof OpExecuteEventBlockErrors];
22139
+ export type ExecuteEventBlockError = ExecuteEventBlockErrors[keyof ExecuteEventBlockErrors];
22151
22140
 
22152
- export type OpExecuteEventBlockResponses = {
22141
+ export type ExecuteEventBlockResponses = {
22153
22142
  /**
22154
22143
  * Successful Response
22155
22144
  */
22156
22145
  200: OperationEnvelopeExecuteEventBlockResponse;
22157
22146
  };
22158
22147
 
22159
- export type OpExecuteEventBlockResponse = OpExecuteEventBlockResponses[keyof OpExecuteEventBlockResponses];
22148
+ export type ExecuteEventBlockResponse2 = ExecuteEventBlockResponses[keyof ExecuteEventBlockResponses];
22160
22149
 
22161
- export type OpCreateEventHandlerData = {
22150
+ export type CreateEventHandlerData = {
22162
22151
  body: CreateEventHandlerRequest;
22163
22152
  headers?: {
22164
22153
  /**
@@ -22176,7 +22165,7 @@ export type OpCreateEventHandlerData = {
22176
22165
  url: '/extensions/roboledger/{graph_id}/operations/create-event-handler';
22177
22166
  };
22178
22167
 
22179
- export type OpCreateEventHandlerErrors = {
22168
+ export type CreateEventHandlerErrors = {
22180
22169
  /**
22181
22170
  * Invalid request
22182
22171
  */
@@ -22211,18 +22200,18 @@ export type OpCreateEventHandlerErrors = {
22211
22200
  500: ErrorResponse;
22212
22201
  };
22213
22202
 
22214
- export type OpCreateEventHandlerError = OpCreateEventHandlerErrors[keyof OpCreateEventHandlerErrors];
22203
+ export type CreateEventHandlerError = CreateEventHandlerErrors[keyof CreateEventHandlerErrors];
22215
22204
 
22216
- export type OpCreateEventHandlerResponses = {
22205
+ export type CreateEventHandlerResponses = {
22217
22206
  /**
22218
22207
  * Successful Response
22219
22208
  */
22220
22209
  200: OperationEnvelopeEventHandlerResponse;
22221
22210
  };
22222
22211
 
22223
- export type OpCreateEventHandlerResponse = OpCreateEventHandlerResponses[keyof OpCreateEventHandlerResponses];
22212
+ export type CreateEventHandlerResponse = CreateEventHandlerResponses[keyof CreateEventHandlerResponses];
22224
22213
 
22225
- export type OpUpdateEventHandlerData = {
22214
+ export type UpdateEventHandlerData = {
22226
22215
  body: UpdateEventHandlerRequest;
22227
22216
  headers?: {
22228
22217
  /**
@@ -22240,7 +22229,7 @@ export type OpUpdateEventHandlerData = {
22240
22229
  url: '/extensions/roboledger/{graph_id}/operations/update-event-handler';
22241
22230
  };
22242
22231
 
22243
- export type OpUpdateEventHandlerErrors = {
22232
+ export type UpdateEventHandlerErrors = {
22244
22233
  /**
22245
22234
  * Invalid request
22246
22235
  */
@@ -22275,18 +22264,18 @@ export type OpUpdateEventHandlerErrors = {
22275
22264
  500: ErrorResponse;
22276
22265
  };
22277
22266
 
22278
- export type OpUpdateEventHandlerError = OpUpdateEventHandlerErrors[keyof OpUpdateEventHandlerErrors];
22267
+ export type UpdateEventHandlerError = UpdateEventHandlerErrors[keyof UpdateEventHandlerErrors];
22279
22268
 
22280
- export type OpUpdateEventHandlerResponses = {
22269
+ export type UpdateEventHandlerResponses = {
22281
22270
  /**
22282
22271
  * Successful Response
22283
22272
  */
22284
22273
  200: OperationEnvelopeEventHandlerResponse;
22285
22274
  };
22286
22275
 
22287
- export type OpUpdateEventHandlerResponse = OpUpdateEventHandlerResponses[keyof OpUpdateEventHandlerResponses];
22276
+ export type UpdateEventHandlerResponse = UpdateEventHandlerResponses[keyof UpdateEventHandlerResponses];
22288
22277
 
22289
- export type OpPreviewEventBlockData = {
22278
+ export type PreviewEventBlockData = {
22290
22279
  body: CreateEventBlockRequest;
22291
22280
  headers?: {
22292
22281
  /**
@@ -22304,7 +22293,7 @@ export type OpPreviewEventBlockData = {
22304
22293
  url: '/extensions/roboledger/{graph_id}/operations/preview-event-block';
22305
22294
  };
22306
22295
 
22307
- export type OpPreviewEventBlockErrors = {
22296
+ export type PreviewEventBlockErrors = {
22308
22297
  /**
22309
22298
  * Invalid request
22310
22299
  */
@@ -22339,18 +22328,18 @@ export type OpPreviewEventBlockErrors = {
22339
22328
  500: ErrorResponse;
22340
22329
  };
22341
22330
 
22342
- export type OpPreviewEventBlockError = OpPreviewEventBlockErrors[keyof OpPreviewEventBlockErrors];
22331
+ export type PreviewEventBlockError = PreviewEventBlockErrors[keyof PreviewEventBlockErrors];
22343
22332
 
22344
- export type OpPreviewEventBlockResponses = {
22333
+ export type PreviewEventBlockResponses = {
22345
22334
  /**
22346
22335
  * Successful Response
22347
22336
  */
22348
22337
  200: OperationEnvelopePreviewEventBlockResponse;
22349
22338
  };
22350
22339
 
22351
- export type OpPreviewEventBlockResponse = OpPreviewEventBlockResponses[keyof OpPreviewEventBlockResponses];
22340
+ export type PreviewEventBlockResponse2 = PreviewEventBlockResponses[keyof PreviewEventBlockResponses];
22352
22341
 
22353
- export type OpUpdateJournalEntryData = {
22342
+ export type UpdateJournalEntryData = {
22354
22343
  body: UpdateJournalEntryRequest;
22355
22344
  headers?: {
22356
22345
  /**
@@ -22368,7 +22357,7 @@ export type OpUpdateJournalEntryData = {
22368
22357
  url: '/extensions/roboledger/{graph_id}/operations/update-journal-entry';
22369
22358
  };
22370
22359
 
22371
- export type OpUpdateJournalEntryErrors = {
22360
+ export type UpdateJournalEntryErrors = {
22372
22361
  /**
22373
22362
  * Invalid request
22374
22363
  */
@@ -22403,18 +22392,18 @@ export type OpUpdateJournalEntryErrors = {
22403
22392
  500: ErrorResponse;
22404
22393
  };
22405
22394
 
22406
- export type OpUpdateJournalEntryError = OpUpdateJournalEntryErrors[keyof OpUpdateJournalEntryErrors];
22395
+ export type UpdateJournalEntryError = UpdateJournalEntryErrors[keyof UpdateJournalEntryErrors];
22407
22396
 
22408
- export type OpUpdateJournalEntryResponses = {
22397
+ export type UpdateJournalEntryResponses = {
22409
22398
  /**
22410
22399
  * Successful Response
22411
22400
  */
22412
22401
  200: OperationEnvelopeJournalEntryResponse;
22413
22402
  };
22414
22403
 
22415
- export type OpUpdateJournalEntryResponse = OpUpdateJournalEntryResponses[keyof OpUpdateJournalEntryResponses];
22404
+ export type UpdateJournalEntryResponse = UpdateJournalEntryResponses[keyof UpdateJournalEntryResponses];
22416
22405
 
22417
- export type OpDeleteJournalEntryData = {
22406
+ export type DeleteJournalEntryData = {
22418
22407
  body: DeleteJournalEntryRequest;
22419
22408
  headers?: {
22420
22409
  /**
@@ -22432,7 +22421,7 @@ export type OpDeleteJournalEntryData = {
22432
22421
  url: '/extensions/roboledger/{graph_id}/operations/delete-journal-entry';
22433
22422
  };
22434
22423
 
22435
- export type OpDeleteJournalEntryErrors = {
22424
+ export type DeleteJournalEntryErrors = {
22436
22425
  /**
22437
22426
  * Invalid request
22438
22427
  */
@@ -22467,18 +22456,18 @@ export type OpDeleteJournalEntryErrors = {
22467
22456
  500: ErrorResponse;
22468
22457
  };
22469
22458
 
22470
- export type OpDeleteJournalEntryError = OpDeleteJournalEntryErrors[keyof OpDeleteJournalEntryErrors];
22459
+ export type DeleteJournalEntryError = DeleteJournalEntryErrors[keyof DeleteJournalEntryErrors];
22471
22460
 
22472
- export type OpDeleteJournalEntryResponses = {
22461
+ export type DeleteJournalEntryResponses = {
22473
22462
  /**
22474
22463
  * Successful Response
22475
22464
  */
22476
22465
  200: OperationEnvelopeDeleteResult;
22477
22466
  };
22478
22467
 
22479
- export type OpDeleteJournalEntryResponse = OpDeleteJournalEntryResponses[keyof OpDeleteJournalEntryResponses];
22468
+ export type DeleteJournalEntryResponse = DeleteJournalEntryResponses[keyof DeleteJournalEntryResponses];
22480
22469
 
22481
- export type OpPromoteObligationsData = {
22470
+ export type PromoteObligationsData = {
22482
22471
  body: PromoteObligationsRequest;
22483
22472
  headers?: {
22484
22473
  /**
@@ -22496,7 +22485,7 @@ export type OpPromoteObligationsData = {
22496
22485
  url: '/extensions/roboledger/{graph_id}/operations/promote-obligations';
22497
22486
  };
22498
22487
 
22499
- export type OpPromoteObligationsErrors = {
22488
+ export type PromoteObligationsErrors = {
22500
22489
  /**
22501
22490
  * Invalid request
22502
22491
  */
@@ -22531,18 +22520,18 @@ export type OpPromoteObligationsErrors = {
22531
22520
  500: ErrorResponse;
22532
22521
  };
22533
22522
 
22534
- export type OpPromoteObligationsError = OpPromoteObligationsErrors[keyof OpPromoteObligationsErrors];
22523
+ export type PromoteObligationsError = PromoteObligationsErrors[keyof PromoteObligationsErrors];
22535
22524
 
22536
- export type OpPromoteObligationsResponses = {
22525
+ export type PromoteObligationsResponses = {
22537
22526
  /**
22538
22527
  * Successful Response
22539
22528
  */
22540
22529
  200: OperationEnvelopePromoteObligationsResponse;
22541
22530
  };
22542
22531
 
22543
- export type OpPromoteObligationsResponse = OpPromoteObligationsResponses[keyof OpPromoteObligationsResponses];
22532
+ export type PromoteObligationsResponse2 = PromoteObligationsResponses[keyof PromoteObligationsResponses];
22544
22533
 
22545
- export type OpRebuildScheduleData = {
22534
+ export type RebuildScheduleData = {
22546
22535
  body: RebuildScheduleRequest;
22547
22536
  headers?: {
22548
22537
  /**
@@ -22560,7 +22549,7 @@ export type OpRebuildScheduleData = {
22560
22549
  url: '/extensions/roboledger/{graph_id}/operations/rebuild-schedule';
22561
22550
  };
22562
22551
 
22563
- export type OpRebuildScheduleErrors = {
22552
+ export type RebuildScheduleErrors = {
22564
22553
  /**
22565
22554
  * Invalid request
22566
22555
  */
@@ -22595,18 +22584,18 @@ export type OpRebuildScheduleErrors = {
22595
22584
  500: ErrorResponse;
22596
22585
  };
22597
22586
 
22598
- export type OpRebuildScheduleError = OpRebuildScheduleErrors[keyof OpRebuildScheduleErrors];
22587
+ export type RebuildScheduleError = RebuildScheduleErrors[keyof RebuildScheduleErrors];
22599
22588
 
22600
- export type OpRebuildScheduleResponses = {
22589
+ export type RebuildScheduleResponses = {
22601
22590
  /**
22602
22591
  * Successful Response
22603
22592
  */
22604
22593
  200: OperationEnvelopeScheduleCreatedResponse;
22605
22594
  };
22606
22595
 
22607
- export type OpRebuildScheduleResponse = OpRebuildScheduleResponses[keyof OpRebuildScheduleResponses];
22596
+ export type RebuildScheduleResponse = RebuildScheduleResponses[keyof RebuildScheduleResponses];
22608
22597
 
22609
- export type OpSetCloseTargetData = {
22598
+ export type SetCloseTargetData = {
22610
22599
  body: SetCloseTargetOperation;
22611
22600
  headers?: {
22612
22601
  /**
@@ -22624,7 +22613,7 @@ export type OpSetCloseTargetData = {
22624
22613
  url: '/extensions/roboledger/{graph_id}/operations/set-close-target';
22625
22614
  };
22626
22615
 
22627
- export type OpSetCloseTargetErrors = {
22616
+ export type SetCloseTargetErrors = {
22628
22617
  /**
22629
22618
  * Invalid request
22630
22619
  */
@@ -22659,18 +22648,18 @@ export type OpSetCloseTargetErrors = {
22659
22648
  500: ErrorResponse;
22660
22649
  };
22661
22650
 
22662
- export type OpSetCloseTargetError = OpSetCloseTargetErrors[keyof OpSetCloseTargetErrors];
22651
+ export type SetCloseTargetError = SetCloseTargetErrors[keyof SetCloseTargetErrors];
22663
22652
 
22664
- export type OpSetCloseTargetResponses = {
22653
+ export type SetCloseTargetResponses = {
22665
22654
  /**
22666
22655
  * Successful Response
22667
22656
  */
22668
22657
  200: OperationEnvelopeFiscalCalendarResponse;
22669
22658
  };
22670
22659
 
22671
- export type OpSetCloseTargetResponse = OpSetCloseTargetResponses[keyof OpSetCloseTargetResponses];
22660
+ export type SetCloseTargetResponse = SetCloseTargetResponses[keyof SetCloseTargetResponses];
22672
22661
 
22673
- export type OpClosePeriodData = {
22662
+ export type ClosePeriodData = {
22674
22663
  body: ClosePeriodOperation;
22675
22664
  headers?: {
22676
22665
  /**
@@ -22688,7 +22677,7 @@ export type OpClosePeriodData = {
22688
22677
  url: '/extensions/roboledger/{graph_id}/operations/close-period';
22689
22678
  };
22690
22679
 
22691
- export type OpClosePeriodErrors = {
22680
+ export type ClosePeriodErrors = {
22692
22681
  /**
22693
22682
  * Invalid request
22694
22683
  */
@@ -22723,18 +22712,18 @@ export type OpClosePeriodErrors = {
22723
22712
  500: ErrorResponse;
22724
22713
  };
22725
22714
 
22726
- export type OpClosePeriodError = OpClosePeriodErrors[keyof OpClosePeriodErrors];
22715
+ export type ClosePeriodError = ClosePeriodErrors[keyof ClosePeriodErrors];
22727
22716
 
22728
- export type OpClosePeriodResponses = {
22717
+ export type ClosePeriodResponses = {
22729
22718
  /**
22730
22719
  * Successful Response
22731
22720
  */
22732
22721
  200: OperationEnvelopeClosePeriodResponse;
22733
22722
  };
22734
22723
 
22735
- export type OpClosePeriodResponse = OpClosePeriodResponses[keyof OpClosePeriodResponses];
22724
+ export type ClosePeriodResponse2 = ClosePeriodResponses[keyof ClosePeriodResponses];
22736
22725
 
22737
- export type OpReopenPeriodData = {
22726
+ export type ReopenPeriodData = {
22738
22727
  body: ReopenPeriodOperation;
22739
22728
  headers?: {
22740
22729
  /**
@@ -22752,7 +22741,7 @@ export type OpReopenPeriodData = {
22752
22741
  url: '/extensions/roboledger/{graph_id}/operations/reopen-period';
22753
22742
  };
22754
22743
 
22755
- export type OpReopenPeriodErrors = {
22744
+ export type ReopenPeriodErrors = {
22756
22745
  /**
22757
22746
  * Invalid request
22758
22747
  */
@@ -22787,18 +22776,18 @@ export type OpReopenPeriodErrors = {
22787
22776
  500: ErrorResponse;
22788
22777
  };
22789
22778
 
22790
- export type OpReopenPeriodError = OpReopenPeriodErrors[keyof OpReopenPeriodErrors];
22779
+ export type ReopenPeriodError = ReopenPeriodErrors[keyof ReopenPeriodErrors];
22791
22780
 
22792
- export type OpReopenPeriodResponses = {
22781
+ export type ReopenPeriodResponses = {
22793
22782
  /**
22794
22783
  * Successful Response
22795
22784
  */
22796
22785
  200: OperationEnvelopeFiscalCalendarResponse;
22797
22786
  };
22798
22787
 
22799
- export type OpReopenPeriodResponse = OpReopenPeriodResponses[keyof OpReopenPeriodResponses];
22788
+ export type ReopenPeriodResponse = ReopenPeriodResponses[keyof ReopenPeriodResponses];
22800
22789
 
22801
- export type OpCreateReportData = {
22790
+ export type CreateReportData = {
22802
22791
  body: CreateReportRequest;
22803
22792
  headers?: {
22804
22793
  /**
@@ -22816,7 +22805,7 @@ export type OpCreateReportData = {
22816
22805
  url: '/extensions/roboledger/{graph_id}/operations/create-report';
22817
22806
  };
22818
22807
 
22819
- export type OpCreateReportErrors = {
22808
+ export type CreateReportErrors = {
22820
22809
  /**
22821
22810
  * Invalid request
22822
22811
  */
@@ -22851,18 +22840,18 @@ export type OpCreateReportErrors = {
22851
22840
  500: ErrorResponse;
22852
22841
  };
22853
22842
 
22854
- export type OpCreateReportError = OpCreateReportErrors[keyof OpCreateReportErrors];
22843
+ export type CreateReportError = CreateReportErrors[keyof CreateReportErrors];
22855
22844
 
22856
- export type OpCreateReportResponses = {
22845
+ export type CreateReportResponses = {
22857
22846
  /**
22858
22847
  * Successful Response
22859
22848
  */
22860
22849
  200: OperationEnvelopeReportResponse;
22861
22850
  };
22862
22851
 
22863
- export type OpCreateReportResponse = OpCreateReportResponses[keyof OpCreateReportResponses];
22852
+ export type CreateReportResponse = CreateReportResponses[keyof CreateReportResponses];
22864
22853
 
22865
- export type OpRegenerateReportData = {
22854
+ export type RegenerateReportData = {
22866
22855
  body: RegenerateReportOperation;
22867
22856
  headers?: {
22868
22857
  /**
@@ -22880,7 +22869,7 @@ export type OpRegenerateReportData = {
22880
22869
  url: '/extensions/roboledger/{graph_id}/operations/regenerate-report';
22881
22870
  };
22882
22871
 
22883
- export type OpRegenerateReportErrors = {
22872
+ export type RegenerateReportErrors = {
22884
22873
  /**
22885
22874
  * Invalid request
22886
22875
  */
@@ -22915,18 +22904,18 @@ export type OpRegenerateReportErrors = {
22915
22904
  500: ErrorResponse;
22916
22905
  };
22917
22906
 
22918
- export type OpRegenerateReportError = OpRegenerateReportErrors[keyof OpRegenerateReportErrors];
22907
+ export type RegenerateReportError = RegenerateReportErrors[keyof RegenerateReportErrors];
22919
22908
 
22920
- export type OpRegenerateReportResponses = {
22909
+ export type RegenerateReportResponses = {
22921
22910
  /**
22922
22911
  * Successful Response
22923
22912
  */
22924
22913
  200: OperationEnvelopeReportResponse;
22925
22914
  };
22926
22915
 
22927
- export type OpRegenerateReportResponse = OpRegenerateReportResponses[keyof OpRegenerateReportResponses];
22916
+ export type RegenerateReportResponse = RegenerateReportResponses[keyof RegenerateReportResponses];
22928
22917
 
22929
- export type OpDeleteReportData = {
22918
+ export type DeleteReportData = {
22930
22919
  body: DeleteReportOperation;
22931
22920
  headers?: {
22932
22921
  /**
@@ -22944,7 +22933,7 @@ export type OpDeleteReportData = {
22944
22933
  url: '/extensions/roboledger/{graph_id}/operations/delete-report';
22945
22934
  };
22946
22935
 
22947
- export type OpDeleteReportErrors = {
22936
+ export type DeleteReportErrors = {
22948
22937
  /**
22949
22938
  * Invalid request
22950
22939
  */
@@ -22979,18 +22968,18 @@ export type OpDeleteReportErrors = {
22979
22968
  500: ErrorResponse;
22980
22969
  };
22981
22970
 
22982
- export type OpDeleteReportError = OpDeleteReportErrors[keyof OpDeleteReportErrors];
22971
+ export type DeleteReportError = DeleteReportErrors[keyof DeleteReportErrors];
22983
22972
 
22984
- export type OpDeleteReportResponses = {
22973
+ export type DeleteReportResponses = {
22985
22974
  /**
22986
22975
  * Successful Response
22987
22976
  */
22988
22977
  200: OperationEnvelopeDeleteResult;
22989
22978
  };
22990
22979
 
22991
- export type OpDeleteReportResponse = OpDeleteReportResponses[keyof OpDeleteReportResponses];
22980
+ export type DeleteReportResponse = DeleteReportResponses[keyof DeleteReportResponses];
22992
22981
 
22993
- export type OpShareReportData = {
22982
+ export type ShareReportData = {
22994
22983
  body: ShareReportOperation;
22995
22984
  headers?: {
22996
22985
  /**
@@ -23008,7 +22997,7 @@ export type OpShareReportData = {
23008
22997
  url: '/extensions/roboledger/{graph_id}/operations/share-report';
23009
22998
  };
23010
22999
 
23011
- export type OpShareReportErrors = {
23000
+ export type ShareReportErrors = {
23012
23001
  /**
23013
23002
  * Invalid request
23014
23003
  */
@@ -23043,18 +23032,18 @@ export type OpShareReportErrors = {
23043
23032
  500: ErrorResponse;
23044
23033
  };
23045
23034
 
23046
- export type OpShareReportError = OpShareReportErrors[keyof OpShareReportErrors];
23035
+ export type ShareReportError = ShareReportErrors[keyof ShareReportErrors];
23047
23036
 
23048
- export type OpShareReportResponses = {
23037
+ export type ShareReportResponses = {
23049
23038
  /**
23050
23039
  * Successful Response
23051
23040
  */
23052
23041
  200: OperationEnvelopeShareReportResponse;
23053
23042
  };
23054
23043
 
23055
- export type OpShareReportResponse = OpShareReportResponses[keyof OpShareReportResponses];
23044
+ export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
23056
23045
 
23057
- export type OpFileReportData = {
23046
+ export type FileReportData = {
23058
23047
  body: FileReportRequest;
23059
23048
  headers?: {
23060
23049
  /**
@@ -23072,7 +23061,7 @@ export type OpFileReportData = {
23072
23061
  url: '/extensions/roboledger/{graph_id}/operations/file-report';
23073
23062
  };
23074
23063
 
23075
- export type OpFileReportErrors = {
23064
+ export type FileReportErrors = {
23076
23065
  /**
23077
23066
  * Invalid request
23078
23067
  */
@@ -23107,18 +23096,18 @@ export type OpFileReportErrors = {
23107
23096
  500: ErrorResponse;
23108
23097
  };
23109
23098
 
23110
- export type OpFileReportError = OpFileReportErrors[keyof OpFileReportErrors];
23099
+ export type FileReportError = FileReportErrors[keyof FileReportErrors];
23111
23100
 
23112
- export type OpFileReportResponses = {
23101
+ export type FileReportResponses = {
23113
23102
  /**
23114
23103
  * Successful Response
23115
23104
  */
23116
23105
  200: OperationEnvelopeReportResponse;
23117
23106
  };
23118
23107
 
23119
- export type OpFileReportResponse = OpFileReportResponses[keyof OpFileReportResponses];
23108
+ export type FileReportResponse = FileReportResponses[keyof FileReportResponses];
23120
23109
 
23121
- export type OpTransitionFilingStatusData = {
23110
+ export type TransitionFilingStatusData = {
23122
23111
  body: TransitionFilingStatusRequest;
23123
23112
  headers?: {
23124
23113
  /**
@@ -23136,7 +23125,7 @@ export type OpTransitionFilingStatusData = {
23136
23125
  url: '/extensions/roboledger/{graph_id}/operations/transition-filing-status';
23137
23126
  };
23138
23127
 
23139
- export type OpTransitionFilingStatusErrors = {
23128
+ export type TransitionFilingStatusErrors = {
23140
23129
  /**
23141
23130
  * Invalid request
23142
23131
  */
@@ -23171,18 +23160,18 @@ export type OpTransitionFilingStatusErrors = {
23171
23160
  500: ErrorResponse;
23172
23161
  };
23173
23162
 
23174
- export type OpTransitionFilingStatusError = OpTransitionFilingStatusErrors[keyof OpTransitionFilingStatusErrors];
23163
+ export type TransitionFilingStatusError = TransitionFilingStatusErrors[keyof TransitionFilingStatusErrors];
23175
23164
 
23176
- export type OpTransitionFilingStatusResponses = {
23165
+ export type TransitionFilingStatusResponses = {
23177
23166
  /**
23178
23167
  * Successful Response
23179
23168
  */
23180
23169
  200: OperationEnvelopeReportResponse;
23181
23170
  };
23182
23171
 
23183
- export type OpTransitionFilingStatusResponse = OpTransitionFilingStatusResponses[keyof OpTransitionFilingStatusResponses];
23172
+ export type TransitionFilingStatusResponse = TransitionFilingStatusResponses[keyof TransitionFilingStatusResponses];
23184
23173
 
23185
- export type OpCreatePublishListData = {
23174
+ export type CreatePublishListData = {
23186
23175
  body: CreatePublishListRequest;
23187
23176
  headers?: {
23188
23177
  /**
@@ -23200,7 +23189,7 @@ export type OpCreatePublishListData = {
23200
23189
  url: '/extensions/roboledger/{graph_id}/operations/create-publish-list';
23201
23190
  };
23202
23191
 
23203
- export type OpCreatePublishListErrors = {
23192
+ export type CreatePublishListErrors = {
23204
23193
  /**
23205
23194
  * Invalid request
23206
23195
  */
@@ -23235,18 +23224,18 @@ export type OpCreatePublishListErrors = {
23235
23224
  500: ErrorResponse;
23236
23225
  };
23237
23226
 
23238
- export type OpCreatePublishListError = OpCreatePublishListErrors[keyof OpCreatePublishListErrors];
23227
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
23239
23228
 
23240
- export type OpCreatePublishListResponses = {
23229
+ export type CreatePublishListResponses = {
23241
23230
  /**
23242
23231
  * Successful Response
23243
23232
  */
23244
23233
  200: OperationEnvelopePublishListResponse;
23245
23234
  };
23246
23235
 
23247
- export type OpCreatePublishListResponse = OpCreatePublishListResponses[keyof OpCreatePublishListResponses];
23236
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
23248
23237
 
23249
- export type OpUpdatePublishListData = {
23238
+ export type UpdatePublishListData = {
23250
23239
  body: UpdatePublishListOperation;
23251
23240
  headers?: {
23252
23241
  /**
@@ -23264,7 +23253,7 @@ export type OpUpdatePublishListData = {
23264
23253
  url: '/extensions/roboledger/{graph_id}/operations/update-publish-list';
23265
23254
  };
23266
23255
 
23267
- export type OpUpdatePublishListErrors = {
23256
+ export type UpdatePublishListErrors = {
23268
23257
  /**
23269
23258
  * Invalid request
23270
23259
  */
@@ -23299,18 +23288,18 @@ export type OpUpdatePublishListErrors = {
23299
23288
  500: ErrorResponse;
23300
23289
  };
23301
23290
 
23302
- export type OpUpdatePublishListError = OpUpdatePublishListErrors[keyof OpUpdatePublishListErrors];
23291
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
23303
23292
 
23304
- export type OpUpdatePublishListResponses = {
23293
+ export type UpdatePublishListResponses = {
23305
23294
  /**
23306
23295
  * Successful Response
23307
23296
  */
23308
23297
  200: OperationEnvelopePublishListResponse;
23309
23298
  };
23310
23299
 
23311
- export type OpUpdatePublishListResponse = OpUpdatePublishListResponses[keyof OpUpdatePublishListResponses];
23300
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
23312
23301
 
23313
- export type OpDeletePublishListData = {
23302
+ export type DeletePublishListData = {
23314
23303
  body: DeletePublishListOperation;
23315
23304
  headers?: {
23316
23305
  /**
@@ -23328,7 +23317,7 @@ export type OpDeletePublishListData = {
23328
23317
  url: '/extensions/roboledger/{graph_id}/operations/delete-publish-list';
23329
23318
  };
23330
23319
 
23331
- export type OpDeletePublishListErrors = {
23320
+ export type DeletePublishListErrors = {
23332
23321
  /**
23333
23322
  * Invalid request
23334
23323
  */
@@ -23363,18 +23352,18 @@ export type OpDeletePublishListErrors = {
23363
23352
  500: ErrorResponse;
23364
23353
  };
23365
23354
 
23366
- export type OpDeletePublishListError = OpDeletePublishListErrors[keyof OpDeletePublishListErrors];
23355
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
23367
23356
 
23368
- export type OpDeletePublishListResponses = {
23357
+ export type DeletePublishListResponses = {
23369
23358
  /**
23370
23359
  * Successful Response
23371
23360
  */
23372
23361
  200: OperationEnvelopeDeleteResult;
23373
23362
  };
23374
23363
 
23375
- export type OpDeletePublishListResponse = OpDeletePublishListResponses[keyof OpDeletePublishListResponses];
23364
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
23376
23365
 
23377
- export type OpAddPublishListMembersData = {
23366
+ export type AddPublishListMembersData = {
23378
23367
  body: AddPublishListMembersOperation;
23379
23368
  headers?: {
23380
23369
  /**
@@ -23392,7 +23381,7 @@ export type OpAddPublishListMembersData = {
23392
23381
  url: '/extensions/roboledger/{graph_id}/operations/add-publish-list-members';
23393
23382
  };
23394
23383
 
23395
- export type OpAddPublishListMembersErrors = {
23384
+ export type AddPublishListMembersErrors = {
23396
23385
  /**
23397
23386
  * Invalid request
23398
23387
  */
@@ -23427,18 +23416,18 @@ export type OpAddPublishListMembersErrors = {
23427
23416
  500: ErrorResponse;
23428
23417
  };
23429
23418
 
23430
- export type OpAddPublishListMembersError = OpAddPublishListMembersErrors[keyof OpAddPublishListMembersErrors];
23419
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
23431
23420
 
23432
- export type OpAddPublishListMembersResponses = {
23421
+ export type AddPublishListMembersResponses = {
23433
23422
  /**
23434
23423
  * Successful Response
23435
23424
  */
23436
23425
  200: OperationEnvelopeListPublishListMemberResponse;
23437
23426
  };
23438
23427
 
23439
- export type OpAddPublishListMembersResponse = OpAddPublishListMembersResponses[keyof OpAddPublishListMembersResponses];
23428
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
23440
23429
 
23441
- export type OpRemovePublishListMemberData = {
23430
+ export type RemovePublishListMemberData = {
23442
23431
  body: RemovePublishListMemberOperation;
23443
23432
  headers?: {
23444
23433
  /**
@@ -23456,7 +23445,7 @@ export type OpRemovePublishListMemberData = {
23456
23445
  url: '/extensions/roboledger/{graph_id}/operations/remove-publish-list-member';
23457
23446
  };
23458
23447
 
23459
- export type OpRemovePublishListMemberErrors = {
23448
+ export type RemovePublishListMemberErrors = {
23460
23449
  /**
23461
23450
  * Invalid request
23462
23451
  */
@@ -23491,18 +23480,18 @@ export type OpRemovePublishListMemberErrors = {
23491
23480
  500: ErrorResponse;
23492
23481
  };
23493
23482
 
23494
- export type OpRemovePublishListMemberError = OpRemovePublishListMemberErrors[keyof OpRemovePublishListMemberErrors];
23483
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
23495
23484
 
23496
- export type OpRemovePublishListMemberResponses = {
23485
+ export type RemovePublishListMemberResponses = {
23497
23486
  /**
23498
23487
  * Successful Response
23499
23488
  */
23500
23489
  200: OperationEnvelopeDeleteResult;
23501
23490
  };
23502
23491
 
23503
- export type OpRemovePublishListMemberResponse = OpRemovePublishListMemberResponses[keyof OpRemovePublishListMemberResponses];
23492
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
23504
23493
 
23505
- export type OpLiveFinancialStatementData = {
23494
+ export type LiveFinancialStatementData = {
23506
23495
  body: LiveFinancialStatementRequest;
23507
23496
  headers?: {
23508
23497
  /**
@@ -23520,7 +23509,7 @@ export type OpLiveFinancialStatementData = {
23520
23509
  url: '/extensions/roboledger/{graph_id}/operations/live-financial-statement';
23521
23510
  };
23522
23511
 
23523
- export type OpLiveFinancialStatementErrors = {
23512
+ export type LiveFinancialStatementErrors = {
23524
23513
  /**
23525
23514
  * Invalid request
23526
23515
  */
@@ -23555,18 +23544,18 @@ export type OpLiveFinancialStatementErrors = {
23555
23544
  500: ErrorResponse;
23556
23545
  };
23557
23546
 
23558
- export type OpLiveFinancialStatementError = OpLiveFinancialStatementErrors[keyof OpLiveFinancialStatementErrors];
23547
+ export type LiveFinancialStatementError = LiveFinancialStatementErrors[keyof LiveFinancialStatementErrors];
23559
23548
 
23560
- export type OpLiveFinancialStatementResponses = {
23549
+ export type LiveFinancialStatementResponses = {
23561
23550
  /**
23562
23551
  * Successful Response
23563
23552
  */
23564
23553
  200: OperationEnvelope;
23565
23554
  };
23566
23555
 
23567
- export type OpLiveFinancialStatementResponse = OpLiveFinancialStatementResponses[keyof OpLiveFinancialStatementResponses];
23556
+ export type LiveFinancialStatementResponse = LiveFinancialStatementResponses[keyof LiveFinancialStatementResponses];
23568
23557
 
23569
- export type OpBuildFactGridData = {
23558
+ export type BuildFactGridData = {
23570
23559
  body: CreateViewRequest;
23571
23560
  headers?: {
23572
23561
  /**
@@ -23584,7 +23573,7 @@ export type OpBuildFactGridData = {
23584
23573
  url: '/extensions/roboledger/{graph_id}/operations/build-fact-grid';
23585
23574
  };
23586
23575
 
23587
- export type OpBuildFactGridErrors = {
23576
+ export type BuildFactGridErrors = {
23588
23577
  /**
23589
23578
  * Invalid request
23590
23579
  */
@@ -23619,18 +23608,18 @@ export type OpBuildFactGridErrors = {
23619
23608
  500: ErrorResponse;
23620
23609
  };
23621
23610
 
23622
- export type OpBuildFactGridError = OpBuildFactGridErrors[keyof OpBuildFactGridErrors];
23611
+ export type BuildFactGridError = BuildFactGridErrors[keyof BuildFactGridErrors];
23623
23612
 
23624
- export type OpBuildFactGridResponses = {
23613
+ export type BuildFactGridResponses = {
23625
23614
  /**
23626
23615
  * Successful Response
23627
23616
  */
23628
23617
  200: OperationEnvelope;
23629
23618
  };
23630
23619
 
23631
- export type OpBuildFactGridResponse = OpBuildFactGridResponses[keyof OpBuildFactGridResponses];
23620
+ export type BuildFactGridResponse = BuildFactGridResponses[keyof BuildFactGridResponses];
23632
23621
 
23633
- export type OpFinancialStatementAnalysisData = {
23622
+ export type FinancialStatementAnalysisData = {
23634
23623
  body: FinancialStatementAnalysisRequest;
23635
23624
  headers?: {
23636
23625
  /**
@@ -23648,7 +23637,7 @@ export type OpFinancialStatementAnalysisData = {
23648
23637
  url: '/extensions/roboledger/{graph_id}/operations/financial-statement-analysis';
23649
23638
  };
23650
23639
 
23651
- export type OpFinancialStatementAnalysisErrors = {
23640
+ export type FinancialStatementAnalysisErrors = {
23652
23641
  /**
23653
23642
  * Invalid request
23654
23643
  */
@@ -23683,18 +23672,18 @@ export type OpFinancialStatementAnalysisErrors = {
23683
23672
  500: ErrorResponse;
23684
23673
  };
23685
23674
 
23686
- export type OpFinancialStatementAnalysisError = OpFinancialStatementAnalysisErrors[keyof OpFinancialStatementAnalysisErrors];
23675
+ export type FinancialStatementAnalysisError = FinancialStatementAnalysisErrors[keyof FinancialStatementAnalysisErrors];
23687
23676
 
23688
- export type OpFinancialStatementAnalysisResponses = {
23677
+ export type FinancialStatementAnalysisResponses = {
23689
23678
  /**
23690
23679
  * Successful Response
23691
23680
  */
23692
23681
  200: OperationEnvelope;
23693
23682
  };
23694
23683
 
23695
- export type OpFinancialStatementAnalysisResponse = OpFinancialStatementAnalysisResponses[keyof OpFinancialStatementAnalysisResponses];
23684
+ export type FinancialStatementAnalysisResponse = FinancialStatementAnalysisResponses[keyof FinancialStatementAnalysisResponses];
23696
23685
 
23697
- export type OpCreatePortfolioBlockData = {
23686
+ export type CreatePortfolioBlockData = {
23698
23687
  body: CreatePortfolioBlockRequest;
23699
23688
  headers?: {
23700
23689
  /**
@@ -23712,7 +23701,7 @@ export type OpCreatePortfolioBlockData = {
23712
23701
  url: '/extensions/roboinvestor/{graph_id}/operations/create-portfolio-block';
23713
23702
  };
23714
23703
 
23715
- export type OpCreatePortfolioBlockErrors = {
23704
+ export type CreatePortfolioBlockErrors = {
23716
23705
  /**
23717
23706
  * Invalid request
23718
23707
  */
@@ -23747,18 +23736,18 @@ export type OpCreatePortfolioBlockErrors = {
23747
23736
  500: ErrorResponse;
23748
23737
  };
23749
23738
 
23750
- export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
23739
+ export type CreatePortfolioBlockError = CreatePortfolioBlockErrors[keyof CreatePortfolioBlockErrors];
23751
23740
 
23752
- export type OpCreatePortfolioBlockResponses = {
23741
+ export type CreatePortfolioBlockResponses = {
23753
23742
  /**
23754
23743
  * Successful Response
23755
23744
  */
23756
23745
  200: OperationEnvelopePortfolioBlockEnvelope;
23757
23746
  };
23758
23747
 
23759
- export type OpCreatePortfolioBlockResponse = OpCreatePortfolioBlockResponses[keyof OpCreatePortfolioBlockResponses];
23748
+ export type CreatePortfolioBlockResponse = CreatePortfolioBlockResponses[keyof CreatePortfolioBlockResponses];
23760
23749
 
23761
- export type OpUpdatePortfolioBlockData = {
23750
+ export type UpdatePortfolioBlockData = {
23762
23751
  body: UpdatePortfolioBlockOperation;
23763
23752
  headers?: {
23764
23753
  /**
@@ -23776,7 +23765,7 @@ export type OpUpdatePortfolioBlockData = {
23776
23765
  url: '/extensions/roboinvestor/{graph_id}/operations/update-portfolio-block';
23777
23766
  };
23778
23767
 
23779
- export type OpUpdatePortfolioBlockErrors = {
23768
+ export type UpdatePortfolioBlockErrors = {
23780
23769
  /**
23781
23770
  * Invalid request
23782
23771
  */
@@ -23811,18 +23800,18 @@ export type OpUpdatePortfolioBlockErrors = {
23811
23800
  500: ErrorResponse;
23812
23801
  };
23813
23802
 
23814
- export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
23803
+ export type UpdatePortfolioBlockError = UpdatePortfolioBlockErrors[keyof UpdatePortfolioBlockErrors];
23815
23804
 
23816
- export type OpUpdatePortfolioBlockResponses = {
23805
+ export type UpdatePortfolioBlockResponses = {
23817
23806
  /**
23818
23807
  * Successful Response
23819
23808
  */
23820
23809
  200: OperationEnvelopePortfolioBlockEnvelope;
23821
23810
  };
23822
23811
 
23823
- export type OpUpdatePortfolioBlockResponse = OpUpdatePortfolioBlockResponses[keyof OpUpdatePortfolioBlockResponses];
23812
+ export type UpdatePortfolioBlockResponse = UpdatePortfolioBlockResponses[keyof UpdatePortfolioBlockResponses];
23824
23813
 
23825
- export type OpDeletePortfolioBlockData = {
23814
+ export type DeletePortfolioBlockData = {
23826
23815
  body: DeletePortfolioBlockOperation;
23827
23816
  headers?: {
23828
23817
  /**
@@ -23840,7 +23829,7 @@ export type OpDeletePortfolioBlockData = {
23840
23829
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-portfolio-block';
23841
23830
  };
23842
23831
 
23843
- export type OpDeletePortfolioBlockErrors = {
23832
+ export type DeletePortfolioBlockErrors = {
23844
23833
  /**
23845
23834
  * Invalid request
23846
23835
  */
@@ -23875,18 +23864,18 @@ export type OpDeletePortfolioBlockErrors = {
23875
23864
  500: ErrorResponse;
23876
23865
  };
23877
23866
 
23878
- export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
23867
+ export type DeletePortfolioBlockError = DeletePortfolioBlockErrors[keyof DeletePortfolioBlockErrors];
23879
23868
 
23880
- export type OpDeletePortfolioBlockResponses = {
23869
+ export type DeletePortfolioBlockResponses = {
23881
23870
  /**
23882
23871
  * Successful Response
23883
23872
  */
23884
23873
  200: OperationEnvelopeDeletePortfolioBlockResponse;
23885
23874
  };
23886
23875
 
23887
- export type OpDeletePortfolioBlockResponse = OpDeletePortfolioBlockResponses[keyof OpDeletePortfolioBlockResponses];
23876
+ export type DeletePortfolioBlockResponse2 = DeletePortfolioBlockResponses[keyof DeletePortfolioBlockResponses];
23888
23877
 
23889
- export type OpCreateSecurityData = {
23878
+ export type CreateSecurityData = {
23890
23879
  body: CreateSecurityRequest;
23891
23880
  headers?: {
23892
23881
  /**
@@ -23904,7 +23893,7 @@ export type OpCreateSecurityData = {
23904
23893
  url: '/extensions/roboinvestor/{graph_id}/operations/create-security';
23905
23894
  };
23906
23895
 
23907
- export type OpCreateSecurityErrors = {
23896
+ export type CreateSecurityErrors = {
23908
23897
  /**
23909
23898
  * Invalid request
23910
23899
  */
@@ -23939,18 +23928,18 @@ export type OpCreateSecurityErrors = {
23939
23928
  500: ErrorResponse;
23940
23929
  };
23941
23930
 
23942
- export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
23931
+ export type CreateSecurityError = CreateSecurityErrors[keyof CreateSecurityErrors];
23943
23932
 
23944
- export type OpCreateSecurityResponses = {
23933
+ export type CreateSecurityResponses = {
23945
23934
  /**
23946
23935
  * Successful Response
23947
23936
  */
23948
23937
  200: OperationEnvelopeSecurityResponse;
23949
23938
  };
23950
23939
 
23951
- export type OpCreateSecurityResponse = OpCreateSecurityResponses[keyof OpCreateSecurityResponses];
23940
+ export type CreateSecurityResponse = CreateSecurityResponses[keyof CreateSecurityResponses];
23952
23941
 
23953
- export type OpUpdateSecurityData = {
23942
+ export type UpdateSecurityData = {
23954
23943
  body: UpdateSecurityOperation;
23955
23944
  headers?: {
23956
23945
  /**
@@ -23968,7 +23957,7 @@ export type OpUpdateSecurityData = {
23968
23957
  url: '/extensions/roboinvestor/{graph_id}/operations/update-security';
23969
23958
  };
23970
23959
 
23971
- export type OpUpdateSecurityErrors = {
23960
+ export type UpdateSecurityErrors = {
23972
23961
  /**
23973
23962
  * Invalid request
23974
23963
  */
@@ -24003,18 +23992,18 @@ export type OpUpdateSecurityErrors = {
24003
23992
  500: ErrorResponse;
24004
23993
  };
24005
23994
 
24006
- export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
23995
+ export type UpdateSecurityError = UpdateSecurityErrors[keyof UpdateSecurityErrors];
24007
23996
 
24008
- export type OpUpdateSecurityResponses = {
23997
+ export type UpdateSecurityResponses = {
24009
23998
  /**
24010
23999
  * Successful Response
24011
24000
  */
24012
24001
  200: OperationEnvelopeSecurityResponse;
24013
24002
  };
24014
24003
 
24015
- export type OpUpdateSecurityResponse = OpUpdateSecurityResponses[keyof OpUpdateSecurityResponses];
24004
+ export type UpdateSecurityResponse = UpdateSecurityResponses[keyof UpdateSecurityResponses];
24016
24005
 
24017
- export type OpDeleteSecurityData = {
24006
+ export type DeleteSecurityData = {
24018
24007
  body: DeleteSecurityOperation;
24019
24008
  headers?: {
24020
24009
  /**
@@ -24032,7 +24021,7 @@ export type OpDeleteSecurityData = {
24032
24021
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-security';
24033
24022
  };
24034
24023
 
24035
- export type OpDeleteSecurityErrors = {
24024
+ export type DeleteSecurityErrors = {
24036
24025
  /**
24037
24026
  * Invalid request
24038
24027
  */
@@ -24067,13 +24056,13 @@ export type OpDeleteSecurityErrors = {
24067
24056
  500: ErrorResponse;
24068
24057
  };
24069
24058
 
24070
- export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];
24059
+ export type DeleteSecurityError = DeleteSecurityErrors[keyof DeleteSecurityErrors];
24071
24060
 
24072
- export type OpDeleteSecurityResponses = {
24061
+ export type DeleteSecurityResponses = {
24073
24062
  /**
24074
24063
  * Successful Response
24075
24064
  */
24076
24065
  200: OperationEnvelopeDeleteResult;
24077
24066
  };
24078
24067
 
24079
- export type OpDeleteSecurityResponse = OpDeleteSecurityResponses[keyof OpDeleteSecurityResponses];
24068
+ export type DeleteSecurityResponse = DeleteSecurityResponses[keyof DeleteSecurityResponses];