@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/types.d.ts CHANGED
@@ -188,6 +188,18 @@ export interface MartEyeTimedSaleSettings {
188
188
  image?: string;
189
189
  logo?: string;
190
190
  type: "TIMED";
191
+ /**
192
+ * The moment the staggered closing sequence should begin.
193
+ * The first lot will close at this time, with subsequent lots
194
+ * offset by `staggerSeconds` each.
195
+ */
196
+ closingStartsAt: Timestamp;
197
+ /**
198
+ * The number of seconds to offset each subsequent lot’s closing time
199
+ * from the previous one.
200
+ * Example: 30 → lot #1 closes at `closingStartsAt`, lot #2 at +30 s, lot #3 at +60 s …
201
+ */
202
+ staggerSeconds: number;
191
203
  /**
192
204
  * The location of the sale. This could be a physical location Ring 1 / Ring 2 / Farm Address etc
193
205
  */
@@ -311,6 +323,7 @@ export interface LotGeneratedValues {
311
323
  averageWeightKg?: number | null;
312
324
  pricePerItemInCents?: number | null;
313
325
  countOfItems?: number | null;
326
+ ordinal?: number | null;
314
327
  }
315
328
  export interface ShortCustomerDetails {
316
329
  isSet: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marteye/studiojs",
3
- "version": "1.1.20",
3
+ "version": "1.1.22",
4
4
  "description": "MartEye Studio JavaScript SDK",
5
5
  "license": "MIT",
6
6
  "type": "module",