@marteye/studiojs 1.1.32 → 1.1.33
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 +3 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/resources/sales.d.ts +1 -0
- package/dist/resources.d.ts +1 -0
- package/dist/studio.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -190,6 +190,7 @@ interface MartEyeLiveSaleSettings {
|
|
|
190
190
|
hideReplay?: boolean;
|
|
191
191
|
labels?: string[];
|
|
192
192
|
tags?: string[];
|
|
193
|
+
queueLots?: boolean;
|
|
193
194
|
}
|
|
194
195
|
interface MartEyeTimedSaleSettings {
|
|
195
196
|
description?: string;
|
|
@@ -1365,6 +1366,7 @@ declare function resources(httpClient: HttpClient): {
|
|
|
1365
1366
|
pin?: boolean;
|
|
1366
1367
|
cascade?: boolean;
|
|
1367
1368
|
reportEmail?: string;
|
|
1369
|
+
queueLots?: boolean;
|
|
1368
1370
|
} | null;
|
|
1369
1371
|
}) => Promise<Sale>;
|
|
1370
1372
|
};
|
|
@@ -1564,6 +1566,7 @@ declare function Studio(info?: {
|
|
|
1564
1566
|
pin?: boolean;
|
|
1565
1567
|
cascade?: boolean;
|
|
1566
1568
|
reportEmail?: string;
|
|
1569
|
+
queueLots?: boolean;
|
|
1567
1570
|
} | null;
|
|
1568
1571
|
}) => Promise<Sale>;
|
|
1569
1572
|
};
|