@cbm-common/cbm-types 0.0.143 → 0.0.144

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.
@@ -22,6 +22,7 @@ export declare namespace CbmModuleModel {
22
22
  created_user: string;
23
23
  updated_at: string;
24
24
  updated_user: string;
25
+ event_module?: string;
25
26
  module_detail: Data.Detail[];
26
27
  deleted_at: number;
27
28
  disabled_reason?: string;
@@ -0,0 +1,15 @@
1
+ import { DestroyRef } from "@angular/core";
2
+ import { FormControl } from "@angular/forms";
3
+ import { CbmItemModel } from "@cbm-common/cbm-types";
4
+ import { CbmItemDomainRepository } from "../../repositories/item.domain.repository";
5
+ import { CbmNotificationService } from "../notification/notification.service";
6
+ export declare class FindItemCodeService {
7
+ private readonly destroyRef;
8
+ private readonly itemRepository;
9
+ private readonly notificationService;
10
+ private readonly codeControl;
11
+ private readonly itemControl;
12
+ constructor(destroyRef: DestroyRef, itemRepository: CbmItemDomainRepository, notificationService: CbmNotificationService, codeControl: FormControl<string>, itemControl: FormControl<Partial<CbmItemModel.ListResponse.Item> | null>);
13
+ loading: import("@angular/core").WritableSignal<boolean>;
14
+ findCode(code?: string): Promise<void>;
15
+ }
@@ -0,0 +1,3 @@
1
+ import { Router } from "@angular/router";
2
+ import { CbmAuthService } from "../../domain/services/auth/auth.service";
3
+ export declare function authFactory(router: Router): CbmAuthService;
@@ -0,0 +1,4 @@
1
+ import { ApplicationRef } from "@angular/core";
2
+ import { Router } from "@angular/router";
3
+ import { CbmWebSocketService } from "../../domain/services/web-socket/web-socket.service";
4
+ export declare function webSocketFactory(appRef: ApplicationRef, router: Router): CbmWebSocketService;
@@ -0,0 +1,3 @@
1
+ export * from "../domain/services/notification/notification.service";
2
+ export * from "./services/auth.service";
3
+ export * from "./services/web-socket.service";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.143",
3
+ "version": "0.0.144",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {