@supernova-studio/client 1.33.0 → 1.33.1
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -68687,19 +68687,19 @@ declare const DTOFeatureSandbox: z__default.ZodObject<{
|
|
|
68687
68687
|
id: z__default.ZodString;
|
|
68688
68688
|
url: z__default.ZodString;
|
|
68689
68689
|
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
68690
|
-
parentMessageId: z__default.
|
|
68690
|
+
parentMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
68691
68691
|
currentIterationId: z__default.ZodString;
|
|
68692
68692
|
}, "strip", z__default.ZodTypeAny, {
|
|
68693
68693
|
id: string;
|
|
68694
68694
|
url: string;
|
|
68695
|
-
parentMessageId: string | null;
|
|
68696
68695
|
currentIterationId: string;
|
|
68696
|
+
parentMessageId?: string | undefined;
|
|
68697
68697
|
staticPreviewUrl?: string | undefined;
|
|
68698
68698
|
}, {
|
|
68699
68699
|
id: string;
|
|
68700
68700
|
url: string;
|
|
68701
|
-
parentMessageId: string | null;
|
|
68702
68701
|
currentIterationId: string;
|
|
68702
|
+
parentMessageId?: string | undefined;
|
|
68703
68703
|
staticPreviewUrl?: string | undefined;
|
|
68704
68704
|
}>;
|
|
68705
68705
|
type DTOFeatureSandbox = z__default.infer<typeof DTOFeatureSandbox>;
|
package/dist/index.d.ts
CHANGED
|
@@ -68687,19 +68687,19 @@ declare const DTOFeatureSandbox: z__default.ZodObject<{
|
|
|
68687
68687
|
id: z__default.ZodString;
|
|
68688
68688
|
url: z__default.ZodString;
|
|
68689
68689
|
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
68690
|
-
parentMessageId: z__default.
|
|
68690
|
+
parentMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
68691
68691
|
currentIterationId: z__default.ZodString;
|
|
68692
68692
|
}, "strip", z__default.ZodTypeAny, {
|
|
68693
68693
|
id: string;
|
|
68694
68694
|
url: string;
|
|
68695
|
-
parentMessageId: string | null;
|
|
68696
68695
|
currentIterationId: string;
|
|
68696
|
+
parentMessageId?: string | undefined;
|
|
68697
68697
|
staticPreviewUrl?: string | undefined;
|
|
68698
68698
|
}, {
|
|
68699
68699
|
id: string;
|
|
68700
68700
|
url: string;
|
|
68701
|
-
parentMessageId: string | null;
|
|
68702
68701
|
currentIterationId: string;
|
|
68702
|
+
parentMessageId?: string | undefined;
|
|
68703
68703
|
staticPreviewUrl?: string | undefined;
|
|
68704
68704
|
}>;
|
|
68705
68705
|
type DTOFeatureSandbox = z__default.infer<typeof DTOFeatureSandbox>;
|
package/dist/index.js
CHANGED
|
@@ -9230,7 +9230,7 @@ var DTOFeatureSandbox = _zod2.default.object({
|
|
|
9230
9230
|
id: Id,
|
|
9231
9231
|
url: _zod2.default.string(),
|
|
9232
9232
|
staticPreviewUrl: _zod2.default.string().optional(),
|
|
9233
|
-
parentMessageId: Id.
|
|
9233
|
+
parentMessageId: Id.optional(),
|
|
9234
9234
|
currentIterationId: Id
|
|
9235
9235
|
});
|
|
9236
9236
|
var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
|