lancer-shared 1.2.40 → 1.2.41
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
|
@@ -12319,6 +12319,7 @@ const organizationSchema = objectType({
|
|
|
12319
12319
|
active: booleanType(),
|
|
12320
12320
|
limits: limitsSchema,
|
|
12321
12321
|
billing: billingSchema.nullable(),
|
|
12322
|
+
lastBidTime: numberType().nullable(),
|
|
12322
12323
|
createdAt: numberType(),
|
|
12323
12324
|
updatedAt: numberType(),
|
|
12324
12325
|
});
|
|
@@ -178,6 +178,7 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
178
178
|
};
|
|
179
179
|
savedCard: boolean;
|
|
180
180
|
}>>;
|
|
181
|
+
lastBidTime: z.ZodNullable<z.ZodNumber>;
|
|
181
182
|
createdAt: z.ZodNumber;
|
|
182
183
|
updatedAt: z.ZodNumber;
|
|
183
184
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -222,6 +223,7 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
222
223
|
};
|
|
223
224
|
savedCard: boolean;
|
|
224
225
|
} | null;
|
|
226
|
+
lastBidTime: number | null;
|
|
225
227
|
createdAt: number;
|
|
226
228
|
updatedAt: number;
|
|
227
229
|
}, {
|
|
@@ -266,6 +268,7 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
266
268
|
};
|
|
267
269
|
savedCard: boolean;
|
|
268
270
|
} | null;
|
|
271
|
+
lastBidTime: number | null;
|
|
269
272
|
createdAt: number;
|
|
270
273
|
updatedAt: number;
|
|
271
274
|
}>;
|
|
@@ -515,6 +518,7 @@ export declare const createOrganizationSchema: z.ZodObject<Pick<{
|
|
|
515
518
|
};
|
|
516
519
|
savedCard: boolean;
|
|
517
520
|
}>>;
|
|
521
|
+
lastBidTime: z.ZodNullable<z.ZodNumber>;
|
|
518
522
|
createdAt: z.ZodNumber;
|
|
519
523
|
updatedAt: z.ZodNumber;
|
|
520
524
|
}, "type" | "name" | "tierId">, "strip", z.ZodTypeAny, {
|