@lessly/sdk-app 9.0.0 → 9.2.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 (39) 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.d.cts +1 -1
  4. package/dist/brain/index.d.ts +1 -1
  5. package/dist/{client.gen-D7QDqI8G.d.cts → client.gen-BLMudoVx.d.cts} +341 -1
  6. package/dist/{client.gen-D7QDqI8G.d.ts → client.gen-BLMudoVx.d.ts} +341 -1
  7. package/dist/consent/index.d.cts +1 -1
  8. package/dist/consent/index.d.ts +1 -1
  9. package/dist/deployment/index.d.cts +1 -1
  10. package/dist/deployment/index.d.ts +1 -1
  11. package/dist/index.cjs +218 -0
  12. package/dist/index.cjs.map +1 -1
  13. package/dist/index.d.cts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +218 -0
  16. package/dist/index.js.map +1 -1
  17. package/dist/mail/index.d.cts +2 -2
  18. package/dist/mail/index.d.ts +2 -2
  19. package/dist/organization/index.d.cts +1 -1
  20. package/dist/organization/index.d.ts +1 -1
  21. package/dist/playground/index.d.cts +1 -1
  22. package/dist/playground/index.d.ts +1 -1
  23. package/dist/realtime/index.cjs +66 -0
  24. package/dist/realtime/index.cjs.map +1 -0
  25. package/dist/realtime/index.d.cts +52 -0
  26. package/dist/realtime/index.d.ts +52 -0
  27. package/dist/realtime/index.js +53 -0
  28. package/dist/realtime/index.js.map +1 -0
  29. package/dist/tracking/index.d.cts +1 -1
  30. package/dist/tracking/index.d.ts +1 -1
  31. package/dist/waitlist/index.d.cts +1 -1
  32. package/dist/waitlist/index.d.ts +1 -1
  33. package/package.json +7 -2
  34. package/src/gen/bindings.gen.ts +218 -0
  35. package/src/gen/client.gen.ts +50 -0
  36. package/src/gen/manifest.gen.ts +1 -1
  37. package/src/gen/realtime/index.ts +3 -0
  38. package/src/gen/realtime/queryOptions.gen.ts +81 -0
  39. package/src/gen/types.gen.ts +340 -0
package/dist/index.cjs CHANGED
@@ -4415,6 +4415,224 @@ var bindings = {
4415
4415
  }
4416
4416
  }
4417
4417
  },
4418
+ "realtime": {
4419
+ "grant": {
4420
+ "create": {
4421
+ "method": "POST",
4422
+ "params": [
4423
+ {
4424
+ "in": "body",
4425
+ "name": "subject"
4426
+ },
4427
+ {
4428
+ "in": "body",
4429
+ "name": "pattern"
4430
+ },
4431
+ {
4432
+ "in": "body",
4433
+ "name": "ops"
4434
+ }
4435
+ ],
4436
+ "path": "/realtime/grants",
4437
+ "readOnly": false
4438
+ },
4439
+ "list": {
4440
+ "method": "GET",
4441
+ "params": [
4442
+ {
4443
+ "in": "query",
4444
+ "name": "subject"
4445
+ }
4446
+ ],
4447
+ "path": "/realtime/grants",
4448
+ "readOnly": true
4449
+ },
4450
+ "revoke": {
4451
+ "method": "DELETE",
4452
+ "params": [
4453
+ {
4454
+ "in": "path",
4455
+ "name": "id"
4456
+ }
4457
+ ],
4458
+ "path": "/realtime/grants/:id",
4459
+ "readOnly": false
4460
+ }
4461
+ },
4462
+ "history": {
4463
+ "get": {
4464
+ "method": "GET",
4465
+ "params": [
4466
+ {
4467
+ "in": "query",
4468
+ "name": "channel"
4469
+ },
4470
+ {
4471
+ "in": "query",
4472
+ "name": "offset"
4473
+ },
4474
+ {
4475
+ "in": "query",
4476
+ "name": "epoch"
4477
+ },
4478
+ {
4479
+ "in": "query",
4480
+ "name": "last_n"
4481
+ },
4482
+ {
4483
+ "in": "query",
4484
+ "name": "last_ms"
4485
+ }
4486
+ ],
4487
+ "path": "/realtime/messages/history",
4488
+ "readOnly": true
4489
+ }
4490
+ },
4491
+ "messages": {
4492
+ "publish": {
4493
+ "method": "POST",
4494
+ "params": [
4495
+ {
4496
+ "in": "body",
4497
+ "name": "channel"
4498
+ },
4499
+ {
4500
+ "in": "body",
4501
+ "name": "data"
4502
+ }
4503
+ ],
4504
+ "path": "/realtime/messages",
4505
+ "readOnly": false
4506
+ }
4507
+ },
4508
+ "namespace": {
4509
+ "create": {
4510
+ "method": "POST",
4511
+ "params": [
4512
+ {
4513
+ "in": "body",
4514
+ "name": "name"
4515
+ },
4516
+ {
4517
+ "in": "body",
4518
+ "name": "visibility"
4519
+ },
4520
+ {
4521
+ "in": "body",
4522
+ "name": "presence"
4523
+ },
4524
+ {
4525
+ "in": "body",
4526
+ "name": "clientEvents"
4527
+ },
4528
+ {
4529
+ "in": "body",
4530
+ "name": "history"
4531
+ },
4532
+ {
4533
+ "in": "body",
4534
+ "name": "historyWindowSeconds"
4535
+ },
4536
+ {
4537
+ "in": "body",
4538
+ "name": "encryptionRequired"
4539
+ },
4540
+ {
4541
+ "in": "body",
4542
+ "name": "identifiedOnly"
4543
+ }
4544
+ ],
4545
+ "path": "/realtime/namespaces",
4546
+ "readOnly": false
4547
+ },
4548
+ "delete": {
4549
+ "method": "DELETE",
4550
+ "params": [
4551
+ {
4552
+ "in": "path",
4553
+ "name": "name"
4554
+ }
4555
+ ],
4556
+ "path": "/realtime/namespaces/:name",
4557
+ "readOnly": false
4558
+ },
4559
+ "get": {
4560
+ "method": "GET",
4561
+ "params": [
4562
+ {
4563
+ "in": "path",
4564
+ "name": "name"
4565
+ }
4566
+ ],
4567
+ "path": "/realtime/namespaces/:name",
4568
+ "readOnly": true
4569
+ },
4570
+ "list": {
4571
+ "method": "GET",
4572
+ "path": "/realtime/namespaces",
4573
+ "readOnly": true
4574
+ },
4575
+ "update": {
4576
+ "method": "PATCH",
4577
+ "params": [
4578
+ {
4579
+ "in": "path",
4580
+ "name": "name"
4581
+ },
4582
+ {
4583
+ "in": "body",
4584
+ "name": "visibility"
4585
+ },
4586
+ {
4587
+ "in": "body",
4588
+ "name": "presence"
4589
+ },
4590
+ {
4591
+ "in": "body",
4592
+ "name": "clientEvents"
4593
+ },
4594
+ {
4595
+ "in": "body",
4596
+ "name": "history"
4597
+ },
4598
+ {
4599
+ "in": "body",
4600
+ "name": "historyWindowSeconds"
4601
+ },
4602
+ {
4603
+ "in": "body",
4604
+ "name": "encryptionRequired"
4605
+ },
4606
+ {
4607
+ "in": "body",
4608
+ "name": "identifiedOnly"
4609
+ }
4610
+ ],
4611
+ "path": "/realtime/namespaces/:name",
4612
+ "readOnly": false
4613
+ }
4614
+ },
4615
+ "status": {
4616
+ "get": {
4617
+ "method": "GET",
4618
+ "path": "/realtime/status",
4619
+ "readOnly": true
4620
+ }
4621
+ },
4622
+ "tokens": {
4623
+ "create": {
4624
+ "method": "POST",
4625
+ "params": [
4626
+ {
4627
+ "in": "body",
4628
+ "name": "channels"
4629
+ }
4630
+ ],
4631
+ "path": "/realtime/tokens",
4632
+ "readOnly": false
4633
+ }
4634
+ }
4635
+ },
4418
4636
  "tracking": {
4419
4637
  "api-keys": {
4420
4638
  "create": {