@supernova-studio/model 1.47.5 → 1.47.6
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 +18 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -190024,10 +190024,24 @@ declare const PageScreenshotInput: z$1.ZodObject<{
|
|
|
190024
190024
|
}, {
|
|
190025
190025
|
accessToken: string;
|
|
190026
190026
|
}>>;
|
|
190027
|
+
trace: z$1.ZodOptional<z$1.ZodObject<{
|
|
190028
|
+
sentryTrace: z$1.ZodOptional<z$1.ZodString>;
|
|
190029
|
+
baggage: z$1.ZodOptional<z$1.ZodString>;
|
|
190030
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
190031
|
+
sentryTrace?: string | undefined;
|
|
190032
|
+
baggage?: string | undefined;
|
|
190033
|
+
}, {
|
|
190034
|
+
sentryTrace?: string | undefined;
|
|
190035
|
+
baggage?: string | undefined;
|
|
190036
|
+
}>>;
|
|
190027
190037
|
}, "strip", z$1.ZodTypeAny, {
|
|
190028
190038
|
url: string;
|
|
190029
190039
|
elementSelector: string;
|
|
190030
190040
|
uploadUrl: string;
|
|
190041
|
+
trace?: {
|
|
190042
|
+
sentryTrace?: string | undefined;
|
|
190043
|
+
baggage?: string | undefined;
|
|
190044
|
+
} | undefined;
|
|
190031
190045
|
viewportSize?: {
|
|
190032
190046
|
width: number;
|
|
190033
190047
|
height: number;
|
|
@@ -190043,6 +190057,10 @@ declare const PageScreenshotInput: z$1.ZodObject<{
|
|
|
190043
190057
|
url: string;
|
|
190044
190058
|
elementSelector: string;
|
|
190045
190059
|
uploadUrl: string;
|
|
190060
|
+
trace?: {
|
|
190061
|
+
sentryTrace?: string | undefined;
|
|
190062
|
+
baggage?: string | undefined;
|
|
190063
|
+
} | undefined;
|
|
190046
190064
|
viewportSize?: {
|
|
190047
190065
|
width: number;
|
|
190048
190066
|
height: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -190024,10 +190024,24 @@ declare const PageScreenshotInput: z$1.ZodObject<{
|
|
|
190024
190024
|
}, {
|
|
190025
190025
|
accessToken: string;
|
|
190026
190026
|
}>>;
|
|
190027
|
+
trace: z$1.ZodOptional<z$1.ZodObject<{
|
|
190028
|
+
sentryTrace: z$1.ZodOptional<z$1.ZodString>;
|
|
190029
|
+
baggage: z$1.ZodOptional<z$1.ZodString>;
|
|
190030
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
190031
|
+
sentryTrace?: string | undefined;
|
|
190032
|
+
baggage?: string | undefined;
|
|
190033
|
+
}, {
|
|
190034
|
+
sentryTrace?: string | undefined;
|
|
190035
|
+
baggage?: string | undefined;
|
|
190036
|
+
}>>;
|
|
190027
190037
|
}, "strip", z$1.ZodTypeAny, {
|
|
190028
190038
|
url: string;
|
|
190029
190039
|
elementSelector: string;
|
|
190030
190040
|
uploadUrl: string;
|
|
190041
|
+
trace?: {
|
|
190042
|
+
sentryTrace?: string | undefined;
|
|
190043
|
+
baggage?: string | undefined;
|
|
190044
|
+
} | undefined;
|
|
190031
190045
|
viewportSize?: {
|
|
190032
190046
|
width: number;
|
|
190033
190047
|
height: number;
|
|
@@ -190043,6 +190057,10 @@ declare const PageScreenshotInput: z$1.ZodObject<{
|
|
|
190043
190057
|
url: string;
|
|
190044
190058
|
elementSelector: string;
|
|
190045
190059
|
uploadUrl: string;
|
|
190060
|
+
trace?: {
|
|
190061
|
+
sentryTrace?: string | undefined;
|
|
190062
|
+
baggage?: string | undefined;
|
|
190063
|
+
} | undefined;
|
|
190046
190064
|
viewportSize?: {
|
|
190047
190065
|
width: number;
|
|
190048
190066
|
height: number;
|
package/dist/index.js
CHANGED
|
@@ -6732,6 +6732,10 @@ var PageScreenshotInput = _zod.z.object({
|
|
|
6732
6732
|
}).optional(),
|
|
6733
6733
|
supernovaAuth: _zod.z.object({
|
|
6734
6734
|
accessToken: _zod.z.string()
|
|
6735
|
+
}).optional(),
|
|
6736
|
+
trace: _zod.z.object({
|
|
6737
|
+
sentryTrace: _zod.z.string().optional(),
|
|
6738
|
+
baggage: _zod.z.string().optional()
|
|
6735
6739
|
}).optional()
|
|
6736
6740
|
});
|
|
6737
6741
|
var PageScreenshotOutput = _zod.z.discriminatedUnion("success", [
|