@apps-in-toss/web-framework 0.0.0-dev.1741252452371 → 0.0.0-dev.1741346821380
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/bin.js +2 -1
- package/dist/cli/chunk-HDRFXOPA.js +63 -0
- package/dist/cli/chunk-RUDG2MMT.js +173587 -0
- package/dist/cli/index.js +96112 -0
- package/dist/cli/lib-NMFBQRQ2.js +1007 -0
- package/dist/cli/typescript-THSIDFIK.js +6 -0
- package/dist/config/index.d.ts +10 -11
- package/dist/config/index.js +3681 -7596
- package/dist/prebuilt/dev.android.js +155739 -0
- package/dist/prebuilt/dev.ios.js +155680 -0
- package/dist/prebuilt/prod.android.js +5 -0
- package/dist/prebuilt/prod.android.js.map +7 -0
- package/dist/prebuilt/prod.ios.js +5 -0
- package/dist/prebuilt/prod.ios.js.map +7 -0
- package/dist/prebuilt/prod.json +14 -0
- package/hermesc/0_72_6/linux64-bin/hermesc +0 -0
- package/hermesc/0_72_6/osx-bin/hermesc +0 -0
- package/hermesc/0_72_6/win64-bin/hermesc.exe +0 -0
- package/hermesc/0_72_6/win64-bin/icudt64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icuin64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icuio64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icutest64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icutu64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icuuc64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/msvcp140.dll +0 -0
- package/hermesc/0_72_6/win64-bin/vcruntime140.dll +0 -0
- package/hermesc/0_72_6/win64-bin/vcruntime140_1.dll +0 -0
- package/package.json +49 -29
- package/src-web/appLogin.d.ts +31 -0
- package/src-web/index.d.ts +1 -0
- package/src-web/index.js +1 -1
- package/dist/config/index.cjs +0 -7976
- package/dist/config/index.d.cts +0 -73
- package/react-native/.babelrc +0 -41
- package/react-native/ait.d.ts +0 -8
- package/react-native/context.ts +0 -10
- package/react-native/index.ts +0 -4
- package/react-native/pages/_404.tsx +0 -1
- package/react-native/pages/index.tsx +0 -10
- package/react-native/react-native.config.cjs +0 -3
- package/react-native/src/_app.tsx +0 -12
package/dist/config/index.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Permission, OAuthScope } from '@apps-in-toss/framework/plugins';
|
|
2
|
-
import { BedrockConfigResponse } from 'react-native-bedrock/config';
|
|
3
2
|
import { z } from 'zod';
|
|
4
3
|
|
|
5
|
-
declare const
|
|
4
|
+
declare const AppsInTossWebConfigSchema: z.ZodObject<{
|
|
6
5
|
appName: z.ZodString;
|
|
7
6
|
web: z.ZodObject<{
|
|
8
7
|
port: z.ZodNumber;
|
|
@@ -39,12 +38,7 @@ declare const AppsInTossConfigSchema: z.ZodObject<{
|
|
|
39
38
|
scopes: OAuthScope[];
|
|
40
39
|
}>;
|
|
41
40
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
permissions: Permission[];
|
|
43
|
-
oauth: {
|
|
44
|
-
scopes: OAuthScope[];
|
|
45
|
-
};
|
|
46
41
|
appName: string;
|
|
47
|
-
outdir: string;
|
|
48
42
|
web: {
|
|
49
43
|
port: number;
|
|
50
44
|
commands: {
|
|
@@ -52,11 +46,12 @@ declare const AppsInTossConfigSchema: z.ZodObject<{
|
|
|
52
46
|
build: string;
|
|
53
47
|
};
|
|
54
48
|
};
|
|
55
|
-
}, {
|
|
56
49
|
permissions: Permission[];
|
|
50
|
+
outdir: string;
|
|
57
51
|
oauth: {
|
|
58
52
|
scopes: OAuthScope[];
|
|
59
53
|
};
|
|
54
|
+
}, {
|
|
60
55
|
appName: string;
|
|
61
56
|
web: {
|
|
62
57
|
port: number;
|
|
@@ -65,9 +60,13 @@ declare const AppsInTossConfigSchema: z.ZodObject<{
|
|
|
65
60
|
build: string;
|
|
66
61
|
};
|
|
67
62
|
};
|
|
63
|
+
permissions: Permission[];
|
|
64
|
+
oauth: {
|
|
65
|
+
scopes: OAuthScope[];
|
|
66
|
+
};
|
|
68
67
|
outdir?: string | undefined;
|
|
69
68
|
}>;
|
|
70
|
-
type
|
|
71
|
-
declare const defineConfig: (config: z.input<typeof
|
|
69
|
+
type AppsInTossWebConfig = z.infer<typeof AppsInTossWebConfigSchema>;
|
|
70
|
+
declare const defineConfig: (config: z.input<typeof AppsInTossWebConfigSchema>) => AppsInTossWebConfig;
|
|
72
71
|
|
|
73
|
-
export { type
|
|
72
|
+
export { type AppsInTossWebConfig, defineConfig };
|