@conterra/ct-mapapps-typings 4.19.0-next.20241204045825 → 4.19.0-next.20241204215401
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/apprt/BundleEvent.d.ts +3 -0
- package/apprt/FrameworkEvent.d.ts +3 -0
- package/apprt/ServiceEvent.d.ts +3 -0
- package/ct/Exception.d.ts +3 -0
- package/ct/Locale.d.ts +3 -0
- package/ct/request.d.ts +3 -0
- package/package.json +1 -1
package/apprt/BundleEvent.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { BundleEvent_INSTALLED, BundleEvent_STARTED, BundleEvent_STOPPED, BundleEvent_UNINSTALLED, BundleEvent_RESOLVING, BundleEvent_RESOLVED, BundleEvent_UNRESOLVED, BundleEvent_STARTING, BundleEvent_STOPPING } from './api/index.js';
|
|
2
2
|
import 'apprt-core/Types';
|
|
3
3
|
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated use {BundleEvents} from 'apprt/Events' instead
|
|
6
|
+
*/
|
|
4
7
|
declare const BundleEvent: {
|
|
5
8
|
types: {
|
|
6
9
|
INSTALLED: BundleEvent_INSTALLED;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { FrameworkEvent_STARTED, FrameworkEvent_ERROR, FrameworkEvent_STARTLEVEL_CHANGED, FrameworkEvent_WARNING, FrameworkEvent_STOPPED } from './api/index.js';
|
|
2
2
|
import 'apprt-core/Types';
|
|
3
3
|
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated use {FrameworkEvents} from 'apprt/Events' instead
|
|
6
|
+
**/
|
|
4
7
|
declare const FrameworkEvent: {
|
|
5
8
|
types: {
|
|
6
9
|
STARTED: FrameworkEvent_STARTED;
|
package/apprt/ServiceEvent.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { ServiceEvent_REGISTERED, ServiceEvent_MODIFIED, ServiceEvent_UNREGISTERING, ServiceEvent_LAZY_GET, ServiceEvent_LAZY_UNGET } from './api/index.js';
|
|
2
2
|
import 'apprt-core/Types';
|
|
3
3
|
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated use {ServiceEvents} from 'apprt/Events' instead.
|
|
6
|
+
*/
|
|
4
7
|
declare const ServiceEvent: {
|
|
5
8
|
types: {
|
|
6
9
|
REGISTERED: ServiceEvent_REGISTERED;
|
package/ct/Exception.d.ts
CHANGED
package/ct/Locale.d.ts
CHANGED
package/ct/request.d.ts
CHANGED