lancer-shared 1.2.155 → 1.2.156
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
|
@@ -12546,6 +12546,8 @@ const createBidderAccountSchema = bidderAccountSchema
|
|
|
12546
12546
|
name: true,
|
|
12547
12547
|
agencies: true,
|
|
12548
12548
|
assignedOrganizations: true,
|
|
12549
|
+
multiLoginProfileId: true,
|
|
12550
|
+
proxyId: true,
|
|
12549
12551
|
region: true,
|
|
12550
12552
|
})
|
|
12551
12553
|
.extend({
|
|
@@ -199,7 +199,7 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
199
199
|
updatedAt: z.ZodNumber;
|
|
200
200
|
region: z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>;
|
|
201
201
|
isProtected: z.ZodOptional<z.ZodBoolean>;
|
|
202
|
-
}, "name" | "provider" | "email" | "password" | "securityQuestionAnswer" | "assignedOrganizations" | "profilePhotoUrl" | "agencies" | "region">, {
|
|
202
|
+
}, "name" | "provider" | "email" | "password" | "securityQuestionAnswer" | "assignedOrganizations" | "multiLoginProfileId" | "proxyId" | "profilePhotoUrl" | "agencies" | "region">, {
|
|
203
203
|
proxyCountry: z.ZodNullable<z.ZodEnum<["US", "CA", "GB", "AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SK", "SI", "SB", "SO", "ZA", "GS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"]>>;
|
|
204
204
|
}>, "strip", z.ZodTypeAny, {
|
|
205
205
|
name: string | null;
|
|
@@ -208,6 +208,8 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
208
208
|
password: string;
|
|
209
209
|
securityQuestionAnswer: string | null;
|
|
210
210
|
assignedOrganizations: string[];
|
|
211
|
+
multiLoginProfileId: string | null;
|
|
212
|
+
proxyId: string | null;
|
|
211
213
|
profilePhotoUrl: string | null;
|
|
212
214
|
agencies: {
|
|
213
215
|
name: string;
|
|
@@ -227,6 +229,8 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
227
229
|
password: string;
|
|
228
230
|
securityQuestionAnswer: string | null;
|
|
229
231
|
assignedOrganizations: string[];
|
|
232
|
+
multiLoginProfileId: string | null;
|
|
233
|
+
proxyId: string | null;
|
|
230
234
|
profilePhotoUrl: string | null;
|
|
231
235
|
agencies: {
|
|
232
236
|
name: string;
|