@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.
@@ -6548,6 +6548,12 @@ export type McpToolsResponse = {
6548
6548
  tools: Array<{
6549
6549
  [key: string]: unknown;
6550
6550
  }>;
6551
+ /**
6552
+ * Instructions
6553
+ *
6554
+ * 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.
6555
+ */
6556
+ instructions?: string | null;
6551
6557
  };
6552
6558
  /**
6553
6559
  * MaterializeOp
@@ -7891,6 +7897,51 @@ export type OperationEnvelopeReportResponse = {
7891
7897
  */
7892
7898
  idempotentReplay?: boolean;
7893
7899
  };
7900
+ /**
7901
+ * OperationEnvelope[ScheduleCreatedResponse]
7902
+ */
7903
+ export type OperationEnvelopeScheduleCreatedResponse = {
7904
+ /**
7905
+ * Operation
7906
+ *
7907
+ * Kebab-case operation name
7908
+ */
7909
+ operation: string;
7910
+ /**
7911
+ * Operationid
7912
+ *
7913
+ * op_-prefixed ULID for audit and SSE correlation
7914
+ */
7915
+ operationId: string;
7916
+ /**
7917
+ * Status
7918
+ *
7919
+ * Operation lifecycle state
7920
+ */
7921
+ status: 'completed' | 'pending' | 'failed';
7922
+ /**
7923
+ * Command-specific result payload
7924
+ */
7925
+ result?: ScheduleCreatedResponse | null;
7926
+ /**
7927
+ * At
7928
+ *
7929
+ * ISO-8601 UTC timestamp
7930
+ */
7931
+ at: string;
7932
+ /**
7933
+ * Createdby
7934
+ *
7935
+ * User ID that initiated the operation (null for legacy callers)
7936
+ */
7937
+ createdBy?: string | null;
7938
+ /**
7939
+ * Idempotentreplay
7940
+ *
7941
+ * True when this envelope came from the idempotency cache — the underlying command did not execute again. False on fresh executions.
7942
+ */
7943
+ idempotentReplay?: boolean;
7944
+ };
7894
7945
  /**
7895
7946
  * OperationEnvelope[SecurityResponse]
7896
7947
  */
@@ -9584,6 +9635,31 @@ export type RateLimits = {
9584
9635
  */
9585
9636
  burst_capacity: number;
9586
9637
  };
9638
+ /**
9639
+ * RebuildScheduleRequest
9640
+ *
9641
+ * Re-run the schedule generator in place on an existing schedule.
9642
+ *
9643
+ * Atomic alternative to delete-then-recreate: the structure id and its
9644
+ * element associations are preserved, the old pending obligation chain
9645
+ * is voided, the old facts + rules are deleted, and a fresh set of
9646
+ * forward facts + a fresh obligation chain are regenerated from the
9647
+ * schedule's stored definition (entry_template / schedule_metadata /
9648
+ * monthly_amount / period bounds on the Structure's metadata).
9649
+ *
9650
+ * The historical-vs-in-scope split is re-derived from the CURRENT fiscal
9651
+ * calendar `closed_through`, so a rebuild re-scopes the schedule to
9652
+ * today's close state. Use this to pick up a fixed generator (e.g. the
9653
+ * roll-forward direction fix) without orphaning obligations.
9654
+ */
9655
+ export type RebuildScheduleRequest = {
9656
+ /**
9657
+ * Structure Id
9658
+ *
9659
+ * The schedule structure to regenerate in place.
9660
+ */
9661
+ structure_id: string;
9662
+ };
9587
9663
  /**
9588
9664
  * RegenerateReportOperation
9589
9665
  *
@@ -10352,6 +10428,45 @@ export type SsoTokenResponse = {
10352
10428
  */
10353
10429
  apps: Array<string>;
10354
10430
  };
10431
+ /**
10432
+ * ScheduleCreatedResponse
10433
+ */
10434
+ export type ScheduleCreatedResponse = {
10435
+ /**
10436
+ * Structure Id
10437
+ */
10438
+ structure_id: string;
10439
+ /**
10440
+ * Name
10441
+ */
10442
+ name: string;
10443
+ /**
10444
+ * Taxonomy Id
10445
+ */
10446
+ taxonomy_id: string;
10447
+ /**
10448
+ * Total Periods
10449
+ */
10450
+ total_periods: number;
10451
+ /**
10452
+ * Total Facts
10453
+ */
10454
+ total_facts: number;
10455
+ /**
10456
+ * Rule Summary
10457
+ */
10458
+ rule_summary?: {
10459
+ [key: string]: number;
10460
+ } | null;
10461
+ /**
10462
+ * Schedule Created Event Id
10463
+ */
10464
+ schedule_created_event_id?: string | null;
10465
+ /**
10466
+ * Pending Event Count
10467
+ */
10468
+ pending_event_count?: number;
10469
+ };
10355
10470
  /**
10356
10471
  * ScheduleMechanics
10357
10472
  *
@@ -12915,7 +13030,7 @@ export type UpdateRollforwardRequest = {
12915
13030
  * NOT editable via this op: period_start, period_end, monthly_amount.
12916
13031
  * Those require fact regeneration — fire an event block that terminates
12917
13032
  * the schedule (e.g., `asset_disposed`) and create a fresh schedule via
12918
- * `create-schedule`.
13033
+ * `create-information-block` (`block_type='schedule'`).
12919
13034
  *
12920
13035
  * Omitted fields are left unchanged.
12921
13036
  */
@@ -15003,31 +15118,30 @@ export type GetOrgUsageResponses = {
15003
15118
  200: OrgUsageResponse;
15004
15119
  };
15005
15120
  export type GetOrgUsageResponse = GetOrgUsageResponses[keyof GetOrgUsageResponses];
15006
- export type ListConnectionsData = {
15007
- body?: never;
15008
- path: {
15121
+ export type SyncConnectionData = {
15122
+ body: SyncConnectionRequest;
15123
+ headers?: {
15009
15124
  /**
15010
- * Graph Id
15125
+ * Idempotency-Key
15011
15126
  */
15012
- graph_id: string;
15127
+ 'Idempotency-Key'?: string | null;
15013
15128
  };
15014
- query?: {
15129
+ path: {
15015
15130
  /**
15016
- * Entity Id
15017
- *
15018
- * Filter by entity ID
15131
+ * Graph Id
15019
15132
  */
15020
- entity_id?: string | null;
15133
+ graph_id: string;
15021
15134
  /**
15022
- * Provider
15135
+ * Connection Id
15023
15136
  *
15024
- * Filter by provider type
15137
+ * Connection identifier
15025
15138
  */
15026
- provider?: 'sec' | 'quickbooks' | null;
15139
+ connection_id: string;
15027
15140
  };
15028
- url: '/v1/graphs/{graph_id}/connections';
15141
+ query?: never;
15142
+ url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
15029
15143
  };
15030
- export type ListConnectionsErrors = {
15144
+ export type SyncConnectionErrors = {
15031
15145
  /**
15032
15146
  * Invalid request
15033
15147
  */
@@ -15045,9 +15159,13 @@ export type ListConnectionsErrors = {
15045
15159
  */
15046
15160
  404: ErrorResponse;
15047
15161
  /**
15048
- * Validation Error
15162
+ * Idempotency-Key conflict — key reused with different body
15049
15163
  */
15050
- 422: HttpValidationError;
15164
+ 409: ErrorResponse;
15165
+ /**
15166
+ * Validation error
15167
+ */
15168
+ 422: ErrorResponse;
15051
15169
  /**
15052
15170
  * Rate limit exceeded
15053
15171
  */
@@ -15056,19 +15174,21 @@ export type ListConnectionsErrors = {
15056
15174
  * Internal server error
15057
15175
  */
15058
15176
  500: ErrorResponse;
15177
+ /**
15178
+ * Sync request timed out
15179
+ */
15180
+ 504: unknown;
15059
15181
  };
15060
- export type ListConnectionsError = ListConnectionsErrors[keyof ListConnectionsErrors];
15061
- export type ListConnectionsResponses = {
15182
+ export type SyncConnectionError = SyncConnectionErrors[keyof SyncConnectionErrors];
15183
+ export type SyncConnectionResponses = {
15062
15184
  /**
15063
- * Response Listconnections
15064
- *
15065
15185
  * Successful Response
15066
15186
  */
15067
- 200: Array<ConnectionResponse>;
15187
+ 202: OperationEnvelope;
15068
15188
  };
15069
- export type ListConnectionsResponse = ListConnectionsResponses[keyof ListConnectionsResponses];
15070
- export type CreateConnectionData = {
15071
- body: CreateConnectionRequest;
15189
+ export type SyncConnectionResponse = SyncConnectionResponses[keyof SyncConnectionResponses];
15190
+ export type GetConnectionOptionsData = {
15191
+ body?: never;
15072
15192
  path: {
15073
15193
  /**
15074
15194
  * Graph Id
@@ -15076,9 +15196,9 @@ export type CreateConnectionData = {
15076
15196
  graph_id: string;
15077
15197
  };
15078
15198
  query?: never;
15079
- url: '/v1/graphs/{graph_id}/connections';
15199
+ url: '/v1/graphs/{graph_id}/connections/options';
15080
15200
  };
15081
- export type CreateConnectionErrors = {
15201
+ export type GetConnectionOptionsErrors = {
15082
15202
  /**
15083
15203
  * Invalid request
15084
15204
  */
@@ -15095,10 +15215,6 @@ export type CreateConnectionErrors = {
15095
15215
  * Resource not found
15096
15216
  */
15097
15217
  404: ErrorResponse;
15098
- /**
15099
- * Connection already exists for this provider
15100
- */
15101
- 409: unknown;
15102
15218
  /**
15103
15219
  * Validation Error
15104
15220
  */
@@ -15112,16 +15228,16 @@ export type CreateConnectionErrors = {
15112
15228
  */
15113
15229
  500: ErrorResponse;
15114
15230
  };
15115
- export type CreateConnectionError = CreateConnectionErrors[keyof CreateConnectionErrors];
15116
- export type CreateConnectionResponses = {
15231
+ export type GetConnectionOptionsError = GetConnectionOptionsErrors[keyof GetConnectionOptionsErrors];
15232
+ export type GetConnectionOptionsResponses = {
15117
15233
  /**
15118
15234
  * Successful Response
15119
15235
  */
15120
- 201: ConnectionResponse;
15236
+ 200: ConnectionOptionsResponse;
15121
15237
  };
15122
- export type CreateConnectionResponse = CreateConnectionResponses[keyof CreateConnectionResponses];
15123
- export type GetConnectionOptionsData = {
15124
- body?: never;
15238
+ export type GetConnectionOptionsResponse = GetConnectionOptionsResponses[keyof GetConnectionOptionsResponses];
15239
+ export type InitOAuthData = {
15240
+ body: OAuthInitRequest;
15125
15241
  path: {
15126
15242
  /**
15127
15243
  * Graph Id
@@ -15129,9 +15245,9 @@ export type GetConnectionOptionsData = {
15129
15245
  graph_id: string;
15130
15246
  };
15131
15247
  query?: never;
15132
- url: '/v1/graphs/{graph_id}/connections/options';
15248
+ url: '/v1/graphs/{graph_id}/connections/oauth/init';
15133
15249
  };
15134
- export type GetConnectionOptionsErrors = {
15250
+ export type InitOAuthErrors = {
15135
15251
  /**
15136
15252
  * Invalid request
15137
15253
  */
@@ -15161,26 +15277,32 @@ export type GetConnectionOptionsErrors = {
15161
15277
  */
15162
15278
  500: ErrorResponse;
15163
15279
  };
15164
- export type GetConnectionOptionsError = GetConnectionOptionsErrors[keyof GetConnectionOptionsErrors];
15165
- export type GetConnectionOptionsResponses = {
15280
+ export type InitOAuthError = InitOAuthErrors[keyof InitOAuthErrors];
15281
+ export type InitOAuthResponses = {
15166
15282
  /**
15167
15283
  * Successful Response
15168
15284
  */
15169
- 200: ConnectionOptionsResponse;
15285
+ 200: OAuthInitResponse;
15170
15286
  };
15171
- export type GetConnectionOptionsResponse = GetConnectionOptionsResponses[keyof GetConnectionOptionsResponses];
15172
- export type InitOAuthData = {
15173
- body: OAuthInitRequest;
15287
+ export type InitOAuthResponse = InitOAuthResponses[keyof InitOAuthResponses];
15288
+ export type OauthCallbackData = {
15289
+ body: OAuthCallbackRequest;
15174
15290
  path: {
15291
+ /**
15292
+ * Provider
15293
+ *
15294
+ * OAuth provider name
15295
+ */
15296
+ provider: string;
15175
15297
  /**
15176
15298
  * Graph Id
15177
15299
  */
15178
15300
  graph_id: string;
15179
15301
  };
15180
15302
  query?: never;
15181
- url: '/v1/graphs/{graph_id}/connections/oauth/init';
15303
+ url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
15182
15304
  };
15183
- export type InitOAuthErrors = {
15305
+ export type OauthCallbackErrors = {
15184
15306
  /**
15185
15307
  * Invalid request
15186
15308
  */
@@ -15210,32 +15332,38 @@ export type InitOAuthErrors = {
15210
15332
  */
15211
15333
  500: ErrorResponse;
15212
15334
  };
15213
- export type InitOAuthError = InitOAuthErrors[keyof InitOAuthErrors];
15214
- export type InitOAuthResponses = {
15335
+ export type OauthCallbackError = OauthCallbackErrors[keyof OauthCallbackErrors];
15336
+ export type OauthCallbackResponses = {
15215
15337
  /**
15216
15338
  * Successful Response
15217
15339
  */
15218
- 200: OAuthInitResponse;
15340
+ 200: unknown;
15219
15341
  };
15220
- export type InitOAuthResponse = InitOAuthResponses[keyof InitOAuthResponses];
15221
- export type OauthCallbackData = {
15222
- body: OAuthCallbackRequest;
15342
+ export type ListConnectionsData = {
15343
+ body?: never;
15223
15344
  path: {
15224
15345
  /**
15225
- * Provider
15346
+ * Graph Id
15347
+ */
15348
+ graph_id: string;
15349
+ };
15350
+ query?: {
15351
+ /**
15352
+ * Entity Id
15226
15353
  *
15227
- * OAuth provider name
15354
+ * Filter by entity ID
15228
15355
  */
15229
- provider: string;
15356
+ entity_id?: string | null;
15230
15357
  /**
15231
- * Graph Id
15358
+ * Provider
15359
+ *
15360
+ * Filter by provider type
15232
15361
  */
15233
- graph_id: string;
15362
+ provider?: 'sec' | 'quickbooks' | null;
15234
15363
  };
15235
- query?: never;
15236
- url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
15364
+ url: '/v1/graphs/{graph_id}/connections';
15237
15365
  };
15238
- export type OauthCallbackErrors = {
15366
+ export type ListConnectionsErrors = {
15239
15367
  /**
15240
15368
  * Invalid request
15241
15369
  */
@@ -15265,31 +15393,28 @@ export type OauthCallbackErrors = {
15265
15393
  */
15266
15394
  500: ErrorResponse;
15267
15395
  };
15268
- export type OauthCallbackError = OauthCallbackErrors[keyof OauthCallbackErrors];
15269
- export type OauthCallbackResponses = {
15396
+ export type ListConnectionsError = ListConnectionsErrors[keyof ListConnectionsErrors];
15397
+ export type ListConnectionsResponses = {
15270
15398
  /**
15399
+ * Response Listconnections
15400
+ *
15271
15401
  * Successful Response
15272
15402
  */
15273
- 200: unknown;
15403
+ 200: Array<ConnectionResponse>;
15274
15404
  };
15275
- export type DeleteConnectionData = {
15276
- body?: never;
15405
+ export type ListConnectionsResponse = ListConnectionsResponses[keyof ListConnectionsResponses];
15406
+ export type CreateConnectionData = {
15407
+ body: CreateConnectionRequest;
15277
15408
  path: {
15278
15409
  /**
15279
15410
  * Graph Id
15280
15411
  */
15281
15412
  graph_id: string;
15282
- /**
15283
- * Connection Id
15284
- *
15285
- * Connection identifier
15286
- */
15287
- connection_id: string;
15288
15413
  };
15289
15414
  query?: never;
15290
- url: '/v1/graphs/{graph_id}/connections/{connection_id}';
15415
+ url: '/v1/graphs/{graph_id}/connections';
15291
15416
  };
15292
- export type DeleteConnectionErrors = {
15417
+ export type CreateConnectionErrors = {
15293
15418
  /**
15294
15419
  * Invalid request
15295
15420
  */
@@ -15306,6 +15431,10 @@ export type DeleteConnectionErrors = {
15306
15431
  * Resource not found
15307
15432
  */
15308
15433
  404: ErrorResponse;
15434
+ /**
15435
+ * Connection already exists for this provider
15436
+ */
15437
+ 409: unknown;
15309
15438
  /**
15310
15439
  * Validation Error
15311
15440
  */
@@ -15319,15 +15448,15 @@ export type DeleteConnectionErrors = {
15319
15448
  */
15320
15449
  500: ErrorResponse;
15321
15450
  };
15322
- export type DeleteConnectionError = DeleteConnectionErrors[keyof DeleteConnectionErrors];
15323
- export type DeleteConnectionResponses = {
15451
+ export type CreateConnectionError = CreateConnectionErrors[keyof CreateConnectionErrors];
15452
+ export type CreateConnectionResponses = {
15324
15453
  /**
15325
15454
  * Successful Response
15326
15455
  */
15327
- 200: SuccessResponse;
15456
+ 201: ConnectionResponse;
15328
15457
  };
15329
- export type DeleteConnectionResponse = DeleteConnectionResponses[keyof DeleteConnectionResponses];
15330
- export type GetConnectionData = {
15458
+ export type CreateConnectionResponse = CreateConnectionResponses[keyof CreateConnectionResponses];
15459
+ export type DeleteConnectionData = {
15331
15460
  body?: never;
15332
15461
  path: {
15333
15462
  /**
@@ -15337,14 +15466,14 @@ export type GetConnectionData = {
15337
15466
  /**
15338
15467
  * Connection Id
15339
15468
  *
15340
- * Unique connection identifier
15469
+ * Connection identifier
15341
15470
  */
15342
15471
  connection_id: string;
15343
15472
  };
15344
15473
  query?: never;
15345
15474
  url: '/v1/graphs/{graph_id}/connections/{connection_id}';
15346
15475
  };
15347
- export type GetConnectionErrors = {
15476
+ export type DeleteConnectionErrors = {
15348
15477
  /**
15349
15478
  * Invalid request
15350
15479
  */
@@ -15374,22 +15503,16 @@ export type GetConnectionErrors = {
15374
15503
  */
15375
15504
  500: ErrorResponse;
15376
15505
  };
15377
- export type GetConnectionError = GetConnectionErrors[keyof GetConnectionErrors];
15378
- export type GetConnectionResponses = {
15506
+ export type DeleteConnectionError = DeleteConnectionErrors[keyof DeleteConnectionErrors];
15507
+ export type DeleteConnectionResponses = {
15379
15508
  /**
15380
15509
  * Successful Response
15381
15510
  */
15382
- 200: ConnectionResponse;
15511
+ 200: SuccessResponse;
15383
15512
  };
15384
- export type GetConnectionResponse = GetConnectionResponses[keyof GetConnectionResponses];
15385
- export type SyncConnectionData = {
15386
- body: SyncConnectionRequest;
15387
- headers?: {
15388
- /**
15389
- * Idempotency-Key
15390
- */
15391
- 'Idempotency-Key'?: string | null;
15392
- };
15513
+ export type DeleteConnectionResponse = DeleteConnectionResponses[keyof DeleteConnectionResponses];
15514
+ export type GetConnectionData = {
15515
+ body?: never;
15393
15516
  path: {
15394
15517
  /**
15395
15518
  * Graph Id
@@ -15398,14 +15521,14 @@ export type SyncConnectionData = {
15398
15521
  /**
15399
15522
  * Connection Id
15400
15523
  *
15401
- * Connection identifier
15524
+ * Unique connection identifier
15402
15525
  */
15403
15526
  connection_id: string;
15404
15527
  };
15405
15528
  query?: never;
15406
- url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
15529
+ url: '/v1/graphs/{graph_id}/connections/{connection_id}';
15407
15530
  };
15408
- export type SyncConnectionErrors = {
15531
+ export type GetConnectionErrors = {
15409
15532
  /**
15410
15533
  * Invalid request
15411
15534
  */
@@ -15423,13 +15546,9 @@ export type SyncConnectionErrors = {
15423
15546
  */
15424
15547
  404: ErrorResponse;
15425
15548
  /**
15426
- * Idempotency-Key conflict — key reused with different body
15427
- */
15428
- 409: ErrorResponse;
15429
- /**
15430
- * Validation error
15549
+ * Validation Error
15431
15550
  */
15432
- 422: ErrorResponse;
15551
+ 422: HttpValidationError;
15433
15552
  /**
15434
15553
  * Rate limit exceeded
15435
15554
  */
@@ -15438,19 +15557,15 @@ export type SyncConnectionErrors = {
15438
15557
  * Internal server error
15439
15558
  */
15440
15559
  500: ErrorResponse;
15441
- /**
15442
- * Sync request timed out
15443
- */
15444
- 504: unknown;
15445
15560
  };
15446
- export type SyncConnectionError = SyncConnectionErrors[keyof SyncConnectionErrors];
15447
- export type SyncConnectionResponses = {
15561
+ export type GetConnectionError = GetConnectionErrors[keyof GetConnectionErrors];
15562
+ export type GetConnectionResponses = {
15448
15563
  /**
15449
15564
  * Successful Response
15450
15565
  */
15451
- 202: OperationEnvelope;
15566
+ 200: ConnectionResponse;
15452
15567
  };
15453
- export type SyncConnectionResponse = SyncConnectionResponses[keyof SyncConnectionResponses];
15568
+ export type GetConnectionResponse = GetConnectionResponses[keyof GetConnectionResponses];
15454
15569
  export type SetConnectionWritePolicyData = {
15455
15570
  body: SetWritePolicyRequest;
15456
15571
  path: {
@@ -20824,6 +20939,65 @@ export type OpPromoteObligationsResponses = {
20824
20939
  200: OperationEnvelopePromoteObligationsResponse;
20825
20940
  };
20826
20941
  export type OpPromoteObligationsResponse = OpPromoteObligationsResponses[keyof OpPromoteObligationsResponses];
20942
+ export type OpRebuildScheduleData = {
20943
+ body: RebuildScheduleRequest;
20944
+ headers?: {
20945
+ /**
20946
+ * Idempotency-Key
20947
+ */
20948
+ 'Idempotency-Key'?: string | null;
20949
+ };
20950
+ path: {
20951
+ /**
20952
+ * Graph Id
20953
+ */
20954
+ graph_id: string;
20955
+ };
20956
+ query?: never;
20957
+ url: '/extensions/roboledger/{graph_id}/operations/rebuild-schedule';
20958
+ };
20959
+ export type OpRebuildScheduleErrors = {
20960
+ /**
20961
+ * Invalid request
20962
+ */
20963
+ 400: ErrorResponse;
20964
+ /**
20965
+ * Authentication required
20966
+ */
20967
+ 401: ErrorResponse;
20968
+ /**
20969
+ * Access denied
20970
+ */
20971
+ 403: ErrorResponse;
20972
+ /**
20973
+ * Resource not found
20974
+ */
20975
+ 404: ErrorResponse;
20976
+ /**
20977
+ * Idempotency-Key conflict — key reused with different body
20978
+ */
20979
+ 409: ErrorResponse;
20980
+ /**
20981
+ * Validation error
20982
+ */
20983
+ 422: ErrorResponse;
20984
+ /**
20985
+ * Rate limit exceeded
20986
+ */
20987
+ 429: ErrorResponse;
20988
+ /**
20989
+ * Internal server error
20990
+ */
20991
+ 500: ErrorResponse;
20992
+ };
20993
+ export type OpRebuildScheduleError = OpRebuildScheduleErrors[keyof OpRebuildScheduleErrors];
20994
+ export type OpRebuildScheduleResponses = {
20995
+ /**
20996
+ * Successful Response
20997
+ */
20998
+ 200: OperationEnvelopeScheduleCreatedResponse;
20999
+ };
21000
+ export type OpRebuildScheduleResponse = OpRebuildScheduleResponses[keyof OpRebuildScheduleResponses];
20827
21001
  export type OpSetCloseTargetData = {
20828
21002
  body: SetCloseTargetOperation;
20829
21003
  headers?: {