@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/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
  */
@@ -896,6 +908,7 @@ export interface AttributeDefinition {
896
908
  name: string;
897
909
  shortName?: string;
898
910
  description?: string;
911
+ martEyeAttribute?: string;
899
912
  applyTo: string[];
900
913
  level: "item" | "lot";
901
914
  readonly?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marteye/studiojs",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "description": "MartEye Studio JavaScript SDK",
5
5
  "license": "MIT",
6
6
  "type": "module",