@magiclabs.ai/magicbook-client 0.6.9 → 0.6.11
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 +54 -2
- package/index.cjs.map +1 -1
- package/index.d.cts +1618 -1
- package/index.d.ts +1618 -1
- package/index.js +27 -1
- package/package.json +12 -12
package/index.js
CHANGED
|
@@ -4811,12 +4811,38 @@ export {
|
|
|
4811
4811
|
ImageServer,
|
|
4812
4812
|
Images,
|
|
4813
4813
|
MagicBookClient,
|
|
4814
|
+
assetSchema,
|
|
4815
|
+
bookCreationRequestSchema,
|
|
4816
|
+
bookSizes,
|
|
4817
|
+
cancelledMessage,
|
|
4818
|
+
canvasSchema,
|
|
4819
|
+
coverTypes,
|
|
4814
4820
|
designOptionsSchema,
|
|
4815
4821
|
designOptionsServerSchema,
|
|
4822
|
+
embellishmentLevels,
|
|
4823
|
+
imageAssignmentSchema,
|
|
4824
|
+
imageDensities,
|
|
4816
4825
|
imageDensityOptionSchema,
|
|
4817
4826
|
imageDensityOptionServerSchema,
|
|
4818
4827
|
imageDensityOptionsSchema,
|
|
4819
4828
|
imageDensityOptionsServerSchema,
|
|
4820
|
-
|
|
4829
|
+
imageFilteringLevels,
|
|
4830
|
+
imageServerSchema,
|
|
4831
|
+
isDesignRequestSubmitted,
|
|
4832
|
+
magicShopBookSchema,
|
|
4833
|
+
occasions,
|
|
4834
|
+
pageSchema,
|
|
4835
|
+
pageTypes,
|
|
4836
|
+
photoMetadataSchema,
|
|
4837
|
+
photoStripSchema,
|
|
4838
|
+
positionSchema,
|
|
4839
|
+
propertySchema,
|
|
4840
|
+
reportingDataSchema,
|
|
4841
|
+
states,
|
|
4842
|
+
statesToCloseWS,
|
|
4843
|
+
statesToReport,
|
|
4844
|
+
styles,
|
|
4845
|
+
textStickerLevels,
|
|
4846
|
+
timeoutMessage
|
|
4821
4847
|
};
|
|
4822
4848
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magiclabs.ai/magicbook-client",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "TypeScript package to create photo books with the Magicbook API.",
|
|
6
6
|
"repository": {
|
|
@@ -16,20 +16,20 @@
|
|
|
16
16
|
},
|
|
17
17
|
"main": "./index.cjs",
|
|
18
18
|
"module": "./index.js",
|
|
19
|
-
"types": "./
|
|
19
|
+
"types": "./index.d.ts",
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "../../scripts/build/before.sh && tsup && ../../scripts/build/after.sh",
|
|
22
|
+
"deploy": "./scripts/deploy-npm.sh",
|
|
23
|
+
"watch": "../../scripts/build/before.sh --watch && tsup --watch"
|
|
24
|
+
},
|
|
20
25
|
"dependencies": {
|
|
21
26
|
"dotenv": "^16.3.1",
|
|
22
27
|
"flatted": "^3.2.7",
|
|
23
|
-
"json": "^11.0.0"
|
|
24
|
-
"tsup": "^7.2.0"
|
|
28
|
+
"json": "^11.0.0"
|
|
25
29
|
},
|
|
26
30
|
"devDependencies": {
|
|
27
|
-
"jsdom": "^22.1.0"
|
|
31
|
+
"jsdom": "^22.1.0",
|
|
32
|
+
"tsup": "^7.2.0"
|
|
28
33
|
},
|
|
29
|
-
"packageManager": "pnpm@8.6.11"
|
|
30
|
-
|
|
31
|
-
"build": "../../scripts/build/before.sh && tsup && ../../scripts/build/after.sh",
|
|
32
|
-
"deploy": "./scripts/deploy-npm.sh",
|
|
33
|
-
"watch": "../../scripts/build/before.sh --watch && tsup --watch"
|
|
34
|
-
}
|
|
35
|
-
}
|
|
34
|
+
"packageManager": "pnpm@8.6.11"
|
|
35
|
+
}
|