@xh/hoist 75.0.0-SNAPSHOT.1753720955374 → 75.0.0-SNAPSHOT.1753726213836
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 +4 -0
- package/build/types/core/AppSpec.d.ts +72 -53
- package/build/types/core/HoistAuthModel.d.ts +2 -2
- package/build/types/svc/WebSocketService.d.ts +2 -2
- package/core/AppSpec.ts +104 -73
- package/core/HoistAuthModel.ts +2 -2
- package/core/XH.ts +0 -1
- package/package.json +1 -1
- package/svc/WebSocketService.ts +4 -4
- package/tsconfig.tsbuildinfo +1 -1
- package/utils/js/LangUtils.ts +1 -1
package/utils/js/LangUtils.ts
CHANGED
|
@@ -195,7 +195,7 @@ export function apiDeprecated(name: string, opts: APIWarnOptions = {}) {
|
|
|
195
195
|
if ('test' in opts && isUndefined(opts.test)) return;
|
|
196
196
|
|
|
197
197
|
const v = opts.v ?? 'a future release',
|
|
198
|
-
msg = opts.msg
|
|
198
|
+
msg = opts.msg ?? '',
|
|
199
199
|
warn = `The use of '${name}' has been deprecated and will be removed in ${v}. ${msg}`;
|
|
200
200
|
if (!_seenWarnings[warn]) {
|
|
201
201
|
logWarn(warn, opts.source);
|