lancer-shared 1.0.161 → 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
  });
@@ -3,6 +3,7 @@ export declare const proxyProviderSchema: z.ZodEnum<["webshare"]>;
3
3
  export declare const proxyCountrySchema: z.ZodEnum<["USA"]>;
4
4
  export declare const proxySchema: z.ZodObject<{
5
5
  id: z.ZodString;
6
+ externalId: z.ZodString;
6
7
  host: z.ZodString;
7
8
  port: z.ZodNumber;
8
9
  username: z.ZodString;
@@ -19,6 +20,7 @@ export declare const proxySchema: z.ZodObject<{
19
20
  provider: "webshare";
20
21
  password: string;
21
22
  bidderId: string | null;
23
+ externalId: string;
22
24
  }, {
23
25
  id: string;
24
26
  port: number;
@@ -28,9 +30,11 @@ export declare const proxySchema: z.ZodObject<{
28
30
  provider: "webshare";
29
31
  password: string;
30
32
  bidderId: string | null;
33
+ externalId: string;
31
34
  }>;
32
35
  export declare const externalProxySchema: z.ZodObject<Omit<{
33
36
  id: z.ZodString;
37
+ externalId: z.ZodString;
34
38
  host: z.ZodString;
35
39
  port: z.ZodNumber;
36
40
  username: z.ZodString;
@@ -45,6 +49,7 @@ export declare const externalProxySchema: z.ZodObject<Omit<{
45
49
  host: string;
46
50
  provider: "webshare";
47
51
  password: string;
52
+ externalId: string;
48
53
  }, {
49
54
  port: number;
50
55
  country: "USA";
@@ -52,6 +57,7 @@ export declare const externalProxySchema: z.ZodObject<Omit<{
52
57
  host: string;
53
58
  provider: "webshare";
54
59
  password: string;
60
+ externalId: string;
55
61
  }>;
56
62
  export type ProxyProvider = z.infer<typeof proxyProviderSchema>;
57
63
  export type ProxyCountry = z.infer<typeof proxyCountrySchema>;
@@ -6,6 +6,7 @@ exports.proxyProviderSchema = zod_1.z.enum(['webshare']);
6
6
  exports.proxyCountrySchema = zod_1.z.enum(['USA']);
7
7
  exports.proxySchema = zod_1.z.object({
8
8
  id: zod_1.z.string(),
9
+ externalId: zod_1.z.string(),
9
10
  host: zod_1.z.string(),
10
11
  port: zod_1.z.number(),
11
12
  username: zod_1.z.string(),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.161",
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",