@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.
- package/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.d.cts +1 -1
- package/dist/brain/index.d.ts +1 -1
- package/dist/{client.gen-BNghb8IL.d.cts → client.gen-DJUaKWF_.d.cts} +46 -1
- package/dist/{client.gen-BNghb8IL.d.ts → client.gen-DJUaKWF_.d.ts} +46 -1
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +29 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +29 -0
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/realtime/index.cjs +15 -0
- package/dist/realtime/index.cjs.map +1 -1
- package/dist/realtime/index.d.cts +14 -2
- package/dist/realtime/index.d.ts +14 -2
- package/dist/realtime/index.js +13 -1
- package/dist/realtime/index.js.map +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/gen/bindings.gen.ts +29 -0
- package/src/gen/client.gen.ts +11 -0
- package/src/gen/realtime/index.ts +1 -1
- package/src/gen/realtime/queryOptions.gen.ts +19 -0
- package/src/gen/types.gen.ts +47 -0
package/src/gen/types.gen.ts
CHANGED
|
@@ -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)
|