@supernova-studio/model 1.43.7 → 1.44.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/index.d.mts +17645 -17633
- package/dist/index.d.ts +17645 -17633
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6682,20 +6682,27 @@ var PortalSettings = z213.object({
|
|
|
6682
6682
|
updatedAt: z213.coerce.date()
|
|
6683
6683
|
});
|
|
6684
6684
|
|
|
6685
|
+
// src/sentry/headers.ts
|
|
6686
|
+
import z214 from "zod";
|
|
6687
|
+
var SentryTraceHeaders = z214.object({
|
|
6688
|
+
sentryTrace: z214.string(),
|
|
6689
|
+
baggage: z214.string()
|
|
6690
|
+
});
|
|
6691
|
+
|
|
6685
6692
|
// src/tokens/personal-access-token.ts
|
|
6686
|
-
import { z as
|
|
6687
|
-
var PersonalAccessToken =
|
|
6688
|
-
id:
|
|
6689
|
-
userId:
|
|
6690
|
-
workspaceId:
|
|
6691
|
-
designSystemId:
|
|
6693
|
+
import { z as z215 } from "zod";
|
|
6694
|
+
var PersonalAccessToken = z215.object({
|
|
6695
|
+
id: z215.string(),
|
|
6696
|
+
userId: z215.string(),
|
|
6697
|
+
workspaceId: z215.string().optional(),
|
|
6698
|
+
designSystemId: z215.string().optional(),
|
|
6692
6699
|
workspaceRole: WorkspaceRoleSchema.optional(),
|
|
6693
|
-
name:
|
|
6694
|
-
hidden:
|
|
6695
|
-
token:
|
|
6696
|
-
scope:
|
|
6697
|
-
createdAt:
|
|
6698
|
-
expireAt:
|
|
6700
|
+
name: z215.string(),
|
|
6701
|
+
hidden: z215.boolean(),
|
|
6702
|
+
token: z215.string(),
|
|
6703
|
+
scope: z215.string().optional(),
|
|
6704
|
+
createdAt: z215.coerce.date(),
|
|
6705
|
+
expireAt: z215.coerce.date().optional()
|
|
6699
6706
|
});
|
|
6700
6707
|
export {
|
|
6701
6708
|
Address,
|
|
@@ -7321,6 +7328,7 @@ export {
|
|
|
7321
7328
|
RoomTypeSchema,
|
|
7322
7329
|
SHORT_PERSISTENT_ID_LENGTH,
|
|
7323
7330
|
SafeIdSchema,
|
|
7331
|
+
SentryTraceHeaders,
|
|
7324
7332
|
Session,
|
|
7325
7333
|
SessionData,
|
|
7326
7334
|
ShadowLayerValue,
|