lancer-shared 1.0.168 → 1.0.169

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.
@@ -4410,8 +4410,8 @@ const accountStatusSchema = z.enum([
4410
4410
  ]);
4411
4411
 
4412
4412
  const bidderAccountProvider = z.enum([
4413
- 'user-provided',
4414
- 'lancer-provided',
4413
+ "user-provided",
4414
+ "lancer-provided",
4415
4415
  ]);
4416
4416
  const bidderAccountSchema = z.object({
4417
4417
  id: z.string(),
@@ -4425,6 +4425,7 @@ const bidderAccountSchema = z.object({
4425
4425
  assignedOrganizations: z.array(z.string()),
4426
4426
  lastUsed: z.number().nullable(),
4427
4427
  multiLoginProfileId: z.string().nullable(),
4428
+ proxy: stringType().nullable(),
4428
4429
  createdAt: z.number(),
4429
4430
  updatedAt: z.number(),
4430
4431
  });
@@ -1,4 +1,4 @@
1
- import { z } from 'zod';
1
+ import { z } from "zod";
2
2
  export declare const bidderAccountProvider: z.ZodEnum<["user-provided", "lancer-provided"]>;
3
3
  export declare const bidderAccountSchema: z.ZodObject<{
4
4
  id: z.ZodString;
@@ -12,6 +12,7 @@ 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>;
15
16
  createdAt: z.ZodNumber;
16
17
  updatedAt: z.ZodNumber;
17
18
  }, "strip", z.ZodTypeAny, {
@@ -26,6 +27,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
26
27
  assignedOrganizations: string[];
27
28
  lastUsed: number | null;
28
29
  multiLoginProfileId: string | null;
30
+ proxy: string | null;
29
31
  createdAt: number;
30
32
  updatedAt: number;
31
33
  }, {
@@ -40,6 +42,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
40
42
  assignedOrganizations: string[];
41
43
  lastUsed: number | null;
42
44
  multiLoginProfileId: string | null;
45
+ proxy: string | null;
43
46
  createdAt: number;
44
47
  updatedAt: number;
45
48
  }>;
@@ -55,6 +58,7 @@ export declare const createBidderAccountSchema: z.ZodObject<Pick<{
55
58
  assignedOrganizations: z.ZodArray<z.ZodString, "many">;
56
59
  lastUsed: z.ZodNullable<z.ZodNumber>;
57
60
  multiLoginProfileId: z.ZodNullable<z.ZodString>;
61
+ proxy: z.ZodNullable<z.ZodString>;
58
62
  createdAt: z.ZodNumber;
59
63
  updatedAt: z.ZodNumber;
60
64
  }, "provider" | "email" | "password" | "status" | "verified" | "isActive">, "strip", z.ZodTypeAny, {
@@ -83,6 +87,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
83
87
  assignedOrganizations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
84
88
  lastUsed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
85
89
  multiLoginProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
90
+ proxy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
86
91
  createdAt: z.ZodOptional<z.ZodNumber>;
87
92
  updatedAt: z.ZodOptional<z.ZodNumber>;
88
93
  }, "strip", z.ZodTypeAny, {
@@ -96,6 +101,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
96
101
  assignedOrganizations?: string[] | undefined;
97
102
  lastUsed?: number | null | undefined;
98
103
  multiLoginProfileId?: string | null | undefined;
104
+ proxy?: string | null | undefined;
99
105
  createdAt?: number | undefined;
100
106
  updatedAt?: number | undefined;
101
107
  }, {
@@ -109,6 +115,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
109
115
  assignedOrganizations?: string[] | undefined;
110
116
  lastUsed?: number | null | undefined;
111
117
  multiLoginProfileId?: string | null | undefined;
118
+ proxy?: string | null | undefined;
112
119
  createdAt?: number | undefined;
113
120
  updatedAt?: number | undefined;
114
121
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.0.168",
3
+ "version": "1.0.169",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",
@@ -37,4 +37,4 @@
37
37
  "@rollup/plugin-node-resolve": "^16.0.1",
38
38
  "typescript": "5.4.5"
39
39
  }
40
- }
40
+ }