@lwrjs/app-service 0.10.0-alpha.16 → 0.10.0-alpha.18

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.
@@ -1,7 +1,7 @@
1
- import { ModuleFormat } from '@lwrjs/types';
1
+ import type { ModuleFormat } from '@lwrjs/types';
2
2
  export declare const APP_BOOTSTRAP_PACKAGE_NAME = "@lwrjs/app-service";
3
3
  export declare const SUPPORTED_MODULE_FORMATS: string[];
4
- export declare type AppResourceType = 'module';
4
+ export type AppResourceType = 'module';
5
5
  export declare enum AppResourceEnum {
6
6
  MODULE = "module"
7
7
  }
@@ -10,7 +10,7 @@ export interface ApplicationIdentity {
10
10
  namespace?: string;
11
11
  name: string;
12
12
  }
13
- export declare type SubResourceIdentity = PathResourceIdentity | WorkerResourceIdentity;
13
+ export type SubResourceIdentity = PathResourceIdentity | WorkerResourceIdentity;
14
14
  export declare enum ResourceIdentityTypes {
15
15
  PATH = "path",
16
16
  WORKER = "worker"
@@ -19,12 +19,12 @@ export interface PathResourceIdentity {
19
19
  type: ResourceIdentityTypes.PATH;
20
20
  requestPath: string;
21
21
  }
22
- export declare type WorkerResourceIdentityType = 'worker';
22
+ export type WorkerResourceIdentityType = 'worker';
23
23
  export interface WorkerResourceIdentity {
24
24
  type: ResourceIdentityTypes.WORKER;
25
25
  workerId: string;
26
26
  }
27
- export declare type AppResourceId = Pick<AppResourceIdentity, 'appName' | 'resourceType' | 'format' | 'subResource'>;
27
+ export type AppResourceId = Pick<AppResourceIdentity, 'appName' | 'resourceType' | 'format' | 'subResource'>;
28
28
  export interface AppResourceIdentity {
29
29
  packageName: string;
30
30
  appName: string;
@@ -1,5 +1,5 @@
1
- import { ModuleCompiled, ModuleEntry, ModuleProvider, ModuleSource, ProviderContext, AbstractModuleId, ProviderAppConfig } from '@lwrjs/types';
2
- import { LwrLockerConfig } from 'packages/@lwrjs/types/src/config.js';
1
+ import type { ModuleCompiled, ModuleEntry, ModuleProvider, ModuleSource, ProviderContext, AbstractModuleId, ProviderAppConfig } from '@lwrjs/types';
2
+ import type { LwrLockerConfig } from 'packages/@lwrjs/types/src/config.js';
3
3
  export default class AppModuleProvider implements ModuleProvider {
4
4
  name: string;
5
5
  version: string;
@@ -1,4 +1,4 @@
1
- import { LwrAppBootstrapConfig, LwrLockerConfig, NormalizedLwrAppBootstrapConfig, NormalizedLwrErrorRoute, NormalizedLwrRoute } from '@lwrjs/types';
1
+ import type { LwrAppBootstrapConfig, LwrLockerConfig, NormalizedLwrAppBootstrapConfig, NormalizedLwrErrorRoute, NormalizedLwrRoute } from '@lwrjs/types';
2
2
  /**
3
3
  * Create the virtual source for the application bootstrap module with a worker root
4
4
  * @returns the generated source
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.10.0-alpha.16",
7
+ "version": "0.10.0-alpha.18",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -33,14 +33,14 @@
33
33
  "build/**/*.d.ts"
34
34
  ],
35
35
  "dependencies": {
36
- "@lwrjs/diagnostics": "0.10.0-alpha.16",
37
- "@lwrjs/shared-utils": "0.10.0-alpha.16"
36
+ "@lwrjs/diagnostics": "0.10.0-alpha.18",
37
+ "@lwrjs/shared-utils": "0.10.0-alpha.18"
38
38
  },
39
39
  "devDependencies": {
40
- "@lwrjs/types": "0.10.0-alpha.16"
40
+ "@lwrjs/types": "0.10.0-alpha.18"
41
41
  },
42
42
  "engines": {
43
43
  "node": ">=16.0.0 <20"
44
44
  },
45
- "gitHead": "c5a13d471330c0f738d0c783fd1b69f456c544bd"
45
+ "gitHead": "15d09e9a17b6b070e162336234434d6800b2f32d"
46
46
  }