lancer-shared 1.0.162 → 1.0.163

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.
@@ -12,7 +12,6 @@ export declare const bidderAccountSchema: z.ZodObject<{
12
12
  assignedOrganizations: z.ZodArray<z.ZodString, "many">;
13
13
  lastUsed: z.ZodNullable<z.ZodNumber>;
14
14
  multiLoginProfileId: z.ZodNullable<z.ZodString>;
15
- proxy: z.ZodNullable<z.ZodString>;
16
15
  createdAt: z.ZodNumber;
17
16
  updatedAt: z.ZodNumber;
18
17
  }, "strip", z.ZodTypeAny, {
@@ -27,7 +26,6 @@ export declare const bidderAccountSchema: z.ZodObject<{
27
26
  assignedOrganizations: string[];
28
27
  lastUsed: number | null;
29
28
  multiLoginProfileId: string | null;
30
- proxy: string | null;
31
29
  createdAt: number;
32
30
  updatedAt: number;
33
31
  }, {
@@ -42,7 +40,6 @@ export declare const bidderAccountSchema: z.ZodObject<{
42
40
  assignedOrganizations: string[];
43
41
  lastUsed: number | null;
44
42
  multiLoginProfileId: string | null;
45
- proxy: string | null;
46
43
  createdAt: number;
47
44
  updatedAt: number;
48
45
  }>;
@@ -58,7 +55,6 @@ export declare const createBidderAccountSchema: z.ZodObject<Pick<{
58
55
  assignedOrganizations: z.ZodArray<z.ZodString, "many">;
59
56
  lastUsed: z.ZodNullable<z.ZodNumber>;
60
57
  multiLoginProfileId: z.ZodNullable<z.ZodString>;
61
- proxy: z.ZodNullable<z.ZodString>;
62
58
  createdAt: z.ZodNumber;
63
59
  updatedAt: z.ZodNumber;
64
60
  }, "email" | "status" | "provider" | "password" | "verified" | "isActive">, "strip", z.ZodTypeAny, {
@@ -87,7 +83,6 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
87
83
  assignedOrganizations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
88
84
  lastUsed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
89
85
  multiLoginProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
90
- proxy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
91
86
  createdAt: z.ZodOptional<z.ZodNumber>;
92
87
  updatedAt: z.ZodOptional<z.ZodNumber>;
93
88
  }, "strip", z.ZodTypeAny, {
@@ -101,7 +96,6 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
101
96
  assignedOrganizations?: string[] | undefined;
102
97
  lastUsed?: number | null | undefined;
103
98
  multiLoginProfileId?: string | null | undefined;
104
- proxy?: string | null | undefined;
105
99
  createdAt?: number | undefined;
106
100
  updatedAt?: number | undefined;
107
101
  }, {
@@ -115,7 +109,6 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
115
109
  assignedOrganizations?: string[] | undefined;
116
110
  lastUsed?: number | null | undefined;
117
111
  multiLoginProfileId?: string | null | undefined;
118
- proxy?: string | null | undefined;
119
112
  createdAt?: number | undefined;
120
113
  updatedAt?: number | undefined;
121
114
  }>;
@@ -19,7 +19,6 @@ exports.bidderAccountSchema = zod_1.z.object({
19
19
  assignedOrganizations: zod_1.z.array(zod_1.z.string()),
20
20
  lastUsed: zod_1.z.number().nullable(),
21
21
  multiLoginProfileId: zod_1.z.string().nullable(),
22
- proxy: zod_1.z.string().nullable(),
23
22
  createdAt: zod_1.z.number(),
24
23
  updatedAt: zod_1.z.number(),
25
24
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.162",
4
+ "version": "1.0.163",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",