@apps-in-toss/framework 0.0.0-dev.1741598175595 → 0.0.0-dev.1741599933429

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.
@@ -25638,6 +25638,7 @@ var require_archiver = __commonJS({
25638
25638
  var plugins_exports = {};
25639
25639
  __export(plugins_exports, {
25640
25640
  appsInToss: () => appsInToss,
25641
+ appsInTossAppJson: () => appsInTossAppJson,
25641
25642
  createArtifact: () => createArtifact
25642
25643
  });
25643
25644
  module.exports = __toCommonJS(plugins_exports);
@@ -33328,6 +33329,7 @@ init_cjs_shims();
33328
33329
  // Annotate the CommonJS export names for ESM import in node:
33329
33330
  0 && (module.exports = {
33330
33331
  appsInToss,
33332
+ appsInTossAppJson,
33331
33333
  createArtifact
33332
33334
  });
33333
33335
  /*! Bundled license information:
@@ -47,6 +47,7 @@ interface AppsInTossPluginOptions {
47
47
  permissions: AppManifest['permissions'];
48
48
  oauth: AppManifest['oauth'];
49
49
  }
50
+ declare function appsInTossAppJson(options: AppsInTossPluginOptions): Promise<BedrockPluginCore>;
50
51
  declare function appsInToss(options: AppsInTossPluginOptions): (BedrockPluginCore | Promise<BedrockPluginCore>)[];
51
52
 
52
53
  interface CompileHbcOptions {
@@ -80,4 +81,4 @@ interface CreateArtifactOptions {
80
81
  }
81
82
  declare function createArtifact(options: CreateArtifactOptions, deps: CreateCompressedBytecodeDependencies): Promise<string>;
82
83
 
83
- export { type AppManifest, type AppsInTossPluginOptions, type BuildResult, type CreateArtifactOptions, type OAuthScope, type Permission, appsInToss, createArtifact };
84
+ export { type AppManifest, type AppsInTossPluginOptions, type BuildResult, type CreateArtifactOptions, type OAuthScope, type Permission, appsInToss, appsInTossAppJson, createArtifact };
@@ -47,6 +47,7 @@ interface AppsInTossPluginOptions {
47
47
  permissions: AppManifest['permissions'];
48
48
  oauth: AppManifest['oauth'];
49
49
  }
50
+ declare function appsInTossAppJson(options: AppsInTossPluginOptions): Promise<BedrockPluginCore>;
50
51
  declare function appsInToss(options: AppsInTossPluginOptions): (BedrockPluginCore | Promise<BedrockPluginCore>)[];
51
52
 
52
53
  interface CompileHbcOptions {
@@ -80,4 +81,4 @@ interface CreateArtifactOptions {
80
81
  }
81
82
  declare function createArtifact(options: CreateArtifactOptions, deps: CreateCompressedBytecodeDependencies): Promise<string>;
82
83
 
83
- export { type AppManifest, type AppsInTossPluginOptions, type BuildResult, type CreateArtifactOptions, type OAuthScope, type Permission, appsInToss, createArtifact };
84
+ export { type AppManifest, type AppsInTossPluginOptions, type BuildResult, type CreateArtifactOptions, type OAuthScope, type Permission, appsInToss, appsInTossAppJson, createArtifact };
@@ -33331,6 +33331,7 @@ function appsInToss(options) {
33331
33331
  init_esm_shims();
33332
33332
  export {
33333
33333
  appsInToss,
33334
+ appsInTossAppJson,
33334
33335
  createArtifact
33335
33336
  };
33336
33337
  /*! Bundled license information:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@apps-in-toss/framework",
3
3
  "type": "module",
4
- "version": "0.0.0-dev.1741598175595",
4
+ "version": "0.0.0-dev.1741599933429",
5
5
  "description": "Hub package for Apps In Toss",
6
6
  "scripts": {
7
7
  "prepack": "yarn build",
@@ -39,7 +39,7 @@
39
39
  "ait": "./bin.js"
40
40
  },
41
41
  "dependencies": {
42
- "@apps-in-toss/cli": "^0.0.0-dev.1741598175595"
42
+ "@apps-in-toss/cli": "^0.0.0-dev.1741599933429"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@react-native-bedrock/mpack-next": "0.0.0-dev.1741593643819",
@@ -71,5 +71,5 @@
71
71
  "publishConfig": {
72
72
  "access": "public"
73
73
  },
74
- "gitHead": "f641c4e4225ef7fdd8e5b2abf3707fe5d036de24"
74
+ "gitHead": "ee2a98cf54d9cb9c92c4f0b366aa7c0a0e9435af"
75
75
  }