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