@lessly/sdk-app 14.1.0 → 14.3.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.
@@ -13366,6 +13366,53 @@ name: string
13366
13366
  activeProductId: (string | null)
13367
13367
  }
13368
13368
 
13369
+ export interface RealtimeApikeyCreateInput {
13370
+ /**
13371
+ * Human-readable label for the key, e.g. "production backend"
13372
+ */
13373
+ name: string
13374
+ }
13375
+
13376
+ export interface RealtimeApikeyCreateOutput {
13377
+ /**
13378
+ * The full rtk_ secret. Shown once — it cannot be retrieved again.
13379
+ */
13380
+ key: string
13381
+ apiKey: {
13382
+ id: string
13383
+ name: string
13384
+ prefix: string
13385
+ createdAt: string
13386
+ revokedAt: (string | null)
13387
+ }
13388
+ }
13389
+
13390
+ export interface RealtimeApikeyListInput {
13391
+
13392
+ }
13393
+
13394
+ export interface RealtimeApikeyListOutput {
13395
+ keys: {
13396
+ id: string
13397
+ name: string
13398
+ prefix: string
13399
+ createdAt: string
13400
+ revokedAt: (string | null)
13401
+ }[]
13402
+ }
13403
+
13404
+ export interface RealtimeApikeyRevokeInput {
13405
+ /**
13406
+ * Api key id to revoke
13407
+ */
13408
+ id: string
13409
+ }
13410
+
13411
+ export interface RealtimeApikeyRevokeOutput {
13412
+ id: string
13413
+ revokedAt: string
13414
+ }
13415
+
13369
13416
  export interface RealtimeArchiveExportInput {
13370
13417
  /**
13371
13418
  * Only entries with ts <= to_ts (epoch ms)