@ubiquity-os/plugin-sdk 3.11.1 → 3.11.2
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/dist/configuration.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Value } from '@sinclair/typebox/value';
|
|
2
2
|
import { YAMLException } from 'js-yaml';
|
|
3
3
|
import * as _sinclair_typebox from '@sinclair/typebox';
|
|
4
|
-
import {
|
|
4
|
+
import { TLiteral, StaticDecode } from '@sinclair/typebox';
|
|
5
5
|
import { C as Context } from './context-Dwl3aRX-.mjs';
|
|
6
6
|
import { Manifest } from './manifest.mjs';
|
|
7
7
|
import '@octokit/webhooks';
|
|
@@ -186,4 +186,4 @@ declare class ConfigurationHandler {
|
|
|
186
186
|
private _decodeManifest;
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
-
export { CONFIG_DEV_FULL_PATH, CONFIG_ORG_REPO, CONFIG_PROD_FULL_PATH, ConfigurationHandler, type ConfigurationRefOptions, type LoggerInterface, isGithubPlugin };
|
|
189
|
+
export { CONFIG_DEV_FULL_PATH, CONFIG_ORG_REPO, CONFIG_PROD_FULL_PATH, ConfigurationHandler, type ConfigurationRefOptions, type LoggerInterface, configSchema, isGithubPlugin };
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Value } from '@sinclair/typebox/value';
|
|
2
2
|
import { YAMLException } from 'js-yaml';
|
|
3
3
|
import * as _sinclair_typebox from '@sinclair/typebox';
|
|
4
|
-
import {
|
|
4
|
+
import { TLiteral, StaticDecode } from '@sinclair/typebox';
|
|
5
5
|
import { C as Context } from './context-zLHgu52i.js';
|
|
6
6
|
import { Manifest } from './manifest.js';
|
|
7
7
|
import '@octokit/webhooks';
|
|
@@ -186,4 +186,4 @@ declare class ConfigurationHandler {
|
|
|
186
186
|
private _decodeManifest;
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
-
export { CONFIG_DEV_FULL_PATH, CONFIG_ORG_REPO, CONFIG_PROD_FULL_PATH, ConfigurationHandler, type ConfigurationRefOptions, type LoggerInterface, isGithubPlugin };
|
|
189
|
+
export { CONFIG_DEV_FULL_PATH, CONFIG_ORG_REPO, CONFIG_PROD_FULL_PATH, ConfigurationHandler, type ConfigurationRefOptions, type LoggerInterface, configSchema, isGithubPlugin };
|
package/dist/configuration.js
CHANGED
|
@@ -34,6 +34,7 @@ __export(configuration_exports, {
|
|
|
34
34
|
CONFIG_ORG_REPO: () => CONFIG_ORG_REPO,
|
|
35
35
|
CONFIG_PROD_FULL_PATH: () => CONFIG_PROD_FULL_PATH,
|
|
36
36
|
ConfigurationHandler: () => ConfigurationHandler,
|
|
37
|
+
configSchema: () => configSchema,
|
|
37
38
|
isGithubPlugin: () => isGithubPlugin
|
|
38
39
|
});
|
|
39
40
|
module.exports = __toCommonJS(configuration_exports);
|
|
@@ -721,5 +722,6 @@ var ConfigurationHandler = class {
|
|
|
721
722
|
CONFIG_ORG_REPO,
|
|
722
723
|
CONFIG_PROD_FULL_PATH,
|
|
723
724
|
ConfigurationHandler,
|
|
725
|
+
configSchema,
|
|
724
726
|
isGithubPlugin
|
|
725
727
|
});
|
package/dist/configuration.mjs
CHANGED