@equinor/fusion-framework-module-app 7.4.0 → 7.4.2-next.0
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 +20 -33
- package/dist/esm/AppConfig.js +8 -24
- package/dist/esm/AppConfig.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/AppConfig.d.ts +3 -15
- package/dist/types/types.d.ts +14 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +8 -8
- package/src/AppConfig.ts +9 -26
- package/src/types.ts +16 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 7.4.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3820](https://github.com/equinor/fusion-framework/pull/3820) [`f647825`](https://github.com/equinor/fusion-framework/commit/f647825cb5712763b09dafda21fd996211c78b78) Thanks [@odinr](https://github.com/odinr)! - relase next
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`f647825`](https://github.com/equinor/fusion-framework/commit/f647825cb5712763b09dafda21fd996211c78b78)]:
|
|
10
|
+
- @equinor/fusion-observable@8.5.9-next.0
|
|
11
|
+
- @equinor/fusion-query@6.0.5-next.0
|
|
12
|
+
|
|
13
|
+
## 7.4.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#4157](https://github.com/equinor/fusion-framework/pull/4157) [`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581) Thanks [@Noggling](https://github.com/Noggling)! - Internal: patch release to align TypeScript types across packages for consistent type compatibility.
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [[`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581)]:
|
|
20
|
+
- @equinor/fusion-observable@8.5.8
|
|
21
|
+
- @equinor/fusion-query@6.0.4
|
|
22
|
+
|
|
3
23
|
## 7.4.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
@@ -88,20 +108,17 @@
|
|
|
88
108
|
## New Features
|
|
89
109
|
|
|
90
110
|
### App Tag/Version Support
|
|
91
|
-
|
|
92
111
|
- **App Client**: Added `getAppBuild` method to fetch build manifests by app key and tag
|
|
93
112
|
- **App Module Provider**: Enhanced `getAppManifest` to accept optional tag parameter
|
|
94
113
|
- **App Loading**: Modified `setCurrentApp` to support `AppReference` objects with tag specification
|
|
95
114
|
- **URL Integration**: Added `getAppTagFromUrl` utility to extract app tags from URL parameters
|
|
96
115
|
|
|
97
116
|
### Enhanced Type System
|
|
98
|
-
|
|
99
117
|
- Added `AppReference` type for specifying app key and optional tag
|
|
100
118
|
- Extended `AppBundleState` to include optional `tag` property
|
|
101
119
|
- Updated `AppBuildManifest` type definition for build-specific metadata
|
|
102
120
|
|
|
103
121
|
### API Improvements
|
|
104
|
-
|
|
105
122
|
- **AppClient**: Updated interface to support tag-based manifest and build fetching
|
|
106
123
|
- **App Class**: Added `tag` getter property for accessing current app tag
|
|
107
124
|
- **Action System**: Enhanced `fetchManifest` action to handle tag parameters
|
|
@@ -109,7 +126,6 @@
|
|
|
109
126
|
## Changes by Package
|
|
110
127
|
|
|
111
128
|
### `@equinor/fusion-framework-module-app`
|
|
112
|
-
|
|
113
129
|
- **AppClient.ts**: Added `getAppBuild` method with tag support and updated `getAppManifest` signature
|
|
114
130
|
- **AppModuleProvider.ts**: Enhanced `setCurrentApp` method to handle `AppReference` objects with tags
|
|
115
131
|
- **App.ts**: Added `tag` getter and improved error handling in initialization
|
|
@@ -118,7 +134,6 @@
|
|
|
118
134
|
- **flows.ts**: Modified manifest fetching flow to handle tag-based requests
|
|
119
135
|
|
|
120
136
|
### `@equinor/fusion-framework-dev-portal`
|
|
121
|
-
|
|
122
137
|
- **AppLoader.tsx**: Added `getAppTagFromUrl` utility function and integrated tag-based app loading
|
|
123
138
|
|
|
124
139
|
## Usage Examples
|
|
@@ -151,17 +166,14 @@
|
|
|
151
166
|
## Migration Guide
|
|
152
167
|
|
|
153
168
|
### For App Consumers
|
|
154
|
-
|
|
155
169
|
- No breaking changes - existing code continues to work
|
|
156
170
|
- Optionally use new tag-based loading for version-specific deployments
|
|
157
171
|
|
|
158
172
|
### For App Developers
|
|
159
|
-
|
|
160
173
|
- Consider adding `&tag` URL parameter support for testing different versions
|
|
161
174
|
- Use new `AppReference` type when programmatically setting current apps with tags
|
|
162
175
|
|
|
163
176
|
## Technical Details
|
|
164
|
-
|
|
165
177
|
- **Backward Compatibility**: All changes are backward compatible
|
|
166
178
|
- **Caching**: Tag-based manifests and builds are cached separately
|
|
167
179
|
- **Error Handling**: Enhanced error handling for build and manifest loading failures
|
|
@@ -195,7 +207,6 @@
|
|
|
195
207
|
### Patch Changes
|
|
196
208
|
|
|
197
209
|
- [#3428](https://github.com/equinor/fusion-framework/pull/3428) [`1700ca8`](https://github.com/equinor/fusion-framework/commit/1700ca8851fa108e55e9729fd24f595272766e63) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update zod from 4.1.9 to 4.1.11
|
|
198
|
-
|
|
199
210
|
- **v4.1.10**: Fixed shape caching issue (#5263) improving validation performance for complex schemas
|
|
200
211
|
- **v4.1.11**: Maintenance release with general improvements
|
|
201
212
|
|
|
@@ -214,7 +225,6 @@
|
|
|
214
225
|
Updated source code to migrate from zod v3 to v4. Updated zod dependency from v3.25.76 to v4.1.8 and modified schema definitions in the app module to use explicit key and value types for records and updated error message format from `description` to `message` for zod v4 compatibility.
|
|
215
226
|
|
|
216
227
|
Key changes in source code:
|
|
217
|
-
|
|
218
228
|
- Fixed record schema definitions to use explicit key and value types (`z.record(z.string(), z.any())`)
|
|
219
229
|
- Updated error message options format (replaced `description` with `message`)
|
|
220
230
|
- Enhanced `ApiAppConfigSchema` with proper record type definitions for environment and endpoints
|
|
@@ -223,7 +233,6 @@
|
|
|
223
233
|
Breaking changes: Record schemas must specify both key and value types explicitly. Error message format has changed from zod v3 to v4 format. Function schema definitions now require explicit typing.
|
|
224
234
|
|
|
225
235
|
Links:
|
|
226
|
-
|
|
227
236
|
- [Zod v4 Migration Guide](https://github.com/colinhacks/zod/releases/tag/v4.0.0)
|
|
228
237
|
- [Zod v4.1.8 Release Notes](https://github.com/colinhacks/zod/releases/tag/v4.1.8)
|
|
229
238
|
|
|
@@ -236,19 +245,16 @@
|
|
|
236
245
|
- [#3395](https://github.com/equinor/fusion-framework/pull/3395) [`29f6710`](https://github.com/equinor/fusion-framework/commit/29f6710238baf9b29f42394b30cb8b97f25462c3) Thanks [@odinr](https://github.com/odinr)! - Updated immer from 9.0.16 to 10.1.3 across all packages.
|
|
237
246
|
|
|
238
247
|
### Breaking Changes
|
|
239
|
-
|
|
240
248
|
- Immer 10.x introduces stricter TypeScript types for draft functions
|
|
241
249
|
- `ValidRecipeReturnType` type constraints have changed
|
|
242
250
|
- Promise return types in draft functions are no longer automatically handled
|
|
243
251
|
|
|
244
252
|
### Fixes Applied
|
|
245
|
-
|
|
246
253
|
- Updated BookmarkProvider to handle new immer type constraints
|
|
247
254
|
- Fixed ObservableInput type assignments in mergeScan operations
|
|
248
255
|
- Removed async/await from immer draft functions to comply with new type requirements
|
|
249
256
|
|
|
250
257
|
### Links
|
|
251
|
-
|
|
252
258
|
- [Immer 10.0.0 Release Notes](https://github.com/immerjs/immer/releases/tag/v10.0.0)
|
|
253
259
|
- [Immer Migration Guide](https://github.com/immerjs/immer/blob/main/MIGRATION.md)
|
|
254
260
|
|
|
@@ -259,18 +265,15 @@
|
|
|
259
265
|
- [#3347](https://github.com/equinor/fusion-framework/pull/3347) [`11143fa`](https://github.com/equinor/fusion-framework/commit/11143fa3002fb8a6c095052a04c7e596c56bafa8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump uuid from 11.0.3 to 13.0.0
|
|
260
266
|
|
|
261
267
|
### Breaking Changes
|
|
262
|
-
|
|
263
268
|
- v13.0.0: Make browser exports the default
|
|
264
269
|
- v12.0.0: Update to TypeScript 5.2, remove CommonJS support, drop Node 16 support
|
|
265
270
|
|
|
266
271
|
### New Features
|
|
267
|
-
|
|
268
272
|
- Improved v4() performance
|
|
269
273
|
- Added Node 24 to CI matrix
|
|
270
274
|
- Restored node: prefix support
|
|
271
275
|
|
|
272
276
|
### Links
|
|
273
|
-
|
|
274
277
|
- [GitHub releases](https://github.com/uuidjs/uuid/releases/tag/v13.0.0)
|
|
275
278
|
- [npm changelog](https://www.npmjs.com/package/uuid?activeTab=versions)
|
|
276
279
|
|
|
@@ -283,7 +286,6 @@
|
|
|
283
286
|
### Patch Changes
|
|
284
287
|
|
|
285
288
|
- [#3315](https://github.com/equinor/fusion-framework/pull/3315) [`2ea9fb6`](https://github.com/equinor/fusion-framework/commit/2ea9fb63bdf967e0d010ddae2af9f6fb32077240) Thanks [@Noggling](https://github.com/Noggling)! - Improve error handling in AppClient
|
|
286
|
-
|
|
287
289
|
- Add support for HTTP 410 (Gone) status code handling across all error types
|
|
288
290
|
- Import and use `HttpJsonResponseError` for more specific error handling in `getAppManifest`
|
|
289
291
|
- Add 'deleted' error type to handle when application resources have been deleted
|
|
@@ -301,7 +303,6 @@
|
|
|
301
303
|
### Patch Changes
|
|
302
304
|
|
|
303
305
|
- [#3088](https://github.com/equinor/fusion-framework/pull/3088) [`7441b13`](https://github.com/equinor/fusion-framework/commit/7441b13aa50dd7362d1629086a27b6b4e571575d) Thanks [@eikeland](https://github.com/eikeland)! - chore: update package typesVersions
|
|
304
|
-
|
|
305
306
|
- Updated package.json typesVersions.
|
|
306
307
|
- Ensures backward compatibility with older node versions.
|
|
307
308
|
- Ensured consistency with workspace and repository configuration.
|
|
@@ -414,7 +415,6 @@
|
|
|
414
415
|
### Patch Changes
|
|
415
416
|
|
|
416
417
|
- [#2519](https://github.com/equinor/fusion-framework/pull/2519) [`83a7ee9`](https://github.com/equinor/fusion-framework/commit/83a7ee971785343bccedc2d72cc02486193615af) Thanks [@eikeland](https://github.com/eikeland)! - ### Changes:
|
|
417
|
-
|
|
418
418
|
- Updated `AppClient` class to improve the query for fetching app manifests:
|
|
419
419
|
- Adjusted the query path manifests method to include `$expand=category,admins,owners,keywords` when `filterByCurrentUser` is not specified.
|
|
420
420
|
- Minor formatting changes for better readability.
|
|
@@ -426,11 +426,9 @@
|
|
|
426
426
|
- [#2685](https://github.com/equinor/fusion-framework/pull/2685) [`add2e98`](https://github.com/equinor/fusion-framework/commit/add2e98d23e683a801729e9af543cfa15c574e27) Thanks [@eikeland](https://github.com/eikeland)! - Added versioning support to `AppModuleProvider`.
|
|
427
427
|
|
|
428
428
|
**Modified files:**
|
|
429
|
-
|
|
430
429
|
- `packages/modules/app/src/AppModuleProvider.ts`
|
|
431
430
|
|
|
432
431
|
**Changes:**
|
|
433
|
-
|
|
434
432
|
- Imported `SemanticVersion` from `@equinor/fusion-framework-module`.
|
|
435
433
|
- Imported `version` from `./version`.
|
|
436
434
|
- Added a `version` getter to `AppModuleProvider` that returns a `SemanticVersion` instance.
|
|
@@ -445,11 +443,9 @@
|
|
|
445
443
|
- [#2654](https://github.com/equinor/fusion-framework/pull/2654) [`59ab642`](https://github.com/equinor/fusion-framework/commit/59ab6424f3ce80649f42ddb6804b46f6789607ba) Thanks [@eikeland](https://github.com/eikeland)! - Reverting update to the `manifests` call `selector` function in `AppClient` to use `jsonSelector` and parse the response with `ApplicationSchema`.
|
|
446
444
|
|
|
447
445
|
**Modified files:**
|
|
448
|
-
|
|
449
446
|
- `packages/modules/app/src/AppClient.ts`
|
|
450
447
|
|
|
451
448
|
**Changes:**
|
|
452
|
-
|
|
453
449
|
- Replaced `res.json()` with `jsonSelector(res)`
|
|
454
450
|
- Parsed the response using `ApplicationSchema.array().parse(response.value)`
|
|
455
451
|
|
|
@@ -484,7 +480,6 @@
|
|
|
484
480
|
```
|
|
485
481
|
|
|
486
482
|
- [#2577](https://github.com/equinor/fusion-framework/pull/2577) [`c3ba9f1`](https://github.com/equinor/fusion-framework/commit/c3ba9f109d9f96d6dc6ee2f0ddac00c8b3090982) Thanks [@eikeland](https://github.com/eikeland)! - #### Changes:
|
|
487
|
-
|
|
488
483
|
1. **AppClient.ts**
|
|
489
484
|
- Added `updateAppSettings` method to set app settings by appKey.
|
|
490
485
|
2. **AppModuleProvider.ts**
|
|
@@ -545,12 +540,10 @@
|
|
|
545
540
|
> This will introduce breaking changes to the configuration of `AppConfigurator.client`.
|
|
546
541
|
|
|
547
542
|
**Added**
|
|
548
|
-
|
|
549
543
|
- Introduced `AppClient` class to handle application manifest and configuration queries.
|
|
550
544
|
- Added `zod` to validate the application manifest.
|
|
551
545
|
|
|
552
546
|
**Changed**
|
|
553
|
-
|
|
554
547
|
- Updated `AppModuleProvider` to use `AppClient` for fetching application manifests and configurations.
|
|
555
548
|
- Modified `AppConfigurator` to utilize `AppClient` for client configuration.
|
|
556
549
|
- Updated `useApps` hook with new input parameter for `filterByCurrentUser` in `fusion-framework-react`.
|
|
@@ -629,7 +622,6 @@
|
|
|
629
622
|
- [#2320](https://github.com/equinor/fusion-framework/pull/2320) [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee) Thanks [@odinr](https://github.com/odinr)! - Removed the `removeComments` option from the `tsconfig.base.json` file.
|
|
630
623
|
|
|
631
624
|
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
632
|
-
|
|
633
625
|
1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
|
|
634
626
|
2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
|
|
635
627
|
3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
|
|
@@ -678,7 +670,6 @@
|
|
|
678
670
|
### Patch Changes
|
|
679
671
|
|
|
680
672
|
- [#2235](https://github.com/equinor/fusion-framework/pull/2235) [`97e41a5`](https://github.com/equinor/fusion-framework/commit/97e41a55d05644b6684c6cb165b65b115bd416eb) Thanks [@odinr](https://github.com/odinr)! - - **Refactored**: The `actionBaseType` function has been renamed to `getBaseType` and its implementation has been updated.
|
|
681
|
-
|
|
682
673
|
- **Added**: New utility types and functions for handling action types and payloads in a more type-safe manner.
|
|
683
674
|
|
|
684
675
|
- [#2248](https://github.com/equinor/fusion-framework/pull/2248) [`da9dd83`](https://github.com/equinor/fusion-framework/commit/da9dd83c9352def5365b6c962dc8443589ac9526) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - #2235 renamed a method and changed type. This PR forgot to change to the correct param when using this method. Fixes typo - update to use actions `type` in the reducer.
|
|
@@ -754,7 +745,6 @@
|
|
|
754
745
|
### Patch Changes
|
|
755
746
|
|
|
756
747
|
- [#1763](https://github.com/equinor/fusion-framework/pull/1763) [`1ca8264`](https://github.com/equinor/fusion-framework/commit/1ca826489a0d1dd755324344a12bbf6659a3be12) Thanks [@odinr](https://github.com/odinr)! - improve type of current application
|
|
757
|
-
|
|
758
748
|
- result will be `undefined` if current application has never been set
|
|
759
749
|
- result will be `IApplication` if current application is set
|
|
760
750
|
- result will be `null` if current application is cleared
|
|
@@ -871,7 +861,6 @@
|
|
|
871
861
|
### Minor Changes
|
|
872
862
|
|
|
873
863
|
- [#927](https://github.com/equinor/fusion-framework/pull/927) [`8bc4c5d6`](https://github.com/equinor/fusion-framework/commit/8bc4c5d6ed900e424efcab5572047c106d7ec04a) Thanks [@odinr](https://github.com/odinr)! - Create and expose interface for App
|
|
874
|
-
|
|
875
864
|
- deprecate [AppModuleProvider.createApp](https://github.com/equinor/fusion-framework/blob/cf08d5ae3cef473e5025fd973a2a7a45a3b22dee/packages/modules/app/src/AppModuleProvider.ts#L171)
|
|
876
865
|
|
|
877
866
|
this should not create any breaking changes since apps was only created from provider.
|
|
@@ -882,7 +871,6 @@
|
|
|
882
871
|
```
|
|
883
872
|
|
|
884
873
|
- [#927](https://github.com/equinor/fusion-framework/pull/927) [`8bc4c5d6`](https://github.com/equinor/fusion-framework/commit/8bc4c5d6ed900e424efcab5572047c106d7ec04a) Thanks [@odinr](https://github.com/odinr)! - Allow updating manifest of application
|
|
885
|
-
|
|
886
874
|
- add meta data for `setManifest` action to flag if `merge` or `replace`
|
|
887
875
|
- add method on `App` to update manifest, _default flag `merge`_
|
|
888
876
|
- check in state reducer if `setManifest` action is `update` or `merge`
|
|
@@ -893,7 +881,6 @@
|
|
|
893
881
|
### Patch Changes
|
|
894
882
|
|
|
895
883
|
- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages**
|
|
896
|
-
|
|
897
884
|
- align all versions of typescript
|
|
898
885
|
- update types to build
|
|
899
886
|
- a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future
|
package/dist/esm/AppConfig.js
CHANGED
|
@@ -31,30 +31,22 @@ const deepFreeze = (obj) => {
|
|
|
31
31
|
*/
|
|
32
32
|
export class AppConfig {
|
|
33
33
|
#endpoints;
|
|
34
|
+
#environment;
|
|
34
35
|
/**
|
|
35
36
|
* The environment configuration for the application.
|
|
36
|
-
* This property is read-only and is of type `TEnvironment`.
|
|
37
37
|
*/
|
|
38
|
-
environment
|
|
38
|
+
get environment() {
|
|
39
|
+
return this.#environment;
|
|
40
|
+
}
|
|
39
41
|
/**
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
* Retrieves the endpoints as a record of strings. This method returns a proxy
|
|
43
|
-
* that maps the endpoint names to their respective URLs.
|
|
44
|
-
*
|
|
45
|
-
* @returns {Record<string, string | undefined>} A record where the keys are endpoint names and the values are their URLs.
|
|
42
|
+
* The configuration endpoints for the application,.
|
|
46
43
|
*/
|
|
47
44
|
get endpoints() {
|
|
48
|
-
|
|
49
|
-
return new Proxy(this.#endpoints, {
|
|
50
|
-
get(target, prop) {
|
|
51
|
-
return target[prop]?.url;
|
|
52
|
-
},
|
|
53
|
-
});
|
|
45
|
+
return this.#endpoints;
|
|
54
46
|
}
|
|
55
47
|
constructor(config) {
|
|
56
|
-
this
|
|
57
|
-
this.#endpoints = config.endpoints ?? {};
|
|
48
|
+
this.#environment = deepFreeze(config.environment ?? {});
|
|
49
|
+
this.#endpoints = deepFreeze(config.endpoints ?? {});
|
|
58
50
|
}
|
|
59
51
|
/**
|
|
60
52
|
* Retrieves the configuration endpoint associated with the given key.
|
|
@@ -65,13 +57,5 @@ export class AppConfig {
|
|
|
65
57
|
getEndpoint(key) {
|
|
66
58
|
return this.#endpoints[key];
|
|
67
59
|
}
|
|
68
|
-
/**
|
|
69
|
-
* Retrieve all configuration endpoints associated with the app.
|
|
70
|
-
*
|
|
71
|
-
* @returns The configuration endpoints found.
|
|
72
|
-
*/
|
|
73
|
-
getEndpoints() {
|
|
74
|
-
return this.#endpoints;
|
|
75
|
-
}
|
|
76
60
|
}
|
|
77
61
|
//# sourceMappingURL=AppConfig.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppConfig.js","sourceRoot":"","sources":["../../src/AppConfig.ts"],"names":[],"mappings":"AAAA,sBAAsB;AACtB,MAAM,UAAU,GAAG,CAAoC,GAAM,EAAK,EAAE;IAClE,KAAK,MAAM,QAAQ,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;QACxC,IACE,OAAO,GAAG,CAAC,QAAQ,CAAC,KAAK,QAAQ;YACjC,GAAG,CAAC,QAAQ,CAAC,KAAK,IAAI;YACtB,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,EAC/B,CAAC;YACD,UAAU,CAAC,GAAG,CAAC,QAAQ,CAA4B,CAAC,CAAC;QACvD,CAAC;IACH,CAAC;IACD,OAAO,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;AAC5B,CAAC,CAAC;AASF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,OAAO,SAAS;IACpB,UAAU,CAAiC;
|
|
1
|
+
{"version":3,"file":"AppConfig.js","sourceRoot":"","sources":["../../src/AppConfig.ts"],"names":[],"mappings":"AAAA,sBAAsB;AACtB,MAAM,UAAU,GAAG,CAAoC,GAAM,EAAK,EAAE;IAClE,KAAK,MAAM,QAAQ,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;QACxC,IACE,OAAO,GAAG,CAAC,QAAQ,CAAC,KAAK,QAAQ;YACjC,GAAG,CAAC,QAAQ,CAAC,KAAK,IAAI;YACtB,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,EAC/B,CAAC;YACD,UAAU,CAAC,GAAG,CAAC,QAAQ,CAA4B,CAAC,CAAC;QACvD,CAAC;IACH,CAAC;IACD,OAAO,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;AAC5B,CAAC,CAAC;AASF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,OAAO,SAAS;IACpB,UAAU,CAAiC;IAC3C,YAAY,CAAe;IAE3B;;OAEG;IACH,IAAI,WAAW;QACb,OAAO,IAAI,CAAC,YAAY,CAAC;IAC3B,CAAC;IAED;;OAEG;IACH,IAAI,SAAS;QACX,OAAO,IAAI,CAAC,UAAU,CAAC;IACzB,CAAC;IAED,YAAY,MAGX;QACC,IAAI,CAAC,YAAY,GAAG,UAAU,CAAC,MAAM,CAAC,WAAW,IAAI,EAAE,CAAiB,CAAC;QACzE,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC,MAAM,CAAC,SAAS,IAAI,EAAE,CAAC,CAAC;IACvD,CAAC;IAED;;;;;OAKG;IACH,WAAW,CAAC,GAAW;QACrB,OAAO,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;IAC9B,CAAC;CACF"}
|
package/dist/esm/version.js
CHANGED
package/dist/esm/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,MAAM,CAAC,MAAM,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,MAAM,CAAC,MAAM,OAAO,GAAG,cAAc,CAAC"}
|