@robosystems/client 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/artifacts/InvestorClient.js +7 -7
  2. package/artifacts/InvestorClient.ts +13 -13
  3. package/artifacts/LedgerClient.d.ts +2 -2
  4. package/artifacts/LedgerClient.js +48 -48
  5. package/artifacts/LedgerClient.ts +91 -91
  6. package/client/client.gen.js +109 -126
  7. package/client/client.gen.ts +129 -139
  8. package/client/types.gen.d.ts +7 -4
  9. package/client/types.gen.ts +10 -5
  10. package/client/utils.gen.d.ts +7 -3
  11. package/client/utils.gen.js +6 -6
  12. package/client/utils.gen.ts +11 -11
  13. package/core/bodySerializer.gen.d.ts +4 -4
  14. package/core/bodySerializer.gen.ts +6 -8
  15. package/core/params.gen.js +5 -5
  16. package/core/params.gen.ts +5 -5
  17. package/core/serverSentEvents.gen.d.ts +1 -1
  18. package/core/serverSentEvents.gen.js +4 -6
  19. package/core/serverSentEvents.gen.ts +4 -5
  20. package/core/types.gen.d.ts +1 -1
  21. package/core/types.gen.ts +1 -1
  22. package/core/utils.gen.js +1 -1
  23. package/core/utils.gen.ts +1 -1
  24. package/index.ts +2 -2
  25. package/package.json +2 -2
  26. package/sdk/client/client.gen.js +109 -126
  27. package/sdk/client/client.gen.ts +129 -139
  28. package/sdk/client/types.gen.d.ts +7 -4
  29. package/sdk/client/types.gen.ts +10 -5
  30. package/sdk/client/utils.gen.d.ts +7 -3
  31. package/sdk/client/utils.gen.js +6 -6
  32. package/sdk/client/utils.gen.ts +11 -11
  33. package/sdk/core/bodySerializer.gen.d.ts +4 -4
  34. package/sdk/core/bodySerializer.gen.ts +6 -8
  35. package/sdk/core/params.gen.js +5 -5
  36. package/sdk/core/params.gen.ts +5 -5
  37. package/sdk/core/serverSentEvents.gen.d.ts +1 -1
  38. package/sdk/core/serverSentEvents.gen.js +4 -6
  39. package/sdk/core/serverSentEvents.gen.ts +4 -5
  40. package/sdk/core/types.gen.d.ts +1 -1
  41. package/sdk/core/types.gen.ts +1 -1
  42. package/sdk/core/utils.gen.js +1 -1
  43. package/sdk/core/utils.gen.ts +1 -1
  44. package/sdk/index.d.ts +2 -2
  45. package/sdk/index.js +68 -68
  46. package/sdk/index.ts +2 -2
  47. package/sdk/sdk.gen.d.ts +80 -80
  48. package/sdk/sdk.gen.js +154 -154
  49. package/sdk/sdk.gen.ts +89 -89
  50. package/sdk/types.gen.d.ts +374 -379
  51. package/sdk/types.gen.ts +379 -384
  52. package/sdk.gen.d.ts +80 -80
  53. package/sdk.gen.js +154 -154
  54. package/sdk.gen.ts +89 -89
  55. package/types.gen.d.ts +374 -379
  56. package/types.gen.ts +379 -384
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
  /**
@@ -11243,7 +11243,7 @@ export type SearchRequest = {
11243
11243
  /**
11244
11244
  * Source Type
11245
11245
  *
11246
- * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, memory)
11246
+ * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, connection_doc)
11247
11247
  */
11248
11248
  source_type?: string | null;
11249
11249
  /**
@@ -12075,7 +12075,7 @@ export type SubgraphSummary = {
12075
12075
  *
12076
12076
  * Types of subgraphs.
12077
12077
  */
12078
- export type SubgraphType = 'static' | 'temporal' | 'versioned' | 'memory';
12078
+ export type SubgraphType = 'static' | 'knowledge' | 'empty';
12079
12079
 
12080
12080
  /**
12081
12081
  * SuccessResponse
@@ -17497,67 +17497,6 @@ export type ExportGraphSchemaResponses = {
17497
17497
 
17498
17498
  export type ExportGraphSchemaResponse = ExportGraphSchemaResponses[keyof ExportGraphSchemaResponses];
17499
17499
 
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
17500
  export type GetCreditSummaryData = {
17562
17501
  body?: never;
17563
17502
  path: {
@@ -18751,7 +18690,7 @@ export type RecallMemoryResponses = {
18751
18690
 
18752
18691
  export type RecallMemoryResponse = RecallMemoryResponses[keyof RecallMemoryResponses];
18753
18692
 
18754
- export type OpCreateSubgraphData = {
18693
+ export type CreateSubgraphData = {
18755
18694
  body: CreateSubgraphRequest;
18756
18695
  headers?: {
18757
18696
  /**
@@ -18769,7 +18708,7 @@ export type OpCreateSubgraphData = {
18769
18708
  url: '/v1/graphs/{graph_id}/operations/create-subgraph';
18770
18709
  };
18771
18710
 
18772
- export type OpCreateSubgraphErrors = {
18711
+ export type CreateSubgraphErrors = {
18773
18712
  /**
18774
18713
  * Invalid request
18775
18714
  */
@@ -18804,18 +18743,18 @@ export type OpCreateSubgraphErrors = {
18804
18743
  500: ErrorResponse;
18805
18744
  };
18806
18745
 
18807
- export type OpCreateSubgraphError = OpCreateSubgraphErrors[keyof OpCreateSubgraphErrors];
18746
+ export type CreateSubgraphError = CreateSubgraphErrors[keyof CreateSubgraphErrors];
18808
18747
 
18809
- export type OpCreateSubgraphResponses = {
18748
+ export type CreateSubgraphResponses = {
18810
18749
  /**
18811
18750
  * Successful Response
18812
18751
  */
18813
18752
  200: OperationEnvelope;
18814
18753
  };
18815
18754
 
18816
- export type OpCreateSubgraphResponse = OpCreateSubgraphResponses[keyof OpCreateSubgraphResponses];
18755
+ export type CreateSubgraphResponse = CreateSubgraphResponses[keyof CreateSubgraphResponses];
18817
18756
 
18818
- export type OpDeleteSubgraphData = {
18757
+ export type DeleteSubgraphData = {
18819
18758
  body: DeleteSubgraphOp;
18820
18759
  headers?: {
18821
18760
  /**
@@ -18833,7 +18772,7 @@ export type OpDeleteSubgraphData = {
18833
18772
  url: '/v1/graphs/{graph_id}/operations/delete-subgraph';
18834
18773
  };
18835
18774
 
18836
- export type OpDeleteSubgraphErrors = {
18775
+ export type DeleteSubgraphErrors = {
18837
18776
  /**
18838
18777
  * Invalid request
18839
18778
  */
@@ -18868,18 +18807,18 @@ export type OpDeleteSubgraphErrors = {
18868
18807
  500: ErrorResponse;
18869
18808
  };
18870
18809
 
18871
- export type OpDeleteSubgraphError = OpDeleteSubgraphErrors[keyof OpDeleteSubgraphErrors];
18810
+ export type DeleteSubgraphError = DeleteSubgraphErrors[keyof DeleteSubgraphErrors];
18872
18811
 
18873
- export type OpDeleteSubgraphResponses = {
18812
+ export type DeleteSubgraphResponses = {
18874
18813
  /**
18875
18814
  * Successful Response
18876
18815
  */
18877
18816
  200: OperationEnvelope;
18878
18817
  };
18879
18818
 
18880
- export type OpDeleteSubgraphResponse = OpDeleteSubgraphResponses[keyof OpDeleteSubgraphResponses];
18819
+ export type DeleteSubgraphResponse = DeleteSubgraphResponses[keyof DeleteSubgraphResponses];
18881
18820
 
18882
- export type OpDeleteGraphData = {
18821
+ export type DeleteGraphData = {
18883
18822
  body: DeleteGraphOp;
18884
18823
  headers?: {
18885
18824
  /**
@@ -18897,7 +18836,7 @@ export type OpDeleteGraphData = {
18897
18836
  url: '/v1/graphs/{graph_id}/operations/delete-graph';
18898
18837
  };
18899
18838
 
18900
- export type OpDeleteGraphErrors = {
18839
+ export type DeleteGraphErrors = {
18901
18840
  /**
18902
18841
  * Invalid request
18903
18842
  */
@@ -18932,18 +18871,18 @@ export type OpDeleteGraphErrors = {
18932
18871
  500: ErrorResponse;
18933
18872
  };
18934
18873
 
18935
- export type OpDeleteGraphError = OpDeleteGraphErrors[keyof OpDeleteGraphErrors];
18874
+ export type DeleteGraphError = DeleteGraphErrors[keyof DeleteGraphErrors];
18936
18875
 
18937
- export type OpDeleteGraphResponses = {
18876
+ export type DeleteGraphResponses = {
18938
18877
  /**
18939
18878
  * Successful Response
18940
18879
  */
18941
18880
  202: OperationEnvelope;
18942
18881
  };
18943
18882
 
18944
- export type OpDeleteGraphResponse = OpDeleteGraphResponses[keyof OpDeleteGraphResponses];
18883
+ export type DeleteGraphResponse = DeleteGraphResponses[keyof DeleteGraphResponses];
18945
18884
 
18946
- export type OpCreateBackupData = {
18885
+ export type CreateBackupData = {
18947
18886
  body: BackupCreateRequest;
18948
18887
  headers?: {
18949
18888
  /**
@@ -18961,7 +18900,7 @@ export type OpCreateBackupData = {
18961
18900
  url: '/v1/graphs/{graph_id}/operations/create-backup';
18962
18901
  };
18963
18902
 
18964
- export type OpCreateBackupErrors = {
18903
+ export type CreateBackupErrors = {
18965
18904
  /**
18966
18905
  * Invalid request
18967
18906
  */
@@ -18996,18 +18935,18 @@ export type OpCreateBackupErrors = {
18996
18935
  500: ErrorResponse;
18997
18936
  };
18998
18937
 
18999
- export type OpCreateBackupError = OpCreateBackupErrors[keyof OpCreateBackupErrors];
18938
+ export type CreateBackupError = CreateBackupErrors[keyof CreateBackupErrors];
19000
18939
 
19001
- export type OpCreateBackupResponses = {
18940
+ export type CreateBackupResponses = {
19002
18941
  /**
19003
18942
  * Successful Response
19004
18943
  */
19005
18944
  202: OperationEnvelope;
19006
18945
  };
19007
18946
 
19008
- export type OpCreateBackupResponse = OpCreateBackupResponses[keyof OpCreateBackupResponses];
18947
+ export type CreateBackupResponse = CreateBackupResponses[keyof CreateBackupResponses];
19009
18948
 
19010
- export type OpRestoreBackupData = {
18949
+ export type RestoreBackupData = {
19011
18950
  body: RestoreBackupOp;
19012
18951
  headers?: {
19013
18952
  /**
@@ -19025,7 +18964,7 @@ export type OpRestoreBackupData = {
19025
18964
  url: '/v1/graphs/{graph_id}/operations/restore-backup';
19026
18965
  };
19027
18966
 
19028
- export type OpRestoreBackupErrors = {
18967
+ export type RestoreBackupErrors = {
19029
18968
  /**
19030
18969
  * Invalid request
19031
18970
  */
@@ -19060,18 +18999,18 @@ export type OpRestoreBackupErrors = {
19060
18999
  500: ErrorResponse;
19061
19000
  };
19062
19001
 
19063
- export type OpRestoreBackupError = OpRestoreBackupErrors[keyof OpRestoreBackupErrors];
19002
+ export type RestoreBackupError = RestoreBackupErrors[keyof RestoreBackupErrors];
19064
19003
 
19065
- export type OpRestoreBackupResponses = {
19004
+ export type RestoreBackupResponses = {
19066
19005
  /**
19067
19006
  * Successful Response
19068
19007
  */
19069
19008
  202: OperationEnvelope;
19070
19009
  };
19071
19010
 
19072
- export type OpRestoreBackupResponse = OpRestoreBackupResponses[keyof OpRestoreBackupResponses];
19011
+ export type RestoreBackupResponse = RestoreBackupResponses[keyof RestoreBackupResponses];
19073
19012
 
19074
- export type OpChangeTierData = {
19013
+ export type ChangeTierData = {
19075
19014
  body: ChangeTierOp;
19076
19015
  headers?: {
19077
19016
  /**
@@ -19089,7 +19028,7 @@ export type OpChangeTierData = {
19089
19028
  url: '/v1/graphs/{graph_id}/operations/change-tier';
19090
19029
  };
19091
19030
 
19092
- export type OpChangeTierErrors = {
19031
+ export type ChangeTierErrors = {
19093
19032
  /**
19094
19033
  * Invalid request
19095
19034
  */
@@ -19124,18 +19063,18 @@ export type OpChangeTierErrors = {
19124
19063
  500: ErrorResponse;
19125
19064
  };
19126
19065
 
19127
- export type OpChangeTierError = OpChangeTierErrors[keyof OpChangeTierErrors];
19066
+ export type ChangeTierError = ChangeTierErrors[keyof ChangeTierErrors];
19128
19067
 
19129
- export type OpChangeTierResponses = {
19068
+ export type ChangeTierResponses = {
19130
19069
  /**
19131
19070
  * Successful Response
19132
19071
  */
19133
19072
  202: OperationEnvelope;
19134
19073
  };
19135
19074
 
19136
- export type OpChangeTierResponse = OpChangeTierResponses[keyof OpChangeTierResponses];
19075
+ export type ChangeTierResponse = ChangeTierResponses[keyof ChangeTierResponses];
19137
19076
 
19138
- export type OpMaterializeData = {
19077
+ export type MaterializeData = {
19139
19078
  body: MaterializeOp;
19140
19079
  headers?: {
19141
19080
  /**
@@ -19153,7 +19092,7 @@ export type OpMaterializeData = {
19153
19092
  url: '/v1/graphs/{graph_id}/operations/materialize';
19154
19093
  };
19155
19094
 
19156
- export type OpMaterializeErrors = {
19095
+ export type MaterializeErrors = {
19157
19096
  /**
19158
19097
  * Invalid request
19159
19098
  */
@@ -19188,18 +19127,18 @@ export type OpMaterializeErrors = {
19188
19127
  500: ErrorResponse;
19189
19128
  };
19190
19129
 
19191
- export type OpMaterializeError = OpMaterializeErrors[keyof OpMaterializeErrors];
19130
+ export type MaterializeError = MaterializeErrors[keyof MaterializeErrors];
19192
19131
 
19193
- export type OpMaterializeResponses = {
19132
+ export type MaterializeResponses = {
19194
19133
  /**
19195
19134
  * Successful Response
19196
19135
  */
19197
19136
  202: OperationEnvelope;
19198
19137
  };
19199
19138
 
19200
- export type OpMaterializeResponse = OpMaterializeResponses[keyof OpMaterializeResponses];
19139
+ export type MaterializeResponse = MaterializeResponses[keyof MaterializeResponses];
19201
19140
 
19202
- export type OpRememberData = {
19141
+ export type RememberData = {
19203
19142
  body: RememberOp;
19204
19143
  headers?: {
19205
19144
  /**
@@ -19217,7 +19156,7 @@ export type OpRememberData = {
19217
19156
  url: '/v1/graphs/{graph_id}/operations/remember';
19218
19157
  };
19219
19158
 
19220
- export type OpRememberErrors = {
19159
+ export type RememberErrors = {
19221
19160
  /**
19222
19161
  * Invalid request
19223
19162
  */
@@ -19252,18 +19191,18 @@ export type OpRememberErrors = {
19252
19191
  500: ErrorResponse;
19253
19192
  };
19254
19193
 
19255
- export type OpRememberError = OpRememberErrors[keyof OpRememberErrors];
19194
+ export type RememberError = RememberErrors[keyof RememberErrors];
19256
19195
 
19257
- export type OpRememberResponses = {
19196
+ export type RememberResponses = {
19258
19197
  /**
19259
19198
  * Successful Response
19260
19199
  */
19261
19200
  200: OperationEnvelope;
19262
19201
  };
19263
19202
 
19264
- export type OpRememberResponse = OpRememberResponses[keyof OpRememberResponses];
19203
+ export type RememberResponse = RememberResponses[keyof RememberResponses];
19265
19204
 
19266
- export type OpForgetData = {
19205
+ export type ForgetData = {
19267
19206
  body: ForgetOp;
19268
19207
  headers?: {
19269
19208
  /**
@@ -19281,7 +19220,7 @@ export type OpForgetData = {
19281
19220
  url: '/v1/graphs/{graph_id}/operations/forget';
19282
19221
  };
19283
19222
 
19284
- export type OpForgetErrors = {
19223
+ export type ForgetErrors = {
19285
19224
  /**
19286
19225
  * Invalid request
19287
19226
  */
@@ -19316,18 +19255,18 @@ export type OpForgetErrors = {
19316
19255
  500: ErrorResponse;
19317
19256
  };
19318
19257
 
19319
- export type OpForgetError = OpForgetErrors[keyof OpForgetErrors];
19258
+ export type ForgetError = ForgetErrors[keyof ForgetErrors];
19320
19259
 
19321
- export type OpForgetResponses = {
19260
+ export type ForgetResponses = {
19322
19261
  /**
19323
19262
  * Successful Response
19324
19263
  */
19325
19264
  200: OperationEnvelope;
19326
19265
  };
19327
19266
 
19328
- export type OpForgetResponse = OpForgetResponses[keyof OpForgetResponses];
19267
+ export type ForgetResponse = ForgetResponses[keyof ForgetResponses];
19329
19268
 
19330
- export type OpUpdateMemoryData = {
19269
+ export type UpdateMemoryData = {
19331
19270
  body: UpdateMemoryOp;
19332
19271
  headers?: {
19333
19272
  /**
@@ -19345,7 +19284,7 @@ export type OpUpdateMemoryData = {
19345
19284
  url: '/v1/graphs/{graph_id}/operations/update-memory';
19346
19285
  };
19347
19286
 
19348
- export type OpUpdateMemoryErrors = {
19287
+ export type UpdateMemoryErrors = {
19349
19288
  /**
19350
19289
  * Invalid request
19351
19290
  */
@@ -19380,18 +19319,18 @@ export type OpUpdateMemoryErrors = {
19380
19319
  500: ErrorResponse;
19381
19320
  };
19382
19321
 
19383
- export type OpUpdateMemoryError = OpUpdateMemoryErrors[keyof OpUpdateMemoryErrors];
19322
+ export type UpdateMemoryError = UpdateMemoryErrors[keyof UpdateMemoryErrors];
19384
19323
 
19385
- export type OpUpdateMemoryResponses = {
19324
+ export type UpdateMemoryResponses = {
19386
19325
  /**
19387
19326
  * Successful Response
19388
19327
  */
19389
19328
  200: OperationEnvelope;
19390
19329
  };
19391
19330
 
19392
- export type OpUpdateMemoryResponse = OpUpdateMemoryResponses[keyof OpUpdateMemoryResponses];
19331
+ export type UpdateMemoryResponse = UpdateMemoryResponses[keyof UpdateMemoryResponses];
19393
19332
 
19394
- export type OpIndexDocumentData = {
19333
+ export type IndexDocumentData = {
19395
19334
  body: IndexDocumentOp;
19396
19335
  headers?: {
19397
19336
  /**
@@ -19409,7 +19348,7 @@ export type OpIndexDocumentData = {
19409
19348
  url: '/v1/graphs/{graph_id}/operations/index-document';
19410
19349
  };
19411
19350
 
19412
- export type OpIndexDocumentErrors = {
19351
+ export type IndexDocumentErrors = {
19413
19352
  /**
19414
19353
  * Invalid request
19415
19354
  */
@@ -19444,18 +19383,18 @@ export type OpIndexDocumentErrors = {
19444
19383
  500: ErrorResponse;
19445
19384
  };
19446
19385
 
19447
- export type OpIndexDocumentError = OpIndexDocumentErrors[keyof OpIndexDocumentErrors];
19386
+ export type IndexDocumentError = IndexDocumentErrors[keyof IndexDocumentErrors];
19448
19387
 
19449
- export type OpIndexDocumentResponses = {
19388
+ export type IndexDocumentResponses = {
19450
19389
  /**
19451
19390
  * Successful Response
19452
19391
  */
19453
19392
  200: OperationEnvelope;
19454
19393
  };
19455
19394
 
19456
- export type OpIndexDocumentResponse = OpIndexDocumentResponses[keyof OpIndexDocumentResponses];
19395
+ export type IndexDocumentResponse = IndexDocumentResponses[keyof IndexDocumentResponses];
19457
19396
 
19458
- export type OpDeleteDocumentData = {
19397
+ export type DeleteDocumentData = {
19459
19398
  body: DeleteDocumentOp;
19460
19399
  headers?: {
19461
19400
  /**
@@ -19473,7 +19412,7 @@ export type OpDeleteDocumentData = {
19473
19412
  url: '/v1/graphs/{graph_id}/operations/delete-document';
19474
19413
  };
19475
19414
 
19476
- export type OpDeleteDocumentErrors = {
19415
+ export type DeleteDocumentErrors = {
19477
19416
  /**
19478
19417
  * Invalid request
19479
19418
  */
@@ -19508,18 +19447,18 @@ export type OpDeleteDocumentErrors = {
19508
19447
  500: ErrorResponse;
19509
19448
  };
19510
19449
 
19511
- export type OpDeleteDocumentError = OpDeleteDocumentErrors[keyof OpDeleteDocumentErrors];
19450
+ export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
19512
19451
 
19513
- export type OpDeleteDocumentResponses = {
19452
+ export type DeleteDocumentResponses = {
19514
19453
  /**
19515
19454
  * Successful Response
19516
19455
  */
19517
19456
  200: OperationEnvelope;
19518
19457
  };
19519
19458
 
19520
- export type OpDeleteDocumentResponse = OpDeleteDocumentResponses[keyof OpDeleteDocumentResponses];
19459
+ export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
19521
19460
 
19522
- export type OpCreateFileUploadData = {
19461
+ export type CreateFileUploadData = {
19523
19462
  body: FileUploadRequest;
19524
19463
  headers?: {
19525
19464
  /**
@@ -19537,7 +19476,7 @@ export type OpCreateFileUploadData = {
19537
19476
  url: '/v1/graphs/{graph_id}/operations/create-file-upload';
19538
19477
  };
19539
19478
 
19540
- export type OpCreateFileUploadErrors = {
19479
+ export type CreateFileUploadErrors = {
19541
19480
  /**
19542
19481
  * Invalid request
19543
19482
  */
@@ -19572,18 +19511,18 @@ export type OpCreateFileUploadErrors = {
19572
19511
  500: ErrorResponse;
19573
19512
  };
19574
19513
 
19575
- export type OpCreateFileUploadError = OpCreateFileUploadErrors[keyof OpCreateFileUploadErrors];
19514
+ export type CreateFileUploadError = CreateFileUploadErrors[keyof CreateFileUploadErrors];
19576
19515
 
19577
- export type OpCreateFileUploadResponses = {
19516
+ export type CreateFileUploadResponses = {
19578
19517
  /**
19579
19518
  * Successful Response
19580
19519
  */
19581
19520
  200: OperationEnvelope;
19582
19521
  };
19583
19522
 
19584
- export type OpCreateFileUploadResponse = OpCreateFileUploadResponses[keyof OpCreateFileUploadResponses];
19523
+ export type CreateFileUploadResponse = CreateFileUploadResponses[keyof CreateFileUploadResponses];
19585
19524
 
19586
- export type OpIngestFileData = {
19525
+ export type IngestFileData = {
19587
19526
  body: IngestFileOp;
19588
19527
  headers?: {
19589
19528
  /**
@@ -19601,7 +19540,7 @@ export type OpIngestFileData = {
19601
19540
  url: '/v1/graphs/{graph_id}/operations/ingest-file';
19602
19541
  };
19603
19542
 
19604
- export type OpIngestFileErrors = {
19543
+ export type IngestFileErrors = {
19605
19544
  /**
19606
19545
  * Invalid request
19607
19546
  */
@@ -19636,18 +19575,18 @@ export type OpIngestFileErrors = {
19636
19575
  500: ErrorResponse;
19637
19576
  };
19638
19577
 
19639
- export type OpIngestFileError = OpIngestFileErrors[keyof OpIngestFileErrors];
19578
+ export type IngestFileError = IngestFileErrors[keyof IngestFileErrors];
19640
19579
 
19641
- export type OpIngestFileResponses = {
19580
+ export type IngestFileResponses = {
19642
19581
  /**
19643
19582
  * Successful Response
19644
19583
  */
19645
19584
  200: OperationEnvelope;
19646
19585
  };
19647
19586
 
19648
- export type OpIngestFileResponse = OpIngestFileResponses[keyof OpIngestFileResponses];
19587
+ export type IngestFileResponse = IngestFileResponses[keyof IngestFileResponses];
19649
19588
 
19650
- export type OpDeleteFileData = {
19589
+ export type DeleteFileData = {
19651
19590
  body: DeleteFileOp;
19652
19591
  headers?: {
19653
19592
  /**
@@ -19665,7 +19604,7 @@ export type OpDeleteFileData = {
19665
19604
  url: '/v1/graphs/{graph_id}/operations/delete-file';
19666
19605
  };
19667
19606
 
19668
- export type OpDeleteFileErrors = {
19607
+ export type DeleteFileErrors = {
19669
19608
  /**
19670
19609
  * Invalid request
19671
19610
  */
@@ -19700,16 +19639,16 @@ export type OpDeleteFileErrors = {
19700
19639
  500: ErrorResponse;
19701
19640
  };
19702
19641
 
19703
- export type OpDeleteFileError = OpDeleteFileErrors[keyof OpDeleteFileErrors];
19642
+ export type DeleteFileError = DeleteFileErrors[keyof DeleteFileErrors];
19704
19643
 
19705
- export type OpDeleteFileResponses = {
19644
+ export type DeleteFileResponses = {
19706
19645
  /**
19707
19646
  * Successful Response
19708
19647
  */
19709
19648
  200: OperationEnvelope;
19710
19649
  };
19711
19650
 
19712
- export type OpDeleteFileResponse = OpDeleteFileResponses[keyof OpDeleteFileResponses];
19651
+ export type DeleteFileResponse = DeleteFileResponses[keyof DeleteFileResponses];
19713
19652
 
19714
19653
  export type ListFilesData = {
19715
19654
  body?: never;
@@ -20128,6 +20067,62 @@ export type SelectGraphResponses = {
20128
20067
 
20129
20068
  export type SelectGraphResponse = SelectGraphResponses[keyof SelectGraphResponses];
20130
20069
 
20070
+ export type ValidateSchemaData = {
20071
+ /**
20072
+ * Schema definition to validate
20073
+ */
20074
+ body: SchemaValidationRequest;
20075
+ path?: never;
20076
+ query?: never;
20077
+ url: '/v1/graphs/schema/validate';
20078
+ };
20079
+
20080
+ export type ValidateSchemaErrors = {
20081
+ /**
20082
+ * Invalid request
20083
+ */
20084
+ 400: ErrorResponse;
20085
+ /**
20086
+ * Authentication required
20087
+ */
20088
+ 401: ErrorResponse;
20089
+ /**
20090
+ * Access denied
20091
+ */
20092
+ 403: ErrorResponse;
20093
+ /**
20094
+ * Resource not found
20095
+ */
20096
+ 404: ErrorResponse;
20097
+ /**
20098
+ * Schema fails validation rules
20099
+ */
20100
+ 422: unknown;
20101
+ /**
20102
+ * Rate limit exceeded
20103
+ */
20104
+ 429: ErrorResponse;
20105
+ /**
20106
+ * Internal server error
20107
+ */
20108
+ 500: ErrorResponse;
20109
+ /**
20110
+ * Validation timed out
20111
+ */
20112
+ 504: unknown;
20113
+ };
20114
+
20115
+ export type ValidateSchemaError = ValidateSchemaErrors[keyof ValidateSchemaErrors];
20116
+
20117
+ export type ValidateSchemaResponses = {
20118
+ /**
20119
+ * Successful Response
20120
+ */
20121
+ 200: SchemaValidationResponse;
20122
+ };
20123
+
20124
+ export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchemaResponses];
20125
+
20131
20126
  export type GetServiceOfferingsData = {
20132
20127
  body?: never;
20133
20128
  path?: never;
@@ -20942,7 +20937,7 @@ export type HandleHttpPostExtensionsGraphIdGraphqlPostResponses = {
20942
20937
  200: unknown;
20943
20938
  };
20944
20939
 
20945
- export type OpInitializeLedgerData = {
20940
+ export type InitializeLedgerData = {
20946
20941
  body: InitializeLedgerRequest;
20947
20942
  headers?: {
20948
20943
  /**
@@ -20960,7 +20955,7 @@ export type OpInitializeLedgerData = {
20960
20955
  url: '/extensions/roboledger/{graph_id}/operations/initialize';
20961
20956
  };
20962
20957
 
20963
- export type OpInitializeLedgerErrors = {
20958
+ export type InitializeLedgerErrors = {
20964
20959
  /**
20965
20960
  * Invalid request
20966
20961
  */
@@ -20995,18 +20990,18 @@ export type OpInitializeLedgerErrors = {
20995
20990
  500: ErrorResponse;
20996
20991
  };
20997
20992
 
20998
- export type OpInitializeLedgerError = OpInitializeLedgerErrors[keyof OpInitializeLedgerErrors];
20993
+ export type InitializeLedgerError = InitializeLedgerErrors[keyof InitializeLedgerErrors];
20999
20994
 
21000
- export type OpInitializeLedgerResponses = {
20995
+ export type InitializeLedgerResponses = {
21001
20996
  /**
21002
20997
  * Successful Response
21003
20998
  */
21004
20999
  200: OperationEnvelopeInitializeLedgerResponse;
21005
21000
  };
21006
21001
 
21007
- export type OpInitializeLedgerResponse = OpInitializeLedgerResponses[keyof OpInitializeLedgerResponses];
21002
+ export type InitializeLedgerResponse2 = InitializeLedgerResponses[keyof InitializeLedgerResponses];
21008
21003
 
21009
- export type OpUpdateEntityData = {
21004
+ export type UpdateEntityData = {
21010
21005
  body: UpdateEntityRequest;
21011
21006
  headers?: {
21012
21007
  /**
@@ -21024,7 +21019,7 @@ export type OpUpdateEntityData = {
21024
21019
  url: '/extensions/roboledger/{graph_id}/operations/update-entity';
21025
21020
  };
21026
21021
 
21027
- export type OpUpdateEntityErrors = {
21022
+ export type UpdateEntityErrors = {
21028
21023
  /**
21029
21024
  * Invalid request
21030
21025
  */
@@ -21059,18 +21054,18 @@ export type OpUpdateEntityErrors = {
21059
21054
  500: ErrorResponse;
21060
21055
  };
21061
21056
 
21062
- export type OpUpdateEntityError = OpUpdateEntityErrors[keyof OpUpdateEntityErrors];
21057
+ export type UpdateEntityError = UpdateEntityErrors[keyof UpdateEntityErrors];
21063
21058
 
21064
- export type OpUpdateEntityResponses = {
21059
+ export type UpdateEntityResponses = {
21065
21060
  /**
21066
21061
  * Successful Response
21067
21062
  */
21068
21063
  200: OperationEnvelopeLedgerEntityResponse;
21069
21064
  };
21070
21065
 
21071
- export type OpUpdateEntityResponse = OpUpdateEntityResponses[keyof OpUpdateEntityResponses];
21066
+ export type UpdateEntityResponse = UpdateEntityResponses[keyof UpdateEntityResponses];
21072
21067
 
21073
- export type OpChangeReportingStyleData = {
21068
+ export type ChangeReportingStyleData = {
21074
21069
  body: ChangeReportingStyleRequest;
21075
21070
  headers?: {
21076
21071
  /**
@@ -21088,7 +21083,7 @@ export type OpChangeReportingStyleData = {
21088
21083
  url: '/extensions/roboledger/{graph_id}/operations/change-reporting-style';
21089
21084
  };
21090
21085
 
21091
- export type OpChangeReportingStyleErrors = {
21086
+ export type ChangeReportingStyleErrors = {
21092
21087
  /**
21093
21088
  * Invalid request
21094
21089
  */
@@ -21123,18 +21118,18 @@ export type OpChangeReportingStyleErrors = {
21123
21118
  500: ErrorResponse;
21124
21119
  };
21125
21120
 
21126
- export type OpChangeReportingStyleError = OpChangeReportingStyleErrors[keyof OpChangeReportingStyleErrors];
21121
+ export type ChangeReportingStyleError = ChangeReportingStyleErrors[keyof ChangeReportingStyleErrors];
21127
21122
 
21128
- export type OpChangeReportingStyleResponses = {
21123
+ export type ChangeReportingStyleResponses = {
21129
21124
  /**
21130
21125
  * Successful Response
21131
21126
  */
21132
21127
  200: OperationEnvelopeChangeReportingStyleResponse;
21133
21128
  };
21134
21129
 
21135
- export type OpChangeReportingStyleResponse = OpChangeReportingStyleResponses[keyof OpChangeReportingStyleResponses];
21130
+ export type ChangeReportingStyleResponse2 = ChangeReportingStyleResponses[keyof ChangeReportingStyleResponses];
21136
21131
 
21137
- export type OpCreateTaxonomyBlockData = {
21132
+ export type CreateTaxonomyBlockData = {
21138
21133
  body: CreateTaxonomyBlockRequest;
21139
21134
  headers?: {
21140
21135
  /**
@@ -21152,7 +21147,7 @@ export type OpCreateTaxonomyBlockData = {
21152
21147
  url: '/extensions/roboledger/{graph_id}/operations/create-taxonomy-block';
21153
21148
  };
21154
21149
 
21155
- export type OpCreateTaxonomyBlockErrors = {
21150
+ export type CreateTaxonomyBlockErrors = {
21156
21151
  /**
21157
21152
  * Invalid request
21158
21153
  */
@@ -21187,18 +21182,18 @@ export type OpCreateTaxonomyBlockErrors = {
21187
21182
  500: ErrorResponse;
21188
21183
  };
21189
21184
 
21190
- export type OpCreateTaxonomyBlockError = OpCreateTaxonomyBlockErrors[keyof OpCreateTaxonomyBlockErrors];
21185
+ export type CreateTaxonomyBlockError = CreateTaxonomyBlockErrors[keyof CreateTaxonomyBlockErrors];
21191
21186
 
21192
- export type OpCreateTaxonomyBlockResponses = {
21187
+ export type CreateTaxonomyBlockResponses = {
21193
21188
  /**
21194
21189
  * Successful Response
21195
21190
  */
21196
21191
  200: OperationEnvelopeTaxonomyBlockEnvelope;
21197
21192
  };
21198
21193
 
21199
- export type OpCreateTaxonomyBlockResponse = OpCreateTaxonomyBlockResponses[keyof OpCreateTaxonomyBlockResponses];
21194
+ export type CreateTaxonomyBlockResponse = CreateTaxonomyBlockResponses[keyof CreateTaxonomyBlockResponses];
21200
21195
 
21201
- export type OpUpdateTaxonomyBlockData = {
21196
+ export type UpdateTaxonomyBlockData = {
21202
21197
  body: UpdateTaxonomyBlockRequest;
21203
21198
  headers?: {
21204
21199
  /**
@@ -21216,7 +21211,7 @@ export type OpUpdateTaxonomyBlockData = {
21216
21211
  url: '/extensions/roboledger/{graph_id}/operations/update-taxonomy-block';
21217
21212
  };
21218
21213
 
21219
- export type OpUpdateTaxonomyBlockErrors = {
21214
+ export type UpdateTaxonomyBlockErrors = {
21220
21215
  /**
21221
21216
  * Invalid request
21222
21217
  */
@@ -21251,18 +21246,18 @@ export type OpUpdateTaxonomyBlockErrors = {
21251
21246
  500: ErrorResponse;
21252
21247
  };
21253
21248
 
21254
- export type OpUpdateTaxonomyBlockError = OpUpdateTaxonomyBlockErrors[keyof OpUpdateTaxonomyBlockErrors];
21249
+ export type UpdateTaxonomyBlockError = UpdateTaxonomyBlockErrors[keyof UpdateTaxonomyBlockErrors];
21255
21250
 
21256
- export type OpUpdateTaxonomyBlockResponses = {
21251
+ export type UpdateTaxonomyBlockResponses = {
21257
21252
  /**
21258
21253
  * Successful Response
21259
21254
  */
21260
21255
  200: OperationEnvelopeTaxonomyBlockEnvelope;
21261
21256
  };
21262
21257
 
21263
- export type OpUpdateTaxonomyBlockResponse = OpUpdateTaxonomyBlockResponses[keyof OpUpdateTaxonomyBlockResponses];
21258
+ export type UpdateTaxonomyBlockResponse = UpdateTaxonomyBlockResponses[keyof UpdateTaxonomyBlockResponses];
21264
21259
 
21265
- export type OpDeleteTaxonomyBlockData = {
21260
+ export type DeleteTaxonomyBlockData = {
21266
21261
  body: DeleteTaxonomyBlockRequest;
21267
21262
  headers?: {
21268
21263
  /**
@@ -21280,7 +21275,7 @@ export type OpDeleteTaxonomyBlockData = {
21280
21275
  url: '/extensions/roboledger/{graph_id}/operations/delete-taxonomy-block';
21281
21276
  };
21282
21277
 
21283
- export type OpDeleteTaxonomyBlockErrors = {
21278
+ export type DeleteTaxonomyBlockErrors = {
21284
21279
  /**
21285
21280
  * Invalid request
21286
21281
  */
@@ -21315,18 +21310,18 @@ export type OpDeleteTaxonomyBlockErrors = {
21315
21310
  500: ErrorResponse;
21316
21311
  };
21317
21312
 
21318
- export type OpDeleteTaxonomyBlockError = OpDeleteTaxonomyBlockErrors[keyof OpDeleteTaxonomyBlockErrors];
21313
+ export type DeleteTaxonomyBlockError = DeleteTaxonomyBlockErrors[keyof DeleteTaxonomyBlockErrors];
21319
21314
 
21320
- export type OpDeleteTaxonomyBlockResponses = {
21315
+ export type DeleteTaxonomyBlockResponses = {
21321
21316
  /**
21322
21317
  * Successful Response
21323
21318
  */
21324
21319
  200: OperationEnvelopeDeleteTaxonomyBlockResponse;
21325
21320
  };
21326
21321
 
21327
- export type OpDeleteTaxonomyBlockResponse = OpDeleteTaxonomyBlockResponses[keyof OpDeleteTaxonomyBlockResponses];
21322
+ export type DeleteTaxonomyBlockResponse2 = DeleteTaxonomyBlockResponses[keyof DeleteTaxonomyBlockResponses];
21328
21323
 
21329
- export type OpLinkEntityTaxonomyData = {
21324
+ export type LinkEntityTaxonomyData = {
21330
21325
  body: LinkEntityTaxonomyRequest;
21331
21326
  headers?: {
21332
21327
  /**
@@ -21344,7 +21339,7 @@ export type OpLinkEntityTaxonomyData = {
21344
21339
  url: '/extensions/roboledger/{graph_id}/operations/link-entity-taxonomy';
21345
21340
  };
21346
21341
 
21347
- export type OpLinkEntityTaxonomyErrors = {
21342
+ export type LinkEntityTaxonomyErrors = {
21348
21343
  /**
21349
21344
  * Invalid request
21350
21345
  */
@@ -21379,18 +21374,18 @@ export type OpLinkEntityTaxonomyErrors = {
21379
21374
  500: ErrorResponse;
21380
21375
  };
21381
21376
 
21382
- export type OpLinkEntityTaxonomyError = OpLinkEntityTaxonomyErrors[keyof OpLinkEntityTaxonomyErrors];
21377
+ export type LinkEntityTaxonomyError = LinkEntityTaxonomyErrors[keyof LinkEntityTaxonomyErrors];
21383
21378
 
21384
- export type OpLinkEntityTaxonomyResponses = {
21379
+ export type LinkEntityTaxonomyResponses = {
21385
21380
  /**
21386
21381
  * Successful Response
21387
21382
  */
21388
21383
  200: OperationEnvelopeEntityTaxonomyResponse;
21389
21384
  };
21390
21385
 
21391
- export type OpLinkEntityTaxonomyResponse = OpLinkEntityTaxonomyResponses[keyof OpLinkEntityTaxonomyResponses];
21386
+ export type LinkEntityTaxonomyResponse = LinkEntityTaxonomyResponses[keyof LinkEntityTaxonomyResponses];
21392
21387
 
21393
- export type OpCreateMappingAssociationData = {
21388
+ export type CreateMappingAssociationData = {
21394
21389
  body: CreateMappingAssociationOperation;
21395
21390
  headers?: {
21396
21391
  /**
@@ -21408,7 +21403,7 @@ export type OpCreateMappingAssociationData = {
21408
21403
  url: '/extensions/roboledger/{graph_id}/operations/create-mapping-association';
21409
21404
  };
21410
21405
 
21411
- export type OpCreateMappingAssociationErrors = {
21406
+ export type CreateMappingAssociationErrors = {
21412
21407
  /**
21413
21408
  * Invalid request
21414
21409
  */
@@ -21443,18 +21438,18 @@ export type OpCreateMappingAssociationErrors = {
21443
21438
  500: ErrorResponse;
21444
21439
  };
21445
21440
 
21446
- export type OpCreateMappingAssociationError = OpCreateMappingAssociationErrors[keyof OpCreateMappingAssociationErrors];
21441
+ export type CreateMappingAssociationError = CreateMappingAssociationErrors[keyof CreateMappingAssociationErrors];
21447
21442
 
21448
- export type OpCreateMappingAssociationResponses = {
21443
+ export type CreateMappingAssociationResponses = {
21449
21444
  /**
21450
21445
  * Successful Response
21451
21446
  */
21452
21447
  200: OperationEnvelopeAssociationResponse;
21453
21448
  };
21454
21449
 
21455
- export type OpCreateMappingAssociationResponse = OpCreateMappingAssociationResponses[keyof OpCreateMappingAssociationResponses];
21450
+ export type CreateMappingAssociationResponse = CreateMappingAssociationResponses[keyof CreateMappingAssociationResponses];
21456
21451
 
21457
- export type OpDeleteMappingAssociationData = {
21452
+ export type DeleteMappingAssociationData = {
21458
21453
  body: DeleteMappingAssociationOperation;
21459
21454
  headers?: {
21460
21455
  /**
@@ -21472,7 +21467,7 @@ export type OpDeleteMappingAssociationData = {
21472
21467
  url: '/extensions/roboledger/{graph_id}/operations/delete-mapping-association';
21473
21468
  };
21474
21469
 
21475
- export type OpDeleteMappingAssociationErrors = {
21470
+ export type DeleteMappingAssociationErrors = {
21476
21471
  /**
21477
21472
  * Invalid request
21478
21473
  */
@@ -21507,18 +21502,18 @@ export type OpDeleteMappingAssociationErrors = {
21507
21502
  500: ErrorResponse;
21508
21503
  };
21509
21504
 
21510
- export type OpDeleteMappingAssociationError = OpDeleteMappingAssociationErrors[keyof OpDeleteMappingAssociationErrors];
21505
+ export type DeleteMappingAssociationError = DeleteMappingAssociationErrors[keyof DeleteMappingAssociationErrors];
21511
21506
 
21512
- export type OpDeleteMappingAssociationResponses = {
21507
+ export type DeleteMappingAssociationResponses = {
21513
21508
  /**
21514
21509
  * Successful Response
21515
21510
  */
21516
21511
  200: OperationEnvelopeDeleteResult;
21517
21512
  };
21518
21513
 
21519
- export type OpDeleteMappingAssociationResponse = OpDeleteMappingAssociationResponses[keyof OpDeleteMappingAssociationResponses];
21514
+ export type DeleteMappingAssociationResponse = DeleteMappingAssociationResponses[keyof DeleteMappingAssociationResponses];
21520
21515
 
21521
- export type OpAutoMapElementsData = {
21516
+ export type AutoMapElementsData = {
21522
21517
  body: AutoMapElementsOperation;
21523
21518
  headers?: {
21524
21519
  /**
@@ -21536,7 +21531,7 @@ export type OpAutoMapElementsData = {
21536
21531
  url: '/extensions/roboledger/{graph_id}/operations/auto-map-elements';
21537
21532
  };
21538
21533
 
21539
- export type OpAutoMapElementsErrors = {
21534
+ export type AutoMapElementsErrors = {
21540
21535
  /**
21541
21536
  * Invalid request
21542
21537
  */
@@ -21571,18 +21566,18 @@ export type OpAutoMapElementsErrors = {
21571
21566
  500: ErrorResponse;
21572
21567
  };
21573
21568
 
21574
- export type OpAutoMapElementsError = OpAutoMapElementsErrors[keyof OpAutoMapElementsErrors];
21569
+ export type AutoMapElementsError = AutoMapElementsErrors[keyof AutoMapElementsErrors];
21575
21570
 
21576
- export type OpAutoMapElementsResponses = {
21571
+ export type AutoMapElementsResponses = {
21577
21572
  /**
21578
21573
  * Successful Response
21579
21574
  */
21580
21575
  202: OperationEnvelope;
21581
21576
  };
21582
21577
 
21583
- export type OpAutoMapElementsResponse = OpAutoMapElementsResponses[keyof OpAutoMapElementsResponses];
21578
+ export type AutoMapElementsResponse = AutoMapElementsResponses[keyof AutoMapElementsResponses];
21584
21579
 
21585
- export type OpCreateInformationBlockData = {
21580
+ export type CreateInformationBlockData = {
21586
21581
  body: CreateInformationBlockRequest;
21587
21582
  headers?: {
21588
21583
  /**
@@ -21600,7 +21595,7 @@ export type OpCreateInformationBlockData = {
21600
21595
  url: '/extensions/roboledger/{graph_id}/operations/create-information-block';
21601
21596
  };
21602
21597
 
21603
- export type OpCreateInformationBlockErrors = {
21598
+ export type CreateInformationBlockErrors = {
21604
21599
  /**
21605
21600
  * Invalid request
21606
21601
  */
@@ -21635,18 +21630,18 @@ export type OpCreateInformationBlockErrors = {
21635
21630
  500: ErrorResponse;
21636
21631
  };
21637
21632
 
21638
- export type OpCreateInformationBlockError = OpCreateInformationBlockErrors[keyof OpCreateInformationBlockErrors];
21633
+ export type CreateInformationBlockError = CreateInformationBlockErrors[keyof CreateInformationBlockErrors];
21639
21634
 
21640
- export type OpCreateInformationBlockResponses = {
21635
+ export type CreateInformationBlockResponses = {
21641
21636
  /**
21642
21637
  * Successful Response
21643
21638
  */
21644
21639
  200: OperationEnvelopeInformationBlockEnvelope;
21645
21640
  };
21646
21641
 
21647
- export type OpCreateInformationBlockResponse = OpCreateInformationBlockResponses[keyof OpCreateInformationBlockResponses];
21642
+ export type CreateInformationBlockResponse = CreateInformationBlockResponses[keyof CreateInformationBlockResponses];
21648
21643
 
21649
- export type OpUpdateInformationBlockData = {
21644
+ export type UpdateInformationBlockData = {
21650
21645
  body: UpdateInformationBlockRequest;
21651
21646
  headers?: {
21652
21647
  /**
@@ -21664,7 +21659,7 @@ export type OpUpdateInformationBlockData = {
21664
21659
  url: '/extensions/roboledger/{graph_id}/operations/update-information-block';
21665
21660
  };
21666
21661
 
21667
- export type OpUpdateInformationBlockErrors = {
21662
+ export type UpdateInformationBlockErrors = {
21668
21663
  /**
21669
21664
  * Invalid request
21670
21665
  */
@@ -21699,18 +21694,18 @@ export type OpUpdateInformationBlockErrors = {
21699
21694
  500: ErrorResponse;
21700
21695
  };
21701
21696
 
21702
- export type OpUpdateInformationBlockError = OpUpdateInformationBlockErrors[keyof OpUpdateInformationBlockErrors];
21697
+ export type UpdateInformationBlockError = UpdateInformationBlockErrors[keyof UpdateInformationBlockErrors];
21703
21698
 
21704
- export type OpUpdateInformationBlockResponses = {
21699
+ export type UpdateInformationBlockResponses = {
21705
21700
  /**
21706
21701
  * Successful Response
21707
21702
  */
21708
21703
  200: OperationEnvelopeInformationBlockEnvelope;
21709
21704
  };
21710
21705
 
21711
- export type OpUpdateInformationBlockResponse = OpUpdateInformationBlockResponses[keyof OpUpdateInformationBlockResponses];
21706
+ export type UpdateInformationBlockResponse = UpdateInformationBlockResponses[keyof UpdateInformationBlockResponses];
21712
21707
 
21713
- export type OpDeleteInformationBlockData = {
21708
+ export type DeleteInformationBlockData = {
21714
21709
  body: DeleteInformationBlockRequest;
21715
21710
  headers?: {
21716
21711
  /**
@@ -21728,7 +21723,7 @@ export type OpDeleteInformationBlockData = {
21728
21723
  url: '/extensions/roboledger/{graph_id}/operations/delete-information-block';
21729
21724
  };
21730
21725
 
21731
- export type OpDeleteInformationBlockErrors = {
21726
+ export type DeleteInformationBlockErrors = {
21732
21727
  /**
21733
21728
  * Invalid request
21734
21729
  */
@@ -21763,18 +21758,18 @@ export type OpDeleteInformationBlockErrors = {
21763
21758
  500: ErrorResponse;
21764
21759
  };
21765
21760
 
21766
- export type OpDeleteInformationBlockError = OpDeleteInformationBlockErrors[keyof OpDeleteInformationBlockErrors];
21761
+ export type DeleteInformationBlockError = DeleteInformationBlockErrors[keyof DeleteInformationBlockErrors];
21767
21762
 
21768
- export type OpDeleteInformationBlockResponses = {
21763
+ export type DeleteInformationBlockResponses = {
21769
21764
  /**
21770
21765
  * Successful Response
21771
21766
  */
21772
21767
  200: OperationEnvelopeDeleteInformationBlockResponse;
21773
21768
  };
21774
21769
 
21775
- export type OpDeleteInformationBlockResponse = OpDeleteInformationBlockResponses[keyof OpDeleteInformationBlockResponses];
21770
+ export type DeleteInformationBlockResponse2 = DeleteInformationBlockResponses[keyof DeleteInformationBlockResponses];
21776
21771
 
21777
- export type OpEvaluateRulesData = {
21772
+ export type EvaluateRulesData = {
21778
21773
  body: EvaluateRulesRequest;
21779
21774
  headers?: {
21780
21775
  /**
@@ -21792,7 +21787,7 @@ export type OpEvaluateRulesData = {
21792
21787
  url: '/extensions/roboledger/{graph_id}/operations/evaluate-rules';
21793
21788
  };
21794
21789
 
21795
- export type OpEvaluateRulesErrors = {
21790
+ export type EvaluateRulesErrors = {
21796
21791
  /**
21797
21792
  * Invalid request
21798
21793
  */
@@ -21827,18 +21822,18 @@ export type OpEvaluateRulesErrors = {
21827
21822
  500: ErrorResponse;
21828
21823
  };
21829
21824
 
21830
- export type OpEvaluateRulesError = OpEvaluateRulesErrors[keyof OpEvaluateRulesErrors];
21825
+ export type EvaluateRulesError = EvaluateRulesErrors[keyof EvaluateRulesErrors];
21831
21826
 
21832
- export type OpEvaluateRulesResponses = {
21827
+ export type EvaluateRulesResponses = {
21833
21828
  /**
21834
21829
  * Successful Response
21835
21830
  */
21836
21831
  200: OperationEnvelopeEvaluateRulesResponse;
21837
21832
  };
21838
21833
 
21839
- export type OpEvaluateRulesResponse = OpEvaluateRulesResponses[keyof OpEvaluateRulesResponses];
21834
+ export type EvaluateRulesResponse2 = EvaluateRulesResponses[keyof EvaluateRulesResponses];
21840
21835
 
21841
- export type OpCreateAgentData = {
21836
+ export type CreateAgentData = {
21842
21837
  body: CreateAgentRequest;
21843
21838
  headers?: {
21844
21839
  /**
@@ -21856,7 +21851,7 @@ export type OpCreateAgentData = {
21856
21851
  url: '/extensions/roboledger/{graph_id}/operations/create-agent';
21857
21852
  };
21858
21853
 
21859
- export type OpCreateAgentErrors = {
21854
+ export type CreateAgentErrors = {
21860
21855
  /**
21861
21856
  * Invalid request
21862
21857
  */
@@ -21891,18 +21886,18 @@ export type OpCreateAgentErrors = {
21891
21886
  500: ErrorResponse;
21892
21887
  };
21893
21888
 
21894
- export type OpCreateAgentError = OpCreateAgentErrors[keyof OpCreateAgentErrors];
21889
+ export type CreateAgentError = CreateAgentErrors[keyof CreateAgentErrors];
21895
21890
 
21896
- export type OpCreateAgentResponses = {
21891
+ export type CreateAgentResponses = {
21897
21892
  /**
21898
21893
  * Successful Response
21899
21894
  */
21900
21895
  200: OperationEnvelopeLedgerAgentResponse;
21901
21896
  };
21902
21897
 
21903
- export type OpCreateAgentResponse = OpCreateAgentResponses[keyof OpCreateAgentResponses];
21898
+ export type CreateAgentResponse = CreateAgentResponses[keyof CreateAgentResponses];
21904
21899
 
21905
- export type OpUpdateAgentData = {
21900
+ export type UpdateAgentData = {
21906
21901
  body: UpdateAgentRequest;
21907
21902
  headers?: {
21908
21903
  /**
@@ -21920,7 +21915,7 @@ export type OpUpdateAgentData = {
21920
21915
  url: '/extensions/roboledger/{graph_id}/operations/update-agent';
21921
21916
  };
21922
21917
 
21923
- export type OpUpdateAgentErrors = {
21918
+ export type UpdateAgentErrors = {
21924
21919
  /**
21925
21920
  * Invalid request
21926
21921
  */
@@ -21955,18 +21950,18 @@ export type OpUpdateAgentErrors = {
21955
21950
  500: ErrorResponse;
21956
21951
  };
21957
21952
 
21958
- export type OpUpdateAgentError = OpUpdateAgentErrors[keyof OpUpdateAgentErrors];
21953
+ export type UpdateAgentError = UpdateAgentErrors[keyof UpdateAgentErrors];
21959
21954
 
21960
- export type OpUpdateAgentResponses = {
21955
+ export type UpdateAgentResponses = {
21961
21956
  /**
21962
21957
  * Successful Response
21963
21958
  */
21964
21959
  200: OperationEnvelopeLedgerAgentResponse;
21965
21960
  };
21966
21961
 
21967
- export type OpUpdateAgentResponse = OpUpdateAgentResponses[keyof OpUpdateAgentResponses];
21962
+ export type UpdateAgentResponse = UpdateAgentResponses[keyof UpdateAgentResponses];
21968
21963
 
21969
- export type OpCreateEventBlockData = {
21964
+ export type CreateEventBlockData = {
21970
21965
  body: CreateEventBlockRequest;
21971
21966
  headers?: {
21972
21967
  /**
@@ -21984,7 +21979,7 @@ export type OpCreateEventBlockData = {
21984
21979
  url: '/extensions/roboledger/{graph_id}/operations/create-event-block';
21985
21980
  };
21986
21981
 
21987
- export type OpCreateEventBlockErrors = {
21982
+ export type CreateEventBlockErrors = {
21988
21983
  /**
21989
21984
  * Invalid request
21990
21985
  */
@@ -22019,18 +22014,18 @@ export type OpCreateEventBlockErrors = {
22019
22014
  500: ErrorResponse;
22020
22015
  };
22021
22016
 
22022
- export type OpCreateEventBlockError = OpCreateEventBlockErrors[keyof OpCreateEventBlockErrors];
22017
+ export type CreateEventBlockError = CreateEventBlockErrors[keyof CreateEventBlockErrors];
22023
22018
 
22024
- export type OpCreateEventBlockResponses = {
22019
+ export type CreateEventBlockResponses = {
22025
22020
  /**
22026
22021
  * Successful Response
22027
22022
  */
22028
22023
  200: OperationEnvelopeEventBlockEnvelope;
22029
22024
  };
22030
22025
 
22031
- export type OpCreateEventBlockResponse = OpCreateEventBlockResponses[keyof OpCreateEventBlockResponses];
22026
+ export type CreateEventBlockResponse = CreateEventBlockResponses[keyof CreateEventBlockResponses];
22032
22027
 
22033
- export type OpUpdateEventBlockData = {
22028
+ export type UpdateEventBlockData = {
22034
22029
  body: UpdateEventBlockRequest;
22035
22030
  headers?: {
22036
22031
  /**
@@ -22048,7 +22043,7 @@ export type OpUpdateEventBlockData = {
22048
22043
  url: '/extensions/roboledger/{graph_id}/operations/update-event-block';
22049
22044
  };
22050
22045
 
22051
- export type OpUpdateEventBlockErrors = {
22046
+ export type UpdateEventBlockErrors = {
22052
22047
  /**
22053
22048
  * Invalid request
22054
22049
  */
@@ -22083,18 +22078,18 @@ export type OpUpdateEventBlockErrors = {
22083
22078
  500: ErrorResponse;
22084
22079
  };
22085
22080
 
22086
- export type OpUpdateEventBlockError = OpUpdateEventBlockErrors[keyof OpUpdateEventBlockErrors];
22081
+ export type UpdateEventBlockError = UpdateEventBlockErrors[keyof UpdateEventBlockErrors];
22087
22082
 
22088
- export type OpUpdateEventBlockResponses = {
22083
+ export type UpdateEventBlockResponses = {
22089
22084
  /**
22090
22085
  * Successful Response
22091
22086
  */
22092
22087
  200: OperationEnvelopeEventBlockEnvelope;
22093
22088
  };
22094
22089
 
22095
- export type OpUpdateEventBlockResponse = OpUpdateEventBlockResponses[keyof OpUpdateEventBlockResponses];
22090
+ export type UpdateEventBlockResponse = UpdateEventBlockResponses[keyof UpdateEventBlockResponses];
22096
22091
 
22097
- export type OpExecuteEventBlockData = {
22092
+ export type ExecuteEventBlockData = {
22098
22093
  body: ExecuteEventBlockRequest;
22099
22094
  headers?: {
22100
22095
  /**
@@ -22112,7 +22107,7 @@ export type OpExecuteEventBlockData = {
22112
22107
  url: '/extensions/roboledger/{graph_id}/operations/execute-event-block';
22113
22108
  };
22114
22109
 
22115
- export type OpExecuteEventBlockErrors = {
22110
+ export type ExecuteEventBlockErrors = {
22116
22111
  /**
22117
22112
  * Invalid request
22118
22113
  */
@@ -22147,18 +22142,18 @@ export type OpExecuteEventBlockErrors = {
22147
22142
  500: ErrorResponse;
22148
22143
  };
22149
22144
 
22150
- export type OpExecuteEventBlockError = OpExecuteEventBlockErrors[keyof OpExecuteEventBlockErrors];
22145
+ export type ExecuteEventBlockError = ExecuteEventBlockErrors[keyof ExecuteEventBlockErrors];
22151
22146
 
22152
- export type OpExecuteEventBlockResponses = {
22147
+ export type ExecuteEventBlockResponses = {
22153
22148
  /**
22154
22149
  * Successful Response
22155
22150
  */
22156
22151
  200: OperationEnvelopeExecuteEventBlockResponse;
22157
22152
  };
22158
22153
 
22159
- export type OpExecuteEventBlockResponse = OpExecuteEventBlockResponses[keyof OpExecuteEventBlockResponses];
22154
+ export type ExecuteEventBlockResponse2 = ExecuteEventBlockResponses[keyof ExecuteEventBlockResponses];
22160
22155
 
22161
- export type OpCreateEventHandlerData = {
22156
+ export type CreateEventHandlerData = {
22162
22157
  body: CreateEventHandlerRequest;
22163
22158
  headers?: {
22164
22159
  /**
@@ -22176,7 +22171,7 @@ export type OpCreateEventHandlerData = {
22176
22171
  url: '/extensions/roboledger/{graph_id}/operations/create-event-handler';
22177
22172
  };
22178
22173
 
22179
- export type OpCreateEventHandlerErrors = {
22174
+ export type CreateEventHandlerErrors = {
22180
22175
  /**
22181
22176
  * Invalid request
22182
22177
  */
@@ -22211,18 +22206,18 @@ export type OpCreateEventHandlerErrors = {
22211
22206
  500: ErrorResponse;
22212
22207
  };
22213
22208
 
22214
- export type OpCreateEventHandlerError = OpCreateEventHandlerErrors[keyof OpCreateEventHandlerErrors];
22209
+ export type CreateEventHandlerError = CreateEventHandlerErrors[keyof CreateEventHandlerErrors];
22215
22210
 
22216
- export type OpCreateEventHandlerResponses = {
22211
+ export type CreateEventHandlerResponses = {
22217
22212
  /**
22218
22213
  * Successful Response
22219
22214
  */
22220
22215
  200: OperationEnvelopeEventHandlerResponse;
22221
22216
  };
22222
22217
 
22223
- export type OpCreateEventHandlerResponse = OpCreateEventHandlerResponses[keyof OpCreateEventHandlerResponses];
22218
+ export type CreateEventHandlerResponse = CreateEventHandlerResponses[keyof CreateEventHandlerResponses];
22224
22219
 
22225
- export type OpUpdateEventHandlerData = {
22220
+ export type UpdateEventHandlerData = {
22226
22221
  body: UpdateEventHandlerRequest;
22227
22222
  headers?: {
22228
22223
  /**
@@ -22240,7 +22235,7 @@ export type OpUpdateEventHandlerData = {
22240
22235
  url: '/extensions/roboledger/{graph_id}/operations/update-event-handler';
22241
22236
  };
22242
22237
 
22243
- export type OpUpdateEventHandlerErrors = {
22238
+ export type UpdateEventHandlerErrors = {
22244
22239
  /**
22245
22240
  * Invalid request
22246
22241
  */
@@ -22275,18 +22270,18 @@ export type OpUpdateEventHandlerErrors = {
22275
22270
  500: ErrorResponse;
22276
22271
  };
22277
22272
 
22278
- export type OpUpdateEventHandlerError = OpUpdateEventHandlerErrors[keyof OpUpdateEventHandlerErrors];
22273
+ export type UpdateEventHandlerError = UpdateEventHandlerErrors[keyof UpdateEventHandlerErrors];
22279
22274
 
22280
- export type OpUpdateEventHandlerResponses = {
22275
+ export type UpdateEventHandlerResponses = {
22281
22276
  /**
22282
22277
  * Successful Response
22283
22278
  */
22284
22279
  200: OperationEnvelopeEventHandlerResponse;
22285
22280
  };
22286
22281
 
22287
- export type OpUpdateEventHandlerResponse = OpUpdateEventHandlerResponses[keyof OpUpdateEventHandlerResponses];
22282
+ export type UpdateEventHandlerResponse = UpdateEventHandlerResponses[keyof UpdateEventHandlerResponses];
22288
22283
 
22289
- export type OpPreviewEventBlockData = {
22284
+ export type PreviewEventBlockData = {
22290
22285
  body: CreateEventBlockRequest;
22291
22286
  headers?: {
22292
22287
  /**
@@ -22304,7 +22299,7 @@ export type OpPreviewEventBlockData = {
22304
22299
  url: '/extensions/roboledger/{graph_id}/operations/preview-event-block';
22305
22300
  };
22306
22301
 
22307
- export type OpPreviewEventBlockErrors = {
22302
+ export type PreviewEventBlockErrors = {
22308
22303
  /**
22309
22304
  * Invalid request
22310
22305
  */
@@ -22339,18 +22334,18 @@ export type OpPreviewEventBlockErrors = {
22339
22334
  500: ErrorResponse;
22340
22335
  };
22341
22336
 
22342
- export type OpPreviewEventBlockError = OpPreviewEventBlockErrors[keyof OpPreviewEventBlockErrors];
22337
+ export type PreviewEventBlockError = PreviewEventBlockErrors[keyof PreviewEventBlockErrors];
22343
22338
 
22344
- export type OpPreviewEventBlockResponses = {
22339
+ export type PreviewEventBlockResponses = {
22345
22340
  /**
22346
22341
  * Successful Response
22347
22342
  */
22348
22343
  200: OperationEnvelopePreviewEventBlockResponse;
22349
22344
  };
22350
22345
 
22351
- export type OpPreviewEventBlockResponse = OpPreviewEventBlockResponses[keyof OpPreviewEventBlockResponses];
22346
+ export type PreviewEventBlockResponse2 = PreviewEventBlockResponses[keyof PreviewEventBlockResponses];
22352
22347
 
22353
- export type OpUpdateJournalEntryData = {
22348
+ export type UpdateJournalEntryData = {
22354
22349
  body: UpdateJournalEntryRequest;
22355
22350
  headers?: {
22356
22351
  /**
@@ -22368,7 +22363,7 @@ export type OpUpdateJournalEntryData = {
22368
22363
  url: '/extensions/roboledger/{graph_id}/operations/update-journal-entry';
22369
22364
  };
22370
22365
 
22371
- export type OpUpdateJournalEntryErrors = {
22366
+ export type UpdateJournalEntryErrors = {
22372
22367
  /**
22373
22368
  * Invalid request
22374
22369
  */
@@ -22403,18 +22398,18 @@ export type OpUpdateJournalEntryErrors = {
22403
22398
  500: ErrorResponse;
22404
22399
  };
22405
22400
 
22406
- export type OpUpdateJournalEntryError = OpUpdateJournalEntryErrors[keyof OpUpdateJournalEntryErrors];
22401
+ export type UpdateJournalEntryError = UpdateJournalEntryErrors[keyof UpdateJournalEntryErrors];
22407
22402
 
22408
- export type OpUpdateJournalEntryResponses = {
22403
+ export type UpdateJournalEntryResponses = {
22409
22404
  /**
22410
22405
  * Successful Response
22411
22406
  */
22412
22407
  200: OperationEnvelopeJournalEntryResponse;
22413
22408
  };
22414
22409
 
22415
- export type OpUpdateJournalEntryResponse = OpUpdateJournalEntryResponses[keyof OpUpdateJournalEntryResponses];
22410
+ export type UpdateJournalEntryResponse = UpdateJournalEntryResponses[keyof UpdateJournalEntryResponses];
22416
22411
 
22417
- export type OpDeleteJournalEntryData = {
22412
+ export type DeleteJournalEntryData = {
22418
22413
  body: DeleteJournalEntryRequest;
22419
22414
  headers?: {
22420
22415
  /**
@@ -22432,7 +22427,7 @@ export type OpDeleteJournalEntryData = {
22432
22427
  url: '/extensions/roboledger/{graph_id}/operations/delete-journal-entry';
22433
22428
  };
22434
22429
 
22435
- export type OpDeleteJournalEntryErrors = {
22430
+ export type DeleteJournalEntryErrors = {
22436
22431
  /**
22437
22432
  * Invalid request
22438
22433
  */
@@ -22467,18 +22462,18 @@ export type OpDeleteJournalEntryErrors = {
22467
22462
  500: ErrorResponse;
22468
22463
  };
22469
22464
 
22470
- export type OpDeleteJournalEntryError = OpDeleteJournalEntryErrors[keyof OpDeleteJournalEntryErrors];
22465
+ export type DeleteJournalEntryError = DeleteJournalEntryErrors[keyof DeleteJournalEntryErrors];
22471
22466
 
22472
- export type OpDeleteJournalEntryResponses = {
22467
+ export type DeleteJournalEntryResponses = {
22473
22468
  /**
22474
22469
  * Successful Response
22475
22470
  */
22476
22471
  200: OperationEnvelopeDeleteResult;
22477
22472
  };
22478
22473
 
22479
- export type OpDeleteJournalEntryResponse = OpDeleteJournalEntryResponses[keyof OpDeleteJournalEntryResponses];
22474
+ export type DeleteJournalEntryResponse = DeleteJournalEntryResponses[keyof DeleteJournalEntryResponses];
22480
22475
 
22481
- export type OpPromoteObligationsData = {
22476
+ export type PromoteObligationsData = {
22482
22477
  body: PromoteObligationsRequest;
22483
22478
  headers?: {
22484
22479
  /**
@@ -22496,7 +22491,7 @@ export type OpPromoteObligationsData = {
22496
22491
  url: '/extensions/roboledger/{graph_id}/operations/promote-obligations';
22497
22492
  };
22498
22493
 
22499
- export type OpPromoteObligationsErrors = {
22494
+ export type PromoteObligationsErrors = {
22500
22495
  /**
22501
22496
  * Invalid request
22502
22497
  */
@@ -22531,18 +22526,18 @@ export type OpPromoteObligationsErrors = {
22531
22526
  500: ErrorResponse;
22532
22527
  };
22533
22528
 
22534
- export type OpPromoteObligationsError = OpPromoteObligationsErrors[keyof OpPromoteObligationsErrors];
22529
+ export type PromoteObligationsError = PromoteObligationsErrors[keyof PromoteObligationsErrors];
22535
22530
 
22536
- export type OpPromoteObligationsResponses = {
22531
+ export type PromoteObligationsResponses = {
22537
22532
  /**
22538
22533
  * Successful Response
22539
22534
  */
22540
22535
  200: OperationEnvelopePromoteObligationsResponse;
22541
22536
  };
22542
22537
 
22543
- export type OpPromoteObligationsResponse = OpPromoteObligationsResponses[keyof OpPromoteObligationsResponses];
22538
+ export type PromoteObligationsResponse2 = PromoteObligationsResponses[keyof PromoteObligationsResponses];
22544
22539
 
22545
- export type OpRebuildScheduleData = {
22540
+ export type RebuildScheduleData = {
22546
22541
  body: RebuildScheduleRequest;
22547
22542
  headers?: {
22548
22543
  /**
@@ -22560,7 +22555,7 @@ export type OpRebuildScheduleData = {
22560
22555
  url: '/extensions/roboledger/{graph_id}/operations/rebuild-schedule';
22561
22556
  };
22562
22557
 
22563
- export type OpRebuildScheduleErrors = {
22558
+ export type RebuildScheduleErrors = {
22564
22559
  /**
22565
22560
  * Invalid request
22566
22561
  */
@@ -22595,18 +22590,18 @@ export type OpRebuildScheduleErrors = {
22595
22590
  500: ErrorResponse;
22596
22591
  };
22597
22592
 
22598
- export type OpRebuildScheduleError = OpRebuildScheduleErrors[keyof OpRebuildScheduleErrors];
22593
+ export type RebuildScheduleError = RebuildScheduleErrors[keyof RebuildScheduleErrors];
22599
22594
 
22600
- export type OpRebuildScheduleResponses = {
22595
+ export type RebuildScheduleResponses = {
22601
22596
  /**
22602
22597
  * Successful Response
22603
22598
  */
22604
22599
  200: OperationEnvelopeScheduleCreatedResponse;
22605
22600
  };
22606
22601
 
22607
- export type OpRebuildScheduleResponse = OpRebuildScheduleResponses[keyof OpRebuildScheduleResponses];
22602
+ export type RebuildScheduleResponse = RebuildScheduleResponses[keyof RebuildScheduleResponses];
22608
22603
 
22609
- export type OpSetCloseTargetData = {
22604
+ export type SetCloseTargetData = {
22610
22605
  body: SetCloseTargetOperation;
22611
22606
  headers?: {
22612
22607
  /**
@@ -22624,7 +22619,7 @@ export type OpSetCloseTargetData = {
22624
22619
  url: '/extensions/roboledger/{graph_id}/operations/set-close-target';
22625
22620
  };
22626
22621
 
22627
- export type OpSetCloseTargetErrors = {
22622
+ export type SetCloseTargetErrors = {
22628
22623
  /**
22629
22624
  * Invalid request
22630
22625
  */
@@ -22659,18 +22654,18 @@ export type OpSetCloseTargetErrors = {
22659
22654
  500: ErrorResponse;
22660
22655
  };
22661
22656
 
22662
- export type OpSetCloseTargetError = OpSetCloseTargetErrors[keyof OpSetCloseTargetErrors];
22657
+ export type SetCloseTargetError = SetCloseTargetErrors[keyof SetCloseTargetErrors];
22663
22658
 
22664
- export type OpSetCloseTargetResponses = {
22659
+ export type SetCloseTargetResponses = {
22665
22660
  /**
22666
22661
  * Successful Response
22667
22662
  */
22668
22663
  200: OperationEnvelopeFiscalCalendarResponse;
22669
22664
  };
22670
22665
 
22671
- export type OpSetCloseTargetResponse = OpSetCloseTargetResponses[keyof OpSetCloseTargetResponses];
22666
+ export type SetCloseTargetResponse = SetCloseTargetResponses[keyof SetCloseTargetResponses];
22672
22667
 
22673
- export type OpClosePeriodData = {
22668
+ export type ClosePeriodData = {
22674
22669
  body: ClosePeriodOperation;
22675
22670
  headers?: {
22676
22671
  /**
@@ -22688,7 +22683,7 @@ export type OpClosePeriodData = {
22688
22683
  url: '/extensions/roboledger/{graph_id}/operations/close-period';
22689
22684
  };
22690
22685
 
22691
- export type OpClosePeriodErrors = {
22686
+ export type ClosePeriodErrors = {
22692
22687
  /**
22693
22688
  * Invalid request
22694
22689
  */
@@ -22723,18 +22718,18 @@ export type OpClosePeriodErrors = {
22723
22718
  500: ErrorResponse;
22724
22719
  };
22725
22720
 
22726
- export type OpClosePeriodError = OpClosePeriodErrors[keyof OpClosePeriodErrors];
22721
+ export type ClosePeriodError = ClosePeriodErrors[keyof ClosePeriodErrors];
22727
22722
 
22728
- export type OpClosePeriodResponses = {
22723
+ export type ClosePeriodResponses = {
22729
22724
  /**
22730
22725
  * Successful Response
22731
22726
  */
22732
22727
  200: OperationEnvelopeClosePeriodResponse;
22733
22728
  };
22734
22729
 
22735
- export type OpClosePeriodResponse = OpClosePeriodResponses[keyof OpClosePeriodResponses];
22730
+ export type ClosePeriodResponse2 = ClosePeriodResponses[keyof ClosePeriodResponses];
22736
22731
 
22737
- export type OpReopenPeriodData = {
22732
+ export type ReopenPeriodData = {
22738
22733
  body: ReopenPeriodOperation;
22739
22734
  headers?: {
22740
22735
  /**
@@ -22752,7 +22747,7 @@ export type OpReopenPeriodData = {
22752
22747
  url: '/extensions/roboledger/{graph_id}/operations/reopen-period';
22753
22748
  };
22754
22749
 
22755
- export type OpReopenPeriodErrors = {
22750
+ export type ReopenPeriodErrors = {
22756
22751
  /**
22757
22752
  * Invalid request
22758
22753
  */
@@ -22787,18 +22782,18 @@ export type OpReopenPeriodErrors = {
22787
22782
  500: ErrorResponse;
22788
22783
  };
22789
22784
 
22790
- export type OpReopenPeriodError = OpReopenPeriodErrors[keyof OpReopenPeriodErrors];
22785
+ export type ReopenPeriodError = ReopenPeriodErrors[keyof ReopenPeriodErrors];
22791
22786
 
22792
- export type OpReopenPeriodResponses = {
22787
+ export type ReopenPeriodResponses = {
22793
22788
  /**
22794
22789
  * Successful Response
22795
22790
  */
22796
22791
  200: OperationEnvelopeFiscalCalendarResponse;
22797
22792
  };
22798
22793
 
22799
- export type OpReopenPeriodResponse = OpReopenPeriodResponses[keyof OpReopenPeriodResponses];
22794
+ export type ReopenPeriodResponse = ReopenPeriodResponses[keyof ReopenPeriodResponses];
22800
22795
 
22801
- export type OpCreateReportData = {
22796
+ export type CreateReportData = {
22802
22797
  body: CreateReportRequest;
22803
22798
  headers?: {
22804
22799
  /**
@@ -22816,7 +22811,7 @@ export type OpCreateReportData = {
22816
22811
  url: '/extensions/roboledger/{graph_id}/operations/create-report';
22817
22812
  };
22818
22813
 
22819
- export type OpCreateReportErrors = {
22814
+ export type CreateReportErrors = {
22820
22815
  /**
22821
22816
  * Invalid request
22822
22817
  */
@@ -22851,18 +22846,18 @@ export type OpCreateReportErrors = {
22851
22846
  500: ErrorResponse;
22852
22847
  };
22853
22848
 
22854
- export type OpCreateReportError = OpCreateReportErrors[keyof OpCreateReportErrors];
22849
+ export type CreateReportError = CreateReportErrors[keyof CreateReportErrors];
22855
22850
 
22856
- export type OpCreateReportResponses = {
22851
+ export type CreateReportResponses = {
22857
22852
  /**
22858
22853
  * Successful Response
22859
22854
  */
22860
22855
  200: OperationEnvelopeReportResponse;
22861
22856
  };
22862
22857
 
22863
- export type OpCreateReportResponse = OpCreateReportResponses[keyof OpCreateReportResponses];
22858
+ export type CreateReportResponse = CreateReportResponses[keyof CreateReportResponses];
22864
22859
 
22865
- export type OpRegenerateReportData = {
22860
+ export type RegenerateReportData = {
22866
22861
  body: RegenerateReportOperation;
22867
22862
  headers?: {
22868
22863
  /**
@@ -22880,7 +22875,7 @@ export type OpRegenerateReportData = {
22880
22875
  url: '/extensions/roboledger/{graph_id}/operations/regenerate-report';
22881
22876
  };
22882
22877
 
22883
- export type OpRegenerateReportErrors = {
22878
+ export type RegenerateReportErrors = {
22884
22879
  /**
22885
22880
  * Invalid request
22886
22881
  */
@@ -22915,18 +22910,18 @@ export type OpRegenerateReportErrors = {
22915
22910
  500: ErrorResponse;
22916
22911
  };
22917
22912
 
22918
- export type OpRegenerateReportError = OpRegenerateReportErrors[keyof OpRegenerateReportErrors];
22913
+ export type RegenerateReportError = RegenerateReportErrors[keyof RegenerateReportErrors];
22919
22914
 
22920
- export type OpRegenerateReportResponses = {
22915
+ export type RegenerateReportResponses = {
22921
22916
  /**
22922
22917
  * Successful Response
22923
22918
  */
22924
22919
  200: OperationEnvelopeReportResponse;
22925
22920
  };
22926
22921
 
22927
- export type OpRegenerateReportResponse = OpRegenerateReportResponses[keyof OpRegenerateReportResponses];
22922
+ export type RegenerateReportResponse = RegenerateReportResponses[keyof RegenerateReportResponses];
22928
22923
 
22929
- export type OpDeleteReportData = {
22924
+ export type DeleteReportData = {
22930
22925
  body: DeleteReportOperation;
22931
22926
  headers?: {
22932
22927
  /**
@@ -22944,7 +22939,7 @@ export type OpDeleteReportData = {
22944
22939
  url: '/extensions/roboledger/{graph_id}/operations/delete-report';
22945
22940
  };
22946
22941
 
22947
- export type OpDeleteReportErrors = {
22942
+ export type DeleteReportErrors = {
22948
22943
  /**
22949
22944
  * Invalid request
22950
22945
  */
@@ -22979,18 +22974,18 @@ export type OpDeleteReportErrors = {
22979
22974
  500: ErrorResponse;
22980
22975
  };
22981
22976
 
22982
- export type OpDeleteReportError = OpDeleteReportErrors[keyof OpDeleteReportErrors];
22977
+ export type DeleteReportError = DeleteReportErrors[keyof DeleteReportErrors];
22983
22978
 
22984
- export type OpDeleteReportResponses = {
22979
+ export type DeleteReportResponses = {
22985
22980
  /**
22986
22981
  * Successful Response
22987
22982
  */
22988
22983
  200: OperationEnvelopeDeleteResult;
22989
22984
  };
22990
22985
 
22991
- export type OpDeleteReportResponse = OpDeleteReportResponses[keyof OpDeleteReportResponses];
22986
+ export type DeleteReportResponse = DeleteReportResponses[keyof DeleteReportResponses];
22992
22987
 
22993
- export type OpShareReportData = {
22988
+ export type ShareReportData = {
22994
22989
  body: ShareReportOperation;
22995
22990
  headers?: {
22996
22991
  /**
@@ -23008,7 +23003,7 @@ export type OpShareReportData = {
23008
23003
  url: '/extensions/roboledger/{graph_id}/operations/share-report';
23009
23004
  };
23010
23005
 
23011
- export type OpShareReportErrors = {
23006
+ export type ShareReportErrors = {
23012
23007
  /**
23013
23008
  * Invalid request
23014
23009
  */
@@ -23043,18 +23038,18 @@ export type OpShareReportErrors = {
23043
23038
  500: ErrorResponse;
23044
23039
  };
23045
23040
 
23046
- export type OpShareReportError = OpShareReportErrors[keyof OpShareReportErrors];
23041
+ export type ShareReportError = ShareReportErrors[keyof ShareReportErrors];
23047
23042
 
23048
- export type OpShareReportResponses = {
23043
+ export type ShareReportResponses = {
23049
23044
  /**
23050
23045
  * Successful Response
23051
23046
  */
23052
23047
  200: OperationEnvelopeShareReportResponse;
23053
23048
  };
23054
23049
 
23055
- export type OpShareReportResponse = OpShareReportResponses[keyof OpShareReportResponses];
23050
+ export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
23056
23051
 
23057
- export type OpFileReportData = {
23052
+ export type FileReportData = {
23058
23053
  body: FileReportRequest;
23059
23054
  headers?: {
23060
23055
  /**
@@ -23072,7 +23067,7 @@ export type OpFileReportData = {
23072
23067
  url: '/extensions/roboledger/{graph_id}/operations/file-report';
23073
23068
  };
23074
23069
 
23075
- export type OpFileReportErrors = {
23070
+ export type FileReportErrors = {
23076
23071
  /**
23077
23072
  * Invalid request
23078
23073
  */
@@ -23107,18 +23102,18 @@ export type OpFileReportErrors = {
23107
23102
  500: ErrorResponse;
23108
23103
  };
23109
23104
 
23110
- export type OpFileReportError = OpFileReportErrors[keyof OpFileReportErrors];
23105
+ export type FileReportError = FileReportErrors[keyof FileReportErrors];
23111
23106
 
23112
- export type OpFileReportResponses = {
23107
+ export type FileReportResponses = {
23113
23108
  /**
23114
23109
  * Successful Response
23115
23110
  */
23116
23111
  200: OperationEnvelopeReportResponse;
23117
23112
  };
23118
23113
 
23119
- export type OpFileReportResponse = OpFileReportResponses[keyof OpFileReportResponses];
23114
+ export type FileReportResponse = FileReportResponses[keyof FileReportResponses];
23120
23115
 
23121
- export type OpTransitionFilingStatusData = {
23116
+ export type TransitionFilingStatusData = {
23122
23117
  body: TransitionFilingStatusRequest;
23123
23118
  headers?: {
23124
23119
  /**
@@ -23136,7 +23131,7 @@ export type OpTransitionFilingStatusData = {
23136
23131
  url: '/extensions/roboledger/{graph_id}/operations/transition-filing-status';
23137
23132
  };
23138
23133
 
23139
- export type OpTransitionFilingStatusErrors = {
23134
+ export type TransitionFilingStatusErrors = {
23140
23135
  /**
23141
23136
  * Invalid request
23142
23137
  */
@@ -23171,18 +23166,18 @@ export type OpTransitionFilingStatusErrors = {
23171
23166
  500: ErrorResponse;
23172
23167
  };
23173
23168
 
23174
- export type OpTransitionFilingStatusError = OpTransitionFilingStatusErrors[keyof OpTransitionFilingStatusErrors];
23169
+ export type TransitionFilingStatusError = TransitionFilingStatusErrors[keyof TransitionFilingStatusErrors];
23175
23170
 
23176
- export type OpTransitionFilingStatusResponses = {
23171
+ export type TransitionFilingStatusResponses = {
23177
23172
  /**
23178
23173
  * Successful Response
23179
23174
  */
23180
23175
  200: OperationEnvelopeReportResponse;
23181
23176
  };
23182
23177
 
23183
- export type OpTransitionFilingStatusResponse = OpTransitionFilingStatusResponses[keyof OpTransitionFilingStatusResponses];
23178
+ export type TransitionFilingStatusResponse = TransitionFilingStatusResponses[keyof TransitionFilingStatusResponses];
23184
23179
 
23185
- export type OpCreatePublishListData = {
23180
+ export type CreatePublishListData = {
23186
23181
  body: CreatePublishListRequest;
23187
23182
  headers?: {
23188
23183
  /**
@@ -23200,7 +23195,7 @@ export type OpCreatePublishListData = {
23200
23195
  url: '/extensions/roboledger/{graph_id}/operations/create-publish-list';
23201
23196
  };
23202
23197
 
23203
- export type OpCreatePublishListErrors = {
23198
+ export type CreatePublishListErrors = {
23204
23199
  /**
23205
23200
  * Invalid request
23206
23201
  */
@@ -23235,18 +23230,18 @@ export type OpCreatePublishListErrors = {
23235
23230
  500: ErrorResponse;
23236
23231
  };
23237
23232
 
23238
- export type OpCreatePublishListError = OpCreatePublishListErrors[keyof OpCreatePublishListErrors];
23233
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
23239
23234
 
23240
- export type OpCreatePublishListResponses = {
23235
+ export type CreatePublishListResponses = {
23241
23236
  /**
23242
23237
  * Successful Response
23243
23238
  */
23244
23239
  200: OperationEnvelopePublishListResponse;
23245
23240
  };
23246
23241
 
23247
- export type OpCreatePublishListResponse = OpCreatePublishListResponses[keyof OpCreatePublishListResponses];
23242
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
23248
23243
 
23249
- export type OpUpdatePublishListData = {
23244
+ export type UpdatePublishListData = {
23250
23245
  body: UpdatePublishListOperation;
23251
23246
  headers?: {
23252
23247
  /**
@@ -23264,7 +23259,7 @@ export type OpUpdatePublishListData = {
23264
23259
  url: '/extensions/roboledger/{graph_id}/operations/update-publish-list';
23265
23260
  };
23266
23261
 
23267
- export type OpUpdatePublishListErrors = {
23262
+ export type UpdatePublishListErrors = {
23268
23263
  /**
23269
23264
  * Invalid request
23270
23265
  */
@@ -23299,18 +23294,18 @@ export type OpUpdatePublishListErrors = {
23299
23294
  500: ErrorResponse;
23300
23295
  };
23301
23296
 
23302
- export type OpUpdatePublishListError = OpUpdatePublishListErrors[keyof OpUpdatePublishListErrors];
23297
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
23303
23298
 
23304
- export type OpUpdatePublishListResponses = {
23299
+ export type UpdatePublishListResponses = {
23305
23300
  /**
23306
23301
  * Successful Response
23307
23302
  */
23308
23303
  200: OperationEnvelopePublishListResponse;
23309
23304
  };
23310
23305
 
23311
- export type OpUpdatePublishListResponse = OpUpdatePublishListResponses[keyof OpUpdatePublishListResponses];
23306
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
23312
23307
 
23313
- export type OpDeletePublishListData = {
23308
+ export type DeletePublishListData = {
23314
23309
  body: DeletePublishListOperation;
23315
23310
  headers?: {
23316
23311
  /**
@@ -23328,7 +23323,7 @@ export type OpDeletePublishListData = {
23328
23323
  url: '/extensions/roboledger/{graph_id}/operations/delete-publish-list';
23329
23324
  };
23330
23325
 
23331
- export type OpDeletePublishListErrors = {
23326
+ export type DeletePublishListErrors = {
23332
23327
  /**
23333
23328
  * Invalid request
23334
23329
  */
@@ -23363,18 +23358,18 @@ export type OpDeletePublishListErrors = {
23363
23358
  500: ErrorResponse;
23364
23359
  };
23365
23360
 
23366
- export type OpDeletePublishListError = OpDeletePublishListErrors[keyof OpDeletePublishListErrors];
23361
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
23367
23362
 
23368
- export type OpDeletePublishListResponses = {
23363
+ export type DeletePublishListResponses = {
23369
23364
  /**
23370
23365
  * Successful Response
23371
23366
  */
23372
23367
  200: OperationEnvelopeDeleteResult;
23373
23368
  };
23374
23369
 
23375
- export type OpDeletePublishListResponse = OpDeletePublishListResponses[keyof OpDeletePublishListResponses];
23370
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
23376
23371
 
23377
- export type OpAddPublishListMembersData = {
23372
+ export type AddPublishListMembersData = {
23378
23373
  body: AddPublishListMembersOperation;
23379
23374
  headers?: {
23380
23375
  /**
@@ -23392,7 +23387,7 @@ export type OpAddPublishListMembersData = {
23392
23387
  url: '/extensions/roboledger/{graph_id}/operations/add-publish-list-members';
23393
23388
  };
23394
23389
 
23395
- export type OpAddPublishListMembersErrors = {
23390
+ export type AddPublishListMembersErrors = {
23396
23391
  /**
23397
23392
  * Invalid request
23398
23393
  */
@@ -23427,18 +23422,18 @@ export type OpAddPublishListMembersErrors = {
23427
23422
  500: ErrorResponse;
23428
23423
  };
23429
23424
 
23430
- export type OpAddPublishListMembersError = OpAddPublishListMembersErrors[keyof OpAddPublishListMembersErrors];
23425
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
23431
23426
 
23432
- export type OpAddPublishListMembersResponses = {
23427
+ export type AddPublishListMembersResponses = {
23433
23428
  /**
23434
23429
  * Successful Response
23435
23430
  */
23436
23431
  200: OperationEnvelopeListPublishListMemberResponse;
23437
23432
  };
23438
23433
 
23439
- export type OpAddPublishListMembersResponse = OpAddPublishListMembersResponses[keyof OpAddPublishListMembersResponses];
23434
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
23440
23435
 
23441
- export type OpRemovePublishListMemberData = {
23436
+ export type RemovePublishListMemberData = {
23442
23437
  body: RemovePublishListMemberOperation;
23443
23438
  headers?: {
23444
23439
  /**
@@ -23456,7 +23451,7 @@ export type OpRemovePublishListMemberData = {
23456
23451
  url: '/extensions/roboledger/{graph_id}/operations/remove-publish-list-member';
23457
23452
  };
23458
23453
 
23459
- export type OpRemovePublishListMemberErrors = {
23454
+ export type RemovePublishListMemberErrors = {
23460
23455
  /**
23461
23456
  * Invalid request
23462
23457
  */
@@ -23491,18 +23486,18 @@ export type OpRemovePublishListMemberErrors = {
23491
23486
  500: ErrorResponse;
23492
23487
  };
23493
23488
 
23494
- export type OpRemovePublishListMemberError = OpRemovePublishListMemberErrors[keyof OpRemovePublishListMemberErrors];
23489
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
23495
23490
 
23496
- export type OpRemovePublishListMemberResponses = {
23491
+ export type RemovePublishListMemberResponses = {
23497
23492
  /**
23498
23493
  * Successful Response
23499
23494
  */
23500
23495
  200: OperationEnvelopeDeleteResult;
23501
23496
  };
23502
23497
 
23503
- export type OpRemovePublishListMemberResponse = OpRemovePublishListMemberResponses[keyof OpRemovePublishListMemberResponses];
23498
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
23504
23499
 
23505
- export type OpLiveFinancialStatementData = {
23500
+ export type LiveFinancialStatementData = {
23506
23501
  body: LiveFinancialStatementRequest;
23507
23502
  headers?: {
23508
23503
  /**
@@ -23520,7 +23515,7 @@ export type OpLiveFinancialStatementData = {
23520
23515
  url: '/extensions/roboledger/{graph_id}/operations/live-financial-statement';
23521
23516
  };
23522
23517
 
23523
- export type OpLiveFinancialStatementErrors = {
23518
+ export type LiveFinancialStatementErrors = {
23524
23519
  /**
23525
23520
  * Invalid request
23526
23521
  */
@@ -23555,18 +23550,18 @@ export type OpLiveFinancialStatementErrors = {
23555
23550
  500: ErrorResponse;
23556
23551
  };
23557
23552
 
23558
- export type OpLiveFinancialStatementError = OpLiveFinancialStatementErrors[keyof OpLiveFinancialStatementErrors];
23553
+ export type LiveFinancialStatementError = LiveFinancialStatementErrors[keyof LiveFinancialStatementErrors];
23559
23554
 
23560
- export type OpLiveFinancialStatementResponses = {
23555
+ export type LiveFinancialStatementResponses = {
23561
23556
  /**
23562
23557
  * Successful Response
23563
23558
  */
23564
23559
  200: OperationEnvelope;
23565
23560
  };
23566
23561
 
23567
- export type OpLiveFinancialStatementResponse = OpLiveFinancialStatementResponses[keyof OpLiveFinancialStatementResponses];
23562
+ export type LiveFinancialStatementResponse = LiveFinancialStatementResponses[keyof LiveFinancialStatementResponses];
23568
23563
 
23569
- export type OpBuildFactGridData = {
23564
+ export type BuildFactGridData = {
23570
23565
  body: CreateViewRequest;
23571
23566
  headers?: {
23572
23567
  /**
@@ -23584,7 +23579,7 @@ export type OpBuildFactGridData = {
23584
23579
  url: '/extensions/roboledger/{graph_id}/operations/build-fact-grid';
23585
23580
  };
23586
23581
 
23587
- export type OpBuildFactGridErrors = {
23582
+ export type BuildFactGridErrors = {
23588
23583
  /**
23589
23584
  * Invalid request
23590
23585
  */
@@ -23619,18 +23614,18 @@ export type OpBuildFactGridErrors = {
23619
23614
  500: ErrorResponse;
23620
23615
  };
23621
23616
 
23622
- export type OpBuildFactGridError = OpBuildFactGridErrors[keyof OpBuildFactGridErrors];
23617
+ export type BuildFactGridError = BuildFactGridErrors[keyof BuildFactGridErrors];
23623
23618
 
23624
- export type OpBuildFactGridResponses = {
23619
+ export type BuildFactGridResponses = {
23625
23620
  /**
23626
23621
  * Successful Response
23627
23622
  */
23628
23623
  200: OperationEnvelope;
23629
23624
  };
23630
23625
 
23631
- export type OpBuildFactGridResponse = OpBuildFactGridResponses[keyof OpBuildFactGridResponses];
23626
+ export type BuildFactGridResponse = BuildFactGridResponses[keyof BuildFactGridResponses];
23632
23627
 
23633
- export type OpFinancialStatementAnalysisData = {
23628
+ export type FinancialStatementAnalysisData = {
23634
23629
  body: FinancialStatementAnalysisRequest;
23635
23630
  headers?: {
23636
23631
  /**
@@ -23648,7 +23643,7 @@ export type OpFinancialStatementAnalysisData = {
23648
23643
  url: '/extensions/roboledger/{graph_id}/operations/financial-statement-analysis';
23649
23644
  };
23650
23645
 
23651
- export type OpFinancialStatementAnalysisErrors = {
23646
+ export type FinancialStatementAnalysisErrors = {
23652
23647
  /**
23653
23648
  * Invalid request
23654
23649
  */
@@ -23683,18 +23678,18 @@ export type OpFinancialStatementAnalysisErrors = {
23683
23678
  500: ErrorResponse;
23684
23679
  };
23685
23680
 
23686
- export type OpFinancialStatementAnalysisError = OpFinancialStatementAnalysisErrors[keyof OpFinancialStatementAnalysisErrors];
23681
+ export type FinancialStatementAnalysisError = FinancialStatementAnalysisErrors[keyof FinancialStatementAnalysisErrors];
23687
23682
 
23688
- export type OpFinancialStatementAnalysisResponses = {
23683
+ export type FinancialStatementAnalysisResponses = {
23689
23684
  /**
23690
23685
  * Successful Response
23691
23686
  */
23692
23687
  200: OperationEnvelope;
23693
23688
  };
23694
23689
 
23695
- export type OpFinancialStatementAnalysisResponse = OpFinancialStatementAnalysisResponses[keyof OpFinancialStatementAnalysisResponses];
23690
+ export type FinancialStatementAnalysisResponse = FinancialStatementAnalysisResponses[keyof FinancialStatementAnalysisResponses];
23696
23691
 
23697
- export type OpCreatePortfolioBlockData = {
23692
+ export type CreatePortfolioBlockData = {
23698
23693
  body: CreatePortfolioBlockRequest;
23699
23694
  headers?: {
23700
23695
  /**
@@ -23712,7 +23707,7 @@ export type OpCreatePortfolioBlockData = {
23712
23707
  url: '/extensions/roboinvestor/{graph_id}/operations/create-portfolio-block';
23713
23708
  };
23714
23709
 
23715
- export type OpCreatePortfolioBlockErrors = {
23710
+ export type CreatePortfolioBlockErrors = {
23716
23711
  /**
23717
23712
  * Invalid request
23718
23713
  */
@@ -23747,18 +23742,18 @@ export type OpCreatePortfolioBlockErrors = {
23747
23742
  500: ErrorResponse;
23748
23743
  };
23749
23744
 
23750
- export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
23745
+ export type CreatePortfolioBlockError = CreatePortfolioBlockErrors[keyof CreatePortfolioBlockErrors];
23751
23746
 
23752
- export type OpCreatePortfolioBlockResponses = {
23747
+ export type CreatePortfolioBlockResponses = {
23753
23748
  /**
23754
23749
  * Successful Response
23755
23750
  */
23756
23751
  200: OperationEnvelopePortfolioBlockEnvelope;
23757
23752
  };
23758
23753
 
23759
- export type OpCreatePortfolioBlockResponse = OpCreatePortfolioBlockResponses[keyof OpCreatePortfolioBlockResponses];
23754
+ export type CreatePortfolioBlockResponse = CreatePortfolioBlockResponses[keyof CreatePortfolioBlockResponses];
23760
23755
 
23761
- export type OpUpdatePortfolioBlockData = {
23756
+ export type UpdatePortfolioBlockData = {
23762
23757
  body: UpdatePortfolioBlockOperation;
23763
23758
  headers?: {
23764
23759
  /**
@@ -23776,7 +23771,7 @@ export type OpUpdatePortfolioBlockData = {
23776
23771
  url: '/extensions/roboinvestor/{graph_id}/operations/update-portfolio-block';
23777
23772
  };
23778
23773
 
23779
- export type OpUpdatePortfolioBlockErrors = {
23774
+ export type UpdatePortfolioBlockErrors = {
23780
23775
  /**
23781
23776
  * Invalid request
23782
23777
  */
@@ -23811,18 +23806,18 @@ export type OpUpdatePortfolioBlockErrors = {
23811
23806
  500: ErrorResponse;
23812
23807
  };
23813
23808
 
23814
- export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
23809
+ export type UpdatePortfolioBlockError = UpdatePortfolioBlockErrors[keyof UpdatePortfolioBlockErrors];
23815
23810
 
23816
- export type OpUpdatePortfolioBlockResponses = {
23811
+ export type UpdatePortfolioBlockResponses = {
23817
23812
  /**
23818
23813
  * Successful Response
23819
23814
  */
23820
23815
  200: OperationEnvelopePortfolioBlockEnvelope;
23821
23816
  };
23822
23817
 
23823
- export type OpUpdatePortfolioBlockResponse = OpUpdatePortfolioBlockResponses[keyof OpUpdatePortfolioBlockResponses];
23818
+ export type UpdatePortfolioBlockResponse = UpdatePortfolioBlockResponses[keyof UpdatePortfolioBlockResponses];
23824
23819
 
23825
- export type OpDeletePortfolioBlockData = {
23820
+ export type DeletePortfolioBlockData = {
23826
23821
  body: DeletePortfolioBlockOperation;
23827
23822
  headers?: {
23828
23823
  /**
@@ -23840,7 +23835,7 @@ export type OpDeletePortfolioBlockData = {
23840
23835
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-portfolio-block';
23841
23836
  };
23842
23837
 
23843
- export type OpDeletePortfolioBlockErrors = {
23838
+ export type DeletePortfolioBlockErrors = {
23844
23839
  /**
23845
23840
  * Invalid request
23846
23841
  */
@@ -23875,18 +23870,18 @@ export type OpDeletePortfolioBlockErrors = {
23875
23870
  500: ErrorResponse;
23876
23871
  };
23877
23872
 
23878
- export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
23873
+ export type DeletePortfolioBlockError = DeletePortfolioBlockErrors[keyof DeletePortfolioBlockErrors];
23879
23874
 
23880
- export type OpDeletePortfolioBlockResponses = {
23875
+ export type DeletePortfolioBlockResponses = {
23881
23876
  /**
23882
23877
  * Successful Response
23883
23878
  */
23884
23879
  200: OperationEnvelopeDeletePortfolioBlockResponse;
23885
23880
  };
23886
23881
 
23887
- export type OpDeletePortfolioBlockResponse = OpDeletePortfolioBlockResponses[keyof OpDeletePortfolioBlockResponses];
23882
+ export type DeletePortfolioBlockResponse2 = DeletePortfolioBlockResponses[keyof DeletePortfolioBlockResponses];
23888
23883
 
23889
- export type OpCreateSecurityData = {
23884
+ export type CreateSecurityData = {
23890
23885
  body: CreateSecurityRequest;
23891
23886
  headers?: {
23892
23887
  /**
@@ -23904,7 +23899,7 @@ export type OpCreateSecurityData = {
23904
23899
  url: '/extensions/roboinvestor/{graph_id}/operations/create-security';
23905
23900
  };
23906
23901
 
23907
- export type OpCreateSecurityErrors = {
23902
+ export type CreateSecurityErrors = {
23908
23903
  /**
23909
23904
  * Invalid request
23910
23905
  */
@@ -23939,18 +23934,18 @@ export type OpCreateSecurityErrors = {
23939
23934
  500: ErrorResponse;
23940
23935
  };
23941
23936
 
23942
- export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
23937
+ export type CreateSecurityError = CreateSecurityErrors[keyof CreateSecurityErrors];
23943
23938
 
23944
- export type OpCreateSecurityResponses = {
23939
+ export type CreateSecurityResponses = {
23945
23940
  /**
23946
23941
  * Successful Response
23947
23942
  */
23948
23943
  200: OperationEnvelopeSecurityResponse;
23949
23944
  };
23950
23945
 
23951
- export type OpCreateSecurityResponse = OpCreateSecurityResponses[keyof OpCreateSecurityResponses];
23946
+ export type CreateSecurityResponse = CreateSecurityResponses[keyof CreateSecurityResponses];
23952
23947
 
23953
- export type OpUpdateSecurityData = {
23948
+ export type UpdateSecurityData = {
23954
23949
  body: UpdateSecurityOperation;
23955
23950
  headers?: {
23956
23951
  /**
@@ -23968,7 +23963,7 @@ export type OpUpdateSecurityData = {
23968
23963
  url: '/extensions/roboinvestor/{graph_id}/operations/update-security';
23969
23964
  };
23970
23965
 
23971
- export type OpUpdateSecurityErrors = {
23966
+ export type UpdateSecurityErrors = {
23972
23967
  /**
23973
23968
  * Invalid request
23974
23969
  */
@@ -24003,18 +23998,18 @@ export type OpUpdateSecurityErrors = {
24003
23998
  500: ErrorResponse;
24004
23999
  };
24005
24000
 
24006
- export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
24001
+ export type UpdateSecurityError = UpdateSecurityErrors[keyof UpdateSecurityErrors];
24007
24002
 
24008
- export type OpUpdateSecurityResponses = {
24003
+ export type UpdateSecurityResponses = {
24009
24004
  /**
24010
24005
  * Successful Response
24011
24006
  */
24012
24007
  200: OperationEnvelopeSecurityResponse;
24013
24008
  };
24014
24009
 
24015
- export type OpUpdateSecurityResponse = OpUpdateSecurityResponses[keyof OpUpdateSecurityResponses];
24010
+ export type UpdateSecurityResponse = UpdateSecurityResponses[keyof UpdateSecurityResponses];
24016
24011
 
24017
- export type OpDeleteSecurityData = {
24012
+ export type DeleteSecurityData = {
24018
24013
  body: DeleteSecurityOperation;
24019
24014
  headers?: {
24020
24015
  /**
@@ -24032,7 +24027,7 @@ export type OpDeleteSecurityData = {
24032
24027
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-security';
24033
24028
  };
24034
24029
 
24035
- export type OpDeleteSecurityErrors = {
24030
+ export type DeleteSecurityErrors = {
24036
24031
  /**
24037
24032
  * Invalid request
24038
24033
  */
@@ -24067,13 +24062,13 @@ export type OpDeleteSecurityErrors = {
24067
24062
  500: ErrorResponse;
24068
24063
  };
24069
24064
 
24070
- export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];
24065
+ export type DeleteSecurityError = DeleteSecurityErrors[keyof DeleteSecurityErrors];
24071
24066
 
24072
- export type OpDeleteSecurityResponses = {
24067
+ export type DeleteSecurityResponses = {
24073
24068
  /**
24074
24069
  * Successful Response
24075
24070
  */
24076
24071
  200: OperationEnvelopeDeleteResult;
24077
24072
  };
24078
24073
 
24079
- export type OpDeleteSecurityResponse = OpDeleteSecurityResponses[keyof OpDeleteSecurityResponses];
24074
+ export type DeleteSecurityResponse = DeleteSecurityResponses[keyof DeleteSecurityResponses];