@grackle-ai/common 0.100.1 → 0.101.0
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/dist/enum-converters.d.ts +1 -1
- package/dist/enum-converters.d.ts.map +1 -1
- package/dist/enum-converters.js +1 -1
- package/dist/enum-converters.js.map +1 -1
- package/dist/gen/grackle/grackle_core_pb.d.ts +390 -0
- package/dist/gen/grackle/grackle_core_pb.d.ts.map +1 -0
- package/dist/gen/grackle/grackle_core_pb.js +14 -0
- package/dist/gen/grackle/grackle_core_pb.js.map +1 -0
- package/dist/gen/grackle/grackle_knowledge_pb.d.ts +54 -0
- package/dist/gen/grackle/grackle_knowledge_pb.d.ts.map +1 -0
- package/dist/gen/grackle/grackle_knowledge_pb.js +14 -0
- package/dist/gen/grackle/grackle_knowledge_pb.js.map +1 -0
- package/dist/gen/grackle/grackle_orchestration_pb.d.ts +188 -0
- package/dist/gen/grackle/grackle_orchestration_pb.d.ts.map +1 -0
- package/dist/gen/grackle/grackle_orchestration_pb.js +14 -0
- package/dist/gen/grackle/grackle_orchestration_pb.js.map +1 -0
- package/dist/gen/grackle/grackle_scheduling_pb.d.ts +54 -0
- package/dist/gen/grackle/grackle_scheduling_pb.d.ts.map +1 -0
- package/dist/gen/grackle/grackle_scheduling_pb.js +14 -0
- package/dist/gen/grackle/grackle_scheduling_pb.js.map +1 -0
- package/dist/gen/grackle/{grackle_pb.d.ts → grackle_types_pb.d.ts} +4 -647
- package/dist/gen/grackle/grackle_types_pb.d.ts.map +1 -0
- package/dist/gen/grackle/grackle_types_pb.js +695 -0
- package/dist/gen/grackle/grackle_types_pb.js.map +1 -0
- package/dist/grackle-barrel.d.ts +15 -0
- package/dist/grackle-barrel.d.ts.map +1 -0
- package/dist/grackle-barrel.js +15 -0
- package/dist/grackle-barrel.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/gen/grackle/grackle_pb.d.ts.map +0 -1
- package/dist/gen/grackle/grackle_pb.js +0 -699
- package/dist/gen/grackle/grackle_pb.js.map +0 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { GenEnum, GenFile, GenMessage
|
|
1
|
+
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
2
|
import type { Message } from "@bufbuild/protobuf";
|
|
3
3
|
/**
|
|
4
|
-
* Describes the file grackle/
|
|
4
|
+
* Describes the file grackle/grackle_types.proto.
|
|
5
5
|
*/
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const file_grackle_grackle_types: GenFile;
|
|
7
7
|
/**
|
|
8
8
|
* @generated from message grackle.Empty
|
|
9
9
|
*/
|
|
@@ -3124,647 +3124,4 @@ export declare enum ProviderToggle {
|
|
|
3124
3124
|
* Describes the enum grackle.ProviderToggle.
|
|
3125
3125
|
*/
|
|
3126
3126
|
export declare const ProviderToggleSchema: GenEnum<ProviderToggle>;
|
|
3127
|
-
|
|
3128
|
-
* @generated from service grackle.Grackle
|
|
3129
|
-
*/
|
|
3130
|
-
export declare const Grackle: GenService<{
|
|
3131
|
-
/**
|
|
3132
|
-
* Environment management
|
|
3133
|
-
*
|
|
3134
|
-
* @generated from rpc grackle.Grackle.ListEnvironments
|
|
3135
|
-
*/
|
|
3136
|
-
listEnvironments: {
|
|
3137
|
-
methodKind: "unary";
|
|
3138
|
-
input: typeof EmptySchema;
|
|
3139
|
-
output: typeof EnvironmentListSchema;
|
|
3140
|
-
};
|
|
3141
|
-
/**
|
|
3142
|
-
* @generated from rpc grackle.Grackle.AddEnvironment
|
|
3143
|
-
*/
|
|
3144
|
-
addEnvironment: {
|
|
3145
|
-
methodKind: "unary";
|
|
3146
|
-
input: typeof AddEnvironmentRequestSchema;
|
|
3147
|
-
output: typeof EnvironmentSchema;
|
|
3148
|
-
};
|
|
3149
|
-
/**
|
|
3150
|
-
* @generated from rpc grackle.Grackle.RemoveEnvironment
|
|
3151
|
-
*/
|
|
3152
|
-
removeEnvironment: {
|
|
3153
|
-
methodKind: "unary";
|
|
3154
|
-
input: typeof EnvironmentIdSchema;
|
|
3155
|
-
output: typeof EmptySchema;
|
|
3156
|
-
};
|
|
3157
|
-
/**
|
|
3158
|
-
* @generated from rpc grackle.Grackle.ProvisionEnvironment
|
|
3159
|
-
*/
|
|
3160
|
-
provisionEnvironment: {
|
|
3161
|
-
methodKind: "server_streaming";
|
|
3162
|
-
input: typeof ProvisionEnvironmentRequestSchema;
|
|
3163
|
-
output: typeof ProvisionEventSchema;
|
|
3164
|
-
};
|
|
3165
|
-
/**
|
|
3166
|
-
* @generated from rpc grackle.Grackle.UpdateEnvironment
|
|
3167
|
-
*/
|
|
3168
|
-
updateEnvironment: {
|
|
3169
|
-
methodKind: "unary";
|
|
3170
|
-
input: typeof UpdateEnvironmentRequestSchema;
|
|
3171
|
-
output: typeof EnvironmentSchema;
|
|
3172
|
-
};
|
|
3173
|
-
/**
|
|
3174
|
-
* @generated from rpc grackle.Grackle.StopEnvironment
|
|
3175
|
-
*/
|
|
3176
|
-
stopEnvironment: {
|
|
3177
|
-
methodKind: "unary";
|
|
3178
|
-
input: typeof EnvironmentIdSchema;
|
|
3179
|
-
output: typeof EmptySchema;
|
|
3180
|
-
};
|
|
3181
|
-
/**
|
|
3182
|
-
* @generated from rpc grackle.Grackle.DestroyEnvironment
|
|
3183
|
-
*/
|
|
3184
|
-
destroyEnvironment: {
|
|
3185
|
-
methodKind: "unary";
|
|
3186
|
-
input: typeof EnvironmentIdSchema;
|
|
3187
|
-
output: typeof EmptySchema;
|
|
3188
|
-
};
|
|
3189
|
-
/**
|
|
3190
|
-
* Agent sessions
|
|
3191
|
-
*
|
|
3192
|
-
* @generated from rpc grackle.Grackle.SpawnAgent
|
|
3193
|
-
*/
|
|
3194
|
-
spawnAgent: {
|
|
3195
|
-
methodKind: "unary";
|
|
3196
|
-
input: typeof SpawnRequestSchema;
|
|
3197
|
-
output: typeof SessionSchema;
|
|
3198
|
-
};
|
|
3199
|
-
/**
|
|
3200
|
-
* @generated from rpc grackle.Grackle.ResumeAgent
|
|
3201
|
-
*/
|
|
3202
|
-
resumeAgent: {
|
|
3203
|
-
methodKind: "unary";
|
|
3204
|
-
input: typeof ResumeRequestSchema;
|
|
3205
|
-
output: typeof SessionSchema;
|
|
3206
|
-
};
|
|
3207
|
-
/**
|
|
3208
|
-
* @generated from rpc grackle.Grackle.SendInput
|
|
3209
|
-
*/
|
|
3210
|
-
sendInput: {
|
|
3211
|
-
methodKind: "unary";
|
|
3212
|
-
input: typeof InputMessageSchema;
|
|
3213
|
-
output: typeof EmptySchema;
|
|
3214
|
-
};
|
|
3215
|
-
/**
|
|
3216
|
-
* @generated from rpc grackle.Grackle.KillAgent
|
|
3217
|
-
*/
|
|
3218
|
-
killAgent: {
|
|
3219
|
-
methodKind: "unary";
|
|
3220
|
-
input: typeof KillAgentRequestSchema;
|
|
3221
|
-
output: typeof EmptySchema;
|
|
3222
|
-
};
|
|
3223
|
-
/**
|
|
3224
|
-
* @generated from rpc grackle.Grackle.ListSessions
|
|
3225
|
-
*/
|
|
3226
|
-
listSessions: {
|
|
3227
|
-
methodKind: "unary";
|
|
3228
|
-
input: typeof SessionFilterSchema;
|
|
3229
|
-
output: typeof SessionListSchema;
|
|
3230
|
-
};
|
|
3231
|
-
/**
|
|
3232
|
-
* @generated from rpc grackle.Grackle.GetSession
|
|
3233
|
-
*/
|
|
3234
|
-
getSession: {
|
|
3235
|
-
methodKind: "unary";
|
|
3236
|
-
input: typeof SessionIdSchema;
|
|
3237
|
-
output: typeof SessionSchema;
|
|
3238
|
-
};
|
|
3239
|
-
/**
|
|
3240
|
-
* @generated from rpc grackle.Grackle.GetSessionEvents
|
|
3241
|
-
*/
|
|
3242
|
-
getSessionEvents: {
|
|
3243
|
-
methodKind: "unary";
|
|
3244
|
-
input: typeof SessionIdSchema;
|
|
3245
|
-
output: typeof SessionEventListSchema;
|
|
3246
|
-
};
|
|
3247
|
-
/**
|
|
3248
|
-
* @generated from rpc grackle.Grackle.GetTaskSessions
|
|
3249
|
-
*/
|
|
3250
|
-
getTaskSessions: {
|
|
3251
|
-
methodKind: "unary";
|
|
3252
|
-
input: typeof TaskIdSchema;
|
|
3253
|
-
output: typeof SessionListSchema;
|
|
3254
|
-
};
|
|
3255
|
-
/**
|
|
3256
|
-
* Streaming
|
|
3257
|
-
*
|
|
3258
|
-
* @generated from rpc grackle.Grackle.StreamSession
|
|
3259
|
-
*/
|
|
3260
|
-
streamSession: {
|
|
3261
|
-
methodKind: "server_streaming";
|
|
3262
|
-
input: typeof SessionIdSchema;
|
|
3263
|
-
output: typeof SessionEventSchema;
|
|
3264
|
-
};
|
|
3265
|
-
/**
|
|
3266
|
-
* @generated from rpc grackle.Grackle.StreamAll
|
|
3267
|
-
*/
|
|
3268
|
-
streamAll: {
|
|
3269
|
-
methodKind: "server_streaming";
|
|
3270
|
-
input: typeof EmptySchema;
|
|
3271
|
-
output: typeof SessionEventSchema;
|
|
3272
|
-
};
|
|
3273
|
-
/**
|
|
3274
|
-
* Token management
|
|
3275
|
-
*
|
|
3276
|
-
* @generated from rpc grackle.Grackle.SetToken
|
|
3277
|
-
*/
|
|
3278
|
-
setToken: {
|
|
3279
|
-
methodKind: "unary";
|
|
3280
|
-
input: typeof TokenEntrySchema;
|
|
3281
|
-
output: typeof EmptySchema;
|
|
3282
|
-
};
|
|
3283
|
-
/**
|
|
3284
|
-
* @generated from rpc grackle.Grackle.ListTokens
|
|
3285
|
-
*/
|
|
3286
|
-
listTokens: {
|
|
3287
|
-
methodKind: "unary";
|
|
3288
|
-
input: typeof EmptySchema;
|
|
3289
|
-
output: typeof TokenListSchema;
|
|
3290
|
-
};
|
|
3291
|
-
/**
|
|
3292
|
-
* @generated from rpc grackle.Grackle.DeleteToken
|
|
3293
|
-
*/
|
|
3294
|
-
deleteToken: {
|
|
3295
|
-
methodKind: "unary";
|
|
3296
|
-
input: typeof TokenNameSchema;
|
|
3297
|
-
output: typeof EmptySchema;
|
|
3298
|
-
};
|
|
3299
|
-
/**
|
|
3300
|
-
* Credential providers
|
|
3301
|
-
*
|
|
3302
|
-
* @generated from rpc grackle.Grackle.GetCredentialProviders
|
|
3303
|
-
*/
|
|
3304
|
-
getCredentialProviders: {
|
|
3305
|
-
methodKind: "unary";
|
|
3306
|
-
input: typeof EmptySchema;
|
|
3307
|
-
output: typeof CredentialProviderConfigSchema;
|
|
3308
|
-
};
|
|
3309
|
-
/**
|
|
3310
|
-
* @generated from rpc grackle.Grackle.SetCredentialProvider
|
|
3311
|
-
*/
|
|
3312
|
-
setCredentialProvider: {
|
|
3313
|
-
methodKind: "unary";
|
|
3314
|
-
input: typeof SetCredentialProviderRequestSchema;
|
|
3315
|
-
output: typeof CredentialProviderConfigSchema;
|
|
3316
|
-
};
|
|
3317
|
-
/**
|
|
3318
|
-
* Workspaces
|
|
3319
|
-
*
|
|
3320
|
-
* @generated from rpc grackle.Grackle.ListWorkspaces
|
|
3321
|
-
*/
|
|
3322
|
-
listWorkspaces: {
|
|
3323
|
-
methodKind: "unary";
|
|
3324
|
-
input: typeof ListWorkspacesRequestSchema;
|
|
3325
|
-
output: typeof WorkspaceListSchema;
|
|
3326
|
-
};
|
|
3327
|
-
/**
|
|
3328
|
-
* @generated from rpc grackle.Grackle.CreateWorkspace
|
|
3329
|
-
*/
|
|
3330
|
-
createWorkspace: {
|
|
3331
|
-
methodKind: "unary";
|
|
3332
|
-
input: typeof CreateWorkspaceRequestSchema;
|
|
3333
|
-
output: typeof WorkspaceSchema;
|
|
3334
|
-
};
|
|
3335
|
-
/**
|
|
3336
|
-
* @generated from rpc grackle.Grackle.GetWorkspace
|
|
3337
|
-
*/
|
|
3338
|
-
getWorkspace: {
|
|
3339
|
-
methodKind: "unary";
|
|
3340
|
-
input: typeof WorkspaceIdSchema;
|
|
3341
|
-
output: typeof WorkspaceSchema;
|
|
3342
|
-
};
|
|
3343
|
-
/**
|
|
3344
|
-
* @generated from rpc grackle.Grackle.UpdateWorkspace
|
|
3345
|
-
*/
|
|
3346
|
-
updateWorkspace: {
|
|
3347
|
-
methodKind: "unary";
|
|
3348
|
-
input: typeof UpdateWorkspaceRequestSchema;
|
|
3349
|
-
output: typeof WorkspaceSchema;
|
|
3350
|
-
};
|
|
3351
|
-
/**
|
|
3352
|
-
* @generated from rpc grackle.Grackle.ArchiveWorkspace
|
|
3353
|
-
*/
|
|
3354
|
-
archiveWorkspace: {
|
|
3355
|
-
methodKind: "unary";
|
|
3356
|
-
input: typeof WorkspaceIdSchema;
|
|
3357
|
-
output: typeof EmptySchema;
|
|
3358
|
-
};
|
|
3359
|
-
/**
|
|
3360
|
-
* @generated from rpc grackle.Grackle.LinkEnvironment
|
|
3361
|
-
*/
|
|
3362
|
-
linkEnvironment: {
|
|
3363
|
-
methodKind: "unary";
|
|
3364
|
-
input: typeof LinkEnvironmentRequestSchema;
|
|
3365
|
-
output: typeof WorkspaceSchema;
|
|
3366
|
-
};
|
|
3367
|
-
/**
|
|
3368
|
-
* @generated from rpc grackle.Grackle.UnlinkEnvironment
|
|
3369
|
-
*/
|
|
3370
|
-
unlinkEnvironment: {
|
|
3371
|
-
methodKind: "unary";
|
|
3372
|
-
input: typeof UnlinkEnvironmentRequestSchema;
|
|
3373
|
-
output: typeof WorkspaceSchema;
|
|
3374
|
-
};
|
|
3375
|
-
/**
|
|
3376
|
-
* Tasks
|
|
3377
|
-
*
|
|
3378
|
-
* @generated from rpc grackle.Grackle.ListTasks
|
|
3379
|
-
*/
|
|
3380
|
-
listTasks: {
|
|
3381
|
-
methodKind: "unary";
|
|
3382
|
-
input: typeof ListTasksRequestSchema;
|
|
3383
|
-
output: typeof TaskListSchema;
|
|
3384
|
-
};
|
|
3385
|
-
/**
|
|
3386
|
-
* @generated from rpc grackle.Grackle.CreateTask
|
|
3387
|
-
*/
|
|
3388
|
-
createTask: {
|
|
3389
|
-
methodKind: "unary";
|
|
3390
|
-
input: typeof CreateTaskRequestSchema;
|
|
3391
|
-
output: typeof TaskSchema;
|
|
3392
|
-
};
|
|
3393
|
-
/**
|
|
3394
|
-
* @generated from rpc grackle.Grackle.GetTask
|
|
3395
|
-
*/
|
|
3396
|
-
getTask: {
|
|
3397
|
-
methodKind: "unary";
|
|
3398
|
-
input: typeof TaskIdSchema;
|
|
3399
|
-
output: typeof TaskSchema;
|
|
3400
|
-
};
|
|
3401
|
-
/**
|
|
3402
|
-
* @generated from rpc grackle.Grackle.UpdateTask
|
|
3403
|
-
*/
|
|
3404
|
-
updateTask: {
|
|
3405
|
-
methodKind: "unary";
|
|
3406
|
-
input: typeof UpdateTaskRequestSchema;
|
|
3407
|
-
output: typeof TaskSchema;
|
|
3408
|
-
};
|
|
3409
|
-
/**
|
|
3410
|
-
* @generated from rpc grackle.Grackle.StartTask
|
|
3411
|
-
*/
|
|
3412
|
-
startTask: {
|
|
3413
|
-
methodKind: "unary";
|
|
3414
|
-
input: typeof StartTaskRequestSchema;
|
|
3415
|
-
output: typeof SessionSchema;
|
|
3416
|
-
};
|
|
3417
|
-
/**
|
|
3418
|
-
* @generated from rpc grackle.Grackle.CompleteTask
|
|
3419
|
-
*/
|
|
3420
|
-
completeTask: {
|
|
3421
|
-
methodKind: "unary";
|
|
3422
|
-
input: typeof TaskIdSchema;
|
|
3423
|
-
output: typeof TaskSchema;
|
|
3424
|
-
};
|
|
3425
|
-
/**
|
|
3426
|
-
* @generated from rpc grackle.Grackle.ResumeTask
|
|
3427
|
-
*/
|
|
3428
|
-
resumeTask: {
|
|
3429
|
-
methodKind: "unary";
|
|
3430
|
-
input: typeof TaskIdSchema;
|
|
3431
|
-
output: typeof SessionSchema;
|
|
3432
|
-
};
|
|
3433
|
-
/**
|
|
3434
|
-
* @generated from rpc grackle.Grackle.StopTask
|
|
3435
|
-
*/
|
|
3436
|
-
stopTask: {
|
|
3437
|
-
methodKind: "unary";
|
|
3438
|
-
input: typeof TaskIdSchema;
|
|
3439
|
-
output: typeof TaskSchema;
|
|
3440
|
-
};
|
|
3441
|
-
/**
|
|
3442
|
-
* @generated from rpc grackle.Grackle.SetWorkpad
|
|
3443
|
-
*/
|
|
3444
|
-
setWorkpad: {
|
|
3445
|
-
methodKind: "unary";
|
|
3446
|
-
input: typeof SetWorkpadRequestSchema;
|
|
3447
|
-
output: typeof TaskSchema;
|
|
3448
|
-
};
|
|
3449
|
-
/**
|
|
3450
|
-
* @generated from rpc grackle.Grackle.DeleteTask
|
|
3451
|
-
*/
|
|
3452
|
-
deleteTask: {
|
|
3453
|
-
methodKind: "unary";
|
|
3454
|
-
input: typeof TaskIdSchema;
|
|
3455
|
-
output: typeof EmptySchema;
|
|
3456
|
-
};
|
|
3457
|
-
/**
|
|
3458
|
-
* Personas
|
|
3459
|
-
*
|
|
3460
|
-
* @generated from rpc grackle.Grackle.ListPersonas
|
|
3461
|
-
*/
|
|
3462
|
-
listPersonas: {
|
|
3463
|
-
methodKind: "unary";
|
|
3464
|
-
input: typeof EmptySchema;
|
|
3465
|
-
output: typeof PersonaListSchema;
|
|
3466
|
-
};
|
|
3467
|
-
/**
|
|
3468
|
-
* @generated from rpc grackle.Grackle.CreatePersona
|
|
3469
|
-
*/
|
|
3470
|
-
createPersona: {
|
|
3471
|
-
methodKind: "unary";
|
|
3472
|
-
input: typeof CreatePersonaRequestSchema;
|
|
3473
|
-
output: typeof PersonaSchema;
|
|
3474
|
-
};
|
|
3475
|
-
/**
|
|
3476
|
-
* @generated from rpc grackle.Grackle.GetPersona
|
|
3477
|
-
*/
|
|
3478
|
-
getPersona: {
|
|
3479
|
-
methodKind: "unary";
|
|
3480
|
-
input: typeof PersonaIdSchema;
|
|
3481
|
-
output: typeof PersonaSchema;
|
|
3482
|
-
};
|
|
3483
|
-
/**
|
|
3484
|
-
* @generated from rpc grackle.Grackle.UpdatePersona
|
|
3485
|
-
*/
|
|
3486
|
-
updatePersona: {
|
|
3487
|
-
methodKind: "unary";
|
|
3488
|
-
input: typeof UpdatePersonaRequestSchema;
|
|
3489
|
-
output: typeof PersonaSchema;
|
|
3490
|
-
};
|
|
3491
|
-
/**
|
|
3492
|
-
* @generated from rpc grackle.Grackle.DeletePersona
|
|
3493
|
-
*/
|
|
3494
|
-
deletePersona: {
|
|
3495
|
-
methodKind: "unary";
|
|
3496
|
-
input: typeof PersonaIdSchema;
|
|
3497
|
-
output: typeof EmptySchema;
|
|
3498
|
-
};
|
|
3499
|
-
/**
|
|
3500
|
-
* Findings
|
|
3501
|
-
*
|
|
3502
|
-
* @generated from rpc grackle.Grackle.PostFinding
|
|
3503
|
-
*/
|
|
3504
|
-
postFinding: {
|
|
3505
|
-
methodKind: "unary";
|
|
3506
|
-
input: typeof PostFindingRequestSchema;
|
|
3507
|
-
output: typeof FindingSchema;
|
|
3508
|
-
};
|
|
3509
|
-
/**
|
|
3510
|
-
* @generated from rpc grackle.Grackle.QueryFindings
|
|
3511
|
-
*/
|
|
3512
|
-
queryFindings: {
|
|
3513
|
-
methodKind: "unary";
|
|
3514
|
-
input: typeof QueryFindingsRequestSchema;
|
|
3515
|
-
output: typeof FindingListSchema;
|
|
3516
|
-
};
|
|
3517
|
-
/**
|
|
3518
|
-
* @generated from rpc grackle.Grackle.GetFinding
|
|
3519
|
-
*/
|
|
3520
|
-
getFinding: {
|
|
3521
|
-
methodKind: "unary";
|
|
3522
|
-
input: typeof GetFindingRequestSchema;
|
|
3523
|
-
output: typeof FindingSchema;
|
|
3524
|
-
};
|
|
3525
|
-
/**
|
|
3526
|
-
* Escalations
|
|
3527
|
-
*
|
|
3528
|
-
* @generated from rpc grackle.Grackle.CreateEscalation
|
|
3529
|
-
*/
|
|
3530
|
-
createEscalation: {
|
|
3531
|
-
methodKind: "unary";
|
|
3532
|
-
input: typeof CreateEscalationRequestSchema;
|
|
3533
|
-
output: typeof EscalationSchema;
|
|
3534
|
-
};
|
|
3535
|
-
/**
|
|
3536
|
-
* @generated from rpc grackle.Grackle.ListEscalations
|
|
3537
|
-
*/
|
|
3538
|
-
listEscalations: {
|
|
3539
|
-
methodKind: "unary";
|
|
3540
|
-
input: typeof ListEscalationsRequestSchema;
|
|
3541
|
-
output: typeof EscalationListSchema;
|
|
3542
|
-
};
|
|
3543
|
-
/**
|
|
3544
|
-
* @generated from rpc grackle.Grackle.AcknowledgeEscalation
|
|
3545
|
-
*/
|
|
3546
|
-
acknowledgeEscalation: {
|
|
3547
|
-
methodKind: "unary";
|
|
3548
|
-
input: typeof AcknowledgeEscalationRequestSchema;
|
|
3549
|
-
output: typeof EscalationSchema;
|
|
3550
|
-
};
|
|
3551
|
-
/**
|
|
3552
|
-
* Schedules
|
|
3553
|
-
*
|
|
3554
|
-
* @generated from rpc grackle.Grackle.CreateSchedule
|
|
3555
|
-
*/
|
|
3556
|
-
createSchedule: {
|
|
3557
|
-
methodKind: "unary";
|
|
3558
|
-
input: typeof CreateScheduleRequestSchema;
|
|
3559
|
-
output: typeof ScheduleSchema;
|
|
3560
|
-
};
|
|
3561
|
-
/**
|
|
3562
|
-
* @generated from rpc grackle.Grackle.ListSchedules
|
|
3563
|
-
*/
|
|
3564
|
-
listSchedules: {
|
|
3565
|
-
methodKind: "unary";
|
|
3566
|
-
input: typeof ListSchedulesRequestSchema;
|
|
3567
|
-
output: typeof ScheduleListSchema;
|
|
3568
|
-
};
|
|
3569
|
-
/**
|
|
3570
|
-
* @generated from rpc grackle.Grackle.GetSchedule
|
|
3571
|
-
*/
|
|
3572
|
-
getSchedule: {
|
|
3573
|
-
methodKind: "unary";
|
|
3574
|
-
input: typeof ScheduleIdSchema;
|
|
3575
|
-
output: typeof ScheduleSchema;
|
|
3576
|
-
};
|
|
3577
|
-
/**
|
|
3578
|
-
* @generated from rpc grackle.Grackle.UpdateSchedule
|
|
3579
|
-
*/
|
|
3580
|
-
updateSchedule: {
|
|
3581
|
-
methodKind: "unary";
|
|
3582
|
-
input: typeof UpdateScheduleRequestSchema;
|
|
3583
|
-
output: typeof ScheduleSchema;
|
|
3584
|
-
};
|
|
3585
|
-
/**
|
|
3586
|
-
* @generated from rpc grackle.Grackle.DeleteSchedule
|
|
3587
|
-
*/
|
|
3588
|
-
deleteSchedule: {
|
|
3589
|
-
methodKind: "unary";
|
|
3590
|
-
input: typeof ScheduleIdSchema;
|
|
3591
|
-
output: typeof EmptySchema;
|
|
3592
|
-
};
|
|
3593
|
-
/**
|
|
3594
|
-
* Codespaces
|
|
3595
|
-
*
|
|
3596
|
-
* @generated from rpc grackle.Grackle.ListCodespaces
|
|
3597
|
-
*/
|
|
3598
|
-
listCodespaces: {
|
|
3599
|
-
methodKind: "unary";
|
|
3600
|
-
input: typeof EmptySchema;
|
|
3601
|
-
output: typeof CodespaceListSchema;
|
|
3602
|
-
};
|
|
3603
|
-
/**
|
|
3604
|
-
* @generated from rpc grackle.Grackle.CreateCodespace
|
|
3605
|
-
*/
|
|
3606
|
-
createCodespace: {
|
|
3607
|
-
methodKind: "unary";
|
|
3608
|
-
input: typeof CreateCodespaceRequestSchema;
|
|
3609
|
-
output: typeof CreateCodespaceResponseSchema;
|
|
3610
|
-
};
|
|
3611
|
-
/**
|
|
3612
|
-
* Settings
|
|
3613
|
-
*
|
|
3614
|
-
* @generated from rpc grackle.Grackle.GetSetting
|
|
3615
|
-
*/
|
|
3616
|
-
getSetting: {
|
|
3617
|
-
methodKind: "unary";
|
|
3618
|
-
input: typeof GetSettingRequestSchema;
|
|
3619
|
-
output: typeof SettingResponseSchema;
|
|
3620
|
-
};
|
|
3621
|
-
/**
|
|
3622
|
-
* @generated from rpc grackle.Grackle.SetSetting
|
|
3623
|
-
*/
|
|
3624
|
-
setSetting: {
|
|
3625
|
-
methodKind: "unary";
|
|
3626
|
-
input: typeof SetSettingRequestSchema;
|
|
3627
|
-
output: typeof SettingResponseSchema;
|
|
3628
|
-
};
|
|
3629
|
-
/**
|
|
3630
|
-
* Pairing
|
|
3631
|
-
*
|
|
3632
|
-
* @generated from rpc grackle.Grackle.GeneratePairingCode
|
|
3633
|
-
*/
|
|
3634
|
-
generatePairingCode: {
|
|
3635
|
-
methodKind: "unary";
|
|
3636
|
-
input: typeof EmptySchema;
|
|
3637
|
-
output: typeof PairingCodeResponseSchema;
|
|
3638
|
-
};
|
|
3639
|
-
/**
|
|
3640
|
-
* Usage
|
|
3641
|
-
*
|
|
3642
|
-
* @generated from rpc grackle.Grackle.GetUsage
|
|
3643
|
-
*/
|
|
3644
|
-
getUsage: {
|
|
3645
|
-
methodKind: "unary";
|
|
3646
|
-
input: typeof GetUsageRequestSchema;
|
|
3647
|
-
output: typeof UsageStatsSchema;
|
|
3648
|
-
};
|
|
3649
|
-
/**
|
|
3650
|
-
* IPC
|
|
3651
|
-
*
|
|
3652
|
-
* @generated from rpc grackle.Grackle.WaitForPipe
|
|
3653
|
-
*/
|
|
3654
|
-
waitForPipe: {
|
|
3655
|
-
methodKind: "unary";
|
|
3656
|
-
input: typeof WaitForPipeRequestSchema;
|
|
3657
|
-
output: typeof WaitForPipeResponseSchema;
|
|
3658
|
-
};
|
|
3659
|
-
/**
|
|
3660
|
-
* @generated from rpc grackle.Grackle.WriteToFd
|
|
3661
|
-
*/
|
|
3662
|
-
writeToFd: {
|
|
3663
|
-
methodKind: "unary";
|
|
3664
|
-
input: typeof WriteToFdRequestSchema;
|
|
3665
|
-
output: typeof EmptySchema;
|
|
3666
|
-
};
|
|
3667
|
-
/**
|
|
3668
|
-
* @generated from rpc grackle.Grackle.CloseFd
|
|
3669
|
-
*/
|
|
3670
|
-
closeFd: {
|
|
3671
|
-
methodKind: "unary";
|
|
3672
|
-
input: typeof CloseFdRequestSchema;
|
|
3673
|
-
output: typeof CloseFdResponseSchema;
|
|
3674
|
-
};
|
|
3675
|
-
/**
|
|
3676
|
-
* @generated from rpc grackle.Grackle.GetSessionFds
|
|
3677
|
-
*/
|
|
3678
|
-
getSessionFds: {
|
|
3679
|
-
methodKind: "unary";
|
|
3680
|
-
input: typeof SessionIdSchema;
|
|
3681
|
-
output: typeof SessionFdsSchema;
|
|
3682
|
-
};
|
|
3683
|
-
/**
|
|
3684
|
-
* @generated from rpc grackle.Grackle.CreateStream
|
|
3685
|
-
*/
|
|
3686
|
-
createStream: {
|
|
3687
|
-
methodKind: "unary";
|
|
3688
|
-
input: typeof CreateStreamRequestSchema;
|
|
3689
|
-
output: typeof CreateStreamResponseSchema;
|
|
3690
|
-
};
|
|
3691
|
-
/**
|
|
3692
|
-
* @generated from rpc grackle.Grackle.AttachStream
|
|
3693
|
-
*/
|
|
3694
|
-
attachStream: {
|
|
3695
|
-
methodKind: "unary";
|
|
3696
|
-
input: typeof AttachStreamRequestSchema;
|
|
3697
|
-
output: typeof AttachStreamResponseSchema;
|
|
3698
|
-
};
|
|
3699
|
-
/**
|
|
3700
|
-
* @generated from rpc grackle.Grackle.ListStreams
|
|
3701
|
-
*/
|
|
3702
|
-
listStreams: {
|
|
3703
|
-
methodKind: "unary";
|
|
3704
|
-
input: typeof EmptySchema;
|
|
3705
|
-
output: typeof ListStreamsResponseSchema;
|
|
3706
|
-
};
|
|
3707
|
-
/**
|
|
3708
|
-
* Knowledge Graph
|
|
3709
|
-
*
|
|
3710
|
-
* @generated from rpc grackle.Grackle.SearchKnowledge
|
|
3711
|
-
*/
|
|
3712
|
-
searchKnowledge: {
|
|
3713
|
-
methodKind: "unary";
|
|
3714
|
-
input: typeof SearchKnowledgeRequestSchema;
|
|
3715
|
-
output: typeof SearchKnowledgeResponseSchema;
|
|
3716
|
-
};
|
|
3717
|
-
/**
|
|
3718
|
-
* @generated from rpc grackle.Grackle.GetKnowledgeNode
|
|
3719
|
-
*/
|
|
3720
|
-
getKnowledgeNode: {
|
|
3721
|
-
methodKind: "unary";
|
|
3722
|
-
input: typeof GetKnowledgeNodeRequestSchema;
|
|
3723
|
-
output: typeof GetKnowledgeNodeResponseSchema;
|
|
3724
|
-
};
|
|
3725
|
-
/**
|
|
3726
|
-
* @generated from rpc grackle.Grackle.ExpandKnowledgeNode
|
|
3727
|
-
*/
|
|
3728
|
-
expandKnowledgeNode: {
|
|
3729
|
-
methodKind: "unary";
|
|
3730
|
-
input: typeof ExpandKnowledgeNodeRequestSchema;
|
|
3731
|
-
output: typeof ExpandKnowledgeNodeResponseSchema;
|
|
3732
|
-
};
|
|
3733
|
-
/**
|
|
3734
|
-
* @generated from rpc grackle.Grackle.ListRecentKnowledgeNodes
|
|
3735
|
-
*/
|
|
3736
|
-
listRecentKnowledgeNodes: {
|
|
3737
|
-
methodKind: "unary";
|
|
3738
|
-
input: typeof ListRecentKnowledgeNodesRequestSchema;
|
|
3739
|
-
output: typeof ListRecentKnowledgeNodesResponseSchema;
|
|
3740
|
-
};
|
|
3741
|
-
/**
|
|
3742
|
-
* @generated from rpc grackle.Grackle.CreateKnowledgeNode
|
|
3743
|
-
*/
|
|
3744
|
-
createKnowledgeNode: {
|
|
3745
|
-
methodKind: "unary";
|
|
3746
|
-
input: typeof CreateKnowledgeNodeRequestSchema;
|
|
3747
|
-
output: typeof CreateKnowledgeNodeResponseSchema;
|
|
3748
|
-
};
|
|
3749
|
-
/**
|
|
3750
|
-
* Version
|
|
3751
|
-
*
|
|
3752
|
-
* @generated from rpc grackle.Grackle.GetVersionStatus
|
|
3753
|
-
*/
|
|
3754
|
-
getVersionStatus: {
|
|
3755
|
-
methodKind: "unary";
|
|
3756
|
-
input: typeof EmptySchema;
|
|
3757
|
-
output: typeof VersionStatusSchema;
|
|
3758
|
-
};
|
|
3759
|
-
/**
|
|
3760
|
-
* Unified event streaming (replaces WebSocket)
|
|
3761
|
-
*
|
|
3762
|
-
* @generated from rpc grackle.Grackle.StreamEvents
|
|
3763
|
-
*/
|
|
3764
|
-
streamEvents: {
|
|
3765
|
-
methodKind: "server_streaming";
|
|
3766
|
-
input: typeof EmptySchema;
|
|
3767
|
-
output: typeof ServerEventSchema;
|
|
3768
|
-
};
|
|
3769
|
-
}>;
|
|
3770
|
-
//# sourceMappingURL=grackle_pb.d.ts.map
|
|
3127
|
+
//# sourceMappingURL=grackle_types_pb.d.ts.map
|