From bce557cc2dc767628bed6aac87301a1be7c5431b Mon Sep 17 00:00:00 2001 From: rxliuli Date: Tue, 4 Nov 2025 05:03:50 +0800 Subject: init commit --- .../app-store/tmp/src/api/intents/bundle-page-intent.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 node_modules/@jet-app/app-store/tmp/src/api/intents/bundle-page-intent.js (limited to 'node_modules/@jet-app/app-store/tmp/src/api/intents/bundle-page-intent.js') diff --git a/node_modules/@jet-app/app-store/tmp/src/api/intents/bundle-page-intent.js b/node_modules/@jet-app/app-store/tmp/src/api/intents/bundle-page-intent.js new file mode 100644 index 0000000..b6bed12 --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/api/intents/bundle-page-intent.js @@ -0,0 +1,16 @@ +import { normalizeAdamID } from "../util"; +import { normalizePreviewPlaform } from "../models/preview-platform"; +export function makeBundlePageIntent(opts) { + const { id, platform, lic, ...rest } = opts; + return { + $kind: "BundlePageIntent", + id: normalizeAdamID(id), + platform: normalizePreviewPlaform(platform), + lic, + ...rest, + }; +} +export function isBundlePageIntent(intent) { + return (intent === null || intent === void 0 ? void 0 : intent.$kind) === "BundlePageIntent"; +} +//# sourceMappingURL=bundle-page-intent.js.map \ No newline at end of file -- cgit v1.2.3