@superatomai/sdk-web 0.0.16 → 0.0.17
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/README.md +755 -755
- package/dist/index.cjs +10 -2
- 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 +10 -2
- package/dist/index.js.map +1 -1
- package/package.json +43 -41
package/dist/index.cjs
CHANGED
|
@@ -472,18 +472,26 @@ var UsersResponsePayloadSchema = zod.z.object({
|
|
|
472
472
|
role: zod.z.string().optional(),
|
|
473
473
|
message: zod.z.string().optional(),
|
|
474
474
|
users: zod.z.array(zod.z.object({
|
|
475
|
+
id: zod.z.number(),
|
|
475
476
|
username: zod.z.string(),
|
|
476
477
|
email: zod.z.string().optional(),
|
|
477
478
|
fullname: zod.z.string().optional(),
|
|
478
479
|
role: zod.z.string().optional(),
|
|
479
|
-
|
|
480
|
+
userInfo: zod.z.record(zod.z.string(), zod.z.unknown()).optional(),
|
|
481
|
+
wsIds: zod.z.array(zod.z.string()).optional(),
|
|
482
|
+
createdAt: zod.z.string().optional(),
|
|
483
|
+
updatedAt: zod.z.string().optional()
|
|
480
484
|
})).optional(),
|
|
481
485
|
user: zod.z.object({
|
|
486
|
+
id: zod.z.number(),
|
|
482
487
|
username: zod.z.string(),
|
|
483
488
|
email: zod.z.string().optional(),
|
|
484
489
|
fullname: zod.z.string().optional(),
|
|
485
490
|
role: zod.z.string().optional(),
|
|
486
|
-
|
|
491
|
+
userInfo: zod.z.record(zod.z.string(), zod.z.unknown()).optional(),
|
|
492
|
+
wsIds: zod.z.array(zod.z.string()).optional(),
|
|
493
|
+
createdAt: zod.z.string().optional(),
|
|
494
|
+
updatedAt: zod.z.string().optional()
|
|
487
495
|
}).optional(),
|
|
488
496
|
count: zod.z.number().optional()
|
|
489
497
|
}).optional()
|