@camstack/types 1.2.2 → 1.2.3
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.
|
@@ -359,6 +359,7 @@ declare const MediaFileKindEnum: z.ZodEnum<{
|
|
|
359
359
|
plateCrop: "plateCrop";
|
|
360
360
|
keyFrame: "keyFrame";
|
|
361
361
|
keyFrameSmall: "keyFrameSmall";
|
|
362
|
+
thumbnailSmall: "thumbnailSmall";
|
|
362
363
|
}>;
|
|
363
364
|
export type MediaFileKind = z.infer<typeof MediaFileKindEnum>;
|
|
364
365
|
declare const MediaFileSchema: z.ZodObject<{
|
|
@@ -375,6 +376,7 @@ declare const MediaFileSchema: z.ZodObject<{
|
|
|
375
376
|
plateCrop: "plateCrop";
|
|
376
377
|
keyFrame: "keyFrame";
|
|
377
378
|
keyFrameSmall: "keyFrameSmall";
|
|
379
|
+
thumbnailSmall: "thumbnailSmall";
|
|
378
380
|
}>;
|
|
379
381
|
base64: z.ZodString;
|
|
380
382
|
sizeBytes: z.ZodNumber;
|
|
@@ -1261,6 +1263,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1261
1263
|
plateCrop: "plateCrop";
|
|
1262
1264
|
keyFrame: "keyFrame";
|
|
1263
1265
|
keyFrameSmall: "keyFrameSmall";
|
|
1266
|
+
thumbnailSmall: "thumbnailSmall";
|
|
1264
1267
|
}>>;
|
|
1265
1268
|
}, z.core.$strip>, z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1266
1269
|
key: z.ZodString;
|
|
@@ -1276,6 +1279,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1276
1279
|
plateCrop: "plateCrop";
|
|
1277
1280
|
keyFrame: "keyFrame";
|
|
1278
1281
|
keyFrameSmall: "keyFrameSmall";
|
|
1282
|
+
thumbnailSmall: "thumbnailSmall";
|
|
1279
1283
|
}>;
|
|
1280
1284
|
base64: z.ZodString;
|
|
1281
1285
|
sizeBytes: z.ZodNumber;
|
|
@@ -1297,6 +1301,7 @@ export declare const pipelineAnalyticsCapability: {
|
|
|
1297
1301
|
plateCrop: "plateCrop";
|
|
1298
1302
|
keyFrame: "keyFrame";
|
|
1299
1303
|
keyFrameSmall: "keyFrameSmall";
|
|
1304
|
+
thumbnailSmall: "thumbnailSmall";
|
|
1300
1305
|
}>;
|
|
1301
1306
|
base64: z.ZodString;
|
|
1302
1307
|
sizeBytes: z.ZodNumber;
|
|
@@ -10202,11 +10202,11 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
10202
10202
|
input: {
|
|
10203
10203
|
[x: string]: unknown;
|
|
10204
10204
|
eventId: string;
|
|
10205
|
-
kind?: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | undefined;
|
|
10205
|
+
kind?: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | "thumbnailSmall" | undefined;
|
|
10206
10206
|
};
|
|
10207
10207
|
output: readonly {
|
|
10208
10208
|
key: string;
|
|
10209
|
-
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall";
|
|
10209
|
+
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | "thumbnailSmall";
|
|
10210
10210
|
base64: string;
|
|
10211
10211
|
sizeBytes: number;
|
|
10212
10212
|
timestamp: number;
|
|
@@ -10220,7 +10220,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
10220
10220
|
};
|
|
10221
10221
|
output: readonly {
|
|
10222
10222
|
key: string;
|
|
10223
|
-
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall";
|
|
10223
|
+
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | "thumbnailSmall";
|
|
10224
10224
|
base64: string;
|
|
10225
10225
|
sizeBytes: number;
|
|
10226
10226
|
timestamp: number;
|
|
@@ -11147,6 +11147,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
11147
11147
|
steps?: Record<string, {
|
|
11148
11148
|
modelId?: string | undefined;
|
|
11149
11149
|
settings?: Record<string, unknown> | undefined;
|
|
11150
|
+
jumpDeviceKey?: string | undefined;
|
|
11150
11151
|
}> | undefined;
|
|
11151
11152
|
}> | undefined;
|
|
11152
11153
|
} | null;
|
|
@@ -11173,6 +11174,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
11173
11174
|
steps?: Record<string, {
|
|
11174
11175
|
modelId?: string | undefined;
|
|
11175
11176
|
settings?: Record<string, unknown> | undefined;
|
|
11177
|
+
jumpDeviceKey?: string | undefined;
|
|
11176
11178
|
}> | undefined;
|
|
11177
11179
|
}> | undefined;
|
|
11178
11180
|
};
|
|
@@ -11247,6 +11249,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
11247
11249
|
steps?: Record<string, {
|
|
11248
11250
|
modelId?: string | undefined;
|
|
11249
11251
|
settings?: Record<string, unknown> | undefined;
|
|
11252
|
+
jumpDeviceKey?: string | undefined;
|
|
11250
11253
|
}> | undefined;
|
|
11251
11254
|
}>;
|
|
11252
11255
|
};
|
|
@@ -11276,6 +11279,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
11276
11279
|
steps?: Record<string, {
|
|
11277
11280
|
modelId?: string | undefined;
|
|
11278
11281
|
settings?: Record<string, unknown> | undefined;
|
|
11282
|
+
jumpDeviceKey?: string | undefined;
|
|
11279
11283
|
}> | undefined;
|
|
11280
11284
|
}[];
|
|
11281
11285
|
};
|
|
@@ -11785,6 +11789,11 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
11785
11789
|
hubHostnameOverride?: string | undefined;
|
|
11786
11790
|
} | undefined;
|
|
11787
11791
|
deviceKey?: string | undefined;
|
|
11792
|
+
inferenceDevices?: readonly {
|
|
11793
|
+
deviceKey: string;
|
|
11794
|
+
weight?: number | undefined;
|
|
11795
|
+
maxSessions?: number | null | undefined;
|
|
11796
|
+
}[] | undefined;
|
|
11788
11797
|
};
|
|
11789
11798
|
output: {
|
|
11790
11799
|
success: true;
|
|
@@ -27014,11 +27023,11 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
27014
27023
|
input: {
|
|
27015
27024
|
[x: string]: unknown;
|
|
27016
27025
|
eventId: string;
|
|
27017
|
-
kind?: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | undefined;
|
|
27026
|
+
kind?: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | "thumbnailSmall" | undefined;
|
|
27018
27027
|
};
|
|
27019
27028
|
output: readonly {
|
|
27020
27029
|
key: string;
|
|
27021
|
-
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall";
|
|
27030
|
+
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | "thumbnailSmall";
|
|
27022
27031
|
base64: string;
|
|
27023
27032
|
sizeBytes: number;
|
|
27024
27033
|
timestamp: number;
|
|
@@ -27032,7 +27041,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
27032
27041
|
};
|
|
27033
27042
|
output: readonly {
|
|
27034
27043
|
key: string;
|
|
27035
|
-
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall";
|
|
27044
|
+
kind: "snapshot" | "crop" | "thumbnail" | "firstFrame" | "lastFrame" | "fullFrame" | "fullFrameBoxed" | "faceCrop" | "plateCrop" | "keyFrame" | "keyFrameSmall" | "thumbnailSmall";
|
|
27036
27045
|
base64: string;
|
|
27037
27046
|
sizeBytes: number;
|
|
27038
27047
|
timestamp: number;
|
|
@@ -27959,6 +27968,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
27959
27968
|
steps?: Record<string, {
|
|
27960
27969
|
modelId?: string | undefined;
|
|
27961
27970
|
settings?: Record<string, unknown> | undefined;
|
|
27971
|
+
jumpDeviceKey?: string | undefined;
|
|
27962
27972
|
}> | undefined;
|
|
27963
27973
|
}> | undefined;
|
|
27964
27974
|
} | null;
|
|
@@ -27985,6 +27995,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
27985
27995
|
steps?: Record<string, {
|
|
27986
27996
|
modelId?: string | undefined;
|
|
27987
27997
|
settings?: Record<string, unknown> | undefined;
|
|
27998
|
+
jumpDeviceKey?: string | undefined;
|
|
27988
27999
|
}> | undefined;
|
|
27989
28000
|
}> | undefined;
|
|
27990
28001
|
};
|
|
@@ -28059,6 +28070,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
28059
28070
|
steps?: Record<string, {
|
|
28060
28071
|
modelId?: string | undefined;
|
|
28061
28072
|
settings?: Record<string, unknown> | undefined;
|
|
28073
|
+
jumpDeviceKey?: string | undefined;
|
|
28062
28074
|
}> | undefined;
|
|
28063
28075
|
}>;
|
|
28064
28076
|
};
|
|
@@ -28088,6 +28100,7 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
28088
28100
|
steps?: Record<string, {
|
|
28089
28101
|
modelId?: string | undefined;
|
|
28090
28102
|
settings?: Record<string, unknown> | undefined;
|
|
28103
|
+
jumpDeviceKey?: string | undefined;
|
|
28091
28104
|
}> | undefined;
|
|
28092
28105
|
}[];
|
|
28093
28106
|
};
|
|
@@ -28597,6 +28610,11 @@ export type AppRouter = import("@trpc/server/unstable-core-do-not-import").Route
|
|
|
28597
28610
|
hubHostnameOverride?: string | undefined;
|
|
28598
28611
|
} | undefined;
|
|
28599
28612
|
deviceKey?: string | undefined;
|
|
28613
|
+
inferenceDevices?: readonly {
|
|
28614
|
+
deviceKey: string;
|
|
28615
|
+
weight?: number | undefined;
|
|
28616
|
+
maxSessions?: number | null | undefined;
|
|
28617
|
+
}[] | undefined;
|
|
28600
28618
|
};
|
|
28601
28619
|
output: {
|
|
28602
28620
|
success: true;
|
package/dist/index.js
CHANGED
|
@@ -19124,7 +19124,8 @@ var MediaFileKindEnum = zod.z.enum([
|
|
|
19124
19124
|
"faceCrop",
|
|
19125
19125
|
"plateCrop",
|
|
19126
19126
|
"keyFrame",
|
|
19127
|
-
"keyFrameSmall"
|
|
19127
|
+
"keyFrameSmall",
|
|
19128
|
+
"thumbnailSmall"
|
|
19128
19129
|
]);
|
|
19129
19130
|
var MediaFileSchema = zod.z.object({
|
|
19130
19131
|
key: zod.z.string(),
|
package/dist/index.mjs
CHANGED
|
@@ -19123,7 +19123,8 @@ var MediaFileKindEnum = z.enum([
|
|
|
19123
19123
|
"faceCrop",
|
|
19124
19124
|
"plateCrop",
|
|
19125
19125
|
"keyFrame",
|
|
19126
|
-
"keyFrameSmall"
|
|
19126
|
+
"keyFrameSmall",
|
|
19127
|
+
"thumbnailSmall"
|
|
19127
19128
|
]);
|
|
19128
19129
|
var MediaFileSchema = z.object({
|
|
19129
19130
|
key: z.string(),
|