@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/artifacts/LedgerClient.d.ts +14 -0
- package/artifacts/LedgerClient.js +3 -0
- package/artifacts/LedgerClient.ts +26 -0
- package/artifacts/graphql/generated/graphql.d.ts +28 -1
- package/artifacts/graphql/generated/graphql.ts +29 -1
- package/index.ts +2 -2
- package/package.json +1 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +4 -3
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +9 -1
- package/sdk/sdk.gen.js +20 -3
- package/sdk/sdk.gen.ts +18 -1
- package/sdk/types.gen.d.ts +592 -432
- package/sdk/types.gen.ts +599 -432
- package/sdk.gen.d.ts +9 -1
- package/sdk.gen.js +20 -3
- package/sdk.gen.ts +18 -1
- package/types.gen.d.ts +592 -432
- package/types.gen.ts +599 -432
package/types.gen.d.ts
CHANGED
|
@@ -1021,6 +1021,27 @@ export type CancelSubscriptionRequest = {
|
|
|
1021
1021
|
*/
|
|
1022
1022
|
confirm?: string | null;
|
|
1023
1023
|
};
|
|
1024
|
+
/**
|
|
1025
|
+
* ChangeReportingStyleOp
|
|
1026
|
+
*
|
|
1027
|
+
* Body for the change-reporting-style operation (Phase 2 of §3.2).
|
|
1028
|
+
*
|
|
1029
|
+
* Switches the graph to a different Reporting Style. The target Style
|
|
1030
|
+
* must be a library- or customer-authored Structure with
|
|
1031
|
+
* ``structure_type='reporting_style'`` and a complete composition
|
|
1032
|
+
* (one Network per required statement type — BS / IS / CF / SE). Filed
|
|
1033
|
+
* Reports are unaffected because each ``Report`` already pins its own
|
|
1034
|
+
* ``structure_id`` per FactSet at create-time; new reports use the new
|
|
1035
|
+
* Style. Idempotent on the same target id.
|
|
1036
|
+
*/
|
|
1037
|
+
export type ChangeReportingStyleOp = {
|
|
1038
|
+
/**
|
|
1039
|
+
* Reporting Style Id
|
|
1040
|
+
*
|
|
1041
|
+
* 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.
|
|
1042
|
+
*/
|
|
1043
|
+
reporting_style_id: string;
|
|
1044
|
+
};
|
|
1024
1045
|
/**
|
|
1025
1046
|
* ChangeTierOp
|
|
1026
1047
|
*
|
|
@@ -1211,6 +1232,20 @@ export type ClosePeriodResponse = {
|
|
|
1211
1232
|
* Whether close_target was auto-advanced because it was reached
|
|
1212
1233
|
*/
|
|
1213
1234
|
target_auto_advanced?: boolean;
|
|
1235
|
+
/**
|
|
1236
|
+
* Rule Summary
|
|
1237
|
+
*
|
|
1238
|
+
* 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).
|
|
1239
|
+
*/
|
|
1240
|
+
rule_summary?: {
|
|
1241
|
+
[key: string]: number;
|
|
1242
|
+
} | null;
|
|
1243
|
+
/**
|
|
1244
|
+
* Evaluated Structure Ids
|
|
1245
|
+
*
|
|
1246
|
+
* ids of schedule Structures whose rules were evaluated during the close. Pairs with rule_summary.
|
|
1247
|
+
*/
|
|
1248
|
+
evaluated_structure_ids?: Array<string>;
|
|
1214
1249
|
};
|
|
1215
1250
|
/**
|
|
1216
1251
|
* ConnectionLite
|
|
@@ -1949,7 +1984,7 @@ export type CreateGraphRequest = {
|
|
|
1949
1984
|
export type CreateInformationBlockRequest = ({
|
|
1950
1985
|
block_type: 'schedule';
|
|
1951
1986
|
} & CreateScheduleArm) | ({
|
|
1952
|
-
block_type: 'balance_sheet' | 'cash_flow_statement' | 'equity_statement' | 'income_statement' | 'metric';
|
|
1987
|
+
block_type: 'balance_sheet' | 'cash_flow_statement' | 'comprehensive_income' | 'equity_statement' | 'income_statement' | 'metric';
|
|
1953
1988
|
} & CreateLegacyArm);
|
|
1954
1989
|
/**
|
|
1955
1990
|
* CreateMappingAssociationOperation
|
|
@@ -2944,7 +2979,7 @@ export type DeleteGraphOp = {
|
|
|
2944
2979
|
export type DeleteInformationBlockRequest = ({
|
|
2945
2980
|
block_type: 'schedule';
|
|
2946
2981
|
} & DeleteScheduleArm) | ({
|
|
2947
|
-
block_type: 'balance_sheet' | 'cash_flow_statement' | 'equity_statement' | 'income_statement' | 'metric';
|
|
2982
|
+
block_type: 'balance_sheet' | 'cash_flow_statement' | 'comprehensive_income' | 'equity_statement' | 'income_statement' | 'metric';
|
|
2948
2983
|
} & DeleteLegacyArm);
|
|
2949
2984
|
/**
|
|
2950
2985
|
* DeleteInformationBlockResponse
|
|
@@ -4216,6 +4251,14 @@ export type FactLite = {
|
|
|
4216
4251
|
* Element Id
|
|
4217
4252
|
*/
|
|
4218
4253
|
element_id: string;
|
|
4254
|
+
/**
|
|
4255
|
+
* Element Name
|
|
4256
|
+
*/
|
|
4257
|
+
element_name?: string | null;
|
|
4258
|
+
/**
|
|
4259
|
+
* Element Qname
|
|
4260
|
+
*/
|
|
4261
|
+
element_qname?: string | null;
|
|
4219
4262
|
/**
|
|
4220
4263
|
* Value
|
|
4221
4264
|
*/
|
|
@@ -4562,9 +4605,33 @@ export type FiscalCalendarResponse = {
|
|
|
4562
4605
|
/**
|
|
4563
4606
|
* Blockers
|
|
4564
4607
|
*
|
|
4565
|
-
* Structured blocker codes when closeable_now is False: 'sequence_violation', 'period_incomplete', 'sync_stale', 'calendar_not_initialized', 'period_already_closed'
|
|
4608
|
+
* Structured blocker codes when closeable_now is False: 'sequence_violation', 'period_incomplete', 'sync_stale', 'calendar_not_initialized', 'period_already_closed', 'pending_obligations'
|
|
4566
4609
|
*/
|
|
4567
4610
|
blockers?: Array<string>;
|
|
4611
|
+
/**
|
|
4612
|
+
* Pending Obligation Count
|
|
4613
|
+
*
|
|
4614
|
+
* Number of pending schedule_entry_due events blocking close. Non-zero only when `pending_obligations` is in `blockers`.
|
|
4615
|
+
*/
|
|
4616
|
+
pending_obligation_count?: number;
|
|
4617
|
+
/**
|
|
4618
|
+
* Pending Obligation Sample
|
|
4619
|
+
*
|
|
4620
|
+
* 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.
|
|
4621
|
+
*/
|
|
4622
|
+
pending_obligation_sample?: Array<PendingObligationDetailResponse>;
|
|
4623
|
+
/**
|
|
4624
|
+
* Earliest Pending Period
|
|
4625
|
+
*
|
|
4626
|
+
* Earliest period (YYYY-MM) with a pending obligation blocking close. Null when no pending_obligations blocker is active.
|
|
4627
|
+
*/
|
|
4628
|
+
earliest_pending_period?: string | null;
|
|
4629
|
+
/**
|
|
4630
|
+
* Sync Stale Days
|
|
4631
|
+
*
|
|
4632
|
+
* 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).
|
|
4633
|
+
*/
|
|
4634
|
+
sync_stale_days?: number | null;
|
|
4568
4635
|
/**
|
|
4569
4636
|
* Last Close At
|
|
4570
4637
|
*/
|
|
@@ -5529,6 +5596,12 @@ export type InformationBlockEnvelope = {
|
|
|
5529
5596
|
* Display name of the source taxonomy.
|
|
5530
5597
|
*/
|
|
5531
5598
|
taxonomy_name?: string | null;
|
|
5599
|
+
/**
|
|
5600
|
+
* Disclosure Id
|
|
5601
|
+
*
|
|
5602
|
+
* 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.
|
|
5603
|
+
*/
|
|
5604
|
+
disclosure_id?: string | null;
|
|
5532
5605
|
information_model: InformationModelResponse;
|
|
5533
5606
|
artifact: ArtifactResponse;
|
|
5534
5607
|
/**
|
|
@@ -8366,6 +8439,34 @@ export type PaymentMethod = {
|
|
|
8366
8439
|
*/
|
|
8367
8440
|
is_default: boolean;
|
|
8368
8441
|
};
|
|
8442
|
+
/**
|
|
8443
|
+
* PendingObligationDetailResponse
|
|
8444
|
+
*
|
|
8445
|
+
* One pending schedule-derived obligation blocking close.
|
|
8446
|
+
*
|
|
8447
|
+
* Surfaced on `FiscalCalendarResponse` when `pending_obligations` is in
|
|
8448
|
+
* the blockers list so callers can name which schedules to promote.
|
|
8449
|
+
*/
|
|
8450
|
+
export type PendingObligationDetailResponse = {
|
|
8451
|
+
/**
|
|
8452
|
+
* Event Id
|
|
8453
|
+
*/
|
|
8454
|
+
event_id: string;
|
|
8455
|
+
/**
|
|
8456
|
+
* Schedule Id
|
|
8457
|
+
*/
|
|
8458
|
+
schedule_id?: string | null;
|
|
8459
|
+
/**
|
|
8460
|
+
* Schedule Name
|
|
8461
|
+
*/
|
|
8462
|
+
schedule_name?: string | null;
|
|
8463
|
+
/**
|
|
8464
|
+
* Period
|
|
8465
|
+
*
|
|
8466
|
+
* Period in YYYY-MM format
|
|
8467
|
+
*/
|
|
8468
|
+
period: string;
|
|
8469
|
+
};
|
|
8369
8470
|
/**
|
|
8370
8471
|
* PerformanceInsights
|
|
8371
8472
|
*
|
|
@@ -12102,7 +12203,7 @@ export type UpdateEventHandlerRequest = {
|
|
|
12102
12203
|
export type UpdateInformationBlockRequest = ({
|
|
12103
12204
|
block_type: 'schedule';
|
|
12104
12205
|
} & UpdateScheduleArm) | ({
|
|
12105
|
-
block_type: 'balance_sheet' | 'cash_flow_statement' | 'equity_statement' | 'income_statement' | 'metric';
|
|
12206
|
+
block_type: 'balance_sheet' | 'cash_flow_statement' | 'comprehensive_income' | 'equity_statement' | 'income_statement' | 'metric';
|
|
12106
12207
|
} & UpdateLegacyArm);
|
|
12107
12208
|
/**
|
|
12108
12209
|
* UpdateJournalEntryRequest
|
|
@@ -12727,11 +12828,11 @@ export type ViewProjections = {
|
|
|
12727
12828
|
* a typed construction path at the API boundary.
|
|
12728
12829
|
*
|
|
12729
12830
|
* Statement-family blocks (balance_sheet, income_statement,
|
|
12730
|
-
* cash_flow_statement, equity_statement) are
|
|
12731
|
-
* `create-report`, not this endpoint. Metric blocks
|
|
12732
|
-
* but their evaluator has not shipped. Calling this
|
|
12733
|
-
* of these block types returns HTTP 501 with a hint
|
|
12734
|
-
* correct construction path.
|
|
12831
|
+
* cash_flow_statement, equity_statement, comprehensive_income) are
|
|
12832
|
+
* constructed via `create-report`, not this endpoint. Metric blocks
|
|
12833
|
+
* are recognized but their evaluator has not shipped. Calling this
|
|
12834
|
+
* endpoint with one of these block types returns HTTP 501 with a hint
|
|
12835
|
+
* pointing to the correct construction path.
|
|
12735
12836
|
*/
|
|
12736
12837
|
export type CreateLegacyArm = {
|
|
12737
12838
|
/**
|
|
@@ -12739,7 +12840,7 @@ export type CreateLegacyArm = {
|
|
|
12739
12840
|
*
|
|
12740
12841
|
* Statement-family or metric block type. The endpoint returns 501 for these values — statements are constructed via `create-report`; metric construction is pending.
|
|
12741
12842
|
*/
|
|
12742
|
-
block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'metric';
|
|
12843
|
+
block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'comprehensive_income' | 'metric';
|
|
12743
12844
|
/**
|
|
12744
12845
|
* Payload
|
|
12745
12846
|
*
|
|
@@ -12785,7 +12886,7 @@ export type DeleteLegacyArm = {
|
|
|
12785
12886
|
*
|
|
12786
12887
|
* Statement-family or metric block type. Deletion returns 501 — statements are library-seeded (archive the underlying Report instead); metric deletion is pending.
|
|
12787
12888
|
*/
|
|
12788
|
-
block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'metric';
|
|
12889
|
+
block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'comprehensive_income' | 'metric';
|
|
12789
12890
|
/**
|
|
12790
12891
|
* Payload
|
|
12791
12892
|
*
|
|
@@ -12830,7 +12931,7 @@ export type UpdateLegacyArm = {
|
|
|
12830
12931
|
*
|
|
12831
12932
|
* Statement-family or metric block type. Updates return 501 — statement Structures are library-seeded; metric updates are pending.
|
|
12832
12933
|
*/
|
|
12833
|
-
block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'metric';
|
|
12934
|
+
block_type: 'balance_sheet' | 'income_statement' | 'cash_flow_statement' | 'equity_statement' | 'comprehensive_income' | 'metric';
|
|
12834
12935
|
/**
|
|
12835
12936
|
* Payload
|
|
12836
12937
|
*
|
|
@@ -14630,9 +14731,9 @@ export type SyncConnectionErrors = {
|
|
|
14630
14731
|
*/
|
|
14631
14732
|
409: ErrorResponse;
|
|
14632
14733
|
/**
|
|
14633
|
-
* Validation
|
|
14734
|
+
* Validation error
|
|
14634
14735
|
*/
|
|
14635
|
-
422:
|
|
14736
|
+
422: ErrorResponse;
|
|
14636
14737
|
/**
|
|
14637
14738
|
* Rate limit exceeded
|
|
14638
14739
|
*/
|
|
@@ -16828,9 +16929,9 @@ export type OpCreateSubgraphErrors = {
|
|
|
16828
16929
|
*/
|
|
16829
16930
|
409: ErrorResponse;
|
|
16830
16931
|
/**
|
|
16831
|
-
* Validation
|
|
16932
|
+
* Validation error
|
|
16832
16933
|
*/
|
|
16833
|
-
422:
|
|
16934
|
+
422: ErrorResponse;
|
|
16834
16935
|
/**
|
|
16835
16936
|
* Rate limit exceeded
|
|
16836
16937
|
*/
|
|
@@ -16887,9 +16988,9 @@ export type OpDeleteSubgraphErrors = {
|
|
|
16887
16988
|
*/
|
|
16888
16989
|
409: ErrorResponse;
|
|
16889
16990
|
/**
|
|
16890
|
-
* Validation
|
|
16991
|
+
* Validation error
|
|
16891
16992
|
*/
|
|
16892
|
-
422:
|
|
16993
|
+
422: ErrorResponse;
|
|
16893
16994
|
/**
|
|
16894
16995
|
* Rate limit exceeded
|
|
16895
16996
|
*/
|
|
@@ -16946,9 +17047,9 @@ export type OpDeleteGraphErrors = {
|
|
|
16946
17047
|
*/
|
|
16947
17048
|
409: ErrorResponse;
|
|
16948
17049
|
/**
|
|
16949
|
-
* Validation
|
|
17050
|
+
* Validation error
|
|
16950
17051
|
*/
|
|
16951
|
-
422:
|
|
17052
|
+
422: ErrorResponse;
|
|
16952
17053
|
/**
|
|
16953
17054
|
* Rate limit exceeded
|
|
16954
17055
|
*/
|
|
@@ -17005,9 +17106,9 @@ export type OpCreateBackupErrors = {
|
|
|
17005
17106
|
*/
|
|
17006
17107
|
409: ErrorResponse;
|
|
17007
17108
|
/**
|
|
17008
|
-
* Validation
|
|
17109
|
+
* Validation error
|
|
17009
17110
|
*/
|
|
17010
|
-
422:
|
|
17111
|
+
422: ErrorResponse;
|
|
17011
17112
|
/**
|
|
17012
17113
|
* Rate limit exceeded
|
|
17013
17114
|
*/
|
|
@@ -17064,9 +17165,9 @@ export type OpRestoreBackupErrors = {
|
|
|
17064
17165
|
*/
|
|
17065
17166
|
409: ErrorResponse;
|
|
17066
17167
|
/**
|
|
17067
|
-
* Validation
|
|
17168
|
+
* Validation error
|
|
17068
17169
|
*/
|
|
17069
|
-
422:
|
|
17170
|
+
422: ErrorResponse;
|
|
17070
17171
|
/**
|
|
17071
17172
|
* Rate limit exceeded
|
|
17072
17173
|
*/
|
|
@@ -17123,9 +17224,9 @@ export type OpChangeTierErrors = {
|
|
|
17123
17224
|
*/
|
|
17124
17225
|
409: ErrorResponse;
|
|
17125
17226
|
/**
|
|
17126
|
-
* Validation
|
|
17227
|
+
* Validation error
|
|
17127
17228
|
*/
|
|
17128
|
-
422:
|
|
17229
|
+
422: ErrorResponse;
|
|
17129
17230
|
/**
|
|
17130
17231
|
* Rate limit exceeded
|
|
17131
17232
|
*/
|
|
@@ -17143,6 +17244,65 @@ export type OpChangeTierResponses = {
|
|
|
17143
17244
|
202: OperationEnvelope;
|
|
17144
17245
|
};
|
|
17145
17246
|
export type OpChangeTierResponse = OpChangeTierResponses[keyof OpChangeTierResponses];
|
|
17247
|
+
export type OpChangeReportingStyleData = {
|
|
17248
|
+
body: ChangeReportingStyleOp;
|
|
17249
|
+
headers?: {
|
|
17250
|
+
/**
|
|
17251
|
+
* Idempotency-Key
|
|
17252
|
+
*/
|
|
17253
|
+
'Idempotency-Key'?: string | null;
|
|
17254
|
+
};
|
|
17255
|
+
path: {
|
|
17256
|
+
/**
|
|
17257
|
+
* Graph Id
|
|
17258
|
+
*/
|
|
17259
|
+
graph_id: string;
|
|
17260
|
+
};
|
|
17261
|
+
query?: never;
|
|
17262
|
+
url: '/v1/graphs/{graph_id}/operations/change-reporting-style';
|
|
17263
|
+
};
|
|
17264
|
+
export type OpChangeReportingStyleErrors = {
|
|
17265
|
+
/**
|
|
17266
|
+
* Invalid request
|
|
17267
|
+
*/
|
|
17268
|
+
400: ErrorResponse;
|
|
17269
|
+
/**
|
|
17270
|
+
* Authentication required
|
|
17271
|
+
*/
|
|
17272
|
+
401: ErrorResponse;
|
|
17273
|
+
/**
|
|
17274
|
+
* Access denied
|
|
17275
|
+
*/
|
|
17276
|
+
403: ErrorResponse;
|
|
17277
|
+
/**
|
|
17278
|
+
* Resource not found
|
|
17279
|
+
*/
|
|
17280
|
+
404: ErrorResponse;
|
|
17281
|
+
/**
|
|
17282
|
+
* Idempotency-Key conflict — key reused with different body
|
|
17283
|
+
*/
|
|
17284
|
+
409: ErrorResponse;
|
|
17285
|
+
/**
|
|
17286
|
+
* Validation error
|
|
17287
|
+
*/
|
|
17288
|
+
422: ErrorResponse;
|
|
17289
|
+
/**
|
|
17290
|
+
* Rate limit exceeded
|
|
17291
|
+
*/
|
|
17292
|
+
429: ErrorResponse;
|
|
17293
|
+
/**
|
|
17294
|
+
* Internal server error
|
|
17295
|
+
*/
|
|
17296
|
+
500: ErrorResponse;
|
|
17297
|
+
};
|
|
17298
|
+
export type OpChangeReportingStyleError = OpChangeReportingStyleErrors[keyof OpChangeReportingStyleErrors];
|
|
17299
|
+
export type OpChangeReportingStyleResponses = {
|
|
17300
|
+
/**
|
|
17301
|
+
* Successful Response
|
|
17302
|
+
*/
|
|
17303
|
+
200: OperationEnvelope;
|
|
17304
|
+
};
|
|
17305
|
+
export type OpChangeReportingStyleResponse = OpChangeReportingStyleResponses[keyof OpChangeReportingStyleResponses];
|
|
17146
17306
|
export type OpMaterializeData = {
|
|
17147
17307
|
body: MaterializeOp;
|
|
17148
17308
|
headers?: {
|
|
@@ -17182,9 +17342,9 @@ export type OpMaterializeErrors = {
|
|
|
17182
17342
|
*/
|
|
17183
17343
|
409: ErrorResponse;
|
|
17184
17344
|
/**
|
|
17185
|
-
* Validation
|
|
17345
|
+
* Validation error
|
|
17186
17346
|
*/
|
|
17187
|
-
422:
|
|
17347
|
+
422: ErrorResponse;
|
|
17188
17348
|
/**
|
|
17189
17349
|
* Rate limit exceeded
|
|
17190
17350
|
*/
|
|
@@ -17569,9 +17729,9 @@ export type CreateGraphErrors = {
|
|
|
17569
17729
|
*/
|
|
17570
17730
|
409: ErrorResponse;
|
|
17571
17731
|
/**
|
|
17572
|
-
* Validation
|
|
17732
|
+
* Validation error
|
|
17573
17733
|
*/
|
|
17574
|
-
422:
|
|
17734
|
+
422: ErrorResponse;
|
|
17575
17735
|
/**
|
|
17576
17736
|
* Rate limit exceeded
|
|
17577
17737
|
*/
|
|
@@ -18536,9 +18696,9 @@ export type OpInitializeLedgerErrors = {
|
|
|
18536
18696
|
*/
|
|
18537
18697
|
409: ErrorResponse;
|
|
18538
18698
|
/**
|
|
18539
|
-
* Validation
|
|
18699
|
+
* Validation error
|
|
18540
18700
|
*/
|
|
18541
|
-
422:
|
|
18701
|
+
422: ErrorResponse;
|
|
18542
18702
|
/**
|
|
18543
18703
|
* Rate limit exceeded
|
|
18544
18704
|
*/
|
|
@@ -18595,9 +18755,9 @@ export type OpUpdateEntityErrors = {
|
|
|
18595
18755
|
*/
|
|
18596
18756
|
409: ErrorResponse;
|
|
18597
18757
|
/**
|
|
18598
|
-
* Validation
|
|
18758
|
+
* Validation error
|
|
18599
18759
|
*/
|
|
18600
|
-
422:
|
|
18760
|
+
422: ErrorResponse;
|
|
18601
18761
|
/**
|
|
18602
18762
|
* Rate limit exceeded
|
|
18603
18763
|
*/
|
|
@@ -18634,37 +18794,37 @@ export type OpCreateTaxonomyBlockData = {
|
|
|
18634
18794
|
};
|
|
18635
18795
|
export type OpCreateTaxonomyBlockErrors = {
|
|
18636
18796
|
/**
|
|
18637
|
-
* Invalid request
|
|
18797
|
+
* Invalid request
|
|
18638
18798
|
*/
|
|
18639
|
-
400:
|
|
18799
|
+
400: ErrorResponse;
|
|
18640
18800
|
/**
|
|
18641
|
-
*
|
|
18801
|
+
* Authentication required
|
|
18642
18802
|
*/
|
|
18643
|
-
401:
|
|
18803
|
+
401: ErrorResponse;
|
|
18644
18804
|
/**
|
|
18645
|
-
*
|
|
18805
|
+
* Access denied
|
|
18646
18806
|
*/
|
|
18647
|
-
403:
|
|
18807
|
+
403: ErrorResponse;
|
|
18648
18808
|
/**
|
|
18649
|
-
* Resource not found
|
|
18809
|
+
* Resource not found
|
|
18650
18810
|
*/
|
|
18651
|
-
404:
|
|
18811
|
+
404: ErrorResponse;
|
|
18652
18812
|
/**
|
|
18653
|
-
* Idempotency-Key reused with
|
|
18813
|
+
* Idempotency-Key conflict — key reused with different body
|
|
18654
18814
|
*/
|
|
18655
|
-
409:
|
|
18815
|
+
409: ErrorResponse;
|
|
18656
18816
|
/**
|
|
18657
|
-
* Validation
|
|
18817
|
+
* Validation error
|
|
18658
18818
|
*/
|
|
18659
|
-
422:
|
|
18819
|
+
422: ErrorResponse;
|
|
18660
18820
|
/**
|
|
18661
18821
|
* Rate limit exceeded
|
|
18662
18822
|
*/
|
|
18663
|
-
429:
|
|
18823
|
+
429: ErrorResponse;
|
|
18664
18824
|
/**
|
|
18665
|
-
* Internal error
|
|
18825
|
+
* Internal server error
|
|
18666
18826
|
*/
|
|
18667
|
-
500:
|
|
18827
|
+
500: ErrorResponse;
|
|
18668
18828
|
};
|
|
18669
18829
|
export type OpCreateTaxonomyBlockError = OpCreateTaxonomyBlockErrors[keyof OpCreateTaxonomyBlockErrors];
|
|
18670
18830
|
export type OpCreateTaxonomyBlockResponses = {
|
|
@@ -18693,37 +18853,37 @@ export type OpUpdateTaxonomyBlockData = {
|
|
|
18693
18853
|
};
|
|
18694
18854
|
export type OpUpdateTaxonomyBlockErrors = {
|
|
18695
18855
|
/**
|
|
18696
|
-
* Invalid request
|
|
18856
|
+
* Invalid request
|
|
18697
18857
|
*/
|
|
18698
|
-
400:
|
|
18858
|
+
400: ErrorResponse;
|
|
18699
18859
|
/**
|
|
18700
|
-
*
|
|
18860
|
+
* Authentication required
|
|
18701
18861
|
*/
|
|
18702
|
-
401:
|
|
18862
|
+
401: ErrorResponse;
|
|
18703
18863
|
/**
|
|
18704
|
-
*
|
|
18864
|
+
* Access denied
|
|
18705
18865
|
*/
|
|
18706
|
-
403:
|
|
18866
|
+
403: ErrorResponse;
|
|
18707
18867
|
/**
|
|
18708
|
-
* Resource not found
|
|
18868
|
+
* Resource not found
|
|
18709
18869
|
*/
|
|
18710
|
-
404:
|
|
18870
|
+
404: ErrorResponse;
|
|
18711
18871
|
/**
|
|
18712
|
-
* Idempotency-Key reused with
|
|
18872
|
+
* Idempotency-Key conflict — key reused with different body
|
|
18713
18873
|
*/
|
|
18714
|
-
409:
|
|
18874
|
+
409: ErrorResponse;
|
|
18715
18875
|
/**
|
|
18716
|
-
* Validation
|
|
18876
|
+
* Validation error
|
|
18717
18877
|
*/
|
|
18718
|
-
422:
|
|
18878
|
+
422: ErrorResponse;
|
|
18719
18879
|
/**
|
|
18720
18880
|
* Rate limit exceeded
|
|
18721
18881
|
*/
|
|
18722
|
-
429:
|
|
18882
|
+
429: ErrorResponse;
|
|
18723
18883
|
/**
|
|
18724
|
-
* Internal error
|
|
18884
|
+
* Internal server error
|
|
18725
18885
|
*/
|
|
18726
|
-
500:
|
|
18886
|
+
500: ErrorResponse;
|
|
18727
18887
|
};
|
|
18728
18888
|
export type OpUpdateTaxonomyBlockError = OpUpdateTaxonomyBlockErrors[keyof OpUpdateTaxonomyBlockErrors];
|
|
18729
18889
|
export type OpUpdateTaxonomyBlockResponses = {
|
|
@@ -18752,37 +18912,37 @@ export type OpDeleteTaxonomyBlockData = {
|
|
|
18752
18912
|
};
|
|
18753
18913
|
export type OpDeleteTaxonomyBlockErrors = {
|
|
18754
18914
|
/**
|
|
18755
|
-
* Invalid request
|
|
18915
|
+
* Invalid request
|
|
18756
18916
|
*/
|
|
18757
|
-
400:
|
|
18917
|
+
400: ErrorResponse;
|
|
18758
18918
|
/**
|
|
18759
|
-
*
|
|
18919
|
+
* Authentication required
|
|
18760
18920
|
*/
|
|
18761
|
-
401:
|
|
18921
|
+
401: ErrorResponse;
|
|
18762
18922
|
/**
|
|
18763
|
-
*
|
|
18923
|
+
* Access denied
|
|
18764
18924
|
*/
|
|
18765
|
-
403:
|
|
18925
|
+
403: ErrorResponse;
|
|
18766
18926
|
/**
|
|
18767
|
-
* Resource not found
|
|
18927
|
+
* Resource not found
|
|
18768
18928
|
*/
|
|
18769
|
-
404:
|
|
18929
|
+
404: ErrorResponse;
|
|
18770
18930
|
/**
|
|
18771
|
-
* Idempotency-Key reused with
|
|
18931
|
+
* Idempotency-Key conflict — key reused with different body
|
|
18772
18932
|
*/
|
|
18773
|
-
409:
|
|
18933
|
+
409: ErrorResponse;
|
|
18774
18934
|
/**
|
|
18775
|
-
* Validation
|
|
18935
|
+
* Validation error
|
|
18776
18936
|
*/
|
|
18777
|
-
422:
|
|
18937
|
+
422: ErrorResponse;
|
|
18778
18938
|
/**
|
|
18779
18939
|
* Rate limit exceeded
|
|
18780
18940
|
*/
|
|
18781
|
-
429:
|
|
18941
|
+
429: ErrorResponse;
|
|
18782
18942
|
/**
|
|
18783
|
-
* Internal error
|
|
18943
|
+
* Internal server error
|
|
18784
18944
|
*/
|
|
18785
|
-
500:
|
|
18945
|
+
500: ErrorResponse;
|
|
18786
18946
|
};
|
|
18787
18947
|
export type OpDeleteTaxonomyBlockError = OpDeleteTaxonomyBlockErrors[keyof OpDeleteTaxonomyBlockErrors];
|
|
18788
18948
|
export type OpDeleteTaxonomyBlockResponses = {
|
|
@@ -18811,37 +18971,37 @@ export type OpLinkEntityTaxonomyData = {
|
|
|
18811
18971
|
};
|
|
18812
18972
|
export type OpLinkEntityTaxonomyErrors = {
|
|
18813
18973
|
/**
|
|
18814
|
-
* Invalid request
|
|
18974
|
+
* Invalid request
|
|
18815
18975
|
*/
|
|
18816
|
-
400:
|
|
18976
|
+
400: ErrorResponse;
|
|
18817
18977
|
/**
|
|
18818
|
-
*
|
|
18978
|
+
* Authentication required
|
|
18819
18979
|
*/
|
|
18820
|
-
401:
|
|
18980
|
+
401: ErrorResponse;
|
|
18821
18981
|
/**
|
|
18822
|
-
*
|
|
18982
|
+
* Access denied
|
|
18823
18983
|
*/
|
|
18824
|
-
403:
|
|
18984
|
+
403: ErrorResponse;
|
|
18825
18985
|
/**
|
|
18826
|
-
* Resource not found
|
|
18986
|
+
* Resource not found
|
|
18827
18987
|
*/
|
|
18828
|
-
404:
|
|
18988
|
+
404: ErrorResponse;
|
|
18829
18989
|
/**
|
|
18830
|
-
* Idempotency-Key reused with
|
|
18990
|
+
* Idempotency-Key conflict — key reused with different body
|
|
18831
18991
|
*/
|
|
18832
|
-
409:
|
|
18992
|
+
409: ErrorResponse;
|
|
18833
18993
|
/**
|
|
18834
|
-
* Validation
|
|
18994
|
+
* Validation error
|
|
18835
18995
|
*/
|
|
18836
|
-
422:
|
|
18996
|
+
422: ErrorResponse;
|
|
18837
18997
|
/**
|
|
18838
18998
|
* Rate limit exceeded
|
|
18839
18999
|
*/
|
|
18840
|
-
429:
|
|
19000
|
+
429: ErrorResponse;
|
|
18841
19001
|
/**
|
|
18842
|
-
* Internal error
|
|
19002
|
+
* Internal server error
|
|
18843
19003
|
*/
|
|
18844
|
-
500:
|
|
19004
|
+
500: ErrorResponse;
|
|
18845
19005
|
};
|
|
18846
19006
|
export type OpLinkEntityTaxonomyError = OpLinkEntityTaxonomyErrors[keyof OpLinkEntityTaxonomyErrors];
|
|
18847
19007
|
export type OpLinkEntityTaxonomyResponses = {
|
|
@@ -18870,37 +19030,37 @@ export type OpCreateMappingAssociationData = {
|
|
|
18870
19030
|
};
|
|
18871
19031
|
export type OpCreateMappingAssociationErrors = {
|
|
18872
19032
|
/**
|
|
18873
|
-
* Invalid request
|
|
19033
|
+
* Invalid request
|
|
18874
19034
|
*/
|
|
18875
|
-
400:
|
|
19035
|
+
400: ErrorResponse;
|
|
18876
19036
|
/**
|
|
18877
|
-
*
|
|
19037
|
+
* Authentication required
|
|
18878
19038
|
*/
|
|
18879
|
-
401:
|
|
19039
|
+
401: ErrorResponse;
|
|
18880
19040
|
/**
|
|
18881
|
-
*
|
|
19041
|
+
* Access denied
|
|
18882
19042
|
*/
|
|
18883
|
-
403:
|
|
19043
|
+
403: ErrorResponse;
|
|
18884
19044
|
/**
|
|
18885
|
-
* Resource not found
|
|
19045
|
+
* Resource not found
|
|
18886
19046
|
*/
|
|
18887
|
-
404:
|
|
19047
|
+
404: ErrorResponse;
|
|
18888
19048
|
/**
|
|
18889
|
-
* Idempotency-Key reused with
|
|
19049
|
+
* Idempotency-Key conflict — key reused with different body
|
|
18890
19050
|
*/
|
|
18891
|
-
409:
|
|
19051
|
+
409: ErrorResponse;
|
|
18892
19052
|
/**
|
|
18893
|
-
* Validation
|
|
19053
|
+
* Validation error
|
|
18894
19054
|
*/
|
|
18895
|
-
422:
|
|
19055
|
+
422: ErrorResponse;
|
|
18896
19056
|
/**
|
|
18897
19057
|
* Rate limit exceeded
|
|
18898
19058
|
*/
|
|
18899
|
-
429:
|
|
19059
|
+
429: ErrorResponse;
|
|
18900
19060
|
/**
|
|
18901
|
-
* Internal error
|
|
19061
|
+
* Internal server error
|
|
18902
19062
|
*/
|
|
18903
|
-
500:
|
|
19063
|
+
500: ErrorResponse;
|
|
18904
19064
|
};
|
|
18905
19065
|
export type OpCreateMappingAssociationError = OpCreateMappingAssociationErrors[keyof OpCreateMappingAssociationErrors];
|
|
18906
19066
|
export type OpCreateMappingAssociationResponses = {
|
|
@@ -18949,9 +19109,9 @@ export type OpDeleteMappingAssociationErrors = {
|
|
|
18949
19109
|
*/
|
|
18950
19110
|
409: ErrorResponse;
|
|
18951
19111
|
/**
|
|
18952
|
-
* Validation
|
|
19112
|
+
* Validation error
|
|
18953
19113
|
*/
|
|
18954
|
-
422:
|
|
19114
|
+
422: ErrorResponse;
|
|
18955
19115
|
/**
|
|
18956
19116
|
* Rate limit exceeded
|
|
18957
19117
|
*/
|
|
@@ -19008,9 +19168,9 @@ export type OpAutoMapElementsErrors = {
|
|
|
19008
19168
|
*/
|
|
19009
19169
|
409: ErrorResponse;
|
|
19010
19170
|
/**
|
|
19011
|
-
* Validation
|
|
19171
|
+
* Validation error
|
|
19012
19172
|
*/
|
|
19013
|
-
422:
|
|
19173
|
+
422: ErrorResponse;
|
|
19014
19174
|
/**
|
|
19015
19175
|
* Rate limit exceeded
|
|
19016
19176
|
*/
|
|
@@ -19047,37 +19207,37 @@ export type OpCreateInformationBlockData = {
|
|
|
19047
19207
|
};
|
|
19048
19208
|
export type OpCreateInformationBlockErrors = {
|
|
19049
19209
|
/**
|
|
19050
|
-
* Invalid request
|
|
19210
|
+
* Invalid request
|
|
19051
19211
|
*/
|
|
19052
|
-
400:
|
|
19212
|
+
400: ErrorResponse;
|
|
19053
19213
|
/**
|
|
19054
|
-
*
|
|
19214
|
+
* Authentication required
|
|
19055
19215
|
*/
|
|
19056
|
-
401:
|
|
19216
|
+
401: ErrorResponse;
|
|
19057
19217
|
/**
|
|
19058
|
-
*
|
|
19218
|
+
* Access denied
|
|
19059
19219
|
*/
|
|
19060
|
-
403:
|
|
19220
|
+
403: ErrorResponse;
|
|
19061
19221
|
/**
|
|
19062
|
-
* Resource not found
|
|
19222
|
+
* Resource not found
|
|
19063
19223
|
*/
|
|
19064
|
-
404:
|
|
19224
|
+
404: ErrorResponse;
|
|
19065
19225
|
/**
|
|
19066
|
-
* Idempotency-Key reused with
|
|
19226
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19067
19227
|
*/
|
|
19068
|
-
409:
|
|
19228
|
+
409: ErrorResponse;
|
|
19069
19229
|
/**
|
|
19070
|
-
* Validation
|
|
19230
|
+
* Validation error
|
|
19071
19231
|
*/
|
|
19072
|
-
422:
|
|
19232
|
+
422: ErrorResponse;
|
|
19073
19233
|
/**
|
|
19074
19234
|
* Rate limit exceeded
|
|
19075
19235
|
*/
|
|
19076
|
-
429:
|
|
19236
|
+
429: ErrorResponse;
|
|
19077
19237
|
/**
|
|
19078
|
-
* Internal error
|
|
19238
|
+
* Internal server error
|
|
19079
19239
|
*/
|
|
19080
|
-
500:
|
|
19240
|
+
500: ErrorResponse;
|
|
19081
19241
|
};
|
|
19082
19242
|
export type OpCreateInformationBlockError = OpCreateInformationBlockErrors[keyof OpCreateInformationBlockErrors];
|
|
19083
19243
|
export type OpCreateInformationBlockResponses = {
|
|
@@ -19106,37 +19266,37 @@ export type OpUpdateInformationBlockData = {
|
|
|
19106
19266
|
};
|
|
19107
19267
|
export type OpUpdateInformationBlockErrors = {
|
|
19108
19268
|
/**
|
|
19109
|
-
* Invalid request
|
|
19269
|
+
* Invalid request
|
|
19110
19270
|
*/
|
|
19111
|
-
400:
|
|
19271
|
+
400: ErrorResponse;
|
|
19112
19272
|
/**
|
|
19113
|
-
*
|
|
19273
|
+
* Authentication required
|
|
19114
19274
|
*/
|
|
19115
|
-
401:
|
|
19275
|
+
401: ErrorResponse;
|
|
19116
19276
|
/**
|
|
19117
|
-
*
|
|
19277
|
+
* Access denied
|
|
19118
19278
|
*/
|
|
19119
|
-
403:
|
|
19279
|
+
403: ErrorResponse;
|
|
19120
19280
|
/**
|
|
19121
|
-
* Resource not found
|
|
19281
|
+
* Resource not found
|
|
19122
19282
|
*/
|
|
19123
|
-
404:
|
|
19283
|
+
404: ErrorResponse;
|
|
19124
19284
|
/**
|
|
19125
|
-
* Idempotency-Key reused with
|
|
19285
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19126
19286
|
*/
|
|
19127
|
-
409:
|
|
19287
|
+
409: ErrorResponse;
|
|
19128
19288
|
/**
|
|
19129
|
-
* Validation
|
|
19289
|
+
* Validation error
|
|
19130
19290
|
*/
|
|
19131
|
-
422:
|
|
19291
|
+
422: ErrorResponse;
|
|
19132
19292
|
/**
|
|
19133
19293
|
* Rate limit exceeded
|
|
19134
19294
|
*/
|
|
19135
|
-
429:
|
|
19295
|
+
429: ErrorResponse;
|
|
19136
19296
|
/**
|
|
19137
|
-
* Internal error
|
|
19297
|
+
* Internal server error
|
|
19138
19298
|
*/
|
|
19139
|
-
500:
|
|
19299
|
+
500: ErrorResponse;
|
|
19140
19300
|
};
|
|
19141
19301
|
export type OpUpdateInformationBlockError = OpUpdateInformationBlockErrors[keyof OpUpdateInformationBlockErrors];
|
|
19142
19302
|
export type OpUpdateInformationBlockResponses = {
|
|
@@ -19165,37 +19325,37 @@ export type OpDeleteInformationBlockData = {
|
|
|
19165
19325
|
};
|
|
19166
19326
|
export type OpDeleteInformationBlockErrors = {
|
|
19167
19327
|
/**
|
|
19168
|
-
* Invalid request
|
|
19328
|
+
* Invalid request
|
|
19169
19329
|
*/
|
|
19170
|
-
400:
|
|
19330
|
+
400: ErrorResponse;
|
|
19171
19331
|
/**
|
|
19172
|
-
*
|
|
19332
|
+
* Authentication required
|
|
19173
19333
|
*/
|
|
19174
|
-
401:
|
|
19334
|
+
401: ErrorResponse;
|
|
19175
19335
|
/**
|
|
19176
|
-
*
|
|
19336
|
+
* Access denied
|
|
19177
19337
|
*/
|
|
19178
|
-
403:
|
|
19338
|
+
403: ErrorResponse;
|
|
19179
19339
|
/**
|
|
19180
|
-
* Resource not found
|
|
19340
|
+
* Resource not found
|
|
19181
19341
|
*/
|
|
19182
|
-
404:
|
|
19342
|
+
404: ErrorResponse;
|
|
19183
19343
|
/**
|
|
19184
|
-
* Idempotency-Key reused with
|
|
19344
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19185
19345
|
*/
|
|
19186
|
-
409:
|
|
19346
|
+
409: ErrorResponse;
|
|
19187
19347
|
/**
|
|
19188
|
-
* Validation
|
|
19348
|
+
* Validation error
|
|
19189
19349
|
*/
|
|
19190
|
-
422:
|
|
19350
|
+
422: ErrorResponse;
|
|
19191
19351
|
/**
|
|
19192
19352
|
* Rate limit exceeded
|
|
19193
19353
|
*/
|
|
19194
|
-
429:
|
|
19354
|
+
429: ErrorResponse;
|
|
19195
19355
|
/**
|
|
19196
|
-
* Internal error
|
|
19356
|
+
* Internal server error
|
|
19197
19357
|
*/
|
|
19198
|
-
500:
|
|
19358
|
+
500: ErrorResponse;
|
|
19199
19359
|
};
|
|
19200
19360
|
export type OpDeleteInformationBlockError = OpDeleteInformationBlockErrors[keyof OpDeleteInformationBlockErrors];
|
|
19201
19361
|
export type OpDeleteInformationBlockResponses = {
|
|
@@ -19224,37 +19384,37 @@ export type OpEvaluateRulesData = {
|
|
|
19224
19384
|
};
|
|
19225
19385
|
export type OpEvaluateRulesErrors = {
|
|
19226
19386
|
/**
|
|
19227
|
-
* Invalid request
|
|
19387
|
+
* Invalid request
|
|
19228
19388
|
*/
|
|
19229
|
-
400:
|
|
19389
|
+
400: ErrorResponse;
|
|
19230
19390
|
/**
|
|
19231
|
-
*
|
|
19391
|
+
* Authentication required
|
|
19232
19392
|
*/
|
|
19233
|
-
401:
|
|
19393
|
+
401: ErrorResponse;
|
|
19234
19394
|
/**
|
|
19235
|
-
*
|
|
19395
|
+
* Access denied
|
|
19236
19396
|
*/
|
|
19237
|
-
403:
|
|
19397
|
+
403: ErrorResponse;
|
|
19238
19398
|
/**
|
|
19239
|
-
* Resource not found
|
|
19399
|
+
* Resource not found
|
|
19240
19400
|
*/
|
|
19241
|
-
404:
|
|
19401
|
+
404: ErrorResponse;
|
|
19242
19402
|
/**
|
|
19243
|
-
* Idempotency-Key reused with
|
|
19403
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19244
19404
|
*/
|
|
19245
|
-
409:
|
|
19405
|
+
409: ErrorResponse;
|
|
19246
19406
|
/**
|
|
19247
|
-
* Validation
|
|
19407
|
+
* Validation error
|
|
19248
19408
|
*/
|
|
19249
|
-
422:
|
|
19409
|
+
422: ErrorResponse;
|
|
19250
19410
|
/**
|
|
19251
19411
|
* Rate limit exceeded
|
|
19252
19412
|
*/
|
|
19253
|
-
429:
|
|
19413
|
+
429: ErrorResponse;
|
|
19254
19414
|
/**
|
|
19255
|
-
* Internal error
|
|
19415
|
+
* Internal server error
|
|
19256
19416
|
*/
|
|
19257
|
-
500:
|
|
19417
|
+
500: ErrorResponse;
|
|
19258
19418
|
};
|
|
19259
19419
|
export type OpEvaluateRulesError = OpEvaluateRulesErrors[keyof OpEvaluateRulesErrors];
|
|
19260
19420
|
export type OpEvaluateRulesResponses = {
|
|
@@ -19283,37 +19443,37 @@ export type OpCreateAgentData = {
|
|
|
19283
19443
|
};
|
|
19284
19444
|
export type OpCreateAgentErrors = {
|
|
19285
19445
|
/**
|
|
19286
|
-
* Invalid request
|
|
19446
|
+
* Invalid request
|
|
19287
19447
|
*/
|
|
19288
|
-
400:
|
|
19448
|
+
400: ErrorResponse;
|
|
19289
19449
|
/**
|
|
19290
|
-
*
|
|
19450
|
+
* Authentication required
|
|
19291
19451
|
*/
|
|
19292
|
-
401:
|
|
19452
|
+
401: ErrorResponse;
|
|
19293
19453
|
/**
|
|
19294
|
-
*
|
|
19454
|
+
* Access denied
|
|
19295
19455
|
*/
|
|
19296
|
-
403:
|
|
19456
|
+
403: ErrorResponse;
|
|
19297
19457
|
/**
|
|
19298
|
-
* Resource not found
|
|
19458
|
+
* Resource not found
|
|
19299
19459
|
*/
|
|
19300
|
-
404:
|
|
19460
|
+
404: ErrorResponse;
|
|
19301
19461
|
/**
|
|
19302
|
-
* Idempotency-Key reused with
|
|
19462
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19303
19463
|
*/
|
|
19304
|
-
409:
|
|
19464
|
+
409: ErrorResponse;
|
|
19305
19465
|
/**
|
|
19306
|
-
* Validation
|
|
19466
|
+
* Validation error
|
|
19307
19467
|
*/
|
|
19308
|
-
422:
|
|
19468
|
+
422: ErrorResponse;
|
|
19309
19469
|
/**
|
|
19310
19470
|
* Rate limit exceeded
|
|
19311
19471
|
*/
|
|
19312
|
-
429:
|
|
19472
|
+
429: ErrorResponse;
|
|
19313
19473
|
/**
|
|
19314
|
-
* Internal error
|
|
19474
|
+
* Internal server error
|
|
19315
19475
|
*/
|
|
19316
|
-
500:
|
|
19476
|
+
500: ErrorResponse;
|
|
19317
19477
|
};
|
|
19318
19478
|
export type OpCreateAgentError = OpCreateAgentErrors[keyof OpCreateAgentErrors];
|
|
19319
19479
|
export type OpCreateAgentResponses = {
|
|
@@ -19342,37 +19502,37 @@ export type OpUpdateAgentData = {
|
|
|
19342
19502
|
};
|
|
19343
19503
|
export type OpUpdateAgentErrors = {
|
|
19344
19504
|
/**
|
|
19345
|
-
* Invalid request
|
|
19505
|
+
* Invalid request
|
|
19346
19506
|
*/
|
|
19347
|
-
400:
|
|
19507
|
+
400: ErrorResponse;
|
|
19348
19508
|
/**
|
|
19349
|
-
*
|
|
19509
|
+
* Authentication required
|
|
19350
19510
|
*/
|
|
19351
|
-
401:
|
|
19511
|
+
401: ErrorResponse;
|
|
19352
19512
|
/**
|
|
19353
|
-
*
|
|
19513
|
+
* Access denied
|
|
19354
19514
|
*/
|
|
19355
|
-
403:
|
|
19515
|
+
403: ErrorResponse;
|
|
19356
19516
|
/**
|
|
19357
|
-
* Resource not found
|
|
19517
|
+
* Resource not found
|
|
19358
19518
|
*/
|
|
19359
|
-
404:
|
|
19519
|
+
404: ErrorResponse;
|
|
19360
19520
|
/**
|
|
19361
|
-
* Idempotency-Key reused with
|
|
19521
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19362
19522
|
*/
|
|
19363
|
-
409:
|
|
19523
|
+
409: ErrorResponse;
|
|
19364
19524
|
/**
|
|
19365
|
-
* Validation
|
|
19525
|
+
* Validation error
|
|
19366
19526
|
*/
|
|
19367
|
-
422:
|
|
19527
|
+
422: ErrorResponse;
|
|
19368
19528
|
/**
|
|
19369
19529
|
* Rate limit exceeded
|
|
19370
19530
|
*/
|
|
19371
|
-
429:
|
|
19531
|
+
429: ErrorResponse;
|
|
19372
19532
|
/**
|
|
19373
|
-
* Internal error
|
|
19533
|
+
* Internal server error
|
|
19374
19534
|
*/
|
|
19375
|
-
500:
|
|
19535
|
+
500: ErrorResponse;
|
|
19376
19536
|
};
|
|
19377
19537
|
export type OpUpdateAgentError = OpUpdateAgentErrors[keyof OpUpdateAgentErrors];
|
|
19378
19538
|
export type OpUpdateAgentResponses = {
|
|
@@ -19401,37 +19561,37 @@ export type OpCreateEventBlockData = {
|
|
|
19401
19561
|
};
|
|
19402
19562
|
export type OpCreateEventBlockErrors = {
|
|
19403
19563
|
/**
|
|
19404
|
-
* Invalid request
|
|
19564
|
+
* Invalid request
|
|
19405
19565
|
*/
|
|
19406
|
-
400:
|
|
19566
|
+
400: ErrorResponse;
|
|
19407
19567
|
/**
|
|
19408
|
-
*
|
|
19568
|
+
* Authentication required
|
|
19409
19569
|
*/
|
|
19410
|
-
401:
|
|
19570
|
+
401: ErrorResponse;
|
|
19411
19571
|
/**
|
|
19412
|
-
*
|
|
19572
|
+
* Access denied
|
|
19413
19573
|
*/
|
|
19414
|
-
403:
|
|
19574
|
+
403: ErrorResponse;
|
|
19415
19575
|
/**
|
|
19416
|
-
* Resource not found
|
|
19576
|
+
* Resource not found
|
|
19417
19577
|
*/
|
|
19418
|
-
404:
|
|
19578
|
+
404: ErrorResponse;
|
|
19419
19579
|
/**
|
|
19420
|
-
* Idempotency-Key reused with
|
|
19580
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19421
19581
|
*/
|
|
19422
|
-
409:
|
|
19582
|
+
409: ErrorResponse;
|
|
19423
19583
|
/**
|
|
19424
|
-
* Validation
|
|
19584
|
+
* Validation error
|
|
19425
19585
|
*/
|
|
19426
|
-
422:
|
|
19586
|
+
422: ErrorResponse;
|
|
19427
19587
|
/**
|
|
19428
19588
|
* Rate limit exceeded
|
|
19429
19589
|
*/
|
|
19430
|
-
429:
|
|
19590
|
+
429: ErrorResponse;
|
|
19431
19591
|
/**
|
|
19432
|
-
* Internal error
|
|
19592
|
+
* Internal server error
|
|
19433
19593
|
*/
|
|
19434
|
-
500:
|
|
19594
|
+
500: ErrorResponse;
|
|
19435
19595
|
};
|
|
19436
19596
|
export type OpCreateEventBlockError = OpCreateEventBlockErrors[keyof OpCreateEventBlockErrors];
|
|
19437
19597
|
export type OpCreateEventBlockResponses = {
|
|
@@ -19460,37 +19620,37 @@ export type OpUpdateEventBlockData = {
|
|
|
19460
19620
|
};
|
|
19461
19621
|
export type OpUpdateEventBlockErrors = {
|
|
19462
19622
|
/**
|
|
19463
|
-
* Invalid request
|
|
19623
|
+
* Invalid request
|
|
19464
19624
|
*/
|
|
19465
|
-
400:
|
|
19625
|
+
400: ErrorResponse;
|
|
19466
19626
|
/**
|
|
19467
|
-
*
|
|
19627
|
+
* Authentication required
|
|
19468
19628
|
*/
|
|
19469
|
-
401:
|
|
19629
|
+
401: ErrorResponse;
|
|
19470
19630
|
/**
|
|
19471
|
-
*
|
|
19631
|
+
* Access denied
|
|
19472
19632
|
*/
|
|
19473
|
-
403:
|
|
19633
|
+
403: ErrorResponse;
|
|
19474
19634
|
/**
|
|
19475
|
-
* Resource not found
|
|
19635
|
+
* Resource not found
|
|
19476
19636
|
*/
|
|
19477
|
-
404:
|
|
19637
|
+
404: ErrorResponse;
|
|
19478
19638
|
/**
|
|
19479
|
-
* Idempotency-Key reused with
|
|
19639
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19480
19640
|
*/
|
|
19481
|
-
409:
|
|
19641
|
+
409: ErrorResponse;
|
|
19482
19642
|
/**
|
|
19483
|
-
* Validation
|
|
19643
|
+
* Validation error
|
|
19484
19644
|
*/
|
|
19485
|
-
422:
|
|
19645
|
+
422: ErrorResponse;
|
|
19486
19646
|
/**
|
|
19487
19647
|
* Rate limit exceeded
|
|
19488
19648
|
*/
|
|
19489
|
-
429:
|
|
19649
|
+
429: ErrorResponse;
|
|
19490
19650
|
/**
|
|
19491
|
-
* Internal error
|
|
19651
|
+
* Internal server error
|
|
19492
19652
|
*/
|
|
19493
|
-
500:
|
|
19653
|
+
500: ErrorResponse;
|
|
19494
19654
|
};
|
|
19495
19655
|
export type OpUpdateEventBlockError = OpUpdateEventBlockErrors[keyof OpUpdateEventBlockErrors];
|
|
19496
19656
|
export type OpUpdateEventBlockResponses = {
|
|
@@ -19519,37 +19679,37 @@ export type OpCreateEventHandlerData = {
|
|
|
19519
19679
|
};
|
|
19520
19680
|
export type OpCreateEventHandlerErrors = {
|
|
19521
19681
|
/**
|
|
19522
|
-
* Invalid request
|
|
19682
|
+
* Invalid request
|
|
19523
19683
|
*/
|
|
19524
|
-
400:
|
|
19684
|
+
400: ErrorResponse;
|
|
19525
19685
|
/**
|
|
19526
|
-
*
|
|
19686
|
+
* Authentication required
|
|
19527
19687
|
*/
|
|
19528
|
-
401:
|
|
19688
|
+
401: ErrorResponse;
|
|
19529
19689
|
/**
|
|
19530
|
-
*
|
|
19690
|
+
* Access denied
|
|
19531
19691
|
*/
|
|
19532
|
-
403:
|
|
19692
|
+
403: ErrorResponse;
|
|
19533
19693
|
/**
|
|
19534
|
-
* Resource not found
|
|
19694
|
+
* Resource not found
|
|
19535
19695
|
*/
|
|
19536
|
-
404:
|
|
19696
|
+
404: ErrorResponse;
|
|
19537
19697
|
/**
|
|
19538
|
-
* Idempotency-Key reused with
|
|
19698
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19539
19699
|
*/
|
|
19540
|
-
409:
|
|
19700
|
+
409: ErrorResponse;
|
|
19541
19701
|
/**
|
|
19542
|
-
* Validation
|
|
19702
|
+
* Validation error
|
|
19543
19703
|
*/
|
|
19544
|
-
422:
|
|
19704
|
+
422: ErrorResponse;
|
|
19545
19705
|
/**
|
|
19546
19706
|
* Rate limit exceeded
|
|
19547
19707
|
*/
|
|
19548
|
-
429:
|
|
19708
|
+
429: ErrorResponse;
|
|
19549
19709
|
/**
|
|
19550
|
-
* Internal error
|
|
19710
|
+
* Internal server error
|
|
19551
19711
|
*/
|
|
19552
|
-
500:
|
|
19712
|
+
500: ErrorResponse;
|
|
19553
19713
|
};
|
|
19554
19714
|
export type OpCreateEventHandlerError = OpCreateEventHandlerErrors[keyof OpCreateEventHandlerErrors];
|
|
19555
19715
|
export type OpCreateEventHandlerResponses = {
|
|
@@ -19578,37 +19738,37 @@ export type OpUpdateEventHandlerData = {
|
|
|
19578
19738
|
};
|
|
19579
19739
|
export type OpUpdateEventHandlerErrors = {
|
|
19580
19740
|
/**
|
|
19581
|
-
* Invalid request
|
|
19741
|
+
* Invalid request
|
|
19582
19742
|
*/
|
|
19583
|
-
400:
|
|
19743
|
+
400: ErrorResponse;
|
|
19584
19744
|
/**
|
|
19585
|
-
*
|
|
19745
|
+
* Authentication required
|
|
19586
19746
|
*/
|
|
19587
|
-
401:
|
|
19747
|
+
401: ErrorResponse;
|
|
19588
19748
|
/**
|
|
19589
|
-
*
|
|
19749
|
+
* Access denied
|
|
19590
19750
|
*/
|
|
19591
|
-
403:
|
|
19751
|
+
403: ErrorResponse;
|
|
19592
19752
|
/**
|
|
19593
|
-
* Resource not found
|
|
19753
|
+
* Resource not found
|
|
19594
19754
|
*/
|
|
19595
|
-
404:
|
|
19755
|
+
404: ErrorResponse;
|
|
19596
19756
|
/**
|
|
19597
|
-
* Idempotency-Key reused with
|
|
19757
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19598
19758
|
*/
|
|
19599
|
-
409:
|
|
19759
|
+
409: ErrorResponse;
|
|
19600
19760
|
/**
|
|
19601
|
-
* Validation
|
|
19761
|
+
* Validation error
|
|
19602
19762
|
*/
|
|
19603
|
-
422:
|
|
19763
|
+
422: ErrorResponse;
|
|
19604
19764
|
/**
|
|
19605
19765
|
* Rate limit exceeded
|
|
19606
19766
|
*/
|
|
19607
|
-
429:
|
|
19767
|
+
429: ErrorResponse;
|
|
19608
19768
|
/**
|
|
19609
|
-
* Internal error
|
|
19769
|
+
* Internal server error
|
|
19610
19770
|
*/
|
|
19611
|
-
500:
|
|
19771
|
+
500: ErrorResponse;
|
|
19612
19772
|
};
|
|
19613
19773
|
export type OpUpdateEventHandlerError = OpUpdateEventHandlerErrors[keyof OpUpdateEventHandlerErrors];
|
|
19614
19774
|
export type OpUpdateEventHandlerResponses = {
|
|
@@ -19637,37 +19797,37 @@ export type OpPreviewEventBlockData = {
|
|
|
19637
19797
|
};
|
|
19638
19798
|
export type OpPreviewEventBlockErrors = {
|
|
19639
19799
|
/**
|
|
19640
|
-
* Invalid request
|
|
19800
|
+
* Invalid request
|
|
19641
19801
|
*/
|
|
19642
|
-
400:
|
|
19802
|
+
400: ErrorResponse;
|
|
19643
19803
|
/**
|
|
19644
|
-
*
|
|
19804
|
+
* Authentication required
|
|
19645
19805
|
*/
|
|
19646
|
-
401:
|
|
19806
|
+
401: ErrorResponse;
|
|
19647
19807
|
/**
|
|
19648
|
-
*
|
|
19808
|
+
* Access denied
|
|
19649
19809
|
*/
|
|
19650
|
-
403:
|
|
19810
|
+
403: ErrorResponse;
|
|
19651
19811
|
/**
|
|
19652
|
-
* Resource not found
|
|
19812
|
+
* Resource not found
|
|
19653
19813
|
*/
|
|
19654
|
-
404:
|
|
19814
|
+
404: ErrorResponse;
|
|
19655
19815
|
/**
|
|
19656
|
-
* Idempotency-Key reused with
|
|
19816
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19657
19817
|
*/
|
|
19658
|
-
409:
|
|
19818
|
+
409: ErrorResponse;
|
|
19659
19819
|
/**
|
|
19660
|
-
* Validation
|
|
19820
|
+
* Validation error
|
|
19661
19821
|
*/
|
|
19662
|
-
422:
|
|
19822
|
+
422: ErrorResponse;
|
|
19663
19823
|
/**
|
|
19664
19824
|
* Rate limit exceeded
|
|
19665
19825
|
*/
|
|
19666
|
-
429:
|
|
19826
|
+
429: ErrorResponse;
|
|
19667
19827
|
/**
|
|
19668
|
-
* Internal error
|
|
19828
|
+
* Internal server error
|
|
19669
19829
|
*/
|
|
19670
|
-
500:
|
|
19830
|
+
500: ErrorResponse;
|
|
19671
19831
|
};
|
|
19672
19832
|
export type OpPreviewEventBlockError = OpPreviewEventBlockErrors[keyof OpPreviewEventBlockErrors];
|
|
19673
19833
|
export type OpPreviewEventBlockResponses = {
|
|
@@ -19696,37 +19856,37 @@ export type OpUpdateJournalEntryData = {
|
|
|
19696
19856
|
};
|
|
19697
19857
|
export type OpUpdateJournalEntryErrors = {
|
|
19698
19858
|
/**
|
|
19699
|
-
* Invalid request
|
|
19859
|
+
* Invalid request
|
|
19700
19860
|
*/
|
|
19701
|
-
400:
|
|
19861
|
+
400: ErrorResponse;
|
|
19702
19862
|
/**
|
|
19703
|
-
*
|
|
19863
|
+
* Authentication required
|
|
19704
19864
|
*/
|
|
19705
|
-
401:
|
|
19865
|
+
401: ErrorResponse;
|
|
19706
19866
|
/**
|
|
19707
|
-
*
|
|
19867
|
+
* Access denied
|
|
19708
19868
|
*/
|
|
19709
|
-
403:
|
|
19869
|
+
403: ErrorResponse;
|
|
19710
19870
|
/**
|
|
19711
|
-
* Resource not found
|
|
19871
|
+
* Resource not found
|
|
19712
19872
|
*/
|
|
19713
|
-
404:
|
|
19873
|
+
404: ErrorResponse;
|
|
19714
19874
|
/**
|
|
19715
|
-
* Idempotency-Key reused with
|
|
19875
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19716
19876
|
*/
|
|
19717
|
-
409:
|
|
19877
|
+
409: ErrorResponse;
|
|
19718
19878
|
/**
|
|
19719
|
-
* Validation
|
|
19879
|
+
* Validation error
|
|
19720
19880
|
*/
|
|
19721
|
-
422:
|
|
19881
|
+
422: ErrorResponse;
|
|
19722
19882
|
/**
|
|
19723
19883
|
* Rate limit exceeded
|
|
19724
19884
|
*/
|
|
19725
|
-
429:
|
|
19885
|
+
429: ErrorResponse;
|
|
19726
19886
|
/**
|
|
19727
|
-
* Internal error
|
|
19887
|
+
* Internal server error
|
|
19728
19888
|
*/
|
|
19729
|
-
500:
|
|
19889
|
+
500: ErrorResponse;
|
|
19730
19890
|
};
|
|
19731
19891
|
export type OpUpdateJournalEntryError = OpUpdateJournalEntryErrors[keyof OpUpdateJournalEntryErrors];
|
|
19732
19892
|
export type OpUpdateJournalEntryResponses = {
|
|
@@ -19755,37 +19915,37 @@ export type OpDeleteJournalEntryData = {
|
|
|
19755
19915
|
};
|
|
19756
19916
|
export type OpDeleteJournalEntryErrors = {
|
|
19757
19917
|
/**
|
|
19758
|
-
* Invalid request
|
|
19918
|
+
* Invalid request
|
|
19759
19919
|
*/
|
|
19760
|
-
400:
|
|
19920
|
+
400: ErrorResponse;
|
|
19761
19921
|
/**
|
|
19762
|
-
*
|
|
19922
|
+
* Authentication required
|
|
19763
19923
|
*/
|
|
19764
|
-
401:
|
|
19924
|
+
401: ErrorResponse;
|
|
19765
19925
|
/**
|
|
19766
|
-
*
|
|
19926
|
+
* Access denied
|
|
19767
19927
|
*/
|
|
19768
|
-
403:
|
|
19928
|
+
403: ErrorResponse;
|
|
19769
19929
|
/**
|
|
19770
|
-
* Resource not found
|
|
19930
|
+
* Resource not found
|
|
19771
19931
|
*/
|
|
19772
|
-
404:
|
|
19932
|
+
404: ErrorResponse;
|
|
19773
19933
|
/**
|
|
19774
|
-
* Idempotency-Key reused with
|
|
19934
|
+
* Idempotency-Key conflict — key reused with different body
|
|
19775
19935
|
*/
|
|
19776
|
-
409:
|
|
19936
|
+
409: ErrorResponse;
|
|
19777
19937
|
/**
|
|
19778
|
-
* Validation
|
|
19938
|
+
* Validation error
|
|
19779
19939
|
*/
|
|
19780
|
-
422:
|
|
19940
|
+
422: ErrorResponse;
|
|
19781
19941
|
/**
|
|
19782
19942
|
* Rate limit exceeded
|
|
19783
19943
|
*/
|
|
19784
|
-
429:
|
|
19944
|
+
429: ErrorResponse;
|
|
19785
19945
|
/**
|
|
19786
|
-
* Internal error
|
|
19946
|
+
* Internal server error
|
|
19787
19947
|
*/
|
|
19788
|
-
500:
|
|
19948
|
+
500: ErrorResponse;
|
|
19789
19949
|
};
|
|
19790
19950
|
export type OpDeleteJournalEntryError = OpDeleteJournalEntryErrors[keyof OpDeleteJournalEntryErrors];
|
|
19791
19951
|
export type OpDeleteJournalEntryResponses = {
|
|
@@ -19834,9 +19994,9 @@ export type OpSetCloseTargetErrors = {
|
|
|
19834
19994
|
*/
|
|
19835
19995
|
409: ErrorResponse;
|
|
19836
19996
|
/**
|
|
19837
|
-
* Validation
|
|
19997
|
+
* Validation error
|
|
19838
19998
|
*/
|
|
19839
|
-
422:
|
|
19999
|
+
422: ErrorResponse;
|
|
19840
20000
|
/**
|
|
19841
20001
|
* Rate limit exceeded
|
|
19842
20002
|
*/
|
|
@@ -19893,9 +20053,9 @@ export type OpClosePeriodErrors = {
|
|
|
19893
20053
|
*/
|
|
19894
20054
|
409: ErrorResponse;
|
|
19895
20055
|
/**
|
|
19896
|
-
* Validation
|
|
20056
|
+
* Validation error
|
|
19897
20057
|
*/
|
|
19898
|
-
422:
|
|
20058
|
+
422: ErrorResponse;
|
|
19899
20059
|
/**
|
|
19900
20060
|
* Rate limit exceeded
|
|
19901
20061
|
*/
|
|
@@ -19952,9 +20112,9 @@ export type OpReopenPeriodErrors = {
|
|
|
19952
20112
|
*/
|
|
19953
20113
|
409: ErrorResponse;
|
|
19954
20114
|
/**
|
|
19955
|
-
* Validation
|
|
20115
|
+
* Validation error
|
|
19956
20116
|
*/
|
|
19957
|
-
422:
|
|
20117
|
+
422: ErrorResponse;
|
|
19958
20118
|
/**
|
|
19959
20119
|
* Rate limit exceeded
|
|
19960
20120
|
*/
|
|
@@ -20011,9 +20171,9 @@ export type OpCreateReportErrors = {
|
|
|
20011
20171
|
*/
|
|
20012
20172
|
409: ErrorResponse;
|
|
20013
20173
|
/**
|
|
20014
|
-
* Validation
|
|
20174
|
+
* Validation error
|
|
20015
20175
|
*/
|
|
20016
|
-
422:
|
|
20176
|
+
422: ErrorResponse;
|
|
20017
20177
|
/**
|
|
20018
20178
|
* Rate limit exceeded
|
|
20019
20179
|
*/
|
|
@@ -20070,9 +20230,9 @@ export type OpRegenerateReportErrors = {
|
|
|
20070
20230
|
*/
|
|
20071
20231
|
409: ErrorResponse;
|
|
20072
20232
|
/**
|
|
20073
|
-
* Validation
|
|
20233
|
+
* Validation error
|
|
20074
20234
|
*/
|
|
20075
|
-
422:
|
|
20235
|
+
422: ErrorResponse;
|
|
20076
20236
|
/**
|
|
20077
20237
|
* Rate limit exceeded
|
|
20078
20238
|
*/
|
|
@@ -20129,9 +20289,9 @@ export type OpDeleteReportErrors = {
|
|
|
20129
20289
|
*/
|
|
20130
20290
|
409: ErrorResponse;
|
|
20131
20291
|
/**
|
|
20132
|
-
* Validation
|
|
20292
|
+
* Validation error
|
|
20133
20293
|
*/
|
|
20134
|
-
422:
|
|
20294
|
+
422: ErrorResponse;
|
|
20135
20295
|
/**
|
|
20136
20296
|
* Rate limit exceeded
|
|
20137
20297
|
*/
|
|
@@ -20188,9 +20348,9 @@ export type OpShareReportErrors = {
|
|
|
20188
20348
|
*/
|
|
20189
20349
|
409: ErrorResponse;
|
|
20190
20350
|
/**
|
|
20191
|
-
* Validation
|
|
20351
|
+
* Validation error
|
|
20192
20352
|
*/
|
|
20193
|
-
422:
|
|
20353
|
+
422: ErrorResponse;
|
|
20194
20354
|
/**
|
|
20195
20355
|
* Rate limit exceeded
|
|
20196
20356
|
*/
|
|
@@ -20247,9 +20407,9 @@ export type OpFileReportErrors = {
|
|
|
20247
20407
|
*/
|
|
20248
20408
|
409: ErrorResponse;
|
|
20249
20409
|
/**
|
|
20250
|
-
* Validation
|
|
20410
|
+
* Validation error
|
|
20251
20411
|
*/
|
|
20252
|
-
422:
|
|
20412
|
+
422: ErrorResponse;
|
|
20253
20413
|
/**
|
|
20254
20414
|
* Rate limit exceeded
|
|
20255
20415
|
*/
|
|
@@ -20306,9 +20466,9 @@ export type OpTransitionFilingStatusErrors = {
|
|
|
20306
20466
|
*/
|
|
20307
20467
|
409: ErrorResponse;
|
|
20308
20468
|
/**
|
|
20309
|
-
* Validation
|
|
20469
|
+
* Validation error
|
|
20310
20470
|
*/
|
|
20311
|
-
422:
|
|
20471
|
+
422: ErrorResponse;
|
|
20312
20472
|
/**
|
|
20313
20473
|
* Rate limit exceeded
|
|
20314
20474
|
*/
|
|
@@ -20365,9 +20525,9 @@ export type OpCreatePublishListErrors = {
|
|
|
20365
20525
|
*/
|
|
20366
20526
|
409: ErrorResponse;
|
|
20367
20527
|
/**
|
|
20368
|
-
* Validation
|
|
20528
|
+
* Validation error
|
|
20369
20529
|
*/
|
|
20370
|
-
422:
|
|
20530
|
+
422: ErrorResponse;
|
|
20371
20531
|
/**
|
|
20372
20532
|
* Rate limit exceeded
|
|
20373
20533
|
*/
|
|
@@ -20424,9 +20584,9 @@ export type OpUpdatePublishListErrors = {
|
|
|
20424
20584
|
*/
|
|
20425
20585
|
409: ErrorResponse;
|
|
20426
20586
|
/**
|
|
20427
|
-
* Validation
|
|
20587
|
+
* Validation error
|
|
20428
20588
|
*/
|
|
20429
|
-
422:
|
|
20589
|
+
422: ErrorResponse;
|
|
20430
20590
|
/**
|
|
20431
20591
|
* Rate limit exceeded
|
|
20432
20592
|
*/
|
|
@@ -20483,9 +20643,9 @@ export type OpDeletePublishListErrors = {
|
|
|
20483
20643
|
*/
|
|
20484
20644
|
409: ErrorResponse;
|
|
20485
20645
|
/**
|
|
20486
|
-
* Validation
|
|
20646
|
+
* Validation error
|
|
20487
20647
|
*/
|
|
20488
|
-
422:
|
|
20648
|
+
422: ErrorResponse;
|
|
20489
20649
|
/**
|
|
20490
20650
|
* Rate limit exceeded
|
|
20491
20651
|
*/
|
|
@@ -20542,9 +20702,9 @@ export type OpAddPublishListMembersErrors = {
|
|
|
20542
20702
|
*/
|
|
20543
20703
|
409: ErrorResponse;
|
|
20544
20704
|
/**
|
|
20545
|
-
* Validation
|
|
20705
|
+
* Validation error
|
|
20546
20706
|
*/
|
|
20547
|
-
422:
|
|
20707
|
+
422: ErrorResponse;
|
|
20548
20708
|
/**
|
|
20549
20709
|
* Rate limit exceeded
|
|
20550
20710
|
*/
|
|
@@ -20601,9 +20761,9 @@ export type OpRemovePublishListMemberErrors = {
|
|
|
20601
20761
|
*/
|
|
20602
20762
|
409: ErrorResponse;
|
|
20603
20763
|
/**
|
|
20604
|
-
* Validation
|
|
20764
|
+
* Validation error
|
|
20605
20765
|
*/
|
|
20606
|
-
422:
|
|
20766
|
+
422: ErrorResponse;
|
|
20607
20767
|
/**
|
|
20608
20768
|
* Rate limit exceeded
|
|
20609
20769
|
*/
|
|
@@ -20660,9 +20820,9 @@ export type OpLiveFinancialStatementErrors = {
|
|
|
20660
20820
|
*/
|
|
20661
20821
|
409: ErrorResponse;
|
|
20662
20822
|
/**
|
|
20663
|
-
* Validation
|
|
20823
|
+
* Validation error
|
|
20664
20824
|
*/
|
|
20665
|
-
422:
|
|
20825
|
+
422: ErrorResponse;
|
|
20666
20826
|
/**
|
|
20667
20827
|
* Rate limit exceeded
|
|
20668
20828
|
*/
|
|
@@ -20719,9 +20879,9 @@ export type OpBuildFactGridErrors = {
|
|
|
20719
20879
|
*/
|
|
20720
20880
|
409: ErrorResponse;
|
|
20721
20881
|
/**
|
|
20722
|
-
* Validation
|
|
20882
|
+
* Validation error
|
|
20723
20883
|
*/
|
|
20724
|
-
422:
|
|
20884
|
+
422: ErrorResponse;
|
|
20725
20885
|
/**
|
|
20726
20886
|
* Rate limit exceeded
|
|
20727
20887
|
*/
|
|
@@ -20778,9 +20938,9 @@ export type OpFinancialStatementAnalysisErrors = {
|
|
|
20778
20938
|
*/
|
|
20779
20939
|
409: ErrorResponse;
|
|
20780
20940
|
/**
|
|
20781
|
-
* Validation
|
|
20941
|
+
* Validation error
|
|
20782
20942
|
*/
|
|
20783
|
-
422:
|
|
20943
|
+
422: ErrorResponse;
|
|
20784
20944
|
/**
|
|
20785
20945
|
* Rate limit exceeded
|
|
20786
20946
|
*/
|
|
@@ -20817,37 +20977,37 @@ export type OpCreatePortfolioBlockData = {
|
|
|
20817
20977
|
};
|
|
20818
20978
|
export type OpCreatePortfolioBlockErrors = {
|
|
20819
20979
|
/**
|
|
20820
|
-
* Invalid request
|
|
20980
|
+
* Invalid request
|
|
20821
20981
|
*/
|
|
20822
|
-
400:
|
|
20982
|
+
400: ErrorResponse;
|
|
20823
20983
|
/**
|
|
20824
|
-
*
|
|
20984
|
+
* Authentication required
|
|
20825
20985
|
*/
|
|
20826
|
-
401:
|
|
20986
|
+
401: ErrorResponse;
|
|
20827
20987
|
/**
|
|
20828
|
-
*
|
|
20988
|
+
* Access denied
|
|
20829
20989
|
*/
|
|
20830
|
-
403:
|
|
20990
|
+
403: ErrorResponse;
|
|
20831
20991
|
/**
|
|
20832
|
-
* Resource not found
|
|
20992
|
+
* Resource not found
|
|
20833
20993
|
*/
|
|
20834
|
-
404:
|
|
20994
|
+
404: ErrorResponse;
|
|
20835
20995
|
/**
|
|
20836
|
-
* Idempotency-Key reused with
|
|
20996
|
+
* Idempotency-Key conflict — key reused with different body
|
|
20837
20997
|
*/
|
|
20838
|
-
409:
|
|
20998
|
+
409: ErrorResponse;
|
|
20839
20999
|
/**
|
|
20840
|
-
* Validation
|
|
21000
|
+
* Validation error
|
|
20841
21001
|
*/
|
|
20842
|
-
422:
|
|
21002
|
+
422: ErrorResponse;
|
|
20843
21003
|
/**
|
|
20844
21004
|
* Rate limit exceeded
|
|
20845
21005
|
*/
|
|
20846
|
-
429:
|
|
21006
|
+
429: ErrorResponse;
|
|
20847
21007
|
/**
|
|
20848
|
-
* Internal error
|
|
21008
|
+
* Internal server error
|
|
20849
21009
|
*/
|
|
20850
|
-
500:
|
|
21010
|
+
500: ErrorResponse;
|
|
20851
21011
|
};
|
|
20852
21012
|
export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
|
|
20853
21013
|
export type OpCreatePortfolioBlockResponses = {
|
|
@@ -20876,37 +21036,37 @@ export type OpUpdatePortfolioBlockData = {
|
|
|
20876
21036
|
};
|
|
20877
21037
|
export type OpUpdatePortfolioBlockErrors = {
|
|
20878
21038
|
/**
|
|
20879
|
-
* Invalid request
|
|
21039
|
+
* Invalid request
|
|
20880
21040
|
*/
|
|
20881
|
-
400:
|
|
21041
|
+
400: ErrorResponse;
|
|
20882
21042
|
/**
|
|
20883
|
-
*
|
|
21043
|
+
* Authentication required
|
|
20884
21044
|
*/
|
|
20885
|
-
401:
|
|
21045
|
+
401: ErrorResponse;
|
|
20886
21046
|
/**
|
|
20887
|
-
*
|
|
21047
|
+
* Access denied
|
|
20888
21048
|
*/
|
|
20889
|
-
403:
|
|
21049
|
+
403: ErrorResponse;
|
|
20890
21050
|
/**
|
|
20891
|
-
* Resource not found
|
|
21051
|
+
* Resource not found
|
|
20892
21052
|
*/
|
|
20893
|
-
404:
|
|
21053
|
+
404: ErrorResponse;
|
|
20894
21054
|
/**
|
|
20895
|
-
* Idempotency-Key reused with
|
|
21055
|
+
* Idempotency-Key conflict — key reused with different body
|
|
20896
21056
|
*/
|
|
20897
|
-
409:
|
|
21057
|
+
409: ErrorResponse;
|
|
20898
21058
|
/**
|
|
20899
|
-
* Validation
|
|
21059
|
+
* Validation error
|
|
20900
21060
|
*/
|
|
20901
|
-
422:
|
|
21061
|
+
422: ErrorResponse;
|
|
20902
21062
|
/**
|
|
20903
21063
|
* Rate limit exceeded
|
|
20904
21064
|
*/
|
|
20905
|
-
429:
|
|
21065
|
+
429: ErrorResponse;
|
|
20906
21066
|
/**
|
|
20907
|
-
* Internal error
|
|
21067
|
+
* Internal server error
|
|
20908
21068
|
*/
|
|
20909
|
-
500:
|
|
21069
|
+
500: ErrorResponse;
|
|
20910
21070
|
};
|
|
20911
21071
|
export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
|
|
20912
21072
|
export type OpUpdatePortfolioBlockResponses = {
|
|
@@ -20935,37 +21095,37 @@ export type OpDeletePortfolioBlockData = {
|
|
|
20935
21095
|
};
|
|
20936
21096
|
export type OpDeletePortfolioBlockErrors = {
|
|
20937
21097
|
/**
|
|
20938
|
-
* Invalid request
|
|
21098
|
+
* Invalid request
|
|
20939
21099
|
*/
|
|
20940
|
-
400:
|
|
21100
|
+
400: ErrorResponse;
|
|
20941
21101
|
/**
|
|
20942
|
-
*
|
|
21102
|
+
* Authentication required
|
|
20943
21103
|
*/
|
|
20944
|
-
401:
|
|
21104
|
+
401: ErrorResponse;
|
|
20945
21105
|
/**
|
|
20946
|
-
*
|
|
21106
|
+
* Access denied
|
|
20947
21107
|
*/
|
|
20948
|
-
403:
|
|
21108
|
+
403: ErrorResponse;
|
|
20949
21109
|
/**
|
|
20950
|
-
* Resource not found
|
|
21110
|
+
* Resource not found
|
|
20951
21111
|
*/
|
|
20952
|
-
404:
|
|
21112
|
+
404: ErrorResponse;
|
|
20953
21113
|
/**
|
|
20954
|
-
* Idempotency-Key reused with
|
|
21114
|
+
* Idempotency-Key conflict — key reused with different body
|
|
20955
21115
|
*/
|
|
20956
|
-
409:
|
|
21116
|
+
409: ErrorResponse;
|
|
20957
21117
|
/**
|
|
20958
|
-
* Validation
|
|
21118
|
+
* Validation error
|
|
20959
21119
|
*/
|
|
20960
|
-
422:
|
|
21120
|
+
422: ErrorResponse;
|
|
20961
21121
|
/**
|
|
20962
21122
|
* Rate limit exceeded
|
|
20963
21123
|
*/
|
|
20964
|
-
429:
|
|
21124
|
+
429: ErrorResponse;
|
|
20965
21125
|
/**
|
|
20966
|
-
* Internal error
|
|
21126
|
+
* Internal server error
|
|
20967
21127
|
*/
|
|
20968
|
-
500:
|
|
21128
|
+
500: ErrorResponse;
|
|
20969
21129
|
};
|
|
20970
21130
|
export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
|
|
20971
21131
|
export type OpDeletePortfolioBlockResponses = {
|
|
@@ -20994,37 +21154,37 @@ export type OpCreateSecurityData = {
|
|
|
20994
21154
|
};
|
|
20995
21155
|
export type OpCreateSecurityErrors = {
|
|
20996
21156
|
/**
|
|
20997
|
-
* Invalid request
|
|
21157
|
+
* Invalid request
|
|
20998
21158
|
*/
|
|
20999
|
-
400:
|
|
21159
|
+
400: ErrorResponse;
|
|
21000
21160
|
/**
|
|
21001
|
-
*
|
|
21161
|
+
* Authentication required
|
|
21002
21162
|
*/
|
|
21003
|
-
401:
|
|
21163
|
+
401: ErrorResponse;
|
|
21004
21164
|
/**
|
|
21005
|
-
*
|
|
21165
|
+
* Access denied
|
|
21006
21166
|
*/
|
|
21007
|
-
403:
|
|
21167
|
+
403: ErrorResponse;
|
|
21008
21168
|
/**
|
|
21009
|
-
* Resource not found
|
|
21169
|
+
* Resource not found
|
|
21010
21170
|
*/
|
|
21011
|
-
404:
|
|
21171
|
+
404: ErrorResponse;
|
|
21012
21172
|
/**
|
|
21013
|
-
* Idempotency-Key reused with
|
|
21173
|
+
* Idempotency-Key conflict — key reused with different body
|
|
21014
21174
|
*/
|
|
21015
|
-
409:
|
|
21175
|
+
409: ErrorResponse;
|
|
21016
21176
|
/**
|
|
21017
|
-
* Validation
|
|
21177
|
+
* Validation error
|
|
21018
21178
|
*/
|
|
21019
|
-
422:
|
|
21179
|
+
422: ErrorResponse;
|
|
21020
21180
|
/**
|
|
21021
21181
|
* Rate limit exceeded
|
|
21022
21182
|
*/
|
|
21023
|
-
429:
|
|
21183
|
+
429: ErrorResponse;
|
|
21024
21184
|
/**
|
|
21025
|
-
* Internal error
|
|
21185
|
+
* Internal server error
|
|
21026
21186
|
*/
|
|
21027
|
-
500:
|
|
21187
|
+
500: ErrorResponse;
|
|
21028
21188
|
};
|
|
21029
21189
|
export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
|
|
21030
21190
|
export type OpCreateSecurityResponses = {
|
|
@@ -21053,37 +21213,37 @@ export type OpUpdateSecurityData = {
|
|
|
21053
21213
|
};
|
|
21054
21214
|
export type OpUpdateSecurityErrors = {
|
|
21055
21215
|
/**
|
|
21056
|
-
* Invalid request
|
|
21216
|
+
* Invalid request
|
|
21057
21217
|
*/
|
|
21058
|
-
400:
|
|
21218
|
+
400: ErrorResponse;
|
|
21059
21219
|
/**
|
|
21060
|
-
*
|
|
21220
|
+
* Authentication required
|
|
21061
21221
|
*/
|
|
21062
|
-
401:
|
|
21222
|
+
401: ErrorResponse;
|
|
21063
21223
|
/**
|
|
21064
|
-
*
|
|
21224
|
+
* Access denied
|
|
21065
21225
|
*/
|
|
21066
|
-
403:
|
|
21226
|
+
403: ErrorResponse;
|
|
21067
21227
|
/**
|
|
21068
|
-
* Resource not found
|
|
21228
|
+
* Resource not found
|
|
21069
21229
|
*/
|
|
21070
|
-
404:
|
|
21230
|
+
404: ErrorResponse;
|
|
21071
21231
|
/**
|
|
21072
|
-
* Idempotency-Key reused with
|
|
21232
|
+
* Idempotency-Key conflict — key reused with different body
|
|
21073
21233
|
*/
|
|
21074
|
-
409:
|
|
21234
|
+
409: ErrorResponse;
|
|
21075
21235
|
/**
|
|
21076
|
-
* Validation
|
|
21236
|
+
* Validation error
|
|
21077
21237
|
*/
|
|
21078
|
-
422:
|
|
21238
|
+
422: ErrorResponse;
|
|
21079
21239
|
/**
|
|
21080
21240
|
* Rate limit exceeded
|
|
21081
21241
|
*/
|
|
21082
|
-
429:
|
|
21242
|
+
429: ErrorResponse;
|
|
21083
21243
|
/**
|
|
21084
|
-
* Internal error
|
|
21244
|
+
* Internal server error
|
|
21085
21245
|
*/
|
|
21086
|
-
500:
|
|
21246
|
+
500: ErrorResponse;
|
|
21087
21247
|
};
|
|
21088
21248
|
export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
|
|
21089
21249
|
export type OpUpdateSecurityResponses = {
|
|
@@ -21112,37 +21272,37 @@ export type OpDeleteSecurityData = {
|
|
|
21112
21272
|
};
|
|
21113
21273
|
export type OpDeleteSecurityErrors = {
|
|
21114
21274
|
/**
|
|
21115
|
-
* Invalid request
|
|
21275
|
+
* Invalid request
|
|
21116
21276
|
*/
|
|
21117
|
-
400:
|
|
21277
|
+
400: ErrorResponse;
|
|
21118
21278
|
/**
|
|
21119
|
-
*
|
|
21279
|
+
* Authentication required
|
|
21120
21280
|
*/
|
|
21121
|
-
401:
|
|
21281
|
+
401: ErrorResponse;
|
|
21122
21282
|
/**
|
|
21123
|
-
*
|
|
21283
|
+
* Access denied
|
|
21124
21284
|
*/
|
|
21125
|
-
403:
|
|
21285
|
+
403: ErrorResponse;
|
|
21126
21286
|
/**
|
|
21127
|
-
* Resource not found
|
|
21287
|
+
* Resource not found
|
|
21128
21288
|
*/
|
|
21129
|
-
404:
|
|
21289
|
+
404: ErrorResponse;
|
|
21130
21290
|
/**
|
|
21131
|
-
* Idempotency-Key reused with
|
|
21291
|
+
* Idempotency-Key conflict — key reused with different body
|
|
21132
21292
|
*/
|
|
21133
|
-
409:
|
|
21293
|
+
409: ErrorResponse;
|
|
21134
21294
|
/**
|
|
21135
|
-
* Validation
|
|
21295
|
+
* Validation error
|
|
21136
21296
|
*/
|
|
21137
|
-
422:
|
|
21297
|
+
422: ErrorResponse;
|
|
21138
21298
|
/**
|
|
21139
21299
|
* Rate limit exceeded
|
|
21140
21300
|
*/
|
|
21141
|
-
429:
|
|
21301
|
+
429: ErrorResponse;
|
|
21142
21302
|
/**
|
|
21143
|
-
* Internal error
|
|
21303
|
+
* Internal server error
|
|
21144
21304
|
*/
|
|
21145
|
-
500:
|
|
21305
|
+
500: ErrorResponse;
|
|
21146
21306
|
};
|
|
21147
21307
|
export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];
|
|
21148
21308
|
export type OpDeleteSecurityResponses = {
|