@lessly/sdk-app 9.1.0 → 10.0.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 (51) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.cjs +0 -10
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +2 -10
  6. package/dist/brain/index.d.ts +2 -10
  7. package/dist/brain/index.js +1 -9
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-LEUVRZRQ.d.cts → client.gen-XqieBmDz.d.cts} +1102 -223
  10. package/dist/{client.gen-LEUVRZRQ.d.ts → client.gen-XqieBmDz.d.ts} +1102 -223
  11. package/dist/consent/index.d.cts +1 -1
  12. package/dist/consent/index.d.ts +1 -1
  13. package/dist/deployment/index.d.cts +1 -1
  14. package/dist/deployment/index.d.ts +1 -1
  15. package/dist/index.cjs +512 -40
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +1 -1
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.js +512 -40
  20. package/dist/index.js.map +1 -1
  21. package/dist/mail/index.d.cts +2 -2
  22. package/dist/mail/index.d.ts +2 -2
  23. package/dist/organization/index.d.cts +1 -1
  24. package/dist/organization/index.d.ts +1 -1
  25. package/dist/playground/index.cjs +66 -0
  26. package/dist/playground/index.cjs.map +1 -0
  27. package/dist/playground/index.d.cts +52 -0
  28. package/dist/playground/index.d.ts +52 -0
  29. package/dist/playground/index.js +53 -0
  30. package/dist/playground/index.js.map +1 -0
  31. package/dist/realtime/index.cjs +126 -0
  32. package/dist/realtime/index.cjs.map +1 -0
  33. package/dist/realtime/index.d.cts +100 -0
  34. package/dist/realtime/index.d.ts +100 -0
  35. package/dist/realtime/index.js +101 -0
  36. package/dist/realtime/index.js.map +1 -0
  37. package/dist/tracking/index.d.cts +1 -1
  38. package/dist/tracking/index.d.ts +1 -1
  39. package/dist/waitlist/index.d.cts +1 -1
  40. package/dist/waitlist/index.d.ts +1 -1
  41. package/package.json +12 -2
  42. package/src/gen/bindings.gen.ts +512 -40
  43. package/src/gen/brain/index.ts +1 -1
  44. package/src/gen/brain/queryOptions.gen.ts +0 -14
  45. package/src/gen/client.gen.ts +146 -8
  46. package/src/gen/manifest.gen.ts +1 -1
  47. package/src/gen/playground/index.ts +3 -0
  48. package/src/gen/playground/queryOptions.gen.ts +86 -0
  49. package/src/gen/realtime/index.ts +3 -0
  50. package/src/gen/realtime/queryOptions.gen.ts +158 -0
  51. package/src/gen/types.gen.ts +994 -106
@@ -409,21 +409,6 @@ export const bindings: BindingsMap = {
409
409
  }
410
410
  },
411
411
  "knowledge": {
412
- "graph": {
413
- "method": "GET",
414
- "params": [
415
- {
416
- "in": "query",
417
- "name": "limit"
418
- },
419
- {
420
- "in": "query",
421
- "name": "scope"
422
- }
423
- ],
424
- "path": "/brain/knowledge/graph",
425
- "readOnly": true
426
- },
427
412
  "neighborhood": {
428
413
  "method": "GET",
429
414
  "params": [
@@ -510,31 +495,6 @@ export const bindings: BindingsMap = {
510
495
  "readOnly": true
511
496
  }
512
497
  },
513
- "knowledge-entity": {
514
- "memories": {
515
- "method": "GET",
516
- "params": [
517
- {
518
- "in": "path",
519
- "name": "entity_ref"
520
- },
521
- {
522
- "in": "query",
523
- "name": "limit"
524
- },
525
- {
526
- "in": "query",
527
- "name": "offset"
528
- },
529
- {
530
- "in": "query",
531
- "name": "scope"
532
- }
533
- ],
534
- "path": "/brain/knowledge/entities/:entity_ref/memories",
535
- "readOnly": true
536
- }
537
- },
538
498
  "memory": {
539
499
  "add": {
540
500
  "method": "POST",
@@ -4237,6 +4197,518 @@ export const bindings: BindingsMap = {
4237
4197
  }
4238
4198
  }
4239
4199
  },
4200
+ "playground": {
4201
+ "analytics": {
4202
+ "overview": {
4203
+ "method": "POST",
4204
+ "params": [
4205
+ {
4206
+ "in": "body",
4207
+ "name": "limit"
4208
+ }
4209
+ ],
4210
+ "path": "/playground/analytics/overview",
4211
+ "readOnly": true
4212
+ }
4213
+ },
4214
+ "billing": {
4215
+ "entitlements": {
4216
+ "method": "POST",
4217
+ "path": "/playground/billing/entitlements",
4218
+ "readOnly": true
4219
+ },
4220
+ "record-usage": {
4221
+ "method": "POST",
4222
+ "params": [
4223
+ {
4224
+ "in": "body",
4225
+ "name": "value"
4226
+ }
4227
+ ],
4228
+ "path": "/playground/billing/usage",
4229
+ "readOnly": false
4230
+ }
4231
+ },
4232
+ "clickup": {
4233
+ "create-task": {
4234
+ "method": "POST",
4235
+ "params": [
4236
+ {
4237
+ "in": "body",
4238
+ "name": "listId"
4239
+ },
4240
+ {
4241
+ "in": "body",
4242
+ "name": "name"
4243
+ }
4244
+ ],
4245
+ "path": "/playground/clickup/tasks",
4246
+ "readOnly": false
4247
+ },
4248
+ "get-last-webhook": {
4249
+ "method": "GET",
4250
+ "path": "/playground/clickup/webhooks/last",
4251
+ "readOnly": true
4252
+ },
4253
+ "get-overview": {
4254
+ "method": "GET",
4255
+ "path": "/playground/clickup/overview",
4256
+ "readOnly": true
4257
+ }
4258
+ },
4259
+ "gdrive": {
4260
+ "get-last-change": {
4261
+ "method": "GET",
4262
+ "path": "/playground/gdrive/changes/last",
4263
+ "readOnly": true
4264
+ },
4265
+ "read-file": {
4266
+ "method": "POST",
4267
+ "params": [
4268
+ {
4269
+ "in": "body",
4270
+ "name": "fileId"
4271
+ }
4272
+ ],
4273
+ "path": "/playground/gdrive/file",
4274
+ "readOnly": true
4275
+ }
4276
+ },
4277
+ "googleads": {
4278
+ "read-customer": {
4279
+ "method": "POST",
4280
+ "path": "/playground/googleads/customer",
4281
+ "readOnly": true
4282
+ }
4283
+ },
4284
+ "lifecycle": {
4285
+ "get-state": {
4286
+ "method": "GET",
4287
+ "path": "/playground/lifecycle/state",
4288
+ "readOnly": true
4289
+ },
4290
+ "list-events": {
4291
+ "method": "GET",
4292
+ "path": "/playground/lifecycle/events",
4293
+ "readOnly": true
4294
+ }
4295
+ },
4296
+ "webhook": {
4297
+ "get-last": {
4298
+ "method": "GET",
4299
+ "path": "/playground/webhooks/last",
4300
+ "readOnly": true
4301
+ }
4302
+ }
4303
+ },
4304
+ "realtime": {
4305
+ "grant": {
4306
+ "create": {
4307
+ "method": "POST",
4308
+ "params": [
4309
+ {
4310
+ "in": "body",
4311
+ "name": "subject"
4312
+ },
4313
+ {
4314
+ "in": "body",
4315
+ "name": "pattern"
4316
+ },
4317
+ {
4318
+ "in": "body",
4319
+ "name": "ops"
4320
+ }
4321
+ ],
4322
+ "path": "/realtime/grants",
4323
+ "readOnly": false
4324
+ },
4325
+ "list": {
4326
+ "method": "GET",
4327
+ "params": [
4328
+ {
4329
+ "in": "query",
4330
+ "name": "subject"
4331
+ }
4332
+ ],
4333
+ "path": "/realtime/grants",
4334
+ "readOnly": true
4335
+ },
4336
+ "revoke": {
4337
+ "method": "DELETE",
4338
+ "params": [
4339
+ {
4340
+ "in": "path",
4341
+ "name": "id"
4342
+ }
4343
+ ],
4344
+ "path": "/realtime/grants/:id",
4345
+ "readOnly": false
4346
+ }
4347
+ },
4348
+ "history": {
4349
+ "get": {
4350
+ "method": "GET",
4351
+ "params": [
4352
+ {
4353
+ "in": "query",
4354
+ "name": "channel"
4355
+ },
4356
+ {
4357
+ "in": "query",
4358
+ "name": "offset"
4359
+ },
4360
+ {
4361
+ "in": "query",
4362
+ "name": "epoch"
4363
+ },
4364
+ {
4365
+ "in": "query",
4366
+ "name": "last_n"
4367
+ },
4368
+ {
4369
+ "in": "query",
4370
+ "name": "last_ms"
4371
+ }
4372
+ ],
4373
+ "path": "/realtime/messages/history",
4374
+ "readOnly": true
4375
+ }
4376
+ },
4377
+ "messages": {
4378
+ "publish": {
4379
+ "method": "POST",
4380
+ "params": [
4381
+ {
4382
+ "in": "body",
4383
+ "name": "channel"
4384
+ },
4385
+ {
4386
+ "in": "body",
4387
+ "name": "data"
4388
+ }
4389
+ ],
4390
+ "path": "/realtime/messages",
4391
+ "readOnly": false
4392
+ }
4393
+ },
4394
+ "namespace": {
4395
+ "create": {
4396
+ "method": "POST",
4397
+ "params": [
4398
+ {
4399
+ "in": "body",
4400
+ "name": "name"
4401
+ },
4402
+ {
4403
+ "in": "body",
4404
+ "name": "visibility"
4405
+ },
4406
+ {
4407
+ "in": "body",
4408
+ "name": "presence"
4409
+ },
4410
+ {
4411
+ "in": "body",
4412
+ "name": "clientEvents"
4413
+ },
4414
+ {
4415
+ "in": "body",
4416
+ "name": "history"
4417
+ },
4418
+ {
4419
+ "in": "body",
4420
+ "name": "historyWindowSeconds"
4421
+ },
4422
+ {
4423
+ "in": "body",
4424
+ "name": "encryptionRequired"
4425
+ },
4426
+ {
4427
+ "in": "body",
4428
+ "name": "identifiedOnly"
4429
+ }
4430
+ ],
4431
+ "path": "/realtime/namespaces",
4432
+ "readOnly": false
4433
+ },
4434
+ "delete": {
4435
+ "method": "DELETE",
4436
+ "params": [
4437
+ {
4438
+ "in": "path",
4439
+ "name": "name"
4440
+ }
4441
+ ],
4442
+ "path": "/realtime/namespaces/:name",
4443
+ "readOnly": false
4444
+ },
4445
+ "get": {
4446
+ "method": "GET",
4447
+ "params": [
4448
+ {
4449
+ "in": "path",
4450
+ "name": "name"
4451
+ }
4452
+ ],
4453
+ "path": "/realtime/namespaces/:name",
4454
+ "readOnly": true
4455
+ },
4456
+ "list": {
4457
+ "method": "GET",
4458
+ "path": "/realtime/namespaces",
4459
+ "readOnly": true
4460
+ },
4461
+ "update": {
4462
+ "method": "PATCH",
4463
+ "params": [
4464
+ {
4465
+ "in": "path",
4466
+ "name": "name"
4467
+ },
4468
+ {
4469
+ "in": "body",
4470
+ "name": "visibility"
4471
+ },
4472
+ {
4473
+ "in": "body",
4474
+ "name": "presence"
4475
+ },
4476
+ {
4477
+ "in": "body",
4478
+ "name": "clientEvents"
4479
+ },
4480
+ {
4481
+ "in": "body",
4482
+ "name": "history"
4483
+ },
4484
+ {
4485
+ "in": "body",
4486
+ "name": "historyWindowSeconds"
4487
+ },
4488
+ {
4489
+ "in": "body",
4490
+ "name": "encryptionRequired"
4491
+ },
4492
+ {
4493
+ "in": "body",
4494
+ "name": "identifiedOnly"
4495
+ }
4496
+ ],
4497
+ "path": "/realtime/namespaces/:name",
4498
+ "readOnly": false
4499
+ }
4500
+ },
4501
+ "presence": {
4502
+ "enter": {
4503
+ "method": "POST",
4504
+ "params": [
4505
+ {
4506
+ "in": "body",
4507
+ "name": "channel"
4508
+ },
4509
+ {
4510
+ "in": "body",
4511
+ "name": "info"
4512
+ },
4513
+ {
4514
+ "in": "body",
4515
+ "name": "ttl_seconds"
4516
+ },
4517
+ {
4518
+ "in": "body",
4519
+ "name": "member_id"
4520
+ }
4521
+ ],
4522
+ "path": "/realtime/presence/enter",
4523
+ "readOnly": false
4524
+ },
4525
+ "get": {
4526
+ "method": "GET",
4527
+ "params": [
4528
+ {
4529
+ "in": "query",
4530
+ "name": "channel"
4531
+ }
4532
+ ],
4533
+ "path": "/realtime/presence",
4534
+ "readOnly": true
4535
+ },
4536
+ "leave": {
4537
+ "method": "POST",
4538
+ "params": [
4539
+ {
4540
+ "in": "body",
4541
+ "name": "channel"
4542
+ },
4543
+ {
4544
+ "in": "body",
4545
+ "name": "member_id"
4546
+ }
4547
+ ],
4548
+ "path": "/realtime/presence/leave",
4549
+ "readOnly": false
4550
+ },
4551
+ "stats": {
4552
+ "method": "GET",
4553
+ "params": [
4554
+ {
4555
+ "in": "query",
4556
+ "name": "channel"
4557
+ }
4558
+ ],
4559
+ "path": "/realtime/presence/stats",
4560
+ "readOnly": true
4561
+ },
4562
+ "update": {
4563
+ "method": "POST",
4564
+ "params": [
4565
+ {
4566
+ "in": "body",
4567
+ "name": "channel"
4568
+ },
4569
+ {
4570
+ "in": "body",
4571
+ "name": "info"
4572
+ },
4573
+ {
4574
+ "in": "body",
4575
+ "name": "ttl_seconds"
4576
+ },
4577
+ {
4578
+ "in": "body",
4579
+ "name": "member_id"
4580
+ }
4581
+ ],
4582
+ "path": "/realtime/presence/update",
4583
+ "readOnly": false
4584
+ }
4585
+ },
4586
+ "status": {
4587
+ "get": {
4588
+ "method": "GET",
4589
+ "path": "/realtime/status",
4590
+ "readOnly": true
4591
+ }
4592
+ },
4593
+ "tokens": {
4594
+ "create": {
4595
+ "method": "POST",
4596
+ "params": [
4597
+ {
4598
+ "in": "body",
4599
+ "name": "channels"
4600
+ }
4601
+ ],
4602
+ "path": "/realtime/tokens",
4603
+ "readOnly": false
4604
+ }
4605
+ },
4606
+ "webhook": {
4607
+ "create": {
4608
+ "method": "POST",
4609
+ "params": [
4610
+ {
4611
+ "in": "body",
4612
+ "name": "url"
4613
+ },
4614
+ {
4615
+ "in": "body",
4616
+ "name": "events"
4617
+ },
4618
+ {
4619
+ "in": "body",
4620
+ "name": "description"
4621
+ }
4622
+ ],
4623
+ "path": "/realtime/webhooks",
4624
+ "readOnly": false
4625
+ },
4626
+ "delete": {
4627
+ "method": "DELETE",
4628
+ "params": [
4629
+ {
4630
+ "in": "path",
4631
+ "name": "webhookId"
4632
+ }
4633
+ ],
4634
+ "path": "/realtime/webhooks/:webhookId",
4635
+ "readOnly": false
4636
+ },
4637
+ "get": {
4638
+ "method": "GET",
4639
+ "params": [
4640
+ {
4641
+ "in": "path",
4642
+ "name": "webhookId"
4643
+ }
4644
+ ],
4645
+ "path": "/realtime/webhooks/:webhookId",
4646
+ "readOnly": true
4647
+ },
4648
+ "list": {
4649
+ "method": "GET",
4650
+ "path": "/realtime/webhooks",
4651
+ "readOnly": true
4652
+ },
4653
+ "update": {
4654
+ "method": "PATCH",
4655
+ "params": [
4656
+ {
4657
+ "in": "body",
4658
+ "name": "url"
4659
+ },
4660
+ {
4661
+ "in": "body",
4662
+ "name": "events"
4663
+ },
4664
+ {
4665
+ "in": "body",
4666
+ "name": "description"
4667
+ },
4668
+ {
4669
+ "in": "body",
4670
+ "name": "active"
4671
+ },
4672
+ {
4673
+ "in": "path",
4674
+ "name": "webhookId"
4675
+ }
4676
+ ],
4677
+ "path": "/realtime/webhooks/:webhookId",
4678
+ "readOnly": false
4679
+ }
4680
+ },
4681
+ "webhook-deliveries": {
4682
+ "list": {
4683
+ "method": "GET",
4684
+ "params": [
4685
+ {
4686
+ "in": "path",
4687
+ "name": "webhookId"
4688
+ },
4689
+ {
4690
+ "in": "query",
4691
+ "name": "limit"
4692
+ }
4693
+ ],
4694
+ "path": "/realtime/webhooks/:webhookId/deliveries",
4695
+ "readOnly": true
4696
+ }
4697
+ },
4698
+ "webhook-secret": {
4699
+ "rotate": {
4700
+ "method": "POST",
4701
+ "params": [
4702
+ {
4703
+ "in": "path",
4704
+ "name": "webhookId"
4705
+ }
4706
+ ],
4707
+ "path": "/realtime/webhooks/:webhookId/secret/rotate",
4708
+ "readOnly": false
4709
+ }
4710
+ }
4711
+ },
4240
4712
  "tracking": {
4241
4713
  "api-keys": {
4242
4714
  "create": {
@@ -1,3 +1,3 @@
1
1
  // AUTOGENERATED by scripts/generate.ts — do not edit.
2
2
  export * from './queryOptions.gen';
3
- export type { BrainBackupCreateInput, BrainBackupCreateOutput, BrainBackupRestoreInput, BrainBackupRestoreOutput, BrainBackupStatusInput, BrainBackupStatusOutput, BrainBackupsListInput, BrainBackupsListOutput, BrainClickupChannelsListInput, BrainClickupChannelsListOutput, BrainClickupConnectionsListInput, BrainClickupConnectionsListOutput, BrainClickupListsListInput, BrainClickupListsListOutput, BrainClickupSpacesListInput, BrainClickupSpacesListOutput, BrainCognitionDigestInput, BrainCognitionDigestOutput, BrainCognitionStatusInput, BrainCognitionStatusOutput, BrainCognitionSweepInput, BrainCognitionSweepOutput, BrainConnectorBranchesListInput, BrainConnectorBranchesListOutput, BrainConnectorConnectionsListInput, BrainConnectorConnectionsListOutput, BrainConnectorReposListInput, BrainConnectorReposListOutput, BrainDaemonBatchStatusInput, BrainDaemonBatchStatusOutput, BrainDaemonCreateInput, BrainDaemonCreateOutput, BrainDaemonGetInput, BrainDaemonGetOutput, BrainDaemonReingestInput, BrainDaemonReingestOutput, BrainDaemonRemoveInput, BrainDaemonRemoveOutput, BrainDaemonRunInput, BrainDaemonRunItemsInput, BrainDaemonRunItemsOutput, BrainDaemonRunOutput, BrainDaemonRunsInput, BrainDaemonRunsOutput, BrainDaemonStatusInput, BrainDaemonStatusOutput, BrainDaemonUpdateInput, BrainDaemonUpdateOutput, BrainDaemonsListInput, BrainDaemonsListOutput, BrainGdriveConnectionsListInput, BrainGdriveConnectionsListOutput, BrainKnowledgeEntityMemoriesInput, BrainKnowledgeEntityMemoriesOutput, BrainKnowledgeGraphInput, BrainKnowledgeGraphOutput, BrainKnowledgeNeighborhoodInput, BrainKnowledgeNeighborhoodOutput, BrainKnowledgeRelationsInput, BrainKnowledgeRelationsOutput, BrainKnowledgeSearchInput, BrainKnowledgeSearchOutput, BrainMemoryAddInput, BrainMemoryAddOutput, BrainMemoryDeleteInput, BrainMemoryDeleteOutput, BrainMemoryGetInput, BrainMemoryGetOutput, BrainMemoryListInput, BrainMemoryListOutput, BrainMemorySearchInput, BrainMemorySearchOutput, BrainMemoryStatsInput, BrainMemoryStatsOutput, BrainMemoryUpdateInput, BrainMemoryUpdateOutput, BrainProductSharedMemoryResetInput, BrainProductSharedMemoryResetOutput, BrainRestoreStatusInput, BrainRestoreStatusOutput } from '../types.gen';
3
+ export type { BrainBackupCreateInput, BrainBackupCreateOutput, BrainBackupRestoreInput, BrainBackupRestoreOutput, BrainBackupStatusInput, BrainBackupStatusOutput, BrainBackupsListInput, BrainBackupsListOutput, BrainClickupChannelsListInput, BrainClickupChannelsListOutput, BrainClickupConnectionsListInput, BrainClickupConnectionsListOutput, BrainClickupListsListInput, BrainClickupListsListOutput, BrainClickupSpacesListInput, BrainClickupSpacesListOutput, BrainCognitionDigestInput, BrainCognitionDigestOutput, BrainCognitionStatusInput, BrainCognitionStatusOutput, BrainCognitionSweepInput, BrainCognitionSweepOutput, BrainConnectorBranchesListInput, BrainConnectorBranchesListOutput, BrainConnectorConnectionsListInput, BrainConnectorConnectionsListOutput, BrainConnectorReposListInput, BrainConnectorReposListOutput, BrainDaemonBatchStatusInput, BrainDaemonBatchStatusOutput, BrainDaemonCreateInput, BrainDaemonCreateOutput, BrainDaemonGetInput, BrainDaemonGetOutput, BrainDaemonReingestInput, BrainDaemonReingestOutput, BrainDaemonRemoveInput, BrainDaemonRemoveOutput, BrainDaemonRunInput, BrainDaemonRunItemsInput, BrainDaemonRunItemsOutput, BrainDaemonRunOutput, BrainDaemonRunsInput, BrainDaemonRunsOutput, BrainDaemonStatusInput, BrainDaemonStatusOutput, BrainDaemonUpdateInput, BrainDaemonUpdateOutput, BrainDaemonsListInput, BrainDaemonsListOutput, BrainGdriveConnectionsListInput, BrainGdriveConnectionsListOutput, BrainKnowledgeNeighborhoodInput, BrainKnowledgeNeighborhoodOutput, BrainKnowledgeRelationsInput, BrainKnowledgeRelationsOutput, BrainKnowledgeSearchInput, BrainKnowledgeSearchOutput, BrainMemoryAddInput, BrainMemoryAddOutput, BrainMemoryDeleteInput, BrainMemoryDeleteOutput, BrainMemoryGetInput, BrainMemoryGetOutput, BrainMemoryListInput, BrainMemoryListOutput, BrainMemorySearchInput, BrainMemorySearchOutput, BrainMemoryStatsInput, BrainMemoryStatsOutput, BrainMemoryUpdateInput, BrainMemoryUpdateOutput, BrainProductSharedMemoryResetInput, BrainProductSharedMemoryResetOutput, BrainRestoreStatusInput, BrainRestoreStatusOutput } from '../types.gen';
@@ -44,10 +44,6 @@ import type {
44
44
  BrainDaemonsListOutput,
45
45
  BrainGdriveConnectionsListInput,
46
46
  BrainGdriveConnectionsListOutput,
47
- BrainKnowledgeEntityMemoriesInput,
48
- BrainKnowledgeEntityMemoriesOutput,
49
- BrainKnowledgeGraphInput,
50
- BrainKnowledgeGraphOutput,
51
47
  BrainKnowledgeNeighborhoodInput,
52
48
  BrainKnowledgeNeighborhoodOutput,
53
49
  BrainKnowledgeRelationsInput,
@@ -200,16 +196,6 @@ export const brainGdriveConnectionsListQueryOptions = (sdk: GeneratedClient, inp
200
196
  queryFn: () => sdk['brain']['gdrive-connections']['list'](input),
201
197
  });
202
198
 
203
- export const brainKnowledgeEntityMemoriesQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeEntityMemoriesInput) => ({
204
- queryKey: ['brain', 'knowledge-entity', 'memories', input] as const,
205
- queryFn: () => sdk['brain']['knowledge-entity']['memories'](input),
206
- });
207
-
208
- export const brainKnowledgeGraphQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeGraphInput) => ({
209
- queryKey: ['brain', 'knowledge', 'graph', input] as const,
210
- queryFn: () => sdk['brain']['knowledge']['graph'](input),
211
- });
212
-
213
199
  export const brainKnowledgeNeighborhoodQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeNeighborhoodInput) => ({
214
200
  queryKey: ['brain', 'knowledge', 'neighborhood', input] as const,
215
201
  queryFn: () => sdk['brain']['knowledge']['neighborhood'](input),