@marteye/studiojs 1.1.20 → 1.1.22

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/index.d.ts CHANGED
@@ -272,6 +272,18 @@ interface MartEyeTimedSaleSettings {
272
272
  image?: string;
273
273
  logo?: string;
274
274
  type: "TIMED";
275
+ /**
276
+ * The moment the staggered closing sequence should begin.
277
+ * The first lot will close at this time, with subsequent lots
278
+ * offset by `staggerSeconds` each.
279
+ */
280
+ closingStartsAt: Timestamp;
281
+ /**
282
+ * The number of seconds to offset each subsequent lot’s closing time
283
+ * from the previous one.
284
+ * Example: 30 → lot #1 closes at `closingStartsAt`, lot #2 at +30 s, lot #3 at +60 s …
285
+ */
286
+ staggerSeconds: number;
275
287
  /**
276
288
  * The location of the sale. This could be a physical location Ring 1 / Ring 2 / Farm Address etc
277
289
  */
@@ -395,6 +407,7 @@ interface LotGeneratedValues {
395
407
  averageWeightKg?: number | null;
396
408
  pricePerItemInCents?: number | null;
397
409
  countOfItems?: number | null;
410
+ ordinal?: number | null;
398
411
  }
399
412
  interface ShortCustomerDetails {
400
413
  isSet: boolean;