@robosystems/client 0.3.20 → 0.3.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types.gen.d.ts CHANGED
@@ -14630,9 +14630,9 @@ export type SyncConnectionErrors = {
14630
14630
  */
14631
14631
  409: ErrorResponse;
14632
14632
  /**
14633
- * Validation Error
14633
+ * Validation error
14634
14634
  */
14635
- 422: HttpValidationError;
14635
+ 422: ErrorResponse;
14636
14636
  /**
14637
14637
  * Rate limit exceeded
14638
14638
  */
@@ -16828,9 +16828,9 @@ export type OpCreateSubgraphErrors = {
16828
16828
  */
16829
16829
  409: ErrorResponse;
16830
16830
  /**
16831
- * Validation Error
16831
+ * Validation error
16832
16832
  */
16833
- 422: HttpValidationError;
16833
+ 422: ErrorResponse;
16834
16834
  /**
16835
16835
  * Rate limit exceeded
16836
16836
  */
@@ -16887,9 +16887,9 @@ export type OpDeleteSubgraphErrors = {
16887
16887
  */
16888
16888
  409: ErrorResponse;
16889
16889
  /**
16890
- * Validation Error
16890
+ * Validation error
16891
16891
  */
16892
- 422: HttpValidationError;
16892
+ 422: ErrorResponse;
16893
16893
  /**
16894
16894
  * Rate limit exceeded
16895
16895
  */
@@ -16946,9 +16946,9 @@ export type OpDeleteGraphErrors = {
16946
16946
  */
16947
16947
  409: ErrorResponse;
16948
16948
  /**
16949
- * Validation Error
16949
+ * Validation error
16950
16950
  */
16951
- 422: HttpValidationError;
16951
+ 422: ErrorResponse;
16952
16952
  /**
16953
16953
  * Rate limit exceeded
16954
16954
  */
@@ -17005,9 +17005,9 @@ export type OpCreateBackupErrors = {
17005
17005
  */
17006
17006
  409: ErrorResponse;
17007
17007
  /**
17008
- * Validation Error
17008
+ * Validation error
17009
17009
  */
17010
- 422: HttpValidationError;
17010
+ 422: ErrorResponse;
17011
17011
  /**
17012
17012
  * Rate limit exceeded
17013
17013
  */
@@ -17064,9 +17064,9 @@ export type OpRestoreBackupErrors = {
17064
17064
  */
17065
17065
  409: ErrorResponse;
17066
17066
  /**
17067
- * Validation Error
17067
+ * Validation error
17068
17068
  */
17069
- 422: HttpValidationError;
17069
+ 422: ErrorResponse;
17070
17070
  /**
17071
17071
  * Rate limit exceeded
17072
17072
  */
@@ -17123,9 +17123,9 @@ export type OpChangeTierErrors = {
17123
17123
  */
17124
17124
  409: ErrorResponse;
17125
17125
  /**
17126
- * Validation Error
17126
+ * Validation error
17127
17127
  */
17128
- 422: HttpValidationError;
17128
+ 422: ErrorResponse;
17129
17129
  /**
17130
17130
  * Rate limit exceeded
17131
17131
  */
@@ -17182,9 +17182,9 @@ export type OpMaterializeErrors = {
17182
17182
  */
17183
17183
  409: ErrorResponse;
17184
17184
  /**
17185
- * Validation Error
17185
+ * Validation error
17186
17186
  */
17187
- 422: HttpValidationError;
17187
+ 422: ErrorResponse;
17188
17188
  /**
17189
17189
  * Rate limit exceeded
17190
17190
  */
@@ -17569,9 +17569,9 @@ export type CreateGraphErrors = {
17569
17569
  */
17570
17570
  409: ErrorResponse;
17571
17571
  /**
17572
- * Validation Error
17572
+ * Validation error
17573
17573
  */
17574
- 422: HttpValidationError;
17574
+ 422: ErrorResponse;
17575
17575
  /**
17576
17576
  * Rate limit exceeded
17577
17577
  */
@@ -18536,9 +18536,9 @@ export type OpInitializeLedgerErrors = {
18536
18536
  */
18537
18537
  409: ErrorResponse;
18538
18538
  /**
18539
- * Validation Error
18539
+ * Validation error
18540
18540
  */
18541
- 422: HttpValidationError;
18541
+ 422: ErrorResponse;
18542
18542
  /**
18543
18543
  * Rate limit exceeded
18544
18544
  */
@@ -18595,9 +18595,9 @@ export type OpUpdateEntityErrors = {
18595
18595
  */
18596
18596
  409: ErrorResponse;
18597
18597
  /**
18598
- * Validation Error
18598
+ * Validation error
18599
18599
  */
18600
- 422: HttpValidationError;
18600
+ 422: ErrorResponse;
18601
18601
  /**
18602
18602
  * Rate limit exceeded
18603
18603
  */
@@ -18634,37 +18634,37 @@ export type OpCreateTaxonomyBlockData = {
18634
18634
  };
18635
18635
  export type OpCreateTaxonomyBlockErrors = {
18636
18636
  /**
18637
- * Invalid request payload
18637
+ * Invalid request
18638
18638
  */
18639
- 400: OperationError;
18639
+ 400: ErrorResponse;
18640
18640
  /**
18641
- * Unauthorized — missing or invalid credentials
18641
+ * Authentication required
18642
18642
  */
18643
- 401: unknown;
18643
+ 401: ErrorResponse;
18644
18644
  /**
18645
- * Forbidden — caller cannot access this graph
18645
+ * Access denied
18646
18646
  */
18647
- 403: unknown;
18647
+ 403: ErrorResponse;
18648
18648
  /**
18649
- * Resource not found (graph, ledger, report, etc.)
18649
+ * Resource not found
18650
18650
  */
18651
- 404: OperationError;
18651
+ 404: ErrorResponse;
18652
18652
  /**
18653
- * Idempotency-Key reused with a different request body, or other operation-level conflict
18653
+ * Idempotency-Key conflict — key reused with different body
18654
18654
  */
18655
- 409: OperationError;
18655
+ 409: ErrorResponse;
18656
18656
  /**
18657
- * Validation Error
18657
+ * Validation error
18658
18658
  */
18659
- 422: HttpValidationError;
18659
+ 422: ErrorResponse;
18660
18660
  /**
18661
18661
  * Rate limit exceeded
18662
18662
  */
18663
- 429: unknown;
18663
+ 429: ErrorResponse;
18664
18664
  /**
18665
- * Internal error
18665
+ * Internal server error
18666
18666
  */
18667
- 500: unknown;
18667
+ 500: ErrorResponse;
18668
18668
  };
18669
18669
  export type OpCreateTaxonomyBlockError = OpCreateTaxonomyBlockErrors[keyof OpCreateTaxonomyBlockErrors];
18670
18670
  export type OpCreateTaxonomyBlockResponses = {
@@ -18693,37 +18693,37 @@ export type OpUpdateTaxonomyBlockData = {
18693
18693
  };
18694
18694
  export type OpUpdateTaxonomyBlockErrors = {
18695
18695
  /**
18696
- * Invalid request payload
18696
+ * Invalid request
18697
18697
  */
18698
- 400: OperationError;
18698
+ 400: ErrorResponse;
18699
18699
  /**
18700
- * Unauthorized — missing or invalid credentials
18700
+ * Authentication required
18701
18701
  */
18702
- 401: unknown;
18702
+ 401: ErrorResponse;
18703
18703
  /**
18704
- * Forbidden — caller cannot access this graph
18704
+ * Access denied
18705
18705
  */
18706
- 403: unknown;
18706
+ 403: ErrorResponse;
18707
18707
  /**
18708
- * Resource not found (graph, ledger, report, etc.)
18708
+ * Resource not found
18709
18709
  */
18710
- 404: OperationError;
18710
+ 404: ErrorResponse;
18711
18711
  /**
18712
- * Idempotency-Key reused with a different request body, or other operation-level conflict
18712
+ * Idempotency-Key conflict — key reused with different body
18713
18713
  */
18714
- 409: OperationError;
18714
+ 409: ErrorResponse;
18715
18715
  /**
18716
- * Validation Error
18716
+ * Validation error
18717
18717
  */
18718
- 422: HttpValidationError;
18718
+ 422: ErrorResponse;
18719
18719
  /**
18720
18720
  * Rate limit exceeded
18721
18721
  */
18722
- 429: unknown;
18722
+ 429: ErrorResponse;
18723
18723
  /**
18724
- * Internal error
18724
+ * Internal server error
18725
18725
  */
18726
- 500: unknown;
18726
+ 500: ErrorResponse;
18727
18727
  };
18728
18728
  export type OpUpdateTaxonomyBlockError = OpUpdateTaxonomyBlockErrors[keyof OpUpdateTaxonomyBlockErrors];
18729
18729
  export type OpUpdateTaxonomyBlockResponses = {
@@ -18752,37 +18752,37 @@ export type OpDeleteTaxonomyBlockData = {
18752
18752
  };
18753
18753
  export type OpDeleteTaxonomyBlockErrors = {
18754
18754
  /**
18755
- * Invalid request payload
18755
+ * Invalid request
18756
18756
  */
18757
- 400: OperationError;
18757
+ 400: ErrorResponse;
18758
18758
  /**
18759
- * Unauthorized — missing or invalid credentials
18759
+ * Authentication required
18760
18760
  */
18761
- 401: unknown;
18761
+ 401: ErrorResponse;
18762
18762
  /**
18763
- * Forbidden — caller cannot access this graph
18763
+ * Access denied
18764
18764
  */
18765
- 403: unknown;
18765
+ 403: ErrorResponse;
18766
18766
  /**
18767
- * Resource not found (graph, ledger, report, etc.)
18767
+ * Resource not found
18768
18768
  */
18769
- 404: OperationError;
18769
+ 404: ErrorResponse;
18770
18770
  /**
18771
- * Idempotency-Key reused with a different request body, or other operation-level conflict
18771
+ * Idempotency-Key conflict — key reused with different body
18772
18772
  */
18773
- 409: OperationError;
18773
+ 409: ErrorResponse;
18774
18774
  /**
18775
- * Validation Error
18775
+ * Validation error
18776
18776
  */
18777
- 422: HttpValidationError;
18777
+ 422: ErrorResponse;
18778
18778
  /**
18779
18779
  * Rate limit exceeded
18780
18780
  */
18781
- 429: unknown;
18781
+ 429: ErrorResponse;
18782
18782
  /**
18783
- * Internal error
18783
+ * Internal server error
18784
18784
  */
18785
- 500: unknown;
18785
+ 500: ErrorResponse;
18786
18786
  };
18787
18787
  export type OpDeleteTaxonomyBlockError = OpDeleteTaxonomyBlockErrors[keyof OpDeleteTaxonomyBlockErrors];
18788
18788
  export type OpDeleteTaxonomyBlockResponses = {
@@ -18811,37 +18811,37 @@ export type OpLinkEntityTaxonomyData = {
18811
18811
  };
18812
18812
  export type OpLinkEntityTaxonomyErrors = {
18813
18813
  /**
18814
- * Invalid request payload
18814
+ * Invalid request
18815
18815
  */
18816
- 400: OperationError;
18816
+ 400: ErrorResponse;
18817
18817
  /**
18818
- * Unauthorized — missing or invalid credentials
18818
+ * Authentication required
18819
18819
  */
18820
- 401: unknown;
18820
+ 401: ErrorResponse;
18821
18821
  /**
18822
- * Forbidden — caller cannot access this graph
18822
+ * Access denied
18823
18823
  */
18824
- 403: unknown;
18824
+ 403: ErrorResponse;
18825
18825
  /**
18826
- * Resource not found (graph, ledger, report, etc.)
18826
+ * Resource not found
18827
18827
  */
18828
- 404: OperationError;
18828
+ 404: ErrorResponse;
18829
18829
  /**
18830
- * Idempotency-Key reused with a different request body, or other operation-level conflict
18830
+ * Idempotency-Key conflict — key reused with different body
18831
18831
  */
18832
- 409: OperationError;
18832
+ 409: ErrorResponse;
18833
18833
  /**
18834
- * Validation Error
18834
+ * Validation error
18835
18835
  */
18836
- 422: HttpValidationError;
18836
+ 422: ErrorResponse;
18837
18837
  /**
18838
18838
  * Rate limit exceeded
18839
18839
  */
18840
- 429: unknown;
18840
+ 429: ErrorResponse;
18841
18841
  /**
18842
- * Internal error
18842
+ * Internal server error
18843
18843
  */
18844
- 500: unknown;
18844
+ 500: ErrorResponse;
18845
18845
  };
18846
18846
  export type OpLinkEntityTaxonomyError = OpLinkEntityTaxonomyErrors[keyof OpLinkEntityTaxonomyErrors];
18847
18847
  export type OpLinkEntityTaxonomyResponses = {
@@ -18870,37 +18870,37 @@ export type OpCreateMappingAssociationData = {
18870
18870
  };
18871
18871
  export type OpCreateMappingAssociationErrors = {
18872
18872
  /**
18873
- * Invalid request payload
18873
+ * Invalid request
18874
18874
  */
18875
- 400: OperationError;
18875
+ 400: ErrorResponse;
18876
18876
  /**
18877
- * Unauthorized — missing or invalid credentials
18877
+ * Authentication required
18878
18878
  */
18879
- 401: unknown;
18879
+ 401: ErrorResponse;
18880
18880
  /**
18881
- * Forbidden — caller cannot access this graph
18881
+ * Access denied
18882
18882
  */
18883
- 403: unknown;
18883
+ 403: ErrorResponse;
18884
18884
  /**
18885
- * Resource not found (graph, ledger, report, etc.)
18885
+ * Resource not found
18886
18886
  */
18887
- 404: OperationError;
18887
+ 404: ErrorResponse;
18888
18888
  /**
18889
- * Idempotency-Key reused with a different request body, or other operation-level conflict
18889
+ * Idempotency-Key conflict — key reused with different body
18890
18890
  */
18891
- 409: OperationError;
18891
+ 409: ErrorResponse;
18892
18892
  /**
18893
- * Validation Error
18893
+ * Validation error
18894
18894
  */
18895
- 422: HttpValidationError;
18895
+ 422: ErrorResponse;
18896
18896
  /**
18897
18897
  * Rate limit exceeded
18898
18898
  */
18899
- 429: unknown;
18899
+ 429: ErrorResponse;
18900
18900
  /**
18901
- * Internal error
18901
+ * Internal server error
18902
18902
  */
18903
- 500: unknown;
18903
+ 500: ErrorResponse;
18904
18904
  };
18905
18905
  export type OpCreateMappingAssociationError = OpCreateMappingAssociationErrors[keyof OpCreateMappingAssociationErrors];
18906
18906
  export type OpCreateMappingAssociationResponses = {
@@ -18949,9 +18949,9 @@ export type OpDeleteMappingAssociationErrors = {
18949
18949
  */
18950
18950
  409: ErrorResponse;
18951
18951
  /**
18952
- * Validation Error
18952
+ * Validation error
18953
18953
  */
18954
- 422: HttpValidationError;
18954
+ 422: ErrorResponse;
18955
18955
  /**
18956
18956
  * Rate limit exceeded
18957
18957
  */
@@ -19008,9 +19008,9 @@ export type OpAutoMapElementsErrors = {
19008
19008
  */
19009
19009
  409: ErrorResponse;
19010
19010
  /**
19011
- * Validation Error
19011
+ * Validation error
19012
19012
  */
19013
- 422: HttpValidationError;
19013
+ 422: ErrorResponse;
19014
19014
  /**
19015
19015
  * Rate limit exceeded
19016
19016
  */
@@ -19047,37 +19047,37 @@ export type OpCreateInformationBlockData = {
19047
19047
  };
19048
19048
  export type OpCreateInformationBlockErrors = {
19049
19049
  /**
19050
- * Invalid request payload
19050
+ * Invalid request
19051
19051
  */
19052
- 400: OperationError;
19052
+ 400: ErrorResponse;
19053
19053
  /**
19054
- * Unauthorized — missing or invalid credentials
19054
+ * Authentication required
19055
19055
  */
19056
- 401: unknown;
19056
+ 401: ErrorResponse;
19057
19057
  /**
19058
- * Forbidden — caller cannot access this graph
19058
+ * Access denied
19059
19059
  */
19060
- 403: unknown;
19060
+ 403: ErrorResponse;
19061
19061
  /**
19062
- * Resource not found (graph, ledger, report, etc.)
19062
+ * Resource not found
19063
19063
  */
19064
- 404: OperationError;
19064
+ 404: ErrorResponse;
19065
19065
  /**
19066
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19066
+ * Idempotency-Key conflict — key reused with different body
19067
19067
  */
19068
- 409: OperationError;
19068
+ 409: ErrorResponse;
19069
19069
  /**
19070
- * Validation Error
19070
+ * Validation error
19071
19071
  */
19072
- 422: HttpValidationError;
19072
+ 422: ErrorResponse;
19073
19073
  /**
19074
19074
  * Rate limit exceeded
19075
19075
  */
19076
- 429: unknown;
19076
+ 429: ErrorResponse;
19077
19077
  /**
19078
- * Internal error
19078
+ * Internal server error
19079
19079
  */
19080
- 500: unknown;
19080
+ 500: ErrorResponse;
19081
19081
  };
19082
19082
  export type OpCreateInformationBlockError = OpCreateInformationBlockErrors[keyof OpCreateInformationBlockErrors];
19083
19083
  export type OpCreateInformationBlockResponses = {
@@ -19106,37 +19106,37 @@ export type OpUpdateInformationBlockData = {
19106
19106
  };
19107
19107
  export type OpUpdateInformationBlockErrors = {
19108
19108
  /**
19109
- * Invalid request payload
19109
+ * Invalid request
19110
19110
  */
19111
- 400: OperationError;
19111
+ 400: ErrorResponse;
19112
19112
  /**
19113
- * Unauthorized — missing or invalid credentials
19113
+ * Authentication required
19114
19114
  */
19115
- 401: unknown;
19115
+ 401: ErrorResponse;
19116
19116
  /**
19117
- * Forbidden — caller cannot access this graph
19117
+ * Access denied
19118
19118
  */
19119
- 403: unknown;
19119
+ 403: ErrorResponse;
19120
19120
  /**
19121
- * Resource not found (graph, ledger, report, etc.)
19121
+ * Resource not found
19122
19122
  */
19123
- 404: OperationError;
19123
+ 404: ErrorResponse;
19124
19124
  /**
19125
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19125
+ * Idempotency-Key conflict — key reused with different body
19126
19126
  */
19127
- 409: OperationError;
19127
+ 409: ErrorResponse;
19128
19128
  /**
19129
- * Validation Error
19129
+ * Validation error
19130
19130
  */
19131
- 422: HttpValidationError;
19131
+ 422: ErrorResponse;
19132
19132
  /**
19133
19133
  * Rate limit exceeded
19134
19134
  */
19135
- 429: unknown;
19135
+ 429: ErrorResponse;
19136
19136
  /**
19137
- * Internal error
19137
+ * Internal server error
19138
19138
  */
19139
- 500: unknown;
19139
+ 500: ErrorResponse;
19140
19140
  };
19141
19141
  export type OpUpdateInformationBlockError = OpUpdateInformationBlockErrors[keyof OpUpdateInformationBlockErrors];
19142
19142
  export type OpUpdateInformationBlockResponses = {
@@ -19165,37 +19165,37 @@ export type OpDeleteInformationBlockData = {
19165
19165
  };
19166
19166
  export type OpDeleteInformationBlockErrors = {
19167
19167
  /**
19168
- * Invalid request payload
19168
+ * Invalid request
19169
19169
  */
19170
- 400: OperationError;
19170
+ 400: ErrorResponse;
19171
19171
  /**
19172
- * Unauthorized — missing or invalid credentials
19172
+ * Authentication required
19173
19173
  */
19174
- 401: unknown;
19174
+ 401: ErrorResponse;
19175
19175
  /**
19176
- * Forbidden — caller cannot access this graph
19176
+ * Access denied
19177
19177
  */
19178
- 403: unknown;
19178
+ 403: ErrorResponse;
19179
19179
  /**
19180
- * Resource not found (graph, ledger, report, etc.)
19180
+ * Resource not found
19181
19181
  */
19182
- 404: OperationError;
19182
+ 404: ErrorResponse;
19183
19183
  /**
19184
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19184
+ * Idempotency-Key conflict — key reused with different body
19185
19185
  */
19186
- 409: OperationError;
19186
+ 409: ErrorResponse;
19187
19187
  /**
19188
- * Validation Error
19188
+ * Validation error
19189
19189
  */
19190
- 422: HttpValidationError;
19190
+ 422: ErrorResponse;
19191
19191
  /**
19192
19192
  * Rate limit exceeded
19193
19193
  */
19194
- 429: unknown;
19194
+ 429: ErrorResponse;
19195
19195
  /**
19196
- * Internal error
19196
+ * Internal server error
19197
19197
  */
19198
- 500: unknown;
19198
+ 500: ErrorResponse;
19199
19199
  };
19200
19200
  export type OpDeleteInformationBlockError = OpDeleteInformationBlockErrors[keyof OpDeleteInformationBlockErrors];
19201
19201
  export type OpDeleteInformationBlockResponses = {
@@ -19224,37 +19224,37 @@ export type OpEvaluateRulesData = {
19224
19224
  };
19225
19225
  export type OpEvaluateRulesErrors = {
19226
19226
  /**
19227
- * Invalid request payload
19227
+ * Invalid request
19228
19228
  */
19229
- 400: OperationError;
19229
+ 400: ErrorResponse;
19230
19230
  /**
19231
- * Unauthorized — missing or invalid credentials
19231
+ * Authentication required
19232
19232
  */
19233
- 401: unknown;
19233
+ 401: ErrorResponse;
19234
19234
  /**
19235
- * Forbidden — caller cannot access this graph
19235
+ * Access denied
19236
19236
  */
19237
- 403: unknown;
19237
+ 403: ErrorResponse;
19238
19238
  /**
19239
- * Resource not found (graph, ledger, report, etc.)
19239
+ * Resource not found
19240
19240
  */
19241
- 404: OperationError;
19241
+ 404: ErrorResponse;
19242
19242
  /**
19243
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19243
+ * Idempotency-Key conflict — key reused with different body
19244
19244
  */
19245
- 409: OperationError;
19245
+ 409: ErrorResponse;
19246
19246
  /**
19247
- * Validation Error
19247
+ * Validation error
19248
19248
  */
19249
- 422: HttpValidationError;
19249
+ 422: ErrorResponse;
19250
19250
  /**
19251
19251
  * Rate limit exceeded
19252
19252
  */
19253
- 429: unknown;
19253
+ 429: ErrorResponse;
19254
19254
  /**
19255
- * Internal error
19255
+ * Internal server error
19256
19256
  */
19257
- 500: unknown;
19257
+ 500: ErrorResponse;
19258
19258
  };
19259
19259
  export type OpEvaluateRulesError = OpEvaluateRulesErrors[keyof OpEvaluateRulesErrors];
19260
19260
  export type OpEvaluateRulesResponses = {
@@ -19283,37 +19283,37 @@ export type OpCreateAgentData = {
19283
19283
  };
19284
19284
  export type OpCreateAgentErrors = {
19285
19285
  /**
19286
- * Invalid request payload
19286
+ * Invalid request
19287
19287
  */
19288
- 400: OperationError;
19288
+ 400: ErrorResponse;
19289
19289
  /**
19290
- * Unauthorized — missing or invalid credentials
19290
+ * Authentication required
19291
19291
  */
19292
- 401: unknown;
19292
+ 401: ErrorResponse;
19293
19293
  /**
19294
- * Forbidden — caller cannot access this graph
19294
+ * Access denied
19295
19295
  */
19296
- 403: unknown;
19296
+ 403: ErrorResponse;
19297
19297
  /**
19298
- * Resource not found (graph, ledger, report, etc.)
19298
+ * Resource not found
19299
19299
  */
19300
- 404: OperationError;
19300
+ 404: ErrorResponse;
19301
19301
  /**
19302
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19302
+ * Idempotency-Key conflict — key reused with different body
19303
19303
  */
19304
- 409: OperationError;
19304
+ 409: ErrorResponse;
19305
19305
  /**
19306
- * Validation Error
19306
+ * Validation error
19307
19307
  */
19308
- 422: HttpValidationError;
19308
+ 422: ErrorResponse;
19309
19309
  /**
19310
19310
  * Rate limit exceeded
19311
19311
  */
19312
- 429: unknown;
19312
+ 429: ErrorResponse;
19313
19313
  /**
19314
- * Internal error
19314
+ * Internal server error
19315
19315
  */
19316
- 500: unknown;
19316
+ 500: ErrorResponse;
19317
19317
  };
19318
19318
  export type OpCreateAgentError = OpCreateAgentErrors[keyof OpCreateAgentErrors];
19319
19319
  export type OpCreateAgentResponses = {
@@ -19342,37 +19342,37 @@ export type OpUpdateAgentData = {
19342
19342
  };
19343
19343
  export type OpUpdateAgentErrors = {
19344
19344
  /**
19345
- * Invalid request payload
19345
+ * Invalid request
19346
19346
  */
19347
- 400: OperationError;
19347
+ 400: ErrorResponse;
19348
19348
  /**
19349
- * Unauthorized — missing or invalid credentials
19349
+ * Authentication required
19350
19350
  */
19351
- 401: unknown;
19351
+ 401: ErrorResponse;
19352
19352
  /**
19353
- * Forbidden — caller cannot access this graph
19353
+ * Access denied
19354
19354
  */
19355
- 403: unknown;
19355
+ 403: ErrorResponse;
19356
19356
  /**
19357
- * Resource not found (graph, ledger, report, etc.)
19357
+ * Resource not found
19358
19358
  */
19359
- 404: OperationError;
19359
+ 404: ErrorResponse;
19360
19360
  /**
19361
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19361
+ * Idempotency-Key conflict — key reused with different body
19362
19362
  */
19363
- 409: OperationError;
19363
+ 409: ErrorResponse;
19364
19364
  /**
19365
- * Validation Error
19365
+ * Validation error
19366
19366
  */
19367
- 422: HttpValidationError;
19367
+ 422: ErrorResponse;
19368
19368
  /**
19369
19369
  * Rate limit exceeded
19370
19370
  */
19371
- 429: unknown;
19371
+ 429: ErrorResponse;
19372
19372
  /**
19373
- * Internal error
19373
+ * Internal server error
19374
19374
  */
19375
- 500: unknown;
19375
+ 500: ErrorResponse;
19376
19376
  };
19377
19377
  export type OpUpdateAgentError = OpUpdateAgentErrors[keyof OpUpdateAgentErrors];
19378
19378
  export type OpUpdateAgentResponses = {
@@ -19401,37 +19401,37 @@ export type OpCreateEventBlockData = {
19401
19401
  };
19402
19402
  export type OpCreateEventBlockErrors = {
19403
19403
  /**
19404
- * Invalid request payload
19404
+ * Invalid request
19405
19405
  */
19406
- 400: OperationError;
19406
+ 400: ErrorResponse;
19407
19407
  /**
19408
- * Unauthorized — missing or invalid credentials
19408
+ * Authentication required
19409
19409
  */
19410
- 401: unknown;
19410
+ 401: ErrorResponse;
19411
19411
  /**
19412
- * Forbidden — caller cannot access this graph
19412
+ * Access denied
19413
19413
  */
19414
- 403: unknown;
19414
+ 403: ErrorResponse;
19415
19415
  /**
19416
- * Resource not found (graph, ledger, report, etc.)
19416
+ * Resource not found
19417
19417
  */
19418
- 404: OperationError;
19418
+ 404: ErrorResponse;
19419
19419
  /**
19420
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19420
+ * Idempotency-Key conflict — key reused with different body
19421
19421
  */
19422
- 409: OperationError;
19422
+ 409: ErrorResponse;
19423
19423
  /**
19424
- * Validation Error
19424
+ * Validation error
19425
19425
  */
19426
- 422: HttpValidationError;
19426
+ 422: ErrorResponse;
19427
19427
  /**
19428
19428
  * Rate limit exceeded
19429
19429
  */
19430
- 429: unknown;
19430
+ 429: ErrorResponse;
19431
19431
  /**
19432
- * Internal error
19432
+ * Internal server error
19433
19433
  */
19434
- 500: unknown;
19434
+ 500: ErrorResponse;
19435
19435
  };
19436
19436
  export type OpCreateEventBlockError = OpCreateEventBlockErrors[keyof OpCreateEventBlockErrors];
19437
19437
  export type OpCreateEventBlockResponses = {
@@ -19460,37 +19460,37 @@ export type OpUpdateEventBlockData = {
19460
19460
  };
19461
19461
  export type OpUpdateEventBlockErrors = {
19462
19462
  /**
19463
- * Invalid request payload
19463
+ * Invalid request
19464
19464
  */
19465
- 400: OperationError;
19465
+ 400: ErrorResponse;
19466
19466
  /**
19467
- * Unauthorized — missing or invalid credentials
19467
+ * Authentication required
19468
19468
  */
19469
- 401: unknown;
19469
+ 401: ErrorResponse;
19470
19470
  /**
19471
- * Forbidden — caller cannot access this graph
19471
+ * Access denied
19472
19472
  */
19473
- 403: unknown;
19473
+ 403: ErrorResponse;
19474
19474
  /**
19475
- * Resource not found (graph, ledger, report, etc.)
19475
+ * Resource not found
19476
19476
  */
19477
- 404: OperationError;
19477
+ 404: ErrorResponse;
19478
19478
  /**
19479
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19479
+ * Idempotency-Key conflict — key reused with different body
19480
19480
  */
19481
- 409: OperationError;
19481
+ 409: ErrorResponse;
19482
19482
  /**
19483
- * Validation Error
19483
+ * Validation error
19484
19484
  */
19485
- 422: HttpValidationError;
19485
+ 422: ErrorResponse;
19486
19486
  /**
19487
19487
  * Rate limit exceeded
19488
19488
  */
19489
- 429: unknown;
19489
+ 429: ErrorResponse;
19490
19490
  /**
19491
- * Internal error
19491
+ * Internal server error
19492
19492
  */
19493
- 500: unknown;
19493
+ 500: ErrorResponse;
19494
19494
  };
19495
19495
  export type OpUpdateEventBlockError = OpUpdateEventBlockErrors[keyof OpUpdateEventBlockErrors];
19496
19496
  export type OpUpdateEventBlockResponses = {
@@ -19519,37 +19519,37 @@ export type OpCreateEventHandlerData = {
19519
19519
  };
19520
19520
  export type OpCreateEventHandlerErrors = {
19521
19521
  /**
19522
- * Invalid request payload
19522
+ * Invalid request
19523
19523
  */
19524
- 400: OperationError;
19524
+ 400: ErrorResponse;
19525
19525
  /**
19526
- * Unauthorized — missing or invalid credentials
19526
+ * Authentication required
19527
19527
  */
19528
- 401: unknown;
19528
+ 401: ErrorResponse;
19529
19529
  /**
19530
- * Forbidden — caller cannot access this graph
19530
+ * Access denied
19531
19531
  */
19532
- 403: unknown;
19532
+ 403: ErrorResponse;
19533
19533
  /**
19534
- * Resource not found (graph, ledger, report, etc.)
19534
+ * Resource not found
19535
19535
  */
19536
- 404: OperationError;
19536
+ 404: ErrorResponse;
19537
19537
  /**
19538
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19538
+ * Idempotency-Key conflict — key reused with different body
19539
19539
  */
19540
- 409: OperationError;
19540
+ 409: ErrorResponse;
19541
19541
  /**
19542
- * Validation Error
19542
+ * Validation error
19543
19543
  */
19544
- 422: HttpValidationError;
19544
+ 422: ErrorResponse;
19545
19545
  /**
19546
19546
  * Rate limit exceeded
19547
19547
  */
19548
- 429: unknown;
19548
+ 429: ErrorResponse;
19549
19549
  /**
19550
- * Internal error
19550
+ * Internal server error
19551
19551
  */
19552
- 500: unknown;
19552
+ 500: ErrorResponse;
19553
19553
  };
19554
19554
  export type OpCreateEventHandlerError = OpCreateEventHandlerErrors[keyof OpCreateEventHandlerErrors];
19555
19555
  export type OpCreateEventHandlerResponses = {
@@ -19578,37 +19578,37 @@ export type OpUpdateEventHandlerData = {
19578
19578
  };
19579
19579
  export type OpUpdateEventHandlerErrors = {
19580
19580
  /**
19581
- * Invalid request payload
19581
+ * Invalid request
19582
19582
  */
19583
- 400: OperationError;
19583
+ 400: ErrorResponse;
19584
19584
  /**
19585
- * Unauthorized — missing or invalid credentials
19585
+ * Authentication required
19586
19586
  */
19587
- 401: unknown;
19587
+ 401: ErrorResponse;
19588
19588
  /**
19589
- * Forbidden — caller cannot access this graph
19589
+ * Access denied
19590
19590
  */
19591
- 403: unknown;
19591
+ 403: ErrorResponse;
19592
19592
  /**
19593
- * Resource not found (graph, ledger, report, etc.)
19593
+ * Resource not found
19594
19594
  */
19595
- 404: OperationError;
19595
+ 404: ErrorResponse;
19596
19596
  /**
19597
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19597
+ * Idempotency-Key conflict — key reused with different body
19598
19598
  */
19599
- 409: OperationError;
19599
+ 409: ErrorResponse;
19600
19600
  /**
19601
- * Validation Error
19601
+ * Validation error
19602
19602
  */
19603
- 422: HttpValidationError;
19603
+ 422: ErrorResponse;
19604
19604
  /**
19605
19605
  * Rate limit exceeded
19606
19606
  */
19607
- 429: unknown;
19607
+ 429: ErrorResponse;
19608
19608
  /**
19609
- * Internal error
19609
+ * Internal server error
19610
19610
  */
19611
- 500: unknown;
19611
+ 500: ErrorResponse;
19612
19612
  };
19613
19613
  export type OpUpdateEventHandlerError = OpUpdateEventHandlerErrors[keyof OpUpdateEventHandlerErrors];
19614
19614
  export type OpUpdateEventHandlerResponses = {
@@ -19637,37 +19637,37 @@ export type OpPreviewEventBlockData = {
19637
19637
  };
19638
19638
  export type OpPreviewEventBlockErrors = {
19639
19639
  /**
19640
- * Invalid request payload
19640
+ * Invalid request
19641
19641
  */
19642
- 400: OperationError;
19642
+ 400: ErrorResponse;
19643
19643
  /**
19644
- * Unauthorized — missing or invalid credentials
19644
+ * Authentication required
19645
19645
  */
19646
- 401: unknown;
19646
+ 401: ErrorResponse;
19647
19647
  /**
19648
- * Forbidden — caller cannot access this graph
19648
+ * Access denied
19649
19649
  */
19650
- 403: unknown;
19650
+ 403: ErrorResponse;
19651
19651
  /**
19652
- * Resource not found (graph, ledger, report, etc.)
19652
+ * Resource not found
19653
19653
  */
19654
- 404: OperationError;
19654
+ 404: ErrorResponse;
19655
19655
  /**
19656
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19656
+ * Idempotency-Key conflict — key reused with different body
19657
19657
  */
19658
- 409: OperationError;
19658
+ 409: ErrorResponse;
19659
19659
  /**
19660
- * Validation Error
19660
+ * Validation error
19661
19661
  */
19662
- 422: HttpValidationError;
19662
+ 422: ErrorResponse;
19663
19663
  /**
19664
19664
  * Rate limit exceeded
19665
19665
  */
19666
- 429: unknown;
19666
+ 429: ErrorResponse;
19667
19667
  /**
19668
- * Internal error
19668
+ * Internal server error
19669
19669
  */
19670
- 500: unknown;
19670
+ 500: ErrorResponse;
19671
19671
  };
19672
19672
  export type OpPreviewEventBlockError = OpPreviewEventBlockErrors[keyof OpPreviewEventBlockErrors];
19673
19673
  export type OpPreviewEventBlockResponses = {
@@ -19696,37 +19696,37 @@ export type OpUpdateJournalEntryData = {
19696
19696
  };
19697
19697
  export type OpUpdateJournalEntryErrors = {
19698
19698
  /**
19699
- * Invalid request payload
19699
+ * Invalid request
19700
19700
  */
19701
- 400: OperationError;
19701
+ 400: ErrorResponse;
19702
19702
  /**
19703
- * Unauthorized — missing or invalid credentials
19703
+ * Authentication required
19704
19704
  */
19705
- 401: unknown;
19705
+ 401: ErrorResponse;
19706
19706
  /**
19707
- * Forbidden — caller cannot access this graph
19707
+ * Access denied
19708
19708
  */
19709
- 403: unknown;
19709
+ 403: ErrorResponse;
19710
19710
  /**
19711
- * Resource not found (graph, ledger, report, etc.)
19711
+ * Resource not found
19712
19712
  */
19713
- 404: OperationError;
19713
+ 404: ErrorResponse;
19714
19714
  /**
19715
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19715
+ * Idempotency-Key conflict — key reused with different body
19716
19716
  */
19717
- 409: OperationError;
19717
+ 409: ErrorResponse;
19718
19718
  /**
19719
- * Validation Error
19719
+ * Validation error
19720
19720
  */
19721
- 422: HttpValidationError;
19721
+ 422: ErrorResponse;
19722
19722
  /**
19723
19723
  * Rate limit exceeded
19724
19724
  */
19725
- 429: unknown;
19725
+ 429: ErrorResponse;
19726
19726
  /**
19727
- * Internal error
19727
+ * Internal server error
19728
19728
  */
19729
- 500: unknown;
19729
+ 500: ErrorResponse;
19730
19730
  };
19731
19731
  export type OpUpdateJournalEntryError = OpUpdateJournalEntryErrors[keyof OpUpdateJournalEntryErrors];
19732
19732
  export type OpUpdateJournalEntryResponses = {
@@ -19755,37 +19755,37 @@ export type OpDeleteJournalEntryData = {
19755
19755
  };
19756
19756
  export type OpDeleteJournalEntryErrors = {
19757
19757
  /**
19758
- * Invalid request payload
19758
+ * Invalid request
19759
19759
  */
19760
- 400: OperationError;
19760
+ 400: ErrorResponse;
19761
19761
  /**
19762
- * Unauthorized — missing or invalid credentials
19762
+ * Authentication required
19763
19763
  */
19764
- 401: unknown;
19764
+ 401: ErrorResponse;
19765
19765
  /**
19766
- * Forbidden — caller cannot access this graph
19766
+ * Access denied
19767
19767
  */
19768
- 403: unknown;
19768
+ 403: ErrorResponse;
19769
19769
  /**
19770
- * Resource not found (graph, ledger, report, etc.)
19770
+ * Resource not found
19771
19771
  */
19772
- 404: OperationError;
19772
+ 404: ErrorResponse;
19773
19773
  /**
19774
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19774
+ * Idempotency-Key conflict — key reused with different body
19775
19775
  */
19776
- 409: OperationError;
19776
+ 409: ErrorResponse;
19777
19777
  /**
19778
- * Validation Error
19778
+ * Validation error
19779
19779
  */
19780
- 422: HttpValidationError;
19780
+ 422: ErrorResponse;
19781
19781
  /**
19782
19782
  * Rate limit exceeded
19783
19783
  */
19784
- 429: unknown;
19784
+ 429: ErrorResponse;
19785
19785
  /**
19786
- * Internal error
19786
+ * Internal server error
19787
19787
  */
19788
- 500: unknown;
19788
+ 500: ErrorResponse;
19789
19789
  };
19790
19790
  export type OpDeleteJournalEntryError = OpDeleteJournalEntryErrors[keyof OpDeleteJournalEntryErrors];
19791
19791
  export type OpDeleteJournalEntryResponses = {
@@ -19834,9 +19834,9 @@ export type OpSetCloseTargetErrors = {
19834
19834
  */
19835
19835
  409: ErrorResponse;
19836
19836
  /**
19837
- * Validation Error
19837
+ * Validation error
19838
19838
  */
19839
- 422: HttpValidationError;
19839
+ 422: ErrorResponse;
19840
19840
  /**
19841
19841
  * Rate limit exceeded
19842
19842
  */
@@ -19893,9 +19893,9 @@ export type OpClosePeriodErrors = {
19893
19893
  */
19894
19894
  409: ErrorResponse;
19895
19895
  /**
19896
- * Validation Error
19896
+ * Validation error
19897
19897
  */
19898
- 422: HttpValidationError;
19898
+ 422: ErrorResponse;
19899
19899
  /**
19900
19900
  * Rate limit exceeded
19901
19901
  */
@@ -19952,9 +19952,9 @@ export type OpReopenPeriodErrors = {
19952
19952
  */
19953
19953
  409: ErrorResponse;
19954
19954
  /**
19955
- * Validation Error
19955
+ * Validation error
19956
19956
  */
19957
- 422: HttpValidationError;
19957
+ 422: ErrorResponse;
19958
19958
  /**
19959
19959
  * Rate limit exceeded
19960
19960
  */
@@ -20011,9 +20011,9 @@ export type OpCreateReportErrors = {
20011
20011
  */
20012
20012
  409: ErrorResponse;
20013
20013
  /**
20014
- * Validation Error
20014
+ * Validation error
20015
20015
  */
20016
- 422: HttpValidationError;
20016
+ 422: ErrorResponse;
20017
20017
  /**
20018
20018
  * Rate limit exceeded
20019
20019
  */
@@ -20070,9 +20070,9 @@ export type OpRegenerateReportErrors = {
20070
20070
  */
20071
20071
  409: ErrorResponse;
20072
20072
  /**
20073
- * Validation Error
20073
+ * Validation error
20074
20074
  */
20075
- 422: HttpValidationError;
20075
+ 422: ErrorResponse;
20076
20076
  /**
20077
20077
  * Rate limit exceeded
20078
20078
  */
@@ -20129,9 +20129,9 @@ export type OpDeleteReportErrors = {
20129
20129
  */
20130
20130
  409: ErrorResponse;
20131
20131
  /**
20132
- * Validation Error
20132
+ * Validation error
20133
20133
  */
20134
- 422: HttpValidationError;
20134
+ 422: ErrorResponse;
20135
20135
  /**
20136
20136
  * Rate limit exceeded
20137
20137
  */
@@ -20188,9 +20188,9 @@ export type OpShareReportErrors = {
20188
20188
  */
20189
20189
  409: ErrorResponse;
20190
20190
  /**
20191
- * Validation Error
20191
+ * Validation error
20192
20192
  */
20193
- 422: HttpValidationError;
20193
+ 422: ErrorResponse;
20194
20194
  /**
20195
20195
  * Rate limit exceeded
20196
20196
  */
@@ -20247,9 +20247,9 @@ export type OpFileReportErrors = {
20247
20247
  */
20248
20248
  409: ErrorResponse;
20249
20249
  /**
20250
- * Validation Error
20250
+ * Validation error
20251
20251
  */
20252
- 422: HttpValidationError;
20252
+ 422: ErrorResponse;
20253
20253
  /**
20254
20254
  * Rate limit exceeded
20255
20255
  */
@@ -20306,9 +20306,9 @@ export type OpTransitionFilingStatusErrors = {
20306
20306
  */
20307
20307
  409: ErrorResponse;
20308
20308
  /**
20309
- * Validation Error
20309
+ * Validation error
20310
20310
  */
20311
- 422: HttpValidationError;
20311
+ 422: ErrorResponse;
20312
20312
  /**
20313
20313
  * Rate limit exceeded
20314
20314
  */
@@ -20365,9 +20365,9 @@ export type OpCreatePublishListErrors = {
20365
20365
  */
20366
20366
  409: ErrorResponse;
20367
20367
  /**
20368
- * Validation Error
20368
+ * Validation error
20369
20369
  */
20370
- 422: HttpValidationError;
20370
+ 422: ErrorResponse;
20371
20371
  /**
20372
20372
  * Rate limit exceeded
20373
20373
  */
@@ -20424,9 +20424,9 @@ export type OpUpdatePublishListErrors = {
20424
20424
  */
20425
20425
  409: ErrorResponse;
20426
20426
  /**
20427
- * Validation Error
20427
+ * Validation error
20428
20428
  */
20429
- 422: HttpValidationError;
20429
+ 422: ErrorResponse;
20430
20430
  /**
20431
20431
  * Rate limit exceeded
20432
20432
  */
@@ -20483,9 +20483,9 @@ export type OpDeletePublishListErrors = {
20483
20483
  */
20484
20484
  409: ErrorResponse;
20485
20485
  /**
20486
- * Validation Error
20486
+ * Validation error
20487
20487
  */
20488
- 422: HttpValidationError;
20488
+ 422: ErrorResponse;
20489
20489
  /**
20490
20490
  * Rate limit exceeded
20491
20491
  */
@@ -20542,9 +20542,9 @@ export type OpAddPublishListMembersErrors = {
20542
20542
  */
20543
20543
  409: ErrorResponse;
20544
20544
  /**
20545
- * Validation Error
20545
+ * Validation error
20546
20546
  */
20547
- 422: HttpValidationError;
20547
+ 422: ErrorResponse;
20548
20548
  /**
20549
20549
  * Rate limit exceeded
20550
20550
  */
@@ -20601,9 +20601,9 @@ export type OpRemovePublishListMemberErrors = {
20601
20601
  */
20602
20602
  409: ErrorResponse;
20603
20603
  /**
20604
- * Validation Error
20604
+ * Validation error
20605
20605
  */
20606
- 422: HttpValidationError;
20606
+ 422: ErrorResponse;
20607
20607
  /**
20608
20608
  * Rate limit exceeded
20609
20609
  */
@@ -20660,9 +20660,9 @@ export type OpLiveFinancialStatementErrors = {
20660
20660
  */
20661
20661
  409: ErrorResponse;
20662
20662
  /**
20663
- * Validation Error
20663
+ * Validation error
20664
20664
  */
20665
- 422: HttpValidationError;
20665
+ 422: ErrorResponse;
20666
20666
  /**
20667
20667
  * Rate limit exceeded
20668
20668
  */
@@ -20719,9 +20719,9 @@ export type OpBuildFactGridErrors = {
20719
20719
  */
20720
20720
  409: ErrorResponse;
20721
20721
  /**
20722
- * Validation Error
20722
+ * Validation error
20723
20723
  */
20724
- 422: HttpValidationError;
20724
+ 422: ErrorResponse;
20725
20725
  /**
20726
20726
  * Rate limit exceeded
20727
20727
  */
@@ -20778,9 +20778,9 @@ export type OpFinancialStatementAnalysisErrors = {
20778
20778
  */
20779
20779
  409: ErrorResponse;
20780
20780
  /**
20781
- * Validation Error
20781
+ * Validation error
20782
20782
  */
20783
- 422: HttpValidationError;
20783
+ 422: ErrorResponse;
20784
20784
  /**
20785
20785
  * Rate limit exceeded
20786
20786
  */
@@ -20817,37 +20817,37 @@ export type OpCreatePortfolioBlockData = {
20817
20817
  };
20818
20818
  export type OpCreatePortfolioBlockErrors = {
20819
20819
  /**
20820
- * Invalid request payload
20820
+ * Invalid request
20821
20821
  */
20822
- 400: OperationError;
20822
+ 400: ErrorResponse;
20823
20823
  /**
20824
- * Unauthorized — missing or invalid credentials
20824
+ * Authentication required
20825
20825
  */
20826
- 401: unknown;
20826
+ 401: ErrorResponse;
20827
20827
  /**
20828
- * Forbidden — caller cannot access this graph
20828
+ * Access denied
20829
20829
  */
20830
- 403: unknown;
20830
+ 403: ErrorResponse;
20831
20831
  /**
20832
- * Resource not found (graph, ledger, report, etc.)
20832
+ * Resource not found
20833
20833
  */
20834
- 404: OperationError;
20834
+ 404: ErrorResponse;
20835
20835
  /**
20836
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20836
+ * Idempotency-Key conflict — key reused with different body
20837
20837
  */
20838
- 409: OperationError;
20838
+ 409: ErrorResponse;
20839
20839
  /**
20840
- * Validation Error
20840
+ * Validation error
20841
20841
  */
20842
- 422: HttpValidationError;
20842
+ 422: ErrorResponse;
20843
20843
  /**
20844
20844
  * Rate limit exceeded
20845
20845
  */
20846
- 429: unknown;
20846
+ 429: ErrorResponse;
20847
20847
  /**
20848
- * Internal error
20848
+ * Internal server error
20849
20849
  */
20850
- 500: unknown;
20850
+ 500: ErrorResponse;
20851
20851
  };
20852
20852
  export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
20853
20853
  export type OpCreatePortfolioBlockResponses = {
@@ -20876,37 +20876,37 @@ export type OpUpdatePortfolioBlockData = {
20876
20876
  };
20877
20877
  export type OpUpdatePortfolioBlockErrors = {
20878
20878
  /**
20879
- * Invalid request payload
20879
+ * Invalid request
20880
20880
  */
20881
- 400: OperationError;
20881
+ 400: ErrorResponse;
20882
20882
  /**
20883
- * Unauthorized — missing or invalid credentials
20883
+ * Authentication required
20884
20884
  */
20885
- 401: unknown;
20885
+ 401: ErrorResponse;
20886
20886
  /**
20887
- * Forbidden — caller cannot access this graph
20887
+ * Access denied
20888
20888
  */
20889
- 403: unknown;
20889
+ 403: ErrorResponse;
20890
20890
  /**
20891
- * Resource not found (graph, ledger, report, etc.)
20891
+ * Resource not found
20892
20892
  */
20893
- 404: OperationError;
20893
+ 404: ErrorResponse;
20894
20894
  /**
20895
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20895
+ * Idempotency-Key conflict — key reused with different body
20896
20896
  */
20897
- 409: OperationError;
20897
+ 409: ErrorResponse;
20898
20898
  /**
20899
- * Validation Error
20899
+ * Validation error
20900
20900
  */
20901
- 422: HttpValidationError;
20901
+ 422: ErrorResponse;
20902
20902
  /**
20903
20903
  * Rate limit exceeded
20904
20904
  */
20905
- 429: unknown;
20905
+ 429: ErrorResponse;
20906
20906
  /**
20907
- * Internal error
20907
+ * Internal server error
20908
20908
  */
20909
- 500: unknown;
20909
+ 500: ErrorResponse;
20910
20910
  };
20911
20911
  export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
20912
20912
  export type OpUpdatePortfolioBlockResponses = {
@@ -20935,37 +20935,37 @@ export type OpDeletePortfolioBlockData = {
20935
20935
  };
20936
20936
  export type OpDeletePortfolioBlockErrors = {
20937
20937
  /**
20938
- * Invalid request payload
20938
+ * Invalid request
20939
20939
  */
20940
- 400: OperationError;
20940
+ 400: ErrorResponse;
20941
20941
  /**
20942
- * Unauthorized — missing or invalid credentials
20942
+ * Authentication required
20943
20943
  */
20944
- 401: unknown;
20944
+ 401: ErrorResponse;
20945
20945
  /**
20946
- * Forbidden — caller cannot access this graph
20946
+ * Access denied
20947
20947
  */
20948
- 403: unknown;
20948
+ 403: ErrorResponse;
20949
20949
  /**
20950
- * Resource not found (graph, ledger, report, etc.)
20950
+ * Resource not found
20951
20951
  */
20952
- 404: OperationError;
20952
+ 404: ErrorResponse;
20953
20953
  /**
20954
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20954
+ * Idempotency-Key conflict — key reused with different body
20955
20955
  */
20956
- 409: OperationError;
20956
+ 409: ErrorResponse;
20957
20957
  /**
20958
- * Validation Error
20958
+ * Validation error
20959
20959
  */
20960
- 422: HttpValidationError;
20960
+ 422: ErrorResponse;
20961
20961
  /**
20962
20962
  * Rate limit exceeded
20963
20963
  */
20964
- 429: unknown;
20964
+ 429: ErrorResponse;
20965
20965
  /**
20966
- * Internal error
20966
+ * Internal server error
20967
20967
  */
20968
- 500: unknown;
20968
+ 500: ErrorResponse;
20969
20969
  };
20970
20970
  export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
20971
20971
  export type OpDeletePortfolioBlockResponses = {
@@ -20994,37 +20994,37 @@ export type OpCreateSecurityData = {
20994
20994
  };
20995
20995
  export type OpCreateSecurityErrors = {
20996
20996
  /**
20997
- * Invalid request payload
20997
+ * Invalid request
20998
20998
  */
20999
- 400: OperationError;
20999
+ 400: ErrorResponse;
21000
21000
  /**
21001
- * Unauthorized — missing or invalid credentials
21001
+ * Authentication required
21002
21002
  */
21003
- 401: unknown;
21003
+ 401: ErrorResponse;
21004
21004
  /**
21005
- * Forbidden — caller cannot access this graph
21005
+ * Access denied
21006
21006
  */
21007
- 403: unknown;
21007
+ 403: ErrorResponse;
21008
21008
  /**
21009
- * Resource not found (graph, ledger, report, etc.)
21009
+ * Resource not found
21010
21010
  */
21011
- 404: OperationError;
21011
+ 404: ErrorResponse;
21012
21012
  /**
21013
- * Idempotency-Key reused with a different request body, or other operation-level conflict
21013
+ * Idempotency-Key conflict — key reused with different body
21014
21014
  */
21015
- 409: OperationError;
21015
+ 409: ErrorResponse;
21016
21016
  /**
21017
- * Validation Error
21017
+ * Validation error
21018
21018
  */
21019
- 422: HttpValidationError;
21019
+ 422: ErrorResponse;
21020
21020
  /**
21021
21021
  * Rate limit exceeded
21022
21022
  */
21023
- 429: unknown;
21023
+ 429: ErrorResponse;
21024
21024
  /**
21025
- * Internal error
21025
+ * Internal server error
21026
21026
  */
21027
- 500: unknown;
21027
+ 500: ErrorResponse;
21028
21028
  };
21029
21029
  export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
21030
21030
  export type OpCreateSecurityResponses = {
@@ -21053,37 +21053,37 @@ export type OpUpdateSecurityData = {
21053
21053
  };
21054
21054
  export type OpUpdateSecurityErrors = {
21055
21055
  /**
21056
- * Invalid request payload
21056
+ * Invalid request
21057
21057
  */
21058
- 400: OperationError;
21058
+ 400: ErrorResponse;
21059
21059
  /**
21060
- * Unauthorized — missing or invalid credentials
21060
+ * Authentication required
21061
21061
  */
21062
- 401: unknown;
21062
+ 401: ErrorResponse;
21063
21063
  /**
21064
- * Forbidden — caller cannot access this graph
21064
+ * Access denied
21065
21065
  */
21066
- 403: unknown;
21066
+ 403: ErrorResponse;
21067
21067
  /**
21068
- * Resource not found (graph, ledger, report, etc.)
21068
+ * Resource not found
21069
21069
  */
21070
- 404: OperationError;
21070
+ 404: ErrorResponse;
21071
21071
  /**
21072
- * Idempotency-Key reused with a different request body, or other operation-level conflict
21072
+ * Idempotency-Key conflict — key reused with different body
21073
21073
  */
21074
- 409: OperationError;
21074
+ 409: ErrorResponse;
21075
21075
  /**
21076
- * Validation Error
21076
+ * Validation error
21077
21077
  */
21078
- 422: HttpValidationError;
21078
+ 422: ErrorResponse;
21079
21079
  /**
21080
21080
  * Rate limit exceeded
21081
21081
  */
21082
- 429: unknown;
21082
+ 429: ErrorResponse;
21083
21083
  /**
21084
- * Internal error
21084
+ * Internal server error
21085
21085
  */
21086
- 500: unknown;
21086
+ 500: ErrorResponse;
21087
21087
  };
21088
21088
  export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
21089
21089
  export type OpUpdateSecurityResponses = {
@@ -21112,37 +21112,37 @@ export type OpDeleteSecurityData = {
21112
21112
  };
21113
21113
  export type OpDeleteSecurityErrors = {
21114
21114
  /**
21115
- * Invalid request payload
21115
+ * Invalid request
21116
21116
  */
21117
- 400: OperationError;
21117
+ 400: ErrorResponse;
21118
21118
  /**
21119
- * Unauthorized — missing or invalid credentials
21119
+ * Authentication required
21120
21120
  */
21121
- 401: unknown;
21121
+ 401: ErrorResponse;
21122
21122
  /**
21123
- * Forbidden — caller cannot access this graph
21123
+ * Access denied
21124
21124
  */
21125
- 403: unknown;
21125
+ 403: ErrorResponse;
21126
21126
  /**
21127
- * Resource not found (graph, ledger, report, etc.)
21127
+ * Resource not found
21128
21128
  */
21129
- 404: OperationError;
21129
+ 404: ErrorResponse;
21130
21130
  /**
21131
- * Idempotency-Key reused with a different request body, or other operation-level conflict
21131
+ * Idempotency-Key conflict — key reused with different body
21132
21132
  */
21133
- 409: OperationError;
21133
+ 409: ErrorResponse;
21134
21134
  /**
21135
- * Validation Error
21135
+ * Validation error
21136
21136
  */
21137
- 422: HttpValidationError;
21137
+ 422: ErrorResponse;
21138
21138
  /**
21139
21139
  * Rate limit exceeded
21140
21140
  */
21141
- 429: unknown;
21141
+ 429: ErrorResponse;
21142
21142
  /**
21143
- * Internal error
21143
+ * Internal server error
21144
21144
  */
21145
- 500: unknown;
21145
+ 500: ErrorResponse;
21146
21146
  };
21147
21147
  export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];
21148
21148
  export type OpDeleteSecurityResponses = {