@robosystems/client 0.3.41 → 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/artifacts/graphql/generated/graphql.d.ts +2 -2
- package/artifacts/graphql/generated/graphql.ts +3 -4
- package/package.json +1 -1
- package/sdk/sdk.gen.d.ts +13 -13
- package/sdk/sdk.gen.js +30 -30
- package/sdk/sdk.gen.ts +28 -28
- package/sdk/types.gen.d.ts +116 -110
- package/sdk/types.gen.ts +117 -111
- package/sdk.gen.d.ts +13 -13
- package/sdk.gen.js +30 -30
- package/sdk.gen.ts +28 -28
- package/types.gen.d.ts +116 -110
- package/types.gen.ts +117 -111
package/sdk/types.gen.d.ts
CHANGED
|
@@ -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
|
|
@@ -15112,31 +15118,30 @@ export type GetOrgUsageResponses = {
|
|
|
15112
15118
|
200: OrgUsageResponse;
|
|
15113
15119
|
};
|
|
15114
15120
|
export type GetOrgUsageResponse = GetOrgUsageResponses[keyof GetOrgUsageResponses];
|
|
15115
|
-
export type
|
|
15116
|
-
body
|
|
15117
|
-
|
|
15121
|
+
export type SyncConnectionData = {
|
|
15122
|
+
body: SyncConnectionRequest;
|
|
15123
|
+
headers?: {
|
|
15118
15124
|
/**
|
|
15119
|
-
*
|
|
15125
|
+
* Idempotency-Key
|
|
15120
15126
|
*/
|
|
15121
|
-
|
|
15127
|
+
'Idempotency-Key'?: string | null;
|
|
15122
15128
|
};
|
|
15123
|
-
|
|
15129
|
+
path: {
|
|
15124
15130
|
/**
|
|
15125
|
-
*
|
|
15126
|
-
*
|
|
15127
|
-
* Filter by entity ID
|
|
15131
|
+
* Graph Id
|
|
15128
15132
|
*/
|
|
15129
|
-
|
|
15133
|
+
graph_id: string;
|
|
15130
15134
|
/**
|
|
15131
|
-
*
|
|
15135
|
+
* Connection Id
|
|
15132
15136
|
*
|
|
15133
|
-
*
|
|
15137
|
+
* Connection identifier
|
|
15134
15138
|
*/
|
|
15135
|
-
|
|
15139
|
+
connection_id: string;
|
|
15136
15140
|
};
|
|
15137
|
-
|
|
15141
|
+
query?: never;
|
|
15142
|
+
url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
|
|
15138
15143
|
};
|
|
15139
|
-
export type
|
|
15144
|
+
export type SyncConnectionErrors = {
|
|
15140
15145
|
/**
|
|
15141
15146
|
* Invalid request
|
|
15142
15147
|
*/
|
|
@@ -15154,9 +15159,13 @@ export type ListConnectionsErrors = {
|
|
|
15154
15159
|
*/
|
|
15155
15160
|
404: ErrorResponse;
|
|
15156
15161
|
/**
|
|
15157
|
-
*
|
|
15162
|
+
* Idempotency-Key conflict — key reused with different body
|
|
15158
15163
|
*/
|
|
15159
|
-
|
|
15164
|
+
409: ErrorResponse;
|
|
15165
|
+
/**
|
|
15166
|
+
* Validation error
|
|
15167
|
+
*/
|
|
15168
|
+
422: ErrorResponse;
|
|
15160
15169
|
/**
|
|
15161
15170
|
* Rate limit exceeded
|
|
15162
15171
|
*/
|
|
@@ -15165,19 +15174,21 @@ export type ListConnectionsErrors = {
|
|
|
15165
15174
|
* Internal server error
|
|
15166
15175
|
*/
|
|
15167
15176
|
500: ErrorResponse;
|
|
15177
|
+
/**
|
|
15178
|
+
* Sync request timed out
|
|
15179
|
+
*/
|
|
15180
|
+
504: unknown;
|
|
15168
15181
|
};
|
|
15169
|
-
export type
|
|
15170
|
-
export type
|
|
15182
|
+
export type SyncConnectionError = SyncConnectionErrors[keyof SyncConnectionErrors];
|
|
15183
|
+
export type SyncConnectionResponses = {
|
|
15171
15184
|
/**
|
|
15172
|
-
* Response Listconnections
|
|
15173
|
-
*
|
|
15174
15185
|
* Successful Response
|
|
15175
15186
|
*/
|
|
15176
|
-
|
|
15187
|
+
202: OperationEnvelope;
|
|
15177
15188
|
};
|
|
15178
|
-
export type
|
|
15179
|
-
export type
|
|
15180
|
-
body
|
|
15189
|
+
export type SyncConnectionResponse = SyncConnectionResponses[keyof SyncConnectionResponses];
|
|
15190
|
+
export type GetConnectionOptionsData = {
|
|
15191
|
+
body?: never;
|
|
15181
15192
|
path: {
|
|
15182
15193
|
/**
|
|
15183
15194
|
* Graph Id
|
|
@@ -15185,9 +15196,9 @@ export type CreateConnectionData = {
|
|
|
15185
15196
|
graph_id: string;
|
|
15186
15197
|
};
|
|
15187
15198
|
query?: never;
|
|
15188
|
-
url: '/v1/graphs/{graph_id}/connections';
|
|
15199
|
+
url: '/v1/graphs/{graph_id}/connections/options';
|
|
15189
15200
|
};
|
|
15190
|
-
export type
|
|
15201
|
+
export type GetConnectionOptionsErrors = {
|
|
15191
15202
|
/**
|
|
15192
15203
|
* Invalid request
|
|
15193
15204
|
*/
|
|
@@ -15204,10 +15215,6 @@ export type CreateConnectionErrors = {
|
|
|
15204
15215
|
* Resource not found
|
|
15205
15216
|
*/
|
|
15206
15217
|
404: ErrorResponse;
|
|
15207
|
-
/**
|
|
15208
|
-
* Connection already exists for this provider
|
|
15209
|
-
*/
|
|
15210
|
-
409: unknown;
|
|
15211
15218
|
/**
|
|
15212
15219
|
* Validation Error
|
|
15213
15220
|
*/
|
|
@@ -15221,16 +15228,16 @@ export type CreateConnectionErrors = {
|
|
|
15221
15228
|
*/
|
|
15222
15229
|
500: ErrorResponse;
|
|
15223
15230
|
};
|
|
15224
|
-
export type
|
|
15225
|
-
export type
|
|
15231
|
+
export type GetConnectionOptionsError = GetConnectionOptionsErrors[keyof GetConnectionOptionsErrors];
|
|
15232
|
+
export type GetConnectionOptionsResponses = {
|
|
15226
15233
|
/**
|
|
15227
15234
|
* Successful Response
|
|
15228
15235
|
*/
|
|
15229
|
-
|
|
15236
|
+
200: ConnectionOptionsResponse;
|
|
15230
15237
|
};
|
|
15231
|
-
export type
|
|
15232
|
-
export type
|
|
15233
|
-
body
|
|
15238
|
+
export type GetConnectionOptionsResponse = GetConnectionOptionsResponses[keyof GetConnectionOptionsResponses];
|
|
15239
|
+
export type InitOAuthData = {
|
|
15240
|
+
body: OAuthInitRequest;
|
|
15234
15241
|
path: {
|
|
15235
15242
|
/**
|
|
15236
15243
|
* Graph Id
|
|
@@ -15238,9 +15245,9 @@ export type GetConnectionOptionsData = {
|
|
|
15238
15245
|
graph_id: string;
|
|
15239
15246
|
};
|
|
15240
15247
|
query?: never;
|
|
15241
|
-
url: '/v1/graphs/{graph_id}/connections/
|
|
15248
|
+
url: '/v1/graphs/{graph_id}/connections/oauth/init';
|
|
15242
15249
|
};
|
|
15243
|
-
export type
|
|
15250
|
+
export type InitOAuthErrors = {
|
|
15244
15251
|
/**
|
|
15245
15252
|
* Invalid request
|
|
15246
15253
|
*/
|
|
@@ -15270,26 +15277,32 @@ export type GetConnectionOptionsErrors = {
|
|
|
15270
15277
|
*/
|
|
15271
15278
|
500: ErrorResponse;
|
|
15272
15279
|
};
|
|
15273
|
-
export type
|
|
15274
|
-
export type
|
|
15280
|
+
export type InitOAuthError = InitOAuthErrors[keyof InitOAuthErrors];
|
|
15281
|
+
export type InitOAuthResponses = {
|
|
15275
15282
|
/**
|
|
15276
15283
|
* Successful Response
|
|
15277
15284
|
*/
|
|
15278
|
-
200:
|
|
15285
|
+
200: OAuthInitResponse;
|
|
15279
15286
|
};
|
|
15280
|
-
export type
|
|
15281
|
-
export type
|
|
15282
|
-
body:
|
|
15287
|
+
export type InitOAuthResponse = InitOAuthResponses[keyof InitOAuthResponses];
|
|
15288
|
+
export type OauthCallbackData = {
|
|
15289
|
+
body: OAuthCallbackRequest;
|
|
15283
15290
|
path: {
|
|
15291
|
+
/**
|
|
15292
|
+
* Provider
|
|
15293
|
+
*
|
|
15294
|
+
* OAuth provider name
|
|
15295
|
+
*/
|
|
15296
|
+
provider: string;
|
|
15284
15297
|
/**
|
|
15285
15298
|
* Graph Id
|
|
15286
15299
|
*/
|
|
15287
15300
|
graph_id: string;
|
|
15288
15301
|
};
|
|
15289
15302
|
query?: never;
|
|
15290
|
-
url: '/v1/graphs/{graph_id}/connections/oauth/
|
|
15303
|
+
url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
|
|
15291
15304
|
};
|
|
15292
|
-
export type
|
|
15305
|
+
export type OauthCallbackErrors = {
|
|
15293
15306
|
/**
|
|
15294
15307
|
* Invalid request
|
|
15295
15308
|
*/
|
|
@@ -15319,32 +15332,38 @@ export type InitOAuthErrors = {
|
|
|
15319
15332
|
*/
|
|
15320
15333
|
500: ErrorResponse;
|
|
15321
15334
|
};
|
|
15322
|
-
export type
|
|
15323
|
-
export type
|
|
15335
|
+
export type OauthCallbackError = OauthCallbackErrors[keyof OauthCallbackErrors];
|
|
15336
|
+
export type OauthCallbackResponses = {
|
|
15324
15337
|
/**
|
|
15325
15338
|
* Successful Response
|
|
15326
15339
|
*/
|
|
15327
|
-
200:
|
|
15340
|
+
200: unknown;
|
|
15328
15341
|
};
|
|
15329
|
-
export type
|
|
15330
|
-
|
|
15331
|
-
body: OAuthCallbackRequest;
|
|
15342
|
+
export type ListConnectionsData = {
|
|
15343
|
+
body?: never;
|
|
15332
15344
|
path: {
|
|
15333
15345
|
/**
|
|
15334
|
-
*
|
|
15346
|
+
* Graph Id
|
|
15347
|
+
*/
|
|
15348
|
+
graph_id: string;
|
|
15349
|
+
};
|
|
15350
|
+
query?: {
|
|
15351
|
+
/**
|
|
15352
|
+
* Entity Id
|
|
15335
15353
|
*
|
|
15336
|
-
*
|
|
15354
|
+
* Filter by entity ID
|
|
15337
15355
|
*/
|
|
15338
|
-
|
|
15356
|
+
entity_id?: string | null;
|
|
15339
15357
|
/**
|
|
15340
|
-
*
|
|
15358
|
+
* Provider
|
|
15359
|
+
*
|
|
15360
|
+
* Filter by provider type
|
|
15341
15361
|
*/
|
|
15342
|
-
|
|
15362
|
+
provider?: 'sec' | 'quickbooks' | null;
|
|
15343
15363
|
};
|
|
15344
|
-
|
|
15345
|
-
url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
|
|
15364
|
+
url: '/v1/graphs/{graph_id}/connections';
|
|
15346
15365
|
};
|
|
15347
|
-
export type
|
|
15366
|
+
export type ListConnectionsErrors = {
|
|
15348
15367
|
/**
|
|
15349
15368
|
* Invalid request
|
|
15350
15369
|
*/
|
|
@@ -15374,31 +15393,28 @@ export type OauthCallbackErrors = {
|
|
|
15374
15393
|
*/
|
|
15375
15394
|
500: ErrorResponse;
|
|
15376
15395
|
};
|
|
15377
|
-
export type
|
|
15378
|
-
export type
|
|
15396
|
+
export type ListConnectionsError = ListConnectionsErrors[keyof ListConnectionsErrors];
|
|
15397
|
+
export type ListConnectionsResponses = {
|
|
15379
15398
|
/**
|
|
15399
|
+
* Response Listconnections
|
|
15400
|
+
*
|
|
15380
15401
|
* Successful Response
|
|
15381
15402
|
*/
|
|
15382
|
-
200:
|
|
15403
|
+
200: Array<ConnectionResponse>;
|
|
15383
15404
|
};
|
|
15384
|
-
export type
|
|
15385
|
-
|
|
15405
|
+
export type ListConnectionsResponse = ListConnectionsResponses[keyof ListConnectionsResponses];
|
|
15406
|
+
export type CreateConnectionData = {
|
|
15407
|
+
body: CreateConnectionRequest;
|
|
15386
15408
|
path: {
|
|
15387
15409
|
/**
|
|
15388
15410
|
* Graph Id
|
|
15389
15411
|
*/
|
|
15390
15412
|
graph_id: string;
|
|
15391
|
-
/**
|
|
15392
|
-
* Connection Id
|
|
15393
|
-
*
|
|
15394
|
-
* Connection identifier
|
|
15395
|
-
*/
|
|
15396
|
-
connection_id: string;
|
|
15397
15413
|
};
|
|
15398
15414
|
query?: never;
|
|
15399
|
-
url: '/v1/graphs/{graph_id}/connections
|
|
15415
|
+
url: '/v1/graphs/{graph_id}/connections';
|
|
15400
15416
|
};
|
|
15401
|
-
export type
|
|
15417
|
+
export type CreateConnectionErrors = {
|
|
15402
15418
|
/**
|
|
15403
15419
|
* Invalid request
|
|
15404
15420
|
*/
|
|
@@ -15415,6 +15431,10 @@ export type DeleteConnectionErrors = {
|
|
|
15415
15431
|
* Resource not found
|
|
15416
15432
|
*/
|
|
15417
15433
|
404: ErrorResponse;
|
|
15434
|
+
/**
|
|
15435
|
+
* Connection already exists for this provider
|
|
15436
|
+
*/
|
|
15437
|
+
409: unknown;
|
|
15418
15438
|
/**
|
|
15419
15439
|
* Validation Error
|
|
15420
15440
|
*/
|
|
@@ -15428,15 +15448,15 @@ export type DeleteConnectionErrors = {
|
|
|
15428
15448
|
*/
|
|
15429
15449
|
500: ErrorResponse;
|
|
15430
15450
|
};
|
|
15431
|
-
export type
|
|
15432
|
-
export type
|
|
15451
|
+
export type CreateConnectionError = CreateConnectionErrors[keyof CreateConnectionErrors];
|
|
15452
|
+
export type CreateConnectionResponses = {
|
|
15433
15453
|
/**
|
|
15434
15454
|
* Successful Response
|
|
15435
15455
|
*/
|
|
15436
|
-
|
|
15456
|
+
201: ConnectionResponse;
|
|
15437
15457
|
};
|
|
15438
|
-
export type
|
|
15439
|
-
export type
|
|
15458
|
+
export type CreateConnectionResponse = CreateConnectionResponses[keyof CreateConnectionResponses];
|
|
15459
|
+
export type DeleteConnectionData = {
|
|
15440
15460
|
body?: never;
|
|
15441
15461
|
path: {
|
|
15442
15462
|
/**
|
|
@@ -15446,14 +15466,14 @@ export type GetConnectionData = {
|
|
|
15446
15466
|
/**
|
|
15447
15467
|
* Connection Id
|
|
15448
15468
|
*
|
|
15449
|
-
*
|
|
15469
|
+
* Connection identifier
|
|
15450
15470
|
*/
|
|
15451
15471
|
connection_id: string;
|
|
15452
15472
|
};
|
|
15453
15473
|
query?: never;
|
|
15454
15474
|
url: '/v1/graphs/{graph_id}/connections/{connection_id}';
|
|
15455
15475
|
};
|
|
15456
|
-
export type
|
|
15476
|
+
export type DeleteConnectionErrors = {
|
|
15457
15477
|
/**
|
|
15458
15478
|
* Invalid request
|
|
15459
15479
|
*/
|
|
@@ -15483,22 +15503,16 @@ export type GetConnectionErrors = {
|
|
|
15483
15503
|
*/
|
|
15484
15504
|
500: ErrorResponse;
|
|
15485
15505
|
};
|
|
15486
|
-
export type
|
|
15487
|
-
export type
|
|
15506
|
+
export type DeleteConnectionError = DeleteConnectionErrors[keyof DeleteConnectionErrors];
|
|
15507
|
+
export type DeleteConnectionResponses = {
|
|
15488
15508
|
/**
|
|
15489
15509
|
* Successful Response
|
|
15490
15510
|
*/
|
|
15491
|
-
200:
|
|
15511
|
+
200: SuccessResponse;
|
|
15492
15512
|
};
|
|
15493
|
-
export type
|
|
15494
|
-
export type
|
|
15495
|
-
body
|
|
15496
|
-
headers?: {
|
|
15497
|
-
/**
|
|
15498
|
-
* Idempotency-Key
|
|
15499
|
-
*/
|
|
15500
|
-
'Idempotency-Key'?: string | null;
|
|
15501
|
-
};
|
|
15513
|
+
export type DeleteConnectionResponse = DeleteConnectionResponses[keyof DeleteConnectionResponses];
|
|
15514
|
+
export type GetConnectionData = {
|
|
15515
|
+
body?: never;
|
|
15502
15516
|
path: {
|
|
15503
15517
|
/**
|
|
15504
15518
|
* Graph Id
|
|
@@ -15507,14 +15521,14 @@ export type SyncConnectionData = {
|
|
|
15507
15521
|
/**
|
|
15508
15522
|
* Connection Id
|
|
15509
15523
|
*
|
|
15510
|
-
*
|
|
15524
|
+
* Unique connection identifier
|
|
15511
15525
|
*/
|
|
15512
15526
|
connection_id: string;
|
|
15513
15527
|
};
|
|
15514
15528
|
query?: never;
|
|
15515
|
-
url: '/v1/graphs/{graph_id}/connections/{connection_id}
|
|
15529
|
+
url: '/v1/graphs/{graph_id}/connections/{connection_id}';
|
|
15516
15530
|
};
|
|
15517
|
-
export type
|
|
15531
|
+
export type GetConnectionErrors = {
|
|
15518
15532
|
/**
|
|
15519
15533
|
* Invalid request
|
|
15520
15534
|
*/
|
|
@@ -15532,13 +15546,9 @@ export type SyncConnectionErrors = {
|
|
|
15532
15546
|
*/
|
|
15533
15547
|
404: ErrorResponse;
|
|
15534
15548
|
/**
|
|
15535
|
-
*
|
|
15536
|
-
*/
|
|
15537
|
-
409: ErrorResponse;
|
|
15538
|
-
/**
|
|
15539
|
-
* Validation error
|
|
15549
|
+
* Validation Error
|
|
15540
15550
|
*/
|
|
15541
|
-
422:
|
|
15551
|
+
422: HttpValidationError;
|
|
15542
15552
|
/**
|
|
15543
15553
|
* Rate limit exceeded
|
|
15544
15554
|
*/
|
|
@@ -15547,19 +15557,15 @@ export type SyncConnectionErrors = {
|
|
|
15547
15557
|
* Internal server error
|
|
15548
15558
|
*/
|
|
15549
15559
|
500: ErrorResponse;
|
|
15550
|
-
/**
|
|
15551
|
-
* Sync request timed out
|
|
15552
|
-
*/
|
|
15553
|
-
504: unknown;
|
|
15554
15560
|
};
|
|
15555
|
-
export type
|
|
15556
|
-
export type
|
|
15561
|
+
export type GetConnectionError = GetConnectionErrors[keyof GetConnectionErrors];
|
|
15562
|
+
export type GetConnectionResponses = {
|
|
15557
15563
|
/**
|
|
15558
15564
|
* Successful Response
|
|
15559
15565
|
*/
|
|
15560
|
-
|
|
15566
|
+
200: ConnectionResponse;
|
|
15561
15567
|
};
|
|
15562
|
-
export type
|
|
15568
|
+
export type GetConnectionResponse = GetConnectionResponses[keyof GetConnectionResponses];
|
|
15563
15569
|
export type SetConnectionWritePolicyData = {
|
|
15564
15570
|
body: SetWritePolicyRequest;
|
|
15565
15571
|
path: {
|