lancer-shared 1.2.97 → 1.2.98
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
|
@@ -12794,6 +12794,7 @@ const organizationSchema = objectType({
|
|
|
12794
12794
|
limits: limitsSchema,
|
|
12795
12795
|
billing: billingSchema.nullable(),
|
|
12796
12796
|
lastBidTime: numberType().nullable(),
|
|
12797
|
+
nextScheduledBidTime: numberType().nullable(),
|
|
12797
12798
|
createdAt: numberType(),
|
|
12798
12799
|
updatedAt: numberType(),
|
|
12799
12800
|
openRouterApiKey: stringType().nullable(),
|
|
@@ -178,6 +178,7 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
178
178
|
savedCard: boolean;
|
|
179
179
|
}>>;
|
|
180
180
|
lastBidTime: z.ZodNullable<z.ZodNumber>;
|
|
181
|
+
nextScheduledBidTime: z.ZodNullable<z.ZodNumber>;
|
|
181
182
|
createdAt: z.ZodNumber;
|
|
182
183
|
updatedAt: z.ZodNumber;
|
|
183
184
|
openRouterApiKey: z.ZodNullable<z.ZodString>;
|
|
@@ -224,6 +225,7 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
224
225
|
savedCard: boolean;
|
|
225
226
|
} | null;
|
|
226
227
|
lastBidTime: number | null;
|
|
228
|
+
nextScheduledBidTime: number | null;
|
|
227
229
|
createdAt: number;
|
|
228
230
|
updatedAt: number;
|
|
229
231
|
openRouterApiKey: string | null;
|
|
@@ -270,6 +272,7 @@ export declare const organizationSchema: z.ZodObject<{
|
|
|
270
272
|
savedCard: boolean;
|
|
271
273
|
} | null;
|
|
272
274
|
lastBidTime: number | null;
|
|
275
|
+
nextScheduledBidTime: number | null;
|
|
273
276
|
createdAt: number;
|
|
274
277
|
updatedAt: number;
|
|
275
278
|
openRouterApiKey: string | null;
|
|
@@ -521,6 +524,7 @@ export declare const createOrganizationSchema: z.ZodObject<Pick<{
|
|
|
521
524
|
savedCard: boolean;
|
|
522
525
|
}>>;
|
|
523
526
|
lastBidTime: z.ZodNullable<z.ZodNumber>;
|
|
527
|
+
nextScheduledBidTime: z.ZodNullable<z.ZodNumber>;
|
|
524
528
|
createdAt: z.ZodNumber;
|
|
525
529
|
updatedAt: z.ZodNumber;
|
|
526
530
|
openRouterApiKey: z.ZodNullable<z.ZodString>;
|