lancer-shared 1.2.136 → 1.2.137
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/bundle.cjs.js
CHANGED
|
@@ -14156,8 +14156,10 @@ const gcpMetadataSchema = objectType({
|
|
|
14156
14156
|
});
|
|
14157
14157
|
const hetznerMetadataSchema = objectType({
|
|
14158
14158
|
id: stringType(),
|
|
14159
|
+
name: stringType(),
|
|
14159
14160
|
type: stringType(),
|
|
14160
14161
|
image: stringType(),
|
|
14162
|
+
createdAt: numberType(),
|
|
14161
14163
|
});
|
|
14162
14164
|
const bidderInstanceStatusEnum = z.enum(["available", "unavailable"]);
|
|
14163
14165
|
const bidderInstanceSchema = objectType({
|
|
@@ -23,16 +23,22 @@ export declare const bidderInstanceSchema: z.ZodObject<{
|
|
|
23
23
|
}>;
|
|
24
24
|
hetzner: z.ZodObject<{
|
|
25
25
|
id: z.ZodString;
|
|
26
|
+
name: z.ZodString;
|
|
26
27
|
type: z.ZodString;
|
|
27
28
|
image: z.ZodString;
|
|
29
|
+
createdAt: z.ZodNumber;
|
|
28
30
|
}, "strip", z.ZodTypeAny, {
|
|
29
31
|
type: string;
|
|
30
32
|
id: string;
|
|
33
|
+
name: string;
|
|
31
34
|
image: string;
|
|
35
|
+
createdAt: number;
|
|
32
36
|
}, {
|
|
33
37
|
type: string;
|
|
34
38
|
id: string;
|
|
39
|
+
name: string;
|
|
35
40
|
image: string;
|
|
41
|
+
createdAt: number;
|
|
36
42
|
}>;
|
|
37
43
|
status: z.ZodEnum<["available", "unavailable"]>;
|
|
38
44
|
createdAt: z.ZodNumber;
|
|
@@ -40,6 +46,7 @@ export declare const bidderInstanceSchema: z.ZodObject<{
|
|
|
40
46
|
}, "strip", z.ZodTypeAny, {
|
|
41
47
|
status: "available" | "unavailable";
|
|
42
48
|
id: string;
|
|
49
|
+
createdAt: number;
|
|
43
50
|
ipAddress: string;
|
|
44
51
|
domain: string | null;
|
|
45
52
|
bidderAccounts: string[];
|
|
@@ -52,13 +59,15 @@ export declare const bidderInstanceSchema: z.ZodObject<{
|
|
|
52
59
|
hetzner: {
|
|
53
60
|
type: string;
|
|
54
61
|
id: string;
|
|
62
|
+
name: string;
|
|
55
63
|
image: string;
|
|
64
|
+
createdAt: number;
|
|
56
65
|
};
|
|
57
|
-
createdAt: number;
|
|
58
66
|
updatedAt: number;
|
|
59
67
|
}, {
|
|
60
68
|
status: "available" | "unavailable";
|
|
61
69
|
id: string;
|
|
70
|
+
createdAt: number;
|
|
62
71
|
ipAddress: string;
|
|
63
72
|
domain: string | null;
|
|
64
73
|
bidderAccounts: string[];
|
|
@@ -71,9 +80,10 @@ export declare const bidderInstanceSchema: z.ZodObject<{
|
|
|
71
80
|
hetzner: {
|
|
72
81
|
type: string;
|
|
73
82
|
id: string;
|
|
83
|
+
name: string;
|
|
74
84
|
image: string;
|
|
85
|
+
createdAt: number;
|
|
75
86
|
};
|
|
76
|
-
createdAt: number;
|
|
77
87
|
updatedAt: number;
|
|
78
88
|
}>;
|
|
79
89
|
export interface BidderInstance extends infer<typeof bidderInstanceSchema> {
|