@marteye/studiojs 1.1.20 → 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 +12 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +12 -0
- package/package.json +1 -1
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
|
*/
|