@magiclabs.ai/magicbook-client 0.6.8 → 0.6.10
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/index.cjs +7 -2
- package/index.cjs.map +1 -1
- package/index.d.cts +15 -0
- package/index.d.ts +15 -0
- package/index.js +7 -2
- package/index.js.map +1 -1
- package/package.json +11 -11
package/index.cjs
CHANGED
|
@@ -226,6 +226,11 @@ var styles = {
|
|
|
226
226
|
6132: { slug: "travel-journal-sfly" },
|
|
227
227
|
6133: { slug: "rustic-gallery-sfly" },
|
|
228
228
|
6137: { slug: "summer-adventures-sfly" },
|
|
229
|
+
6141: { slug: "heirloom-moments-sfly" },
|
|
230
|
+
6144: { slug: "seasonal-year-in-review-sfly" },
|
|
231
|
+
6143: { slug: "wanderlust-gallery-sfly" },
|
|
232
|
+
6146: { slug: "wedding-elopement-gallery-sfly" },
|
|
233
|
+
6062: { slug: "create-your-own-sfly" },
|
|
229
234
|
6075: { slug: "together-again-sfly" },
|
|
230
235
|
6078: { slug: "everyday-boho-by-umaiana-studio-sfly" },
|
|
231
236
|
6089: { slug: "colorful-gradients-sfly" },
|
|
@@ -4288,8 +4293,8 @@ var DesignRequest = class {
|
|
|
4288
4293
|
this.state = detail.slug;
|
|
4289
4294
|
}
|
|
4290
4295
|
timeoutHandler() {
|
|
4291
|
-
return setTimeout(() => {
|
|
4292
|
-
this.eventHandler(timeoutMessage);
|
|
4296
|
+
return setTimeout(async () => {
|
|
4297
|
+
await this.eventHandler(timeoutMessage);
|
|
4293
4298
|
}, designRequestTimeout);
|
|
4294
4299
|
}
|
|
4295
4300
|
async getProgress() {
|