@robosystems/client 0.3.40 → 0.3.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types.gen.ts CHANGED
@@ -6706,6 +6706,12 @@ export type McpToolsResponse = {
6706
6706
  tools: Array<{
6707
6707
  [key: string]: unknown;
6708
6708
  }>;
6709
+ /**
6710
+ * Instructions
6711
+ *
6712
+ * Per-graph routing guidance for MCP clients, tailored to the graph's category and live tool set. Clients should pass this to the MCP server's `instructions` handshake field so it is always in the agent's context.
6713
+ */
6714
+ instructions?: string | null;
6709
6715
  };
6710
6716
 
6711
6717
  /**
@@ -8080,6 +8086,52 @@ export type OperationEnvelopeReportResponse = {
8080
8086
  idempotentReplay?: boolean;
8081
8087
  };
8082
8088
 
8089
+ /**
8090
+ * OperationEnvelope[ScheduleCreatedResponse]
8091
+ */
8092
+ export type OperationEnvelopeScheduleCreatedResponse = {
8093
+ /**
8094
+ * Operation
8095
+ *
8096
+ * Kebab-case operation name
8097
+ */
8098
+ operation: string;
8099
+ /**
8100
+ * Operationid
8101
+ *
8102
+ * op_-prefixed ULID for audit and SSE correlation
8103
+ */
8104
+ operationId: string;
8105
+ /**
8106
+ * Status
8107
+ *
8108
+ * Operation lifecycle state
8109
+ */
8110
+ status: 'completed' | 'pending' | 'failed';
8111
+ /**
8112
+ * Command-specific result payload
8113
+ */
8114
+ result?: ScheduleCreatedResponse | null;
8115
+ /**
8116
+ * At
8117
+ *
8118
+ * ISO-8601 UTC timestamp
8119
+ */
8120
+ at: string;
8121
+ /**
8122
+ * Createdby
8123
+ *
8124
+ * User ID that initiated the operation (null for legacy callers)
8125
+ */
8126
+ createdBy?: string | null;
8127
+ /**
8128
+ * Idempotentreplay
8129
+ *
8130
+ * True when this envelope came from the idempotency cache — the underlying command did not execute again. False on fresh executions.
8131
+ */
8132
+ idempotentReplay?: boolean;
8133
+ };
8134
+
8083
8135
  /**
8084
8136
  * OperationEnvelope[SecurityResponse]
8085
8137
  */
@@ -9820,6 +9872,32 @@ export type RateLimits = {
9820
9872
  burst_capacity: number;
9821
9873
  };
9822
9874
 
9875
+ /**
9876
+ * RebuildScheduleRequest
9877
+ *
9878
+ * Re-run the schedule generator in place on an existing schedule.
9879
+ *
9880
+ * Atomic alternative to delete-then-recreate: the structure id and its
9881
+ * element associations are preserved, the old pending obligation chain
9882
+ * is voided, the old facts + rules are deleted, and a fresh set of
9883
+ * forward facts + a fresh obligation chain are regenerated from the
9884
+ * schedule's stored definition (entry_template / schedule_metadata /
9885
+ * monthly_amount / period bounds on the Structure's metadata).
9886
+ *
9887
+ * The historical-vs-in-scope split is re-derived from the CURRENT fiscal
9888
+ * calendar `closed_through`, so a rebuild re-scopes the schedule to
9889
+ * today's close state. Use this to pick up a fixed generator (e.g. the
9890
+ * roll-forward direction fix) without orphaning obligations.
9891
+ */
9892
+ export type RebuildScheduleRequest = {
9893
+ /**
9894
+ * Structure Id
9895
+ *
9896
+ * The schedule structure to regenerate in place.
9897
+ */
9898
+ structure_id: string;
9899
+ };
9900
+
9823
9901
  /**
9824
9902
  * RegenerateReportOperation
9825
9903
  *
@@ -10611,6 +10689,46 @@ export type SsoTokenResponse = {
10611
10689
  apps: Array<string>;
10612
10690
  };
10613
10691
 
10692
+ /**
10693
+ * ScheduleCreatedResponse
10694
+ */
10695
+ export type ScheduleCreatedResponse = {
10696
+ /**
10697
+ * Structure Id
10698
+ */
10699
+ structure_id: string;
10700
+ /**
10701
+ * Name
10702
+ */
10703
+ name: string;
10704
+ /**
10705
+ * Taxonomy Id
10706
+ */
10707
+ taxonomy_id: string;
10708
+ /**
10709
+ * Total Periods
10710
+ */
10711
+ total_periods: number;
10712
+ /**
10713
+ * Total Facts
10714
+ */
10715
+ total_facts: number;
10716
+ /**
10717
+ * Rule Summary
10718
+ */
10719
+ rule_summary?: {
10720
+ [key: string]: number;
10721
+ } | null;
10722
+ /**
10723
+ * Schedule Created Event Id
10724
+ */
10725
+ schedule_created_event_id?: string | null;
10726
+ /**
10727
+ * Pending Event Count
10728
+ */
10729
+ pending_event_count?: number;
10730
+ };
10731
+
10614
10732
  /**
10615
10733
  * ScheduleMechanics
10616
10734
  *
@@ -13240,7 +13358,7 @@ export type UpdateRollforwardRequest = {
13240
13358
  * NOT editable via this op: period_start, period_end, monthly_amount.
13241
13359
  * Those require fact regeneration — fire an event block that terminates
13242
13360
  * the schedule (e.g., `asset_disposed`) and create a fresh schedule via
13243
- * `create-schedule`.
13361
+ * `create-information-block` (`block_type='schedule'`).
13244
13362
  *
13245
13363
  * Omitted fields are left unchanged.
13246
13364
  */
@@ -15520,32 +15638,31 @@ export type GetOrgUsageResponses = {
15520
15638
 
15521
15639
  export type GetOrgUsageResponse = GetOrgUsageResponses[keyof GetOrgUsageResponses];
15522
15640
 
15523
- export type ListConnectionsData = {
15524
- body?: never;
15525
- path: {
15641
+ export type SyncConnectionData = {
15642
+ body: SyncConnectionRequest;
15643
+ headers?: {
15526
15644
  /**
15527
- * Graph Id
15645
+ * Idempotency-Key
15528
15646
  */
15529
- graph_id: string;
15647
+ 'Idempotency-Key'?: string | null;
15530
15648
  };
15531
- query?: {
15649
+ path: {
15532
15650
  /**
15533
- * Entity Id
15534
- *
15535
- * Filter by entity ID
15651
+ * Graph Id
15536
15652
  */
15537
- entity_id?: string | null;
15653
+ graph_id: string;
15538
15654
  /**
15539
- * Provider
15655
+ * Connection Id
15540
15656
  *
15541
- * Filter by provider type
15657
+ * Connection identifier
15542
15658
  */
15543
- provider?: 'sec' | 'quickbooks' | null;
15659
+ connection_id: string;
15544
15660
  };
15545
- url: '/v1/graphs/{graph_id}/connections';
15661
+ query?: never;
15662
+ url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
15546
15663
  };
15547
15664
 
15548
- export type ListConnectionsErrors = {
15665
+ export type SyncConnectionErrors = {
15549
15666
  /**
15550
15667
  * Invalid request
15551
15668
  */
@@ -15563,9 +15680,13 @@ export type ListConnectionsErrors = {
15563
15680
  */
15564
15681
  404: ErrorResponse;
15565
15682
  /**
15566
- * Validation Error
15683
+ * Idempotency-Key conflict — key reused with different body
15567
15684
  */
15568
- 422: HttpValidationError;
15685
+ 409: ErrorResponse;
15686
+ /**
15687
+ * Validation error
15688
+ */
15689
+ 422: ErrorResponse;
15569
15690
  /**
15570
15691
  * Rate limit exceeded
15571
15692
  */
@@ -15574,23 +15695,25 @@ export type ListConnectionsErrors = {
15574
15695
  * Internal server error
15575
15696
  */
15576
15697
  500: ErrorResponse;
15698
+ /**
15699
+ * Sync request timed out
15700
+ */
15701
+ 504: unknown;
15577
15702
  };
15578
15703
 
15579
- export type ListConnectionsError = ListConnectionsErrors[keyof ListConnectionsErrors];
15704
+ export type SyncConnectionError = SyncConnectionErrors[keyof SyncConnectionErrors];
15580
15705
 
15581
- export type ListConnectionsResponses = {
15706
+ export type SyncConnectionResponses = {
15582
15707
  /**
15583
- * Response Listconnections
15584
- *
15585
15708
  * Successful Response
15586
15709
  */
15587
- 200: Array<ConnectionResponse>;
15710
+ 202: OperationEnvelope;
15588
15711
  };
15589
15712
 
15590
- export type ListConnectionsResponse = ListConnectionsResponses[keyof ListConnectionsResponses];
15713
+ export type SyncConnectionResponse = SyncConnectionResponses[keyof SyncConnectionResponses];
15591
15714
 
15592
- export type CreateConnectionData = {
15593
- body: CreateConnectionRequest;
15715
+ export type GetConnectionOptionsData = {
15716
+ body?: never;
15594
15717
  path: {
15595
15718
  /**
15596
15719
  * Graph Id
@@ -15598,10 +15721,10 @@ export type CreateConnectionData = {
15598
15721
  graph_id: string;
15599
15722
  };
15600
15723
  query?: never;
15601
- url: '/v1/graphs/{graph_id}/connections';
15724
+ url: '/v1/graphs/{graph_id}/connections/options';
15602
15725
  };
15603
15726
 
15604
- export type CreateConnectionErrors = {
15727
+ export type GetConnectionOptionsErrors = {
15605
15728
  /**
15606
15729
  * Invalid request
15607
15730
  */
@@ -15618,10 +15741,6 @@ export type CreateConnectionErrors = {
15618
15741
  * Resource not found
15619
15742
  */
15620
15743
  404: ErrorResponse;
15621
- /**
15622
- * Connection already exists for this provider
15623
- */
15624
- 409: unknown;
15625
15744
  /**
15626
15745
  * Validation Error
15627
15746
  */
@@ -15636,19 +15755,19 @@ export type CreateConnectionErrors = {
15636
15755
  500: ErrorResponse;
15637
15756
  };
15638
15757
 
15639
- export type CreateConnectionError = CreateConnectionErrors[keyof CreateConnectionErrors];
15758
+ export type GetConnectionOptionsError = GetConnectionOptionsErrors[keyof GetConnectionOptionsErrors];
15640
15759
 
15641
- export type CreateConnectionResponses = {
15760
+ export type GetConnectionOptionsResponses = {
15642
15761
  /**
15643
15762
  * Successful Response
15644
15763
  */
15645
- 201: ConnectionResponse;
15764
+ 200: ConnectionOptionsResponse;
15646
15765
  };
15647
15766
 
15648
- export type CreateConnectionResponse = CreateConnectionResponses[keyof CreateConnectionResponses];
15767
+ export type GetConnectionOptionsResponse = GetConnectionOptionsResponses[keyof GetConnectionOptionsResponses];
15649
15768
 
15650
- export type GetConnectionOptionsData = {
15651
- body?: never;
15769
+ export type InitOAuthData = {
15770
+ body: OAuthInitRequest;
15652
15771
  path: {
15653
15772
  /**
15654
15773
  * Graph Id
@@ -15656,10 +15775,10 @@ export type GetConnectionOptionsData = {
15656
15775
  graph_id: string;
15657
15776
  };
15658
15777
  query?: never;
15659
- url: '/v1/graphs/{graph_id}/connections/options';
15778
+ url: '/v1/graphs/{graph_id}/connections/oauth/init';
15660
15779
  };
15661
15780
 
15662
- export type GetConnectionOptionsErrors = {
15781
+ export type InitOAuthErrors = {
15663
15782
  /**
15664
15783
  * Invalid request
15665
15784
  */
@@ -15690,30 +15809,36 @@ export type GetConnectionOptionsErrors = {
15690
15809
  500: ErrorResponse;
15691
15810
  };
15692
15811
 
15693
- export type GetConnectionOptionsError = GetConnectionOptionsErrors[keyof GetConnectionOptionsErrors];
15812
+ export type InitOAuthError = InitOAuthErrors[keyof InitOAuthErrors];
15694
15813
 
15695
- export type GetConnectionOptionsResponses = {
15814
+ export type InitOAuthResponses = {
15696
15815
  /**
15697
15816
  * Successful Response
15698
15817
  */
15699
- 200: ConnectionOptionsResponse;
15818
+ 200: OAuthInitResponse;
15700
15819
  };
15701
15820
 
15702
- export type GetConnectionOptionsResponse = GetConnectionOptionsResponses[keyof GetConnectionOptionsResponses];
15821
+ export type InitOAuthResponse = InitOAuthResponses[keyof InitOAuthResponses];
15703
15822
 
15704
- export type InitOAuthData = {
15705
- body: OAuthInitRequest;
15823
+ export type OauthCallbackData = {
15824
+ body: OAuthCallbackRequest;
15706
15825
  path: {
15826
+ /**
15827
+ * Provider
15828
+ *
15829
+ * OAuth provider name
15830
+ */
15831
+ provider: string;
15707
15832
  /**
15708
15833
  * Graph Id
15709
15834
  */
15710
15835
  graph_id: string;
15711
15836
  };
15712
15837
  query?: never;
15713
- url: '/v1/graphs/{graph_id}/connections/oauth/init';
15838
+ url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
15714
15839
  };
15715
15840
 
15716
- export type InitOAuthErrors = {
15841
+ export type OauthCallbackErrors = {
15717
15842
  /**
15718
15843
  * Invalid request
15719
15844
  */
@@ -15744,36 +15869,41 @@ export type InitOAuthErrors = {
15744
15869
  500: ErrorResponse;
15745
15870
  };
15746
15871
 
15747
- export type InitOAuthError = InitOAuthErrors[keyof InitOAuthErrors];
15872
+ export type OauthCallbackError = OauthCallbackErrors[keyof OauthCallbackErrors];
15748
15873
 
15749
- export type InitOAuthResponses = {
15874
+ export type OauthCallbackResponses = {
15750
15875
  /**
15751
15876
  * Successful Response
15752
15877
  */
15753
- 200: OAuthInitResponse;
15878
+ 200: unknown;
15754
15879
  };
15755
15880
 
15756
- export type InitOAuthResponse = InitOAuthResponses[keyof InitOAuthResponses];
15757
-
15758
- export type OauthCallbackData = {
15759
- body: OAuthCallbackRequest;
15881
+ export type ListConnectionsData = {
15882
+ body?: never;
15760
15883
  path: {
15761
15884
  /**
15762
- * Provider
15885
+ * Graph Id
15886
+ */
15887
+ graph_id: string;
15888
+ };
15889
+ query?: {
15890
+ /**
15891
+ * Entity Id
15763
15892
  *
15764
- * OAuth provider name
15893
+ * Filter by entity ID
15765
15894
  */
15766
- provider: string;
15895
+ entity_id?: string | null;
15767
15896
  /**
15768
- * Graph Id
15897
+ * Provider
15898
+ *
15899
+ * Filter by provider type
15769
15900
  */
15770
- graph_id: string;
15901
+ provider?: 'sec' | 'quickbooks' | null;
15771
15902
  };
15772
- query?: never;
15773
- url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
15903
+ url: '/v1/graphs/{graph_id}/connections';
15774
15904
  };
15775
15905
 
15776
- export type OauthCallbackErrors = {
15906
+ export type ListConnectionsErrors = {
15777
15907
  /**
15778
15908
  * Invalid request
15779
15909
  */
@@ -15804,34 +15934,32 @@ export type OauthCallbackErrors = {
15804
15934
  500: ErrorResponse;
15805
15935
  };
15806
15936
 
15807
- export type OauthCallbackError = OauthCallbackErrors[keyof OauthCallbackErrors];
15937
+ export type ListConnectionsError = ListConnectionsErrors[keyof ListConnectionsErrors];
15808
15938
 
15809
- export type OauthCallbackResponses = {
15939
+ export type ListConnectionsResponses = {
15810
15940
  /**
15941
+ * Response Listconnections
15942
+ *
15811
15943
  * Successful Response
15812
15944
  */
15813
- 200: unknown;
15945
+ 200: Array<ConnectionResponse>;
15814
15946
  };
15815
15947
 
15816
- export type DeleteConnectionData = {
15817
- body?: never;
15948
+ export type ListConnectionsResponse = ListConnectionsResponses[keyof ListConnectionsResponses];
15949
+
15950
+ export type CreateConnectionData = {
15951
+ body: CreateConnectionRequest;
15818
15952
  path: {
15819
15953
  /**
15820
15954
  * Graph Id
15821
15955
  */
15822
15956
  graph_id: string;
15823
- /**
15824
- * Connection Id
15825
- *
15826
- * Connection identifier
15827
- */
15828
- connection_id: string;
15829
15957
  };
15830
15958
  query?: never;
15831
- url: '/v1/graphs/{graph_id}/connections/{connection_id}';
15959
+ url: '/v1/graphs/{graph_id}/connections';
15832
15960
  };
15833
15961
 
15834
- export type DeleteConnectionErrors = {
15962
+ export type CreateConnectionErrors = {
15835
15963
  /**
15836
15964
  * Invalid request
15837
15965
  */
@@ -15848,6 +15976,10 @@ export type DeleteConnectionErrors = {
15848
15976
  * Resource not found
15849
15977
  */
15850
15978
  404: ErrorResponse;
15979
+ /**
15980
+ * Connection already exists for this provider
15981
+ */
15982
+ 409: unknown;
15851
15983
  /**
15852
15984
  * Validation Error
15853
15985
  */
@@ -15862,18 +15994,18 @@ export type DeleteConnectionErrors = {
15862
15994
  500: ErrorResponse;
15863
15995
  };
15864
15996
 
15865
- export type DeleteConnectionError = DeleteConnectionErrors[keyof DeleteConnectionErrors];
15997
+ export type CreateConnectionError = CreateConnectionErrors[keyof CreateConnectionErrors];
15866
15998
 
15867
- export type DeleteConnectionResponses = {
15999
+ export type CreateConnectionResponses = {
15868
16000
  /**
15869
16001
  * Successful Response
15870
16002
  */
15871
- 200: SuccessResponse;
16003
+ 201: ConnectionResponse;
15872
16004
  };
15873
16005
 
15874
- export type DeleteConnectionResponse = DeleteConnectionResponses[keyof DeleteConnectionResponses];
16006
+ export type CreateConnectionResponse = CreateConnectionResponses[keyof CreateConnectionResponses];
15875
16007
 
15876
- export type GetConnectionData = {
16008
+ export type DeleteConnectionData = {
15877
16009
  body?: never;
15878
16010
  path: {
15879
16011
  /**
@@ -15883,7 +16015,7 @@ export type GetConnectionData = {
15883
16015
  /**
15884
16016
  * Connection Id
15885
16017
  *
15886
- * Unique connection identifier
16018
+ * Connection identifier
15887
16019
  */
15888
16020
  connection_id: string;
15889
16021
  };
@@ -15891,7 +16023,7 @@ export type GetConnectionData = {
15891
16023
  url: '/v1/graphs/{graph_id}/connections/{connection_id}';
15892
16024
  };
15893
16025
 
15894
- export type GetConnectionErrors = {
16026
+ export type DeleteConnectionErrors = {
15895
16027
  /**
15896
16028
  * Invalid request
15897
16029
  */
@@ -15922,25 +16054,19 @@ export type GetConnectionErrors = {
15922
16054
  500: ErrorResponse;
15923
16055
  };
15924
16056
 
15925
- export type GetConnectionError = GetConnectionErrors[keyof GetConnectionErrors];
16057
+ export type DeleteConnectionError = DeleteConnectionErrors[keyof DeleteConnectionErrors];
15926
16058
 
15927
- export type GetConnectionResponses = {
16059
+ export type DeleteConnectionResponses = {
15928
16060
  /**
15929
16061
  * Successful Response
15930
16062
  */
15931
- 200: ConnectionResponse;
16063
+ 200: SuccessResponse;
15932
16064
  };
15933
16065
 
15934
- export type GetConnectionResponse = GetConnectionResponses[keyof GetConnectionResponses];
16066
+ export type DeleteConnectionResponse = DeleteConnectionResponses[keyof DeleteConnectionResponses];
15935
16067
 
15936
- export type SyncConnectionData = {
15937
- body: SyncConnectionRequest;
15938
- headers?: {
15939
- /**
15940
- * Idempotency-Key
15941
- */
15942
- 'Idempotency-Key'?: string | null;
15943
- };
16068
+ export type GetConnectionData = {
16069
+ body?: never;
15944
16070
  path: {
15945
16071
  /**
15946
16072
  * Graph Id
@@ -15949,15 +16075,15 @@ export type SyncConnectionData = {
15949
16075
  /**
15950
16076
  * Connection Id
15951
16077
  *
15952
- * Connection identifier
16078
+ * Unique connection identifier
15953
16079
  */
15954
16080
  connection_id: string;
15955
16081
  };
15956
16082
  query?: never;
15957
- url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
16083
+ url: '/v1/graphs/{graph_id}/connections/{connection_id}';
15958
16084
  };
15959
16085
 
15960
- export type SyncConnectionErrors = {
16086
+ export type GetConnectionErrors = {
15961
16087
  /**
15962
16088
  * Invalid request
15963
16089
  */
@@ -15975,13 +16101,9 @@ export type SyncConnectionErrors = {
15975
16101
  */
15976
16102
  404: ErrorResponse;
15977
16103
  /**
15978
- * Idempotency-Key conflict — key reused with different body
15979
- */
15980
- 409: ErrorResponse;
15981
- /**
15982
- * Validation error
16104
+ * Validation Error
15983
16105
  */
15984
- 422: ErrorResponse;
16106
+ 422: HttpValidationError;
15985
16107
  /**
15986
16108
  * Rate limit exceeded
15987
16109
  */
@@ -15990,22 +16112,18 @@ export type SyncConnectionErrors = {
15990
16112
  * Internal server error
15991
16113
  */
15992
16114
  500: ErrorResponse;
15993
- /**
15994
- * Sync request timed out
15995
- */
15996
- 504: unknown;
15997
16115
  };
15998
16116
 
15999
- export type SyncConnectionError = SyncConnectionErrors[keyof SyncConnectionErrors];
16117
+ export type GetConnectionError = GetConnectionErrors[keyof GetConnectionErrors];
16000
16118
 
16001
- export type SyncConnectionResponses = {
16119
+ export type GetConnectionResponses = {
16002
16120
  /**
16003
16121
  * Successful Response
16004
16122
  */
16005
- 202: OperationEnvelope;
16123
+ 200: ConnectionResponse;
16006
16124
  };
16007
16125
 
16008
- export type SyncConnectionResponse = SyncConnectionResponses[keyof SyncConnectionResponses];
16126
+ export type GetConnectionResponse = GetConnectionResponses[keyof GetConnectionResponses];
16009
16127
 
16010
16128
  export type SetConnectionWritePolicyData = {
16011
16129
  body: SetWritePolicyRequest;
@@ -21860,6 +21978,70 @@ export type OpPromoteObligationsResponses = {
21860
21978
 
21861
21979
  export type OpPromoteObligationsResponse = OpPromoteObligationsResponses[keyof OpPromoteObligationsResponses];
21862
21980
 
21981
+ export type OpRebuildScheduleData = {
21982
+ body: RebuildScheduleRequest;
21983
+ headers?: {
21984
+ /**
21985
+ * Idempotency-Key
21986
+ */
21987
+ 'Idempotency-Key'?: string | null;
21988
+ };
21989
+ path: {
21990
+ /**
21991
+ * Graph Id
21992
+ */
21993
+ graph_id: string;
21994
+ };
21995
+ query?: never;
21996
+ url: '/extensions/roboledger/{graph_id}/operations/rebuild-schedule';
21997
+ };
21998
+
21999
+ export type OpRebuildScheduleErrors = {
22000
+ /**
22001
+ * Invalid request
22002
+ */
22003
+ 400: ErrorResponse;
22004
+ /**
22005
+ * Authentication required
22006
+ */
22007
+ 401: ErrorResponse;
22008
+ /**
22009
+ * Access denied
22010
+ */
22011
+ 403: ErrorResponse;
22012
+ /**
22013
+ * Resource not found
22014
+ */
22015
+ 404: ErrorResponse;
22016
+ /**
22017
+ * Idempotency-Key conflict — key reused with different body
22018
+ */
22019
+ 409: ErrorResponse;
22020
+ /**
22021
+ * Validation error
22022
+ */
22023
+ 422: ErrorResponse;
22024
+ /**
22025
+ * Rate limit exceeded
22026
+ */
22027
+ 429: ErrorResponse;
22028
+ /**
22029
+ * Internal server error
22030
+ */
22031
+ 500: ErrorResponse;
22032
+ };
22033
+
22034
+ export type OpRebuildScheduleError = OpRebuildScheduleErrors[keyof OpRebuildScheduleErrors];
22035
+
22036
+ export type OpRebuildScheduleResponses = {
22037
+ /**
22038
+ * Successful Response
22039
+ */
22040
+ 200: OperationEnvelopeScheduleCreatedResponse;
22041
+ };
22042
+
22043
+ export type OpRebuildScheduleResponse = OpRebuildScheduleResponses[keyof OpRebuildScheduleResponses];
22044
+
21863
22045
  export type OpSetCloseTargetData = {
21864
22046
  body: SetCloseTargetOperation;
21865
22047
  headers?: {