@robosystems/client 0.3.21 → 0.3.23

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/sdk/types.gen.ts CHANGED
@@ -1054,6 +1054,28 @@ export type CancelSubscriptionRequest = {
1054
1054
  confirm?: string | null;
1055
1055
  };
1056
1056
 
1057
+ /**
1058
+ * ChangeReportingStyleOp
1059
+ *
1060
+ * Body for the change-reporting-style operation (Phase 2 of §3.2).
1061
+ *
1062
+ * Switches the graph to a different Reporting Style. The target Style
1063
+ * must be a library- or customer-authored Structure with
1064
+ * ``structure_type='reporting_style'`` and a complete composition
1065
+ * (one Network per required statement type — BS / IS / CF / SE). Filed
1066
+ * Reports are unaffected because each ``Report`` already pins its own
1067
+ * ``structure_id`` per FactSet at create-time; new reports use the new
1068
+ * Style. Idempotent on the same target id.
1069
+ */
1070
+ export type ChangeReportingStyleOp = {
1071
+ /**
1072
+ * Reporting Style Id
1073
+ *
1074
+ * Structure id of the target Reporting Style (e.g., `025f5d48-12ce-5d65-b9eb-4f137a10ef06` for the library-seeded Default Style). Must resolve to a Structure with structure_type='reporting_style' that has a complete composition in the graph's tenant schema.
1075
+ */
1076
+ reporting_style_id: string;
1077
+ };
1078
+
1057
1079
  /**
1058
1080
  * ChangeTierOp
1059
1081
  *
@@ -1249,6 +1271,20 @@ export type ClosePeriodResponse = {
1249
1271
  * Whether close_target was auto-advanced because it was reached
1250
1272
  */
1251
1273
  target_auto_advanced?: boolean;
1274
+ /**
1275
+ * Rule Summary
1276
+ *
1277
+ * Aggregated rule-eval outcome across every schedule Structure with facts in the closed period — keys: pass/fail/error/skipped. None when no schedules had facts in the period (§3.8 auto-run on close).
1278
+ */
1279
+ rule_summary?: {
1280
+ [key: string]: number;
1281
+ } | null;
1282
+ /**
1283
+ * Evaluated Structure Ids
1284
+ *
1285
+ * ids of schedule Structures whose rules were evaluated during the close. Pairs with rule_summary.
1286
+ */
1287
+ evaluated_structure_ids?: Array<string>;
1252
1288
  };
1253
1289
 
1254
1290
  /**
@@ -2002,7 +2038,7 @@ export type CreateGraphRequest = {
2002
2038
  export type CreateInformationBlockRequest = ({
2003
2039
  block_type: 'schedule';
2004
2040
  } & CreateScheduleArm) | ({
2005
- block_type: 'balance_sheet' | 'cash_flow_statement' | 'equity_statement' | 'income_statement' | 'metric';
2041
+ block_type: 'balance_sheet' | 'cash_flow_statement' | 'comprehensive_income' | 'equity_statement' | 'income_statement' | 'metric';
2006
2042
  } & CreateLegacyArm);
2007
2043
 
2008
2044
  /**
@@ -3018,7 +3054,7 @@ export type DeleteGraphOp = {
3018
3054
  export type DeleteInformationBlockRequest = ({
3019
3055
  block_type: 'schedule';
3020
3056
  } & DeleteScheduleArm) | ({
3021
- block_type: 'balance_sheet' | 'cash_flow_statement' | 'equity_statement' | 'income_statement' | 'metric';
3057
+ block_type: 'balance_sheet' | 'cash_flow_statement' | 'comprehensive_income' | 'equity_statement' | 'income_statement' | 'metric';
3022
3058
  } & DeleteLegacyArm);
3023
3059
 
3024
3060
  /**
@@ -4326,6 +4362,14 @@ export type FactLite = {
4326
4362
  * Element Id
4327
4363
  */
4328
4364
  element_id: string;
4365
+ /**
4366
+ * Element Name
4367
+ */
4368
+ element_name?: string | null;
4369
+ /**
4370
+ * Element Qname
4371
+ */
4372
+ element_qname?: string | null;
4329
4373
  /**
4330
4374
  * Value
4331
4375
  */
@@ -4681,9 +4725,33 @@ export type FiscalCalendarResponse = {
4681
4725
  /**
4682
4726
  * Blockers
4683
4727
  *
4684
- * Structured blocker codes when closeable_now is False: 'sequence_violation', 'period_incomplete', 'sync_stale', 'calendar_not_initialized', 'period_already_closed'
4728
+ * Structured blocker codes when closeable_now is False: 'sequence_violation', 'period_incomplete', 'sync_stale', 'calendar_not_initialized', 'period_already_closed', 'pending_obligations'
4685
4729
  */
4686
4730
  blockers?: Array<string>;
4731
+ /**
4732
+ * Pending Obligation Count
4733
+ *
4734
+ * Number of pending schedule_entry_due events blocking close. Non-zero only when `pending_obligations` is in `blockers`.
4735
+ */
4736
+ pending_obligation_count?: number;
4737
+ /**
4738
+ * Pending Obligation Sample
4739
+ *
4740
+ * Sample of up to 5 pending obligations (schedule_id, schedule_name, period, event_id) ordered by occurred_at. Use `list-event-blocks` with event_type=schedule_entry_due&status=pending for the full set.
4741
+ */
4742
+ pending_obligation_sample?: Array<PendingObligationDetailResponse>;
4743
+ /**
4744
+ * Earliest Pending Period
4745
+ *
4746
+ * Earliest period (YYYY-MM) with a pending obligation blocking close. Null when no pending_obligations blocker is active.
4747
+ */
4748
+ earliest_pending_period?: string | null;
4749
+ /**
4750
+ * Sync Stale Days
4751
+ *
4752
+ * Days the most recent sync is stale relative to the period to close. Populated only when `sync_stale` is in `blockers` and last_sync_at exists (null when there's a connection but no sync has ever run).
4753
+ */
4754
+ sync_stale_days?: number | null;
4687
4755
  /**
4688
4756
  * Last Close At
4689
4757
  */
@@ -5668,6 +5736,12 @@ export type InformationBlockEnvelope = {
5668
5736
  * Display name of the source taxonomy.
5669
5737
  */
5670
5738
  taxonomy_name?: string | null;
5739
+ /**
5740
+ * Disclosure Id
5741
+ *
5742
+ * Qname of the named Disclosure this block corresponds to (e.g., 'disclosures:BalanceSheet'), when an inbound reportedDisclosure-requiresDisclosure arc identifies one. Null for tenant-authored blocks without a Disclosure mapping.
5743
+ */
5744
+ disclosure_id?: string | null;
5671
5745
  information_model: InformationModelResponse;
5672
5746
  artifact: ArtifactResponse;
5673
5747
  /**
@@ -8573,6 +8647,35 @@ export type PaymentMethod = {
8573
8647
  is_default: boolean;
8574
8648
  };
8575
8649
 
8650
+ /**
8651
+ * PendingObligationDetailResponse
8652
+ *
8653
+ * One pending schedule-derived obligation blocking close.
8654
+ *
8655
+ * Surfaced on `FiscalCalendarResponse` when `pending_obligations` is in
8656
+ * the blockers list so callers can name which schedules to promote.
8657
+ */
8658
+ export type PendingObligationDetailResponse = {
8659
+ /**
8660
+ * Event Id
8661
+ */
8662
+ event_id: string;
8663
+ /**
8664
+ * Schedule Id
8665
+ */
8666
+ schedule_id?: string | null;
8667
+ /**
8668
+ * Schedule Name
8669
+ */
8670
+ schedule_name?: string | null;
8671
+ /**
8672
+ * Period
8673
+ *
8674
+ * Period in YYYY-MM format
8675
+ */
8676
+ period: string;
8677
+ };
8678
+
8576
8679
  /**
8577
8680
  * PerformanceInsights
8578
8681
  *
@@ -12405,7 +12508,7 @@ export type UpdateEventHandlerRequest = {
12405
12508
  export type UpdateInformationBlockRequest = ({
12406
12509
  block_type: 'schedule';
12407
12510
  } & UpdateScheduleArm) | ({
12408
- block_type: 'balance_sheet' | 'cash_flow_statement' | 'equity_statement' | 'income_statement' | 'metric';
12511
+ block_type: 'balance_sheet' | 'cash_flow_statement' | 'comprehensive_income' | 'equity_statement' | 'income_statement' | 'metric';
12409
12512
  } & UpdateLegacyArm);
12410
12513
 
12411
12514
  /**
@@ -13050,11 +13153,11 @@ export type ViewProjections = {
13050
13153
  * a typed construction path at the API boundary.
13051
13154
  *
13052
13155
  * Statement-family blocks (balance_sheet, income_statement,
13053
- * cash_flow_statement, equity_statement) are constructed via
13054
- * `create-report`, not this endpoint. Metric blocks are recognized
13055
- * but their evaluator has not shipped. Calling this endpoint with one
13056
- * of these block types returns HTTP 501 with a hint pointing to the
13057
- * correct construction path.
13156
+ * cash_flow_statement, equity_statement, comprehensive_income) are
13157
+ * constructed via `create-report`, not this endpoint. Metric blocks
13158
+ * are recognized but their evaluator has not shipped. Calling this
13159
+ * endpoint with one of these block types returns HTTP 501 with a hint
13160
+ * pointing to the correct construction path.
13058
13161
  */
13059
13162
  export type CreateLegacyArm = {
13060
13163
  /**
@@ -13062,7 +13165,7 @@ export type CreateLegacyArm = {
13062
13165
  *
13063
13166
  * Statement-family or metric block type. The endpoint returns 501 for these values — statements are constructed via `create-report`; metric construction is pending.
13064
13167
  */
13065
- block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'metric';
13168
+ block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'comprehensive_income' | 'metric';
13066
13169
  /**
13067
13170
  * Payload
13068
13171
  *
@@ -13110,7 +13213,7 @@ export type DeleteLegacyArm = {
13110
13213
  *
13111
13214
  * Statement-family or metric block type. Deletion returns 501 — statements are library-seeded (archive the underlying Report instead); metric deletion is pending.
13112
13215
  */
13113
- block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'metric';
13216
+ block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'comprehensive_income' | 'metric';
13114
13217
  /**
13115
13218
  * Payload
13116
13219
  *
@@ -13157,7 +13260,7 @@ export type UpdateLegacyArm = {
13157
13260
  *
13158
13261
  * Statement-family or metric block type. Updates return 501 — statement Structures are library-seeded; metric updates are pending.
13159
13262
  */
13160
- block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'metric';
13263
+ block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'comprehensive_income' | 'metric';
13161
13264
  /**
13162
13265
  * Payload
13163
13266
  *
@@ -15162,9 +15265,9 @@ export type SyncConnectionErrors = {
15162
15265
  */
15163
15266
  409: ErrorResponse;
15164
15267
  /**
15165
- * Validation Error
15268
+ * Validation error
15166
15269
  */
15167
- 422: HttpValidationError;
15270
+ 422: ErrorResponse;
15168
15271
  /**
15169
15272
  * Rate limit exceeded
15170
15273
  */
@@ -17553,9 +17656,9 @@ export type OpCreateSubgraphErrors = {
17553
17656
  */
17554
17657
  409: ErrorResponse;
17555
17658
  /**
17556
- * Validation Error
17659
+ * Validation error
17557
17660
  */
17558
- 422: HttpValidationError;
17661
+ 422: ErrorResponse;
17559
17662
  /**
17560
17663
  * Rate limit exceeded
17561
17664
  */
@@ -17617,9 +17720,9 @@ export type OpDeleteSubgraphErrors = {
17617
17720
  */
17618
17721
  409: ErrorResponse;
17619
17722
  /**
17620
- * Validation Error
17723
+ * Validation error
17621
17724
  */
17622
- 422: HttpValidationError;
17725
+ 422: ErrorResponse;
17623
17726
  /**
17624
17727
  * Rate limit exceeded
17625
17728
  */
@@ -17681,9 +17784,9 @@ export type OpDeleteGraphErrors = {
17681
17784
  */
17682
17785
  409: ErrorResponse;
17683
17786
  /**
17684
- * Validation Error
17787
+ * Validation error
17685
17788
  */
17686
- 422: HttpValidationError;
17789
+ 422: ErrorResponse;
17687
17790
  /**
17688
17791
  * Rate limit exceeded
17689
17792
  */
@@ -17745,9 +17848,9 @@ export type OpCreateBackupErrors = {
17745
17848
  */
17746
17849
  409: ErrorResponse;
17747
17850
  /**
17748
- * Validation Error
17851
+ * Validation error
17749
17852
  */
17750
- 422: HttpValidationError;
17853
+ 422: ErrorResponse;
17751
17854
  /**
17752
17855
  * Rate limit exceeded
17753
17856
  */
@@ -17809,9 +17912,9 @@ export type OpRestoreBackupErrors = {
17809
17912
  */
17810
17913
  409: ErrorResponse;
17811
17914
  /**
17812
- * Validation Error
17915
+ * Validation error
17813
17916
  */
17814
- 422: HttpValidationError;
17917
+ 422: ErrorResponse;
17815
17918
  /**
17816
17919
  * Rate limit exceeded
17817
17920
  */
@@ -17873,9 +17976,9 @@ export type OpChangeTierErrors = {
17873
17976
  */
17874
17977
  409: ErrorResponse;
17875
17978
  /**
17876
- * Validation Error
17979
+ * Validation error
17877
17980
  */
17878
- 422: HttpValidationError;
17981
+ 422: ErrorResponse;
17879
17982
  /**
17880
17983
  * Rate limit exceeded
17881
17984
  */
@@ -17897,6 +18000,70 @@ export type OpChangeTierResponses = {
17897
18000
 
17898
18001
  export type OpChangeTierResponse = OpChangeTierResponses[keyof OpChangeTierResponses];
17899
18002
 
18003
+ export type OpChangeReportingStyleData = {
18004
+ body: ChangeReportingStyleOp;
18005
+ headers?: {
18006
+ /**
18007
+ * Idempotency-Key
18008
+ */
18009
+ 'Idempotency-Key'?: string | null;
18010
+ };
18011
+ path: {
18012
+ /**
18013
+ * Graph Id
18014
+ */
18015
+ graph_id: string;
18016
+ };
18017
+ query?: never;
18018
+ url: '/v1/graphs/{graph_id}/operations/change-reporting-style';
18019
+ };
18020
+
18021
+ export type OpChangeReportingStyleErrors = {
18022
+ /**
18023
+ * Invalid request
18024
+ */
18025
+ 400: ErrorResponse;
18026
+ /**
18027
+ * Authentication required
18028
+ */
18029
+ 401: ErrorResponse;
18030
+ /**
18031
+ * Access denied
18032
+ */
18033
+ 403: ErrorResponse;
18034
+ /**
18035
+ * Resource not found
18036
+ */
18037
+ 404: ErrorResponse;
18038
+ /**
18039
+ * Idempotency-Key conflict — key reused with different body
18040
+ */
18041
+ 409: ErrorResponse;
18042
+ /**
18043
+ * Validation error
18044
+ */
18045
+ 422: ErrorResponse;
18046
+ /**
18047
+ * Rate limit exceeded
18048
+ */
18049
+ 429: ErrorResponse;
18050
+ /**
18051
+ * Internal server error
18052
+ */
18053
+ 500: ErrorResponse;
18054
+ };
18055
+
18056
+ export type OpChangeReportingStyleError = OpChangeReportingStyleErrors[keyof OpChangeReportingStyleErrors];
18057
+
18058
+ export type OpChangeReportingStyleResponses = {
18059
+ /**
18060
+ * Successful Response
18061
+ */
18062
+ 200: OperationEnvelope;
18063
+ };
18064
+
18065
+ export type OpChangeReportingStyleResponse = OpChangeReportingStyleResponses[keyof OpChangeReportingStyleResponses];
18066
+
17900
18067
  export type OpMaterializeData = {
17901
18068
  body: MaterializeOp;
17902
18069
  headers?: {
@@ -17937,9 +18104,9 @@ export type OpMaterializeErrors = {
17937
18104
  */
17938
18105
  409: ErrorResponse;
17939
18106
  /**
17940
- * Validation Error
18107
+ * Validation error
17941
18108
  */
17942
- 422: HttpValidationError;
18109
+ 422: ErrorResponse;
17943
18110
  /**
17944
18111
  * Rate limit exceeded
17945
18112
  */
@@ -18359,9 +18526,9 @@ export type CreateGraphErrors = {
18359
18526
  */
18360
18527
  409: ErrorResponse;
18361
18528
  /**
18362
- * Validation Error
18529
+ * Validation error
18363
18530
  */
18364
- 422: HttpValidationError;
18531
+ 422: ErrorResponse;
18365
18532
  /**
18366
18533
  * Rate limit exceeded
18367
18534
  */
@@ -19423,9 +19590,9 @@ export type OpInitializeLedgerErrors = {
19423
19590
  */
19424
19591
  409: ErrorResponse;
19425
19592
  /**
19426
- * Validation Error
19593
+ * Validation error
19427
19594
  */
19428
- 422: HttpValidationError;
19595
+ 422: ErrorResponse;
19429
19596
  /**
19430
19597
  * Rate limit exceeded
19431
19598
  */
@@ -19487,9 +19654,9 @@ export type OpUpdateEntityErrors = {
19487
19654
  */
19488
19655
  409: ErrorResponse;
19489
19656
  /**
19490
- * Validation Error
19657
+ * Validation error
19491
19658
  */
19492
- 422: HttpValidationError;
19659
+ 422: ErrorResponse;
19493
19660
  /**
19494
19661
  * Rate limit exceeded
19495
19662
  */
@@ -19531,37 +19698,37 @@ export type OpCreateTaxonomyBlockData = {
19531
19698
 
19532
19699
  export type OpCreateTaxonomyBlockErrors = {
19533
19700
  /**
19534
- * Invalid request payload
19701
+ * Invalid request
19535
19702
  */
19536
- 400: OperationError;
19703
+ 400: ErrorResponse;
19537
19704
  /**
19538
- * Unauthorized — missing or invalid credentials
19705
+ * Authentication required
19539
19706
  */
19540
- 401: unknown;
19707
+ 401: ErrorResponse;
19541
19708
  /**
19542
- * Forbidden — caller cannot access this graph
19709
+ * Access denied
19543
19710
  */
19544
- 403: unknown;
19711
+ 403: ErrorResponse;
19545
19712
  /**
19546
- * Resource not found (graph, ledger, report, etc.)
19713
+ * Resource not found
19547
19714
  */
19548
- 404: OperationError;
19715
+ 404: ErrorResponse;
19549
19716
  /**
19550
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19717
+ * Idempotency-Key conflict — key reused with different body
19551
19718
  */
19552
- 409: OperationError;
19719
+ 409: ErrorResponse;
19553
19720
  /**
19554
- * Validation Error
19721
+ * Validation error
19555
19722
  */
19556
- 422: HttpValidationError;
19723
+ 422: ErrorResponse;
19557
19724
  /**
19558
19725
  * Rate limit exceeded
19559
19726
  */
19560
- 429: unknown;
19727
+ 429: ErrorResponse;
19561
19728
  /**
19562
- * Internal error
19729
+ * Internal server error
19563
19730
  */
19564
- 500: unknown;
19731
+ 500: ErrorResponse;
19565
19732
  };
19566
19733
 
19567
19734
  export type OpCreateTaxonomyBlockError = OpCreateTaxonomyBlockErrors[keyof OpCreateTaxonomyBlockErrors];
@@ -19595,37 +19762,37 @@ export type OpUpdateTaxonomyBlockData = {
19595
19762
 
19596
19763
  export type OpUpdateTaxonomyBlockErrors = {
19597
19764
  /**
19598
- * Invalid request payload
19765
+ * Invalid request
19599
19766
  */
19600
- 400: OperationError;
19767
+ 400: ErrorResponse;
19601
19768
  /**
19602
- * Unauthorized — missing or invalid credentials
19769
+ * Authentication required
19603
19770
  */
19604
- 401: unknown;
19771
+ 401: ErrorResponse;
19605
19772
  /**
19606
- * Forbidden — caller cannot access this graph
19773
+ * Access denied
19607
19774
  */
19608
- 403: unknown;
19775
+ 403: ErrorResponse;
19609
19776
  /**
19610
- * Resource not found (graph, ledger, report, etc.)
19777
+ * Resource not found
19611
19778
  */
19612
- 404: OperationError;
19779
+ 404: ErrorResponse;
19613
19780
  /**
19614
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19781
+ * Idempotency-Key conflict — key reused with different body
19615
19782
  */
19616
- 409: OperationError;
19783
+ 409: ErrorResponse;
19617
19784
  /**
19618
- * Validation Error
19785
+ * Validation error
19619
19786
  */
19620
- 422: HttpValidationError;
19787
+ 422: ErrorResponse;
19621
19788
  /**
19622
19789
  * Rate limit exceeded
19623
19790
  */
19624
- 429: unknown;
19791
+ 429: ErrorResponse;
19625
19792
  /**
19626
- * Internal error
19793
+ * Internal server error
19627
19794
  */
19628
- 500: unknown;
19795
+ 500: ErrorResponse;
19629
19796
  };
19630
19797
 
19631
19798
  export type OpUpdateTaxonomyBlockError = OpUpdateTaxonomyBlockErrors[keyof OpUpdateTaxonomyBlockErrors];
@@ -19659,37 +19826,37 @@ export type OpDeleteTaxonomyBlockData = {
19659
19826
 
19660
19827
  export type OpDeleteTaxonomyBlockErrors = {
19661
19828
  /**
19662
- * Invalid request payload
19829
+ * Invalid request
19663
19830
  */
19664
- 400: OperationError;
19831
+ 400: ErrorResponse;
19665
19832
  /**
19666
- * Unauthorized — missing or invalid credentials
19833
+ * Authentication required
19667
19834
  */
19668
- 401: unknown;
19835
+ 401: ErrorResponse;
19669
19836
  /**
19670
- * Forbidden — caller cannot access this graph
19837
+ * Access denied
19671
19838
  */
19672
- 403: unknown;
19839
+ 403: ErrorResponse;
19673
19840
  /**
19674
- * Resource not found (graph, ledger, report, etc.)
19841
+ * Resource not found
19675
19842
  */
19676
- 404: OperationError;
19843
+ 404: ErrorResponse;
19677
19844
  /**
19678
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19845
+ * Idempotency-Key conflict — key reused with different body
19679
19846
  */
19680
- 409: OperationError;
19847
+ 409: ErrorResponse;
19681
19848
  /**
19682
- * Validation Error
19849
+ * Validation error
19683
19850
  */
19684
- 422: HttpValidationError;
19851
+ 422: ErrorResponse;
19685
19852
  /**
19686
19853
  * Rate limit exceeded
19687
19854
  */
19688
- 429: unknown;
19855
+ 429: ErrorResponse;
19689
19856
  /**
19690
- * Internal error
19857
+ * Internal server error
19691
19858
  */
19692
- 500: unknown;
19859
+ 500: ErrorResponse;
19693
19860
  };
19694
19861
 
19695
19862
  export type OpDeleteTaxonomyBlockError = OpDeleteTaxonomyBlockErrors[keyof OpDeleteTaxonomyBlockErrors];
@@ -19723,37 +19890,37 @@ export type OpLinkEntityTaxonomyData = {
19723
19890
 
19724
19891
  export type OpLinkEntityTaxonomyErrors = {
19725
19892
  /**
19726
- * Invalid request payload
19893
+ * Invalid request
19727
19894
  */
19728
- 400: OperationError;
19895
+ 400: ErrorResponse;
19729
19896
  /**
19730
- * Unauthorized — missing or invalid credentials
19897
+ * Authentication required
19731
19898
  */
19732
- 401: unknown;
19899
+ 401: ErrorResponse;
19733
19900
  /**
19734
- * Forbidden — caller cannot access this graph
19901
+ * Access denied
19735
19902
  */
19736
- 403: unknown;
19903
+ 403: ErrorResponse;
19737
19904
  /**
19738
- * Resource not found (graph, ledger, report, etc.)
19905
+ * Resource not found
19739
19906
  */
19740
- 404: OperationError;
19907
+ 404: ErrorResponse;
19741
19908
  /**
19742
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19909
+ * Idempotency-Key conflict — key reused with different body
19743
19910
  */
19744
- 409: OperationError;
19911
+ 409: ErrorResponse;
19745
19912
  /**
19746
- * Validation Error
19913
+ * Validation error
19747
19914
  */
19748
- 422: HttpValidationError;
19915
+ 422: ErrorResponse;
19749
19916
  /**
19750
19917
  * Rate limit exceeded
19751
19918
  */
19752
- 429: unknown;
19919
+ 429: ErrorResponse;
19753
19920
  /**
19754
- * Internal error
19921
+ * Internal server error
19755
19922
  */
19756
- 500: unknown;
19923
+ 500: ErrorResponse;
19757
19924
  };
19758
19925
 
19759
19926
  export type OpLinkEntityTaxonomyError = OpLinkEntityTaxonomyErrors[keyof OpLinkEntityTaxonomyErrors];
@@ -19787,37 +19954,37 @@ export type OpCreateMappingAssociationData = {
19787
19954
 
19788
19955
  export type OpCreateMappingAssociationErrors = {
19789
19956
  /**
19790
- * Invalid request payload
19957
+ * Invalid request
19791
19958
  */
19792
- 400: OperationError;
19959
+ 400: ErrorResponse;
19793
19960
  /**
19794
- * Unauthorized — missing or invalid credentials
19961
+ * Authentication required
19795
19962
  */
19796
- 401: unknown;
19963
+ 401: ErrorResponse;
19797
19964
  /**
19798
- * Forbidden — caller cannot access this graph
19965
+ * Access denied
19799
19966
  */
19800
- 403: unknown;
19967
+ 403: ErrorResponse;
19801
19968
  /**
19802
- * Resource not found (graph, ledger, report, etc.)
19969
+ * Resource not found
19803
19970
  */
19804
- 404: OperationError;
19971
+ 404: ErrorResponse;
19805
19972
  /**
19806
- * Idempotency-Key reused with a different request body, or other operation-level conflict
19973
+ * Idempotency-Key conflict — key reused with different body
19807
19974
  */
19808
- 409: OperationError;
19975
+ 409: ErrorResponse;
19809
19976
  /**
19810
- * Validation Error
19977
+ * Validation error
19811
19978
  */
19812
- 422: HttpValidationError;
19979
+ 422: ErrorResponse;
19813
19980
  /**
19814
19981
  * Rate limit exceeded
19815
19982
  */
19816
- 429: unknown;
19983
+ 429: ErrorResponse;
19817
19984
  /**
19818
- * Internal error
19985
+ * Internal server error
19819
19986
  */
19820
- 500: unknown;
19987
+ 500: ErrorResponse;
19821
19988
  };
19822
19989
 
19823
19990
  export type OpCreateMappingAssociationError = OpCreateMappingAssociationErrors[keyof OpCreateMappingAssociationErrors];
@@ -19871,9 +20038,9 @@ export type OpDeleteMappingAssociationErrors = {
19871
20038
  */
19872
20039
  409: ErrorResponse;
19873
20040
  /**
19874
- * Validation Error
20041
+ * Validation error
19875
20042
  */
19876
- 422: HttpValidationError;
20043
+ 422: ErrorResponse;
19877
20044
  /**
19878
20045
  * Rate limit exceeded
19879
20046
  */
@@ -19935,9 +20102,9 @@ export type OpAutoMapElementsErrors = {
19935
20102
  */
19936
20103
  409: ErrorResponse;
19937
20104
  /**
19938
- * Validation Error
20105
+ * Validation error
19939
20106
  */
19940
- 422: HttpValidationError;
20107
+ 422: ErrorResponse;
19941
20108
  /**
19942
20109
  * Rate limit exceeded
19943
20110
  */
@@ -19979,37 +20146,37 @@ export type OpCreateInformationBlockData = {
19979
20146
 
19980
20147
  export type OpCreateInformationBlockErrors = {
19981
20148
  /**
19982
- * Invalid request payload
20149
+ * Invalid request
19983
20150
  */
19984
- 400: OperationError;
20151
+ 400: ErrorResponse;
19985
20152
  /**
19986
- * Unauthorized — missing or invalid credentials
20153
+ * Authentication required
19987
20154
  */
19988
- 401: unknown;
20155
+ 401: ErrorResponse;
19989
20156
  /**
19990
- * Forbidden — caller cannot access this graph
20157
+ * Access denied
19991
20158
  */
19992
- 403: unknown;
20159
+ 403: ErrorResponse;
19993
20160
  /**
19994
- * Resource not found (graph, ledger, report, etc.)
20161
+ * Resource not found
19995
20162
  */
19996
- 404: OperationError;
20163
+ 404: ErrorResponse;
19997
20164
  /**
19998
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20165
+ * Idempotency-Key conflict — key reused with different body
19999
20166
  */
20000
- 409: OperationError;
20167
+ 409: ErrorResponse;
20001
20168
  /**
20002
- * Validation Error
20169
+ * Validation error
20003
20170
  */
20004
- 422: HttpValidationError;
20171
+ 422: ErrorResponse;
20005
20172
  /**
20006
20173
  * Rate limit exceeded
20007
20174
  */
20008
- 429: unknown;
20175
+ 429: ErrorResponse;
20009
20176
  /**
20010
- * Internal error
20177
+ * Internal server error
20011
20178
  */
20012
- 500: unknown;
20179
+ 500: ErrorResponse;
20013
20180
  };
20014
20181
 
20015
20182
  export type OpCreateInformationBlockError = OpCreateInformationBlockErrors[keyof OpCreateInformationBlockErrors];
@@ -20043,37 +20210,37 @@ export type OpUpdateInformationBlockData = {
20043
20210
 
20044
20211
  export type OpUpdateInformationBlockErrors = {
20045
20212
  /**
20046
- * Invalid request payload
20213
+ * Invalid request
20047
20214
  */
20048
- 400: OperationError;
20215
+ 400: ErrorResponse;
20049
20216
  /**
20050
- * Unauthorized — missing or invalid credentials
20217
+ * Authentication required
20051
20218
  */
20052
- 401: unknown;
20219
+ 401: ErrorResponse;
20053
20220
  /**
20054
- * Forbidden — caller cannot access this graph
20221
+ * Access denied
20055
20222
  */
20056
- 403: unknown;
20223
+ 403: ErrorResponse;
20057
20224
  /**
20058
- * Resource not found (graph, ledger, report, etc.)
20225
+ * Resource not found
20059
20226
  */
20060
- 404: OperationError;
20227
+ 404: ErrorResponse;
20061
20228
  /**
20062
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20229
+ * Idempotency-Key conflict — key reused with different body
20063
20230
  */
20064
- 409: OperationError;
20231
+ 409: ErrorResponse;
20065
20232
  /**
20066
- * Validation Error
20233
+ * Validation error
20067
20234
  */
20068
- 422: HttpValidationError;
20235
+ 422: ErrorResponse;
20069
20236
  /**
20070
20237
  * Rate limit exceeded
20071
20238
  */
20072
- 429: unknown;
20239
+ 429: ErrorResponse;
20073
20240
  /**
20074
- * Internal error
20241
+ * Internal server error
20075
20242
  */
20076
- 500: unknown;
20243
+ 500: ErrorResponse;
20077
20244
  };
20078
20245
 
20079
20246
  export type OpUpdateInformationBlockError = OpUpdateInformationBlockErrors[keyof OpUpdateInformationBlockErrors];
@@ -20107,37 +20274,37 @@ export type OpDeleteInformationBlockData = {
20107
20274
 
20108
20275
  export type OpDeleteInformationBlockErrors = {
20109
20276
  /**
20110
- * Invalid request payload
20277
+ * Invalid request
20111
20278
  */
20112
- 400: OperationError;
20279
+ 400: ErrorResponse;
20113
20280
  /**
20114
- * Unauthorized — missing or invalid credentials
20281
+ * Authentication required
20115
20282
  */
20116
- 401: unknown;
20283
+ 401: ErrorResponse;
20117
20284
  /**
20118
- * Forbidden — caller cannot access this graph
20285
+ * Access denied
20119
20286
  */
20120
- 403: unknown;
20287
+ 403: ErrorResponse;
20121
20288
  /**
20122
- * Resource not found (graph, ledger, report, etc.)
20289
+ * Resource not found
20123
20290
  */
20124
- 404: OperationError;
20291
+ 404: ErrorResponse;
20125
20292
  /**
20126
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20293
+ * Idempotency-Key conflict — key reused with different body
20127
20294
  */
20128
- 409: OperationError;
20295
+ 409: ErrorResponse;
20129
20296
  /**
20130
- * Validation Error
20297
+ * Validation error
20131
20298
  */
20132
- 422: HttpValidationError;
20299
+ 422: ErrorResponse;
20133
20300
  /**
20134
20301
  * Rate limit exceeded
20135
20302
  */
20136
- 429: unknown;
20303
+ 429: ErrorResponse;
20137
20304
  /**
20138
- * Internal error
20305
+ * Internal server error
20139
20306
  */
20140
- 500: unknown;
20307
+ 500: ErrorResponse;
20141
20308
  };
20142
20309
 
20143
20310
  export type OpDeleteInformationBlockError = OpDeleteInformationBlockErrors[keyof OpDeleteInformationBlockErrors];
@@ -20171,37 +20338,37 @@ export type OpEvaluateRulesData = {
20171
20338
 
20172
20339
  export type OpEvaluateRulesErrors = {
20173
20340
  /**
20174
- * Invalid request payload
20341
+ * Invalid request
20175
20342
  */
20176
- 400: OperationError;
20343
+ 400: ErrorResponse;
20177
20344
  /**
20178
- * Unauthorized — missing or invalid credentials
20345
+ * Authentication required
20179
20346
  */
20180
- 401: unknown;
20347
+ 401: ErrorResponse;
20181
20348
  /**
20182
- * Forbidden — caller cannot access this graph
20349
+ * Access denied
20183
20350
  */
20184
- 403: unknown;
20351
+ 403: ErrorResponse;
20185
20352
  /**
20186
- * Resource not found (graph, ledger, report, etc.)
20353
+ * Resource not found
20187
20354
  */
20188
- 404: OperationError;
20355
+ 404: ErrorResponse;
20189
20356
  /**
20190
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20357
+ * Idempotency-Key conflict — key reused with different body
20191
20358
  */
20192
- 409: OperationError;
20359
+ 409: ErrorResponse;
20193
20360
  /**
20194
- * Validation Error
20361
+ * Validation error
20195
20362
  */
20196
- 422: HttpValidationError;
20363
+ 422: ErrorResponse;
20197
20364
  /**
20198
20365
  * Rate limit exceeded
20199
20366
  */
20200
- 429: unknown;
20367
+ 429: ErrorResponse;
20201
20368
  /**
20202
- * Internal error
20369
+ * Internal server error
20203
20370
  */
20204
- 500: unknown;
20371
+ 500: ErrorResponse;
20205
20372
  };
20206
20373
 
20207
20374
  export type OpEvaluateRulesError = OpEvaluateRulesErrors[keyof OpEvaluateRulesErrors];
@@ -20235,37 +20402,37 @@ export type OpCreateAgentData = {
20235
20402
 
20236
20403
  export type OpCreateAgentErrors = {
20237
20404
  /**
20238
- * Invalid request payload
20405
+ * Invalid request
20239
20406
  */
20240
- 400: OperationError;
20407
+ 400: ErrorResponse;
20241
20408
  /**
20242
- * Unauthorized — missing or invalid credentials
20409
+ * Authentication required
20243
20410
  */
20244
- 401: unknown;
20411
+ 401: ErrorResponse;
20245
20412
  /**
20246
- * Forbidden — caller cannot access this graph
20413
+ * Access denied
20247
20414
  */
20248
- 403: unknown;
20415
+ 403: ErrorResponse;
20249
20416
  /**
20250
- * Resource not found (graph, ledger, report, etc.)
20417
+ * Resource not found
20251
20418
  */
20252
- 404: OperationError;
20419
+ 404: ErrorResponse;
20253
20420
  /**
20254
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20421
+ * Idempotency-Key conflict — key reused with different body
20255
20422
  */
20256
- 409: OperationError;
20423
+ 409: ErrorResponse;
20257
20424
  /**
20258
- * Validation Error
20425
+ * Validation error
20259
20426
  */
20260
- 422: HttpValidationError;
20427
+ 422: ErrorResponse;
20261
20428
  /**
20262
20429
  * Rate limit exceeded
20263
20430
  */
20264
- 429: unknown;
20431
+ 429: ErrorResponse;
20265
20432
  /**
20266
- * Internal error
20433
+ * Internal server error
20267
20434
  */
20268
- 500: unknown;
20435
+ 500: ErrorResponse;
20269
20436
  };
20270
20437
 
20271
20438
  export type OpCreateAgentError = OpCreateAgentErrors[keyof OpCreateAgentErrors];
@@ -20299,37 +20466,37 @@ export type OpUpdateAgentData = {
20299
20466
 
20300
20467
  export type OpUpdateAgentErrors = {
20301
20468
  /**
20302
- * Invalid request payload
20469
+ * Invalid request
20303
20470
  */
20304
- 400: OperationError;
20471
+ 400: ErrorResponse;
20305
20472
  /**
20306
- * Unauthorized — missing or invalid credentials
20473
+ * Authentication required
20307
20474
  */
20308
- 401: unknown;
20475
+ 401: ErrorResponse;
20309
20476
  /**
20310
- * Forbidden — caller cannot access this graph
20477
+ * Access denied
20311
20478
  */
20312
- 403: unknown;
20479
+ 403: ErrorResponse;
20313
20480
  /**
20314
- * Resource not found (graph, ledger, report, etc.)
20481
+ * Resource not found
20315
20482
  */
20316
- 404: OperationError;
20483
+ 404: ErrorResponse;
20317
20484
  /**
20318
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20485
+ * Idempotency-Key conflict — key reused with different body
20319
20486
  */
20320
- 409: OperationError;
20487
+ 409: ErrorResponse;
20321
20488
  /**
20322
- * Validation Error
20489
+ * Validation error
20323
20490
  */
20324
- 422: HttpValidationError;
20491
+ 422: ErrorResponse;
20325
20492
  /**
20326
20493
  * Rate limit exceeded
20327
20494
  */
20328
- 429: unknown;
20495
+ 429: ErrorResponse;
20329
20496
  /**
20330
- * Internal error
20497
+ * Internal server error
20331
20498
  */
20332
- 500: unknown;
20499
+ 500: ErrorResponse;
20333
20500
  };
20334
20501
 
20335
20502
  export type OpUpdateAgentError = OpUpdateAgentErrors[keyof OpUpdateAgentErrors];
@@ -20363,37 +20530,37 @@ export type OpCreateEventBlockData = {
20363
20530
 
20364
20531
  export type OpCreateEventBlockErrors = {
20365
20532
  /**
20366
- * Invalid request payload
20533
+ * Invalid request
20367
20534
  */
20368
- 400: OperationError;
20535
+ 400: ErrorResponse;
20369
20536
  /**
20370
- * Unauthorized — missing or invalid credentials
20537
+ * Authentication required
20371
20538
  */
20372
- 401: unknown;
20539
+ 401: ErrorResponse;
20373
20540
  /**
20374
- * Forbidden — caller cannot access this graph
20541
+ * Access denied
20375
20542
  */
20376
- 403: unknown;
20543
+ 403: ErrorResponse;
20377
20544
  /**
20378
- * Resource not found (graph, ledger, report, etc.)
20545
+ * Resource not found
20379
20546
  */
20380
- 404: OperationError;
20547
+ 404: ErrorResponse;
20381
20548
  /**
20382
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20549
+ * Idempotency-Key conflict — key reused with different body
20383
20550
  */
20384
- 409: OperationError;
20551
+ 409: ErrorResponse;
20385
20552
  /**
20386
- * Validation Error
20553
+ * Validation error
20387
20554
  */
20388
- 422: HttpValidationError;
20555
+ 422: ErrorResponse;
20389
20556
  /**
20390
20557
  * Rate limit exceeded
20391
20558
  */
20392
- 429: unknown;
20559
+ 429: ErrorResponse;
20393
20560
  /**
20394
- * Internal error
20561
+ * Internal server error
20395
20562
  */
20396
- 500: unknown;
20563
+ 500: ErrorResponse;
20397
20564
  };
20398
20565
 
20399
20566
  export type OpCreateEventBlockError = OpCreateEventBlockErrors[keyof OpCreateEventBlockErrors];
@@ -20427,37 +20594,37 @@ export type OpUpdateEventBlockData = {
20427
20594
 
20428
20595
  export type OpUpdateEventBlockErrors = {
20429
20596
  /**
20430
- * Invalid request payload
20597
+ * Invalid request
20431
20598
  */
20432
- 400: OperationError;
20599
+ 400: ErrorResponse;
20433
20600
  /**
20434
- * Unauthorized — missing or invalid credentials
20601
+ * Authentication required
20435
20602
  */
20436
- 401: unknown;
20603
+ 401: ErrorResponse;
20437
20604
  /**
20438
- * Forbidden — caller cannot access this graph
20605
+ * Access denied
20439
20606
  */
20440
- 403: unknown;
20607
+ 403: ErrorResponse;
20441
20608
  /**
20442
- * Resource not found (graph, ledger, report, etc.)
20609
+ * Resource not found
20443
20610
  */
20444
- 404: OperationError;
20611
+ 404: ErrorResponse;
20445
20612
  /**
20446
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20613
+ * Idempotency-Key conflict — key reused with different body
20447
20614
  */
20448
- 409: OperationError;
20615
+ 409: ErrorResponse;
20449
20616
  /**
20450
- * Validation Error
20617
+ * Validation error
20451
20618
  */
20452
- 422: HttpValidationError;
20619
+ 422: ErrorResponse;
20453
20620
  /**
20454
20621
  * Rate limit exceeded
20455
20622
  */
20456
- 429: unknown;
20623
+ 429: ErrorResponse;
20457
20624
  /**
20458
- * Internal error
20625
+ * Internal server error
20459
20626
  */
20460
- 500: unknown;
20627
+ 500: ErrorResponse;
20461
20628
  };
20462
20629
 
20463
20630
  export type OpUpdateEventBlockError = OpUpdateEventBlockErrors[keyof OpUpdateEventBlockErrors];
@@ -20491,37 +20658,37 @@ export type OpCreateEventHandlerData = {
20491
20658
 
20492
20659
  export type OpCreateEventHandlerErrors = {
20493
20660
  /**
20494
- * Invalid request payload
20661
+ * Invalid request
20495
20662
  */
20496
- 400: OperationError;
20663
+ 400: ErrorResponse;
20497
20664
  /**
20498
- * Unauthorized — missing or invalid credentials
20665
+ * Authentication required
20499
20666
  */
20500
- 401: unknown;
20667
+ 401: ErrorResponse;
20501
20668
  /**
20502
- * Forbidden — caller cannot access this graph
20669
+ * Access denied
20503
20670
  */
20504
- 403: unknown;
20671
+ 403: ErrorResponse;
20505
20672
  /**
20506
- * Resource not found (graph, ledger, report, etc.)
20673
+ * Resource not found
20507
20674
  */
20508
- 404: OperationError;
20675
+ 404: ErrorResponse;
20509
20676
  /**
20510
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20677
+ * Idempotency-Key conflict — key reused with different body
20511
20678
  */
20512
- 409: OperationError;
20679
+ 409: ErrorResponse;
20513
20680
  /**
20514
- * Validation Error
20681
+ * Validation error
20515
20682
  */
20516
- 422: HttpValidationError;
20683
+ 422: ErrorResponse;
20517
20684
  /**
20518
20685
  * Rate limit exceeded
20519
20686
  */
20520
- 429: unknown;
20687
+ 429: ErrorResponse;
20521
20688
  /**
20522
- * Internal error
20689
+ * Internal server error
20523
20690
  */
20524
- 500: unknown;
20691
+ 500: ErrorResponse;
20525
20692
  };
20526
20693
 
20527
20694
  export type OpCreateEventHandlerError = OpCreateEventHandlerErrors[keyof OpCreateEventHandlerErrors];
@@ -20555,37 +20722,37 @@ export type OpUpdateEventHandlerData = {
20555
20722
 
20556
20723
  export type OpUpdateEventHandlerErrors = {
20557
20724
  /**
20558
- * Invalid request payload
20725
+ * Invalid request
20559
20726
  */
20560
- 400: OperationError;
20727
+ 400: ErrorResponse;
20561
20728
  /**
20562
- * Unauthorized — missing or invalid credentials
20729
+ * Authentication required
20563
20730
  */
20564
- 401: unknown;
20731
+ 401: ErrorResponse;
20565
20732
  /**
20566
- * Forbidden — caller cannot access this graph
20733
+ * Access denied
20567
20734
  */
20568
- 403: unknown;
20735
+ 403: ErrorResponse;
20569
20736
  /**
20570
- * Resource not found (graph, ledger, report, etc.)
20737
+ * Resource not found
20571
20738
  */
20572
- 404: OperationError;
20739
+ 404: ErrorResponse;
20573
20740
  /**
20574
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20741
+ * Idempotency-Key conflict — key reused with different body
20575
20742
  */
20576
- 409: OperationError;
20743
+ 409: ErrorResponse;
20577
20744
  /**
20578
- * Validation Error
20745
+ * Validation error
20579
20746
  */
20580
- 422: HttpValidationError;
20747
+ 422: ErrorResponse;
20581
20748
  /**
20582
20749
  * Rate limit exceeded
20583
20750
  */
20584
- 429: unknown;
20751
+ 429: ErrorResponse;
20585
20752
  /**
20586
- * Internal error
20753
+ * Internal server error
20587
20754
  */
20588
- 500: unknown;
20755
+ 500: ErrorResponse;
20589
20756
  };
20590
20757
 
20591
20758
  export type OpUpdateEventHandlerError = OpUpdateEventHandlerErrors[keyof OpUpdateEventHandlerErrors];
@@ -20619,37 +20786,37 @@ export type OpPreviewEventBlockData = {
20619
20786
 
20620
20787
  export type OpPreviewEventBlockErrors = {
20621
20788
  /**
20622
- * Invalid request payload
20789
+ * Invalid request
20623
20790
  */
20624
- 400: OperationError;
20791
+ 400: ErrorResponse;
20625
20792
  /**
20626
- * Unauthorized — missing or invalid credentials
20793
+ * Authentication required
20627
20794
  */
20628
- 401: unknown;
20795
+ 401: ErrorResponse;
20629
20796
  /**
20630
- * Forbidden — caller cannot access this graph
20797
+ * Access denied
20631
20798
  */
20632
- 403: unknown;
20799
+ 403: ErrorResponse;
20633
20800
  /**
20634
- * Resource not found (graph, ledger, report, etc.)
20801
+ * Resource not found
20635
20802
  */
20636
- 404: OperationError;
20803
+ 404: ErrorResponse;
20637
20804
  /**
20638
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20805
+ * Idempotency-Key conflict — key reused with different body
20639
20806
  */
20640
- 409: OperationError;
20807
+ 409: ErrorResponse;
20641
20808
  /**
20642
- * Validation Error
20809
+ * Validation error
20643
20810
  */
20644
- 422: HttpValidationError;
20811
+ 422: ErrorResponse;
20645
20812
  /**
20646
20813
  * Rate limit exceeded
20647
20814
  */
20648
- 429: unknown;
20815
+ 429: ErrorResponse;
20649
20816
  /**
20650
- * Internal error
20817
+ * Internal server error
20651
20818
  */
20652
- 500: unknown;
20819
+ 500: ErrorResponse;
20653
20820
  };
20654
20821
 
20655
20822
  export type OpPreviewEventBlockError = OpPreviewEventBlockErrors[keyof OpPreviewEventBlockErrors];
@@ -20683,37 +20850,37 @@ export type OpUpdateJournalEntryData = {
20683
20850
 
20684
20851
  export type OpUpdateJournalEntryErrors = {
20685
20852
  /**
20686
- * Invalid request payload
20853
+ * Invalid request
20687
20854
  */
20688
- 400: OperationError;
20855
+ 400: ErrorResponse;
20689
20856
  /**
20690
- * Unauthorized — missing or invalid credentials
20857
+ * Authentication required
20691
20858
  */
20692
- 401: unknown;
20859
+ 401: ErrorResponse;
20693
20860
  /**
20694
- * Forbidden — caller cannot access this graph
20861
+ * Access denied
20695
20862
  */
20696
- 403: unknown;
20863
+ 403: ErrorResponse;
20697
20864
  /**
20698
- * Resource not found (graph, ledger, report, etc.)
20865
+ * Resource not found
20699
20866
  */
20700
- 404: OperationError;
20867
+ 404: ErrorResponse;
20701
20868
  /**
20702
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20869
+ * Idempotency-Key conflict — key reused with different body
20703
20870
  */
20704
- 409: OperationError;
20871
+ 409: ErrorResponse;
20705
20872
  /**
20706
- * Validation Error
20873
+ * Validation error
20707
20874
  */
20708
- 422: HttpValidationError;
20875
+ 422: ErrorResponse;
20709
20876
  /**
20710
20877
  * Rate limit exceeded
20711
20878
  */
20712
- 429: unknown;
20879
+ 429: ErrorResponse;
20713
20880
  /**
20714
- * Internal error
20881
+ * Internal server error
20715
20882
  */
20716
- 500: unknown;
20883
+ 500: ErrorResponse;
20717
20884
  };
20718
20885
 
20719
20886
  export type OpUpdateJournalEntryError = OpUpdateJournalEntryErrors[keyof OpUpdateJournalEntryErrors];
@@ -20747,37 +20914,37 @@ export type OpDeleteJournalEntryData = {
20747
20914
 
20748
20915
  export type OpDeleteJournalEntryErrors = {
20749
20916
  /**
20750
- * Invalid request payload
20917
+ * Invalid request
20751
20918
  */
20752
- 400: OperationError;
20919
+ 400: ErrorResponse;
20753
20920
  /**
20754
- * Unauthorized — missing or invalid credentials
20921
+ * Authentication required
20755
20922
  */
20756
- 401: unknown;
20923
+ 401: ErrorResponse;
20757
20924
  /**
20758
- * Forbidden — caller cannot access this graph
20925
+ * Access denied
20759
20926
  */
20760
- 403: unknown;
20927
+ 403: ErrorResponse;
20761
20928
  /**
20762
- * Resource not found (graph, ledger, report, etc.)
20929
+ * Resource not found
20763
20930
  */
20764
- 404: OperationError;
20931
+ 404: ErrorResponse;
20765
20932
  /**
20766
- * Idempotency-Key reused with a different request body, or other operation-level conflict
20933
+ * Idempotency-Key conflict — key reused with different body
20767
20934
  */
20768
- 409: OperationError;
20935
+ 409: ErrorResponse;
20769
20936
  /**
20770
- * Validation Error
20937
+ * Validation error
20771
20938
  */
20772
- 422: HttpValidationError;
20939
+ 422: ErrorResponse;
20773
20940
  /**
20774
20941
  * Rate limit exceeded
20775
20942
  */
20776
- 429: unknown;
20943
+ 429: ErrorResponse;
20777
20944
  /**
20778
- * Internal error
20945
+ * Internal server error
20779
20946
  */
20780
- 500: unknown;
20947
+ 500: ErrorResponse;
20781
20948
  };
20782
20949
 
20783
20950
  export type OpDeleteJournalEntryError = OpDeleteJournalEntryErrors[keyof OpDeleteJournalEntryErrors];
@@ -20831,9 +20998,9 @@ export type OpSetCloseTargetErrors = {
20831
20998
  */
20832
20999
  409: ErrorResponse;
20833
21000
  /**
20834
- * Validation Error
21001
+ * Validation error
20835
21002
  */
20836
- 422: HttpValidationError;
21003
+ 422: ErrorResponse;
20837
21004
  /**
20838
21005
  * Rate limit exceeded
20839
21006
  */
@@ -20895,9 +21062,9 @@ export type OpClosePeriodErrors = {
20895
21062
  */
20896
21063
  409: ErrorResponse;
20897
21064
  /**
20898
- * Validation Error
21065
+ * Validation error
20899
21066
  */
20900
- 422: HttpValidationError;
21067
+ 422: ErrorResponse;
20901
21068
  /**
20902
21069
  * Rate limit exceeded
20903
21070
  */
@@ -20959,9 +21126,9 @@ export type OpReopenPeriodErrors = {
20959
21126
  */
20960
21127
  409: ErrorResponse;
20961
21128
  /**
20962
- * Validation Error
21129
+ * Validation error
20963
21130
  */
20964
- 422: HttpValidationError;
21131
+ 422: ErrorResponse;
20965
21132
  /**
20966
21133
  * Rate limit exceeded
20967
21134
  */
@@ -21023,9 +21190,9 @@ export type OpCreateReportErrors = {
21023
21190
  */
21024
21191
  409: ErrorResponse;
21025
21192
  /**
21026
- * Validation Error
21193
+ * Validation error
21027
21194
  */
21028
- 422: HttpValidationError;
21195
+ 422: ErrorResponse;
21029
21196
  /**
21030
21197
  * Rate limit exceeded
21031
21198
  */
@@ -21087,9 +21254,9 @@ export type OpRegenerateReportErrors = {
21087
21254
  */
21088
21255
  409: ErrorResponse;
21089
21256
  /**
21090
- * Validation Error
21257
+ * Validation error
21091
21258
  */
21092
- 422: HttpValidationError;
21259
+ 422: ErrorResponse;
21093
21260
  /**
21094
21261
  * Rate limit exceeded
21095
21262
  */
@@ -21151,9 +21318,9 @@ export type OpDeleteReportErrors = {
21151
21318
  */
21152
21319
  409: ErrorResponse;
21153
21320
  /**
21154
- * Validation Error
21321
+ * Validation error
21155
21322
  */
21156
- 422: HttpValidationError;
21323
+ 422: ErrorResponse;
21157
21324
  /**
21158
21325
  * Rate limit exceeded
21159
21326
  */
@@ -21215,9 +21382,9 @@ export type OpShareReportErrors = {
21215
21382
  */
21216
21383
  409: ErrorResponse;
21217
21384
  /**
21218
- * Validation Error
21385
+ * Validation error
21219
21386
  */
21220
- 422: HttpValidationError;
21387
+ 422: ErrorResponse;
21221
21388
  /**
21222
21389
  * Rate limit exceeded
21223
21390
  */
@@ -21279,9 +21446,9 @@ export type OpFileReportErrors = {
21279
21446
  */
21280
21447
  409: ErrorResponse;
21281
21448
  /**
21282
- * Validation Error
21449
+ * Validation error
21283
21450
  */
21284
- 422: HttpValidationError;
21451
+ 422: ErrorResponse;
21285
21452
  /**
21286
21453
  * Rate limit exceeded
21287
21454
  */
@@ -21343,9 +21510,9 @@ export type OpTransitionFilingStatusErrors = {
21343
21510
  */
21344
21511
  409: ErrorResponse;
21345
21512
  /**
21346
- * Validation Error
21513
+ * Validation error
21347
21514
  */
21348
- 422: HttpValidationError;
21515
+ 422: ErrorResponse;
21349
21516
  /**
21350
21517
  * Rate limit exceeded
21351
21518
  */
@@ -21407,9 +21574,9 @@ export type OpCreatePublishListErrors = {
21407
21574
  */
21408
21575
  409: ErrorResponse;
21409
21576
  /**
21410
- * Validation Error
21577
+ * Validation error
21411
21578
  */
21412
- 422: HttpValidationError;
21579
+ 422: ErrorResponse;
21413
21580
  /**
21414
21581
  * Rate limit exceeded
21415
21582
  */
@@ -21471,9 +21638,9 @@ export type OpUpdatePublishListErrors = {
21471
21638
  */
21472
21639
  409: ErrorResponse;
21473
21640
  /**
21474
- * Validation Error
21641
+ * Validation error
21475
21642
  */
21476
- 422: HttpValidationError;
21643
+ 422: ErrorResponse;
21477
21644
  /**
21478
21645
  * Rate limit exceeded
21479
21646
  */
@@ -21535,9 +21702,9 @@ export type OpDeletePublishListErrors = {
21535
21702
  */
21536
21703
  409: ErrorResponse;
21537
21704
  /**
21538
- * Validation Error
21705
+ * Validation error
21539
21706
  */
21540
- 422: HttpValidationError;
21707
+ 422: ErrorResponse;
21541
21708
  /**
21542
21709
  * Rate limit exceeded
21543
21710
  */
@@ -21599,9 +21766,9 @@ export type OpAddPublishListMembersErrors = {
21599
21766
  */
21600
21767
  409: ErrorResponse;
21601
21768
  /**
21602
- * Validation Error
21769
+ * Validation error
21603
21770
  */
21604
- 422: HttpValidationError;
21771
+ 422: ErrorResponse;
21605
21772
  /**
21606
21773
  * Rate limit exceeded
21607
21774
  */
@@ -21663,9 +21830,9 @@ export type OpRemovePublishListMemberErrors = {
21663
21830
  */
21664
21831
  409: ErrorResponse;
21665
21832
  /**
21666
- * Validation Error
21833
+ * Validation error
21667
21834
  */
21668
- 422: HttpValidationError;
21835
+ 422: ErrorResponse;
21669
21836
  /**
21670
21837
  * Rate limit exceeded
21671
21838
  */
@@ -21727,9 +21894,9 @@ export type OpLiveFinancialStatementErrors = {
21727
21894
  */
21728
21895
  409: ErrorResponse;
21729
21896
  /**
21730
- * Validation Error
21897
+ * Validation error
21731
21898
  */
21732
- 422: HttpValidationError;
21899
+ 422: ErrorResponse;
21733
21900
  /**
21734
21901
  * Rate limit exceeded
21735
21902
  */
@@ -21791,9 +21958,9 @@ export type OpBuildFactGridErrors = {
21791
21958
  */
21792
21959
  409: ErrorResponse;
21793
21960
  /**
21794
- * Validation Error
21961
+ * Validation error
21795
21962
  */
21796
- 422: HttpValidationError;
21963
+ 422: ErrorResponse;
21797
21964
  /**
21798
21965
  * Rate limit exceeded
21799
21966
  */
@@ -21855,9 +22022,9 @@ export type OpFinancialStatementAnalysisErrors = {
21855
22022
  */
21856
22023
  409: ErrorResponse;
21857
22024
  /**
21858
- * Validation Error
22025
+ * Validation error
21859
22026
  */
21860
- 422: HttpValidationError;
22027
+ 422: ErrorResponse;
21861
22028
  /**
21862
22029
  * Rate limit exceeded
21863
22030
  */
@@ -21899,37 +22066,37 @@ export type OpCreatePortfolioBlockData = {
21899
22066
 
21900
22067
  export type OpCreatePortfolioBlockErrors = {
21901
22068
  /**
21902
- * Invalid request payload
22069
+ * Invalid request
21903
22070
  */
21904
- 400: OperationError;
22071
+ 400: ErrorResponse;
21905
22072
  /**
21906
- * Unauthorized — missing or invalid credentials
22073
+ * Authentication required
21907
22074
  */
21908
- 401: unknown;
22075
+ 401: ErrorResponse;
21909
22076
  /**
21910
- * Forbidden — caller cannot access this graph
22077
+ * Access denied
21911
22078
  */
21912
- 403: unknown;
22079
+ 403: ErrorResponse;
21913
22080
  /**
21914
- * Resource not found (graph, ledger, report, etc.)
22081
+ * Resource not found
21915
22082
  */
21916
- 404: OperationError;
22083
+ 404: ErrorResponse;
21917
22084
  /**
21918
- * Idempotency-Key reused with a different request body, or other operation-level conflict
22085
+ * Idempotency-Key conflict — key reused with different body
21919
22086
  */
21920
- 409: OperationError;
22087
+ 409: ErrorResponse;
21921
22088
  /**
21922
- * Validation Error
22089
+ * Validation error
21923
22090
  */
21924
- 422: HttpValidationError;
22091
+ 422: ErrorResponse;
21925
22092
  /**
21926
22093
  * Rate limit exceeded
21927
22094
  */
21928
- 429: unknown;
22095
+ 429: ErrorResponse;
21929
22096
  /**
21930
- * Internal error
22097
+ * Internal server error
21931
22098
  */
21932
- 500: unknown;
22099
+ 500: ErrorResponse;
21933
22100
  };
21934
22101
 
21935
22102
  export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
@@ -21963,37 +22130,37 @@ export type OpUpdatePortfolioBlockData = {
21963
22130
 
21964
22131
  export type OpUpdatePortfolioBlockErrors = {
21965
22132
  /**
21966
- * Invalid request payload
22133
+ * Invalid request
21967
22134
  */
21968
- 400: OperationError;
22135
+ 400: ErrorResponse;
21969
22136
  /**
21970
- * Unauthorized — missing or invalid credentials
22137
+ * Authentication required
21971
22138
  */
21972
- 401: unknown;
22139
+ 401: ErrorResponse;
21973
22140
  /**
21974
- * Forbidden — caller cannot access this graph
22141
+ * Access denied
21975
22142
  */
21976
- 403: unknown;
22143
+ 403: ErrorResponse;
21977
22144
  /**
21978
- * Resource not found (graph, ledger, report, etc.)
22145
+ * Resource not found
21979
22146
  */
21980
- 404: OperationError;
22147
+ 404: ErrorResponse;
21981
22148
  /**
21982
- * Idempotency-Key reused with a different request body, or other operation-level conflict
22149
+ * Idempotency-Key conflict — key reused with different body
21983
22150
  */
21984
- 409: OperationError;
22151
+ 409: ErrorResponse;
21985
22152
  /**
21986
- * Validation Error
22153
+ * Validation error
21987
22154
  */
21988
- 422: HttpValidationError;
22155
+ 422: ErrorResponse;
21989
22156
  /**
21990
22157
  * Rate limit exceeded
21991
22158
  */
21992
- 429: unknown;
22159
+ 429: ErrorResponse;
21993
22160
  /**
21994
- * Internal error
22161
+ * Internal server error
21995
22162
  */
21996
- 500: unknown;
22163
+ 500: ErrorResponse;
21997
22164
  };
21998
22165
 
21999
22166
  export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
@@ -22027,37 +22194,37 @@ export type OpDeletePortfolioBlockData = {
22027
22194
 
22028
22195
  export type OpDeletePortfolioBlockErrors = {
22029
22196
  /**
22030
- * Invalid request payload
22197
+ * Invalid request
22031
22198
  */
22032
- 400: OperationError;
22199
+ 400: ErrorResponse;
22033
22200
  /**
22034
- * Unauthorized — missing or invalid credentials
22201
+ * Authentication required
22035
22202
  */
22036
- 401: unknown;
22203
+ 401: ErrorResponse;
22037
22204
  /**
22038
- * Forbidden — caller cannot access this graph
22205
+ * Access denied
22039
22206
  */
22040
- 403: unknown;
22207
+ 403: ErrorResponse;
22041
22208
  /**
22042
- * Resource not found (graph, ledger, report, etc.)
22209
+ * Resource not found
22043
22210
  */
22044
- 404: OperationError;
22211
+ 404: ErrorResponse;
22045
22212
  /**
22046
- * Idempotency-Key reused with a different request body, or other operation-level conflict
22213
+ * Idempotency-Key conflict — key reused with different body
22047
22214
  */
22048
- 409: OperationError;
22215
+ 409: ErrorResponse;
22049
22216
  /**
22050
- * Validation Error
22217
+ * Validation error
22051
22218
  */
22052
- 422: HttpValidationError;
22219
+ 422: ErrorResponse;
22053
22220
  /**
22054
22221
  * Rate limit exceeded
22055
22222
  */
22056
- 429: unknown;
22223
+ 429: ErrorResponse;
22057
22224
  /**
22058
- * Internal error
22225
+ * Internal server error
22059
22226
  */
22060
- 500: unknown;
22227
+ 500: ErrorResponse;
22061
22228
  };
22062
22229
 
22063
22230
  export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
@@ -22091,37 +22258,37 @@ export type OpCreateSecurityData = {
22091
22258
 
22092
22259
  export type OpCreateSecurityErrors = {
22093
22260
  /**
22094
- * Invalid request payload
22261
+ * Invalid request
22095
22262
  */
22096
- 400: OperationError;
22263
+ 400: ErrorResponse;
22097
22264
  /**
22098
- * Unauthorized — missing or invalid credentials
22265
+ * Authentication required
22099
22266
  */
22100
- 401: unknown;
22267
+ 401: ErrorResponse;
22101
22268
  /**
22102
- * Forbidden — caller cannot access this graph
22269
+ * Access denied
22103
22270
  */
22104
- 403: unknown;
22271
+ 403: ErrorResponse;
22105
22272
  /**
22106
- * Resource not found (graph, ledger, report, etc.)
22273
+ * Resource not found
22107
22274
  */
22108
- 404: OperationError;
22275
+ 404: ErrorResponse;
22109
22276
  /**
22110
- * Idempotency-Key reused with a different request body, or other operation-level conflict
22277
+ * Idempotency-Key conflict — key reused with different body
22111
22278
  */
22112
- 409: OperationError;
22279
+ 409: ErrorResponse;
22113
22280
  /**
22114
- * Validation Error
22281
+ * Validation error
22115
22282
  */
22116
- 422: HttpValidationError;
22283
+ 422: ErrorResponse;
22117
22284
  /**
22118
22285
  * Rate limit exceeded
22119
22286
  */
22120
- 429: unknown;
22287
+ 429: ErrorResponse;
22121
22288
  /**
22122
- * Internal error
22289
+ * Internal server error
22123
22290
  */
22124
- 500: unknown;
22291
+ 500: ErrorResponse;
22125
22292
  };
22126
22293
 
22127
22294
  export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
@@ -22155,37 +22322,37 @@ export type OpUpdateSecurityData = {
22155
22322
 
22156
22323
  export type OpUpdateSecurityErrors = {
22157
22324
  /**
22158
- * Invalid request payload
22325
+ * Invalid request
22159
22326
  */
22160
- 400: OperationError;
22327
+ 400: ErrorResponse;
22161
22328
  /**
22162
- * Unauthorized — missing or invalid credentials
22329
+ * Authentication required
22163
22330
  */
22164
- 401: unknown;
22331
+ 401: ErrorResponse;
22165
22332
  /**
22166
- * Forbidden — caller cannot access this graph
22333
+ * Access denied
22167
22334
  */
22168
- 403: unknown;
22335
+ 403: ErrorResponse;
22169
22336
  /**
22170
- * Resource not found (graph, ledger, report, etc.)
22337
+ * Resource not found
22171
22338
  */
22172
- 404: OperationError;
22339
+ 404: ErrorResponse;
22173
22340
  /**
22174
- * Idempotency-Key reused with a different request body, or other operation-level conflict
22341
+ * Idempotency-Key conflict — key reused with different body
22175
22342
  */
22176
- 409: OperationError;
22343
+ 409: ErrorResponse;
22177
22344
  /**
22178
- * Validation Error
22345
+ * Validation error
22179
22346
  */
22180
- 422: HttpValidationError;
22347
+ 422: ErrorResponse;
22181
22348
  /**
22182
22349
  * Rate limit exceeded
22183
22350
  */
22184
- 429: unknown;
22351
+ 429: ErrorResponse;
22185
22352
  /**
22186
- * Internal error
22353
+ * Internal server error
22187
22354
  */
22188
- 500: unknown;
22355
+ 500: ErrorResponse;
22189
22356
  };
22190
22357
 
22191
22358
  export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
@@ -22219,37 +22386,37 @@ export type OpDeleteSecurityData = {
22219
22386
 
22220
22387
  export type OpDeleteSecurityErrors = {
22221
22388
  /**
22222
- * Invalid request payload
22389
+ * Invalid request
22223
22390
  */
22224
- 400: OperationError;
22391
+ 400: ErrorResponse;
22225
22392
  /**
22226
- * Unauthorized — missing or invalid credentials
22393
+ * Authentication required
22227
22394
  */
22228
- 401: unknown;
22395
+ 401: ErrorResponse;
22229
22396
  /**
22230
- * Forbidden — caller cannot access this graph
22397
+ * Access denied
22231
22398
  */
22232
- 403: unknown;
22399
+ 403: ErrorResponse;
22233
22400
  /**
22234
- * Resource not found (graph, ledger, report, etc.)
22401
+ * Resource not found
22235
22402
  */
22236
- 404: OperationError;
22403
+ 404: ErrorResponse;
22237
22404
  /**
22238
- * Idempotency-Key reused with a different request body, or other operation-level conflict
22405
+ * Idempotency-Key conflict — key reused with different body
22239
22406
  */
22240
- 409: OperationError;
22407
+ 409: ErrorResponse;
22241
22408
  /**
22242
- * Validation Error
22409
+ * Validation error
22243
22410
  */
22244
- 422: HttpValidationError;
22411
+ 422: ErrorResponse;
22245
22412
  /**
22246
22413
  * Rate limit exceeded
22247
22414
  */
22248
- 429: unknown;
22415
+ 429: ErrorResponse;
22249
22416
  /**
22250
- * Internal error
22417
+ * Internal server error
22251
22418
  */
22252
- 500: unknown;
22419
+ 500: ErrorResponse;
22253
22420
  };
22254
22421
 
22255
22422
  export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];