@marteye/studiojs 1.1.19 → 1.1.21
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 +13 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +13 -0
- package/package.json +1 -1
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
|
*/
|
|
@@ -1000,6 +1012,7 @@ interface AttributeDefinition {
|
|
|
1000
1012
|
name: string;
|
|
1001
1013
|
shortName?: string;
|
|
1002
1014
|
description?: string;
|
|
1015
|
+
martEyeAttribute?: string;
|
|
1003
1016
|
applyTo: string[];
|
|
1004
1017
|
level: "item" | "lot";
|
|
1005
1018
|
readonly?: boolean;
|