@supernova-studio/client 1.40.8 → 1.40.9
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 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -68857,16 +68857,19 @@ declare const DTOFeatureSandbox: z__default.ZodObject<{
|
|
|
68857
68857
|
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
68858
68858
|
parentMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
68859
68859
|
currentIterationId: z__default.ZodString;
|
|
68860
|
+
expiresAt: z__default.ZodOptional<z__default.ZodString>;
|
|
68860
68861
|
}, "strip", z__default.ZodTypeAny, {
|
|
68861
68862
|
id: string;
|
|
68862
68863
|
url: string;
|
|
68863
68864
|
currentIterationId: string;
|
|
68865
|
+
expiresAt?: string | undefined;
|
|
68864
68866
|
parentMessageId?: string | undefined;
|
|
68865
68867
|
staticPreviewUrl?: string | undefined;
|
|
68866
68868
|
}, {
|
|
68867
68869
|
id: string;
|
|
68868
68870
|
url: string;
|
|
68869
68871
|
currentIterationId: string;
|
|
68872
|
+
expiresAt?: string | undefined;
|
|
68870
68873
|
parentMessageId?: string | undefined;
|
|
68871
68874
|
staticPreviewUrl?: string | undefined;
|
|
68872
68875
|
}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -68857,16 +68857,19 @@ declare const DTOFeatureSandbox: z__default.ZodObject<{
|
|
|
68857
68857
|
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
68858
68858
|
parentMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
68859
68859
|
currentIterationId: z__default.ZodString;
|
|
68860
|
+
expiresAt: z__default.ZodOptional<z__default.ZodString>;
|
|
68860
68861
|
}, "strip", z__default.ZodTypeAny, {
|
|
68861
68862
|
id: string;
|
|
68862
68863
|
url: string;
|
|
68863
68864
|
currentIterationId: string;
|
|
68865
|
+
expiresAt?: string | undefined;
|
|
68864
68866
|
parentMessageId?: string | undefined;
|
|
68865
68867
|
staticPreviewUrl?: string | undefined;
|
|
68866
68868
|
}, {
|
|
68867
68869
|
id: string;
|
|
68868
68870
|
url: string;
|
|
68869
68871
|
currentIterationId: string;
|
|
68872
|
+
expiresAt?: string | undefined;
|
|
68870
68873
|
parentMessageId?: string | undefined;
|
|
68871
68874
|
staticPreviewUrl?: string | undefined;
|
|
68872
68875
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -9332,7 +9332,8 @@ var DTOFeatureSandbox = _zod2.default.object({
|
|
|
9332
9332
|
url: _zod2.default.string(),
|
|
9333
9333
|
staticPreviewUrl: _zod2.default.string().optional(),
|
|
9334
9334
|
parentMessageId: Id.optional(),
|
|
9335
|
-
currentIterationId: Id
|
|
9335
|
+
currentIterationId: Id,
|
|
9336
|
+
expiresAt: _zod2.default.string().optional()
|
|
9336
9337
|
});
|
|
9337
9338
|
var DTOFeatureMessageCreateInput = DTOFeatureMessage.pick({
|
|
9338
9339
|
id: true,
|