@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.
Files changed (41) hide show
  1. package/bin.js +2 -1
  2. package/dist/cli/chunk-HDRFXOPA.js +63 -0
  3. package/dist/cli/chunk-RUDG2MMT.js +173587 -0
  4. package/dist/cli/index.js +96112 -0
  5. package/dist/cli/lib-NMFBQRQ2.js +1007 -0
  6. package/dist/cli/typescript-THSIDFIK.js +6 -0
  7. package/dist/config/index.d.ts +10 -11
  8. package/dist/config/index.js +3681 -7596
  9. package/dist/prebuilt/dev.android.js +155739 -0
  10. package/dist/prebuilt/dev.ios.js +155680 -0
  11. package/dist/prebuilt/prod.android.js +5 -0
  12. package/dist/prebuilt/prod.android.js.map +7 -0
  13. package/dist/prebuilt/prod.ios.js +5 -0
  14. package/dist/prebuilt/prod.ios.js.map +7 -0
  15. package/dist/prebuilt/prod.json +14 -0
  16. package/hermesc/0_72_6/linux64-bin/hermesc +0 -0
  17. package/hermesc/0_72_6/osx-bin/hermesc +0 -0
  18. package/hermesc/0_72_6/win64-bin/hermesc.exe +0 -0
  19. package/hermesc/0_72_6/win64-bin/icudt64.dll +0 -0
  20. package/hermesc/0_72_6/win64-bin/icuin64.dll +0 -0
  21. package/hermesc/0_72_6/win64-bin/icuio64.dll +0 -0
  22. package/hermesc/0_72_6/win64-bin/icutest64.dll +0 -0
  23. package/hermesc/0_72_6/win64-bin/icutu64.dll +0 -0
  24. package/hermesc/0_72_6/win64-bin/icuuc64.dll +0 -0
  25. package/hermesc/0_72_6/win64-bin/msvcp140.dll +0 -0
  26. package/hermesc/0_72_6/win64-bin/vcruntime140.dll +0 -0
  27. package/hermesc/0_72_6/win64-bin/vcruntime140_1.dll +0 -0
  28. package/package.json +49 -29
  29. package/src-web/appLogin.d.ts +31 -0
  30. package/src-web/index.d.ts +1 -0
  31. package/src-web/index.js +1 -1
  32. package/dist/config/index.cjs +0 -7976
  33. package/dist/config/index.d.cts +0 -73
  34. package/react-native/.babelrc +0 -41
  35. package/react-native/ait.d.ts +0 -8
  36. package/react-native/context.ts +0 -10
  37. package/react-native/index.ts +0 -4
  38. package/react-native/pages/_404.tsx +0 -1
  39. package/react-native/pages/index.tsx +0 -10
  40. package/react-native/react-native.config.cjs +0 -3
  41. package/react-native/src/_app.tsx +0 -12
@@ -0,0 +1,6 @@
1
+ import { createRequire } from 'module'; const require = createRequire(import.meta.url);
2
+ import {
3
+ require_typescript
4
+ } from "./chunk-RUDG2MMT.js";
5
+ import "./chunk-HDRFXOPA.js";
6
+ export default require_typescript();
@@ -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 AppsInTossConfigSchema: z.ZodObject<{
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 AppsInTossConfig = z.infer<typeof AppsInTossConfigSchema>;
71
- declare const defineConfig: (config: z.input<typeof AppsInTossConfigSchema>) => Promise<BedrockConfigResponse>;
69
+ type AppsInTossWebConfig = z.infer<typeof AppsInTossWebConfigSchema>;
70
+ declare const defineConfig: (config: z.input<typeof AppsInTossWebConfigSchema>) => AppsInTossWebConfig;
72
71
 
73
- export { type AppsInTossConfig, defineConfig };
72
+ export { type AppsInTossWebConfig, defineConfig };