@telia-ace/alliance-internal-node-utilities 1.0.2-next.0 → 1.0.2-next.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @telia-ace/alliance-internal-node-utilities
2
2
 
3
+ ## 1.0.2-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 9c6dc92: Added utility for creating public static files used in all Alliance portal distributions.
8
+
3
9
  ## 1.0.2-next.0
4
10
 
5
11
  ### Patch Changes
@@ -0,0 +1,2 @@
1
+ import { LooseObject } from '@/types';
2
+ export declare function generateCookiePolicyHtml(appManifests: LooseObject): string;
@@ -0,0 +1 @@
1
+ export declare function createPublicDistributionFiles(): Promise<void>;
@@ -0,0 +1 @@
1
+ export { createPublicDistributionFiles } from './create-public-files';
@@ -0,0 +1,7 @@
1
+ import type { Schema } from 'jsonschema';
2
+ type JsonSchemas = {
3
+ appConfig: Schema;
4
+ appManifest: Schema;
5
+ };
6
+ export declare function getJsonSchemas(): JsonSchemas;
7
+ export {};
@@ -0,0 +1,13 @@
1
+ import { LooseObject } from '@/types';
2
+ type PkgJson = LooseObject & {
3
+ name: string;
4
+ version: string;
5
+ };
6
+ export type AlliancePortalDistPkgJson = PkgJson & {
7
+ alliance?: {
8
+ apps?: string[];
9
+ };
10
+ };
11
+ export declare function getPkgJson(): AlliancePortalDistPkgJson;
12
+ export declare function getManifests(pkgJson: AlliancePortalDistPkgJson): Promise<LooseObject>;
13
+ export {};
@@ -0,0 +1,2 @@
1
+ import { LooseObject } from './types';
2
+ export declare function getAppManifests(apps: string[]): Promise<LooseObject[]>;