@softpak/components 21.1.0-beta.4 → 21.1.0-beta.6

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.
Files changed (32) hide show
  1. package/fesm2022/softpak-components-spx-alert.mjs +4 -3
  2. package/fesm2022/softpak-components-spx-alert.mjs.map +1 -1
  3. package/fesm2022/softpak-components-spx-app-expiry.mjs +5 -5
  4. package/fesm2022/softpak-components-spx-app-expiry.mjs.map +1 -1
  5. package/fesm2022/softpak-components-spx-channel-selection.mjs +18 -20
  6. package/fesm2022/softpak-components-spx-channel-selection.mjs.map +1 -1
  7. package/fesm2022/softpak-components-spx-confirm.mjs +17 -25
  8. package/fesm2022/softpak-components-spx-confirm.mjs.map +1 -1
  9. package/fesm2022/softpak-components-spx-navigation.mjs +14 -21
  10. package/fesm2022/softpak-components-spx-navigation.mjs.map +1 -1
  11. package/fesm2022/softpak-components-spx-patch.mjs +1 -1
  12. package/fesm2022/softpak-components-spx-patch.mjs.map +1 -1
  13. package/fesm2022/softpak-components-spx-spinner.mjs +12 -18
  14. package/fesm2022/softpak-components-spx-spinner.mjs.map +1 -1
  15. package/fesm2022/softpak-components-spx-stock-info.mjs +1 -1
  16. package/fesm2022/softpak-components-spx-stock-info.mjs.map +1 -1
  17. package/fesm2022/softpak-components-spx-tabs.mjs +8 -11
  18. package/fesm2022/softpak-components-spx-tabs.mjs.map +1 -1
  19. package/fesm2022/softpak-components-spx-toaster.mjs +27 -42
  20. package/fesm2022/softpak-components-spx-toaster.mjs.map +1 -1
  21. package/fesm2022/softpak-components-spx-update.mjs +36 -46
  22. package/fesm2022/softpak-components-spx-update.mjs.map +1 -1
  23. package/package.json +2 -2
  24. package/tailwind.css +1 -1
  25. package/types/softpak-components-spx-alert.d.ts +3 -1
  26. package/types/softpak-components-spx-channel-selection.d.ts +23 -35
  27. package/types/softpak-components-spx-confirm.d.ts +21 -33
  28. package/types/softpak-components-spx-navigation.d.ts +21 -37
  29. package/types/softpak-components-spx-spinner.d.ts +14 -27
  30. package/types/softpak-components-spx-tabs.d.ts +8 -17
  31. package/types/softpak-components-spx-toaster.d.ts +57 -91
  32. package/types/softpak-components-spx-update.d.ts +30 -41
@@ -20,22 +20,13 @@ declare class SpxTabsComponent implements OnInit {
20
20
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SpxTabsComponent, "spx-tabs", never, { "optionalNavItemBool": { "alias": "optionalNavItemBool"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
21
21
  }
22
22
 
23
- declare const ctrl: _ngrx_store.ActionCreator<"[SPX / Shortcuts] CTRL", (props: {
24
- keyIsDown: boolean;
25
- }) => {
26
- keyIsDown: boolean;
27
- } & _ngrx_store.Action<"[SPX / Shortcuts] CTRL">>;
28
- declare const all: {
29
- keyIsDown: boolean;
30
- } & _ngrx_store.Action<"[SPX / Shortcuts] CTRL">;
31
- type Actions = typeof all;
32
-
33
- type spxShortcuts_actions_d_Actions = Actions;
34
- declare const spxShortcuts_actions_d_ctrl: typeof ctrl;
35
- declare namespace spxShortcuts_actions_d {
36
- export { spxShortcuts_actions_d_ctrl as ctrl };
37
- export type { spxShortcuts_actions_d_Actions as Actions };
38
- }
23
+ declare const spxShortcutsActions: {
24
+ ctrl: _ngrx_store.ActionCreator<"[SpxShortcuts] Ctrl", (props: {
25
+ keyIsDown: boolean;
26
+ }) => {
27
+ keyIsDown: boolean;
28
+ } & _ngrx_store.Action<"[SpxShortcuts] Ctrl">>;
29
+ };
39
30
 
40
31
  interface StateI {
41
32
  ctrlIsDown: boolean;
@@ -55,4 +46,4 @@ declare namespace spxShortcuts_reducer_d {
55
46
  export type { spxShortcuts_reducer_d_StateI as StateI };
56
47
  }
57
48
 
58
- export { SpxTabsComponent, spxShortcuts_actions_d as spxShortCutsActions, spxShortcuts_reducer_d as spxShortCutsReducer };
49
+ export { SpxTabsComponent, spxShortcuts_reducer_d as spxShortCutsReducer, spxShortcutsActions };
@@ -28,8 +28,10 @@ declare class SpxToasterMessageI {
28
28
  }
29
29
 
30
30
  declare class SpxToasterComponent {
31
+ private readonly store;
31
32
  messages: _angular_core.InputSignal<SpxToasterMessageI[]>;
32
33
  readonly spxAutoclose: _angular_core.InputSignal<number | undefined>;
34
+ readonly spxCustomer: _angular_core.Signal<string | undefined>;
33
35
  spxClose: _angular_core.OutputEmitterRef<number>;
34
36
  constructor();
35
37
  handleClose(id: number): void;
@@ -37,96 +39,60 @@ declare class SpxToasterComponent {
37
39
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SpxToasterComponent, "spx-toaster", never, { "messages": { "alias": "messages"; "required": true; "isSignal": true; }; "spxAutoclose": { "alias": "spxAutoclose"; "required": false; "isSignal": true; }; }, { "spxClose": "spxClose"; }, never, never, true, never>;
38
40
  }
39
41
 
40
- declare const clearAll: _ngrx_store.ActionCreator<"[SPX / Toaster] Clear all", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Toaster] Clear all">>;
41
- declare const clearAllErrors: _ngrx_store.ActionCreator<"[SPX / Toaster] Clear all errors", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Toaster] Clear all errors">>;
42
- declare const clearAllErrorsAndWarnings: _ngrx_store.ActionCreator<"[SPX / Toaster] Clear all errors and warnings", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Toaster] Clear all errors and warnings">>;
43
- declare const clearMessage: _ngrx_store.ActionCreator<"[SPX / Toaster] Clear message", (props: {
44
- id: number;
45
- }) => {
46
- id: number;
47
- } & _ngrx_store.Action<"[SPX / Toaster] Clear message">>;
48
- declare const createError: _ngrx_store.ActionCreator<"[SPX / Toaster] Create error", (props: {
49
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
50
- closeable?: boolean;
51
- messageText: string;
52
- title?: string;
53
- }) => {
54
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
55
- closeable?: boolean;
56
- messageText: string;
57
- title?: string;
58
- } & _ngrx_store.Action<"[SPX / Toaster] Create error">>;
59
- declare const createInfo: _ngrx_store.ActionCreator<"[SPX / Toaster] Create info", (props: {
60
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
61
- closeable?: boolean;
62
- messageText: string;
63
- title?: string;
64
- }) => {
65
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
66
- closeable?: boolean;
67
- messageText: string;
68
- title?: string;
69
- } & _ngrx_store.Action<"[SPX / Toaster] Create info">>;
70
- declare const createSuccess: _ngrx_store.ActionCreator<"[SPX / Toaster] Create success", (props: {
71
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
72
- closeable?: boolean;
73
- messageText: string;
74
- title?: string;
75
- }) => {
76
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
77
- closeable?: boolean;
78
- messageText: string;
79
- title?: string;
80
- } & _ngrx_store.Action<"[SPX / Toaster] Create success">>;
81
- declare const createWarning: _ngrx_store.ActionCreator<"[SPX / Toaster] Create warning", (props: {
82
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
83
- closeable?: boolean;
84
- messageText: string;
85
- title?: string;
86
- }) => {
87
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
88
- closeable?: boolean;
89
- messageText: string;
90
- title?: string;
91
- } & _ngrx_store.Action<"[SPX / Toaster] Create warning">>;
92
- declare const all: (Record<string, unknown> & _ngrx_store.Action<"[SPX / Toaster] Clear all">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Toaster] Clear all errors">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Toaster] Clear all errors and warnings">) | ({
93
- id: number;
94
- } & _ngrx_store.Action<"[SPX / Toaster] Clear message">) | ({
95
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
96
- closeable?: boolean;
97
- messageText: string;
98
- title?: string;
99
- } & _ngrx_store.Action<"[SPX / Toaster] Create error">) | ({
100
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
101
- closeable?: boolean;
102
- messageText: string;
103
- title?: string;
104
- } & _ngrx_store.Action<"[SPX / Toaster] Create info">) | ({
105
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
106
- closeable?: boolean;
107
- messageText: string;
108
- title?: string;
109
- } & _ngrx_store.Action<"[SPX / Toaster] Create success">) | ({
110
- autoClose?: number | SpxToasterAutoCloseSpeedEnum;
111
- closeable?: boolean;
112
- messageText: string;
113
- title?: string;
114
- } & _ngrx_store.Action<"[SPX / Toaster] Create warning">);
115
- type Actions = typeof all;
116
-
117
- type spxToaster_actions_d_Actions = Actions;
118
- declare const spxToaster_actions_d_clearAll: typeof clearAll;
119
- declare const spxToaster_actions_d_clearAllErrors: typeof clearAllErrors;
120
- declare const spxToaster_actions_d_clearAllErrorsAndWarnings: typeof clearAllErrorsAndWarnings;
121
- declare const spxToaster_actions_d_clearMessage: typeof clearMessage;
122
- declare const spxToaster_actions_d_createError: typeof createError;
123
- declare const spxToaster_actions_d_createInfo: typeof createInfo;
124
- declare const spxToaster_actions_d_createSuccess: typeof createSuccess;
125
- declare const spxToaster_actions_d_createWarning: typeof createWarning;
126
- declare namespace spxToaster_actions_d {
127
- export { spxToaster_actions_d_clearAll as clearAll, spxToaster_actions_d_clearAllErrors as clearAllErrors, spxToaster_actions_d_clearAllErrorsAndWarnings as clearAllErrorsAndWarnings, spxToaster_actions_d_clearMessage as clearMessage, spxToaster_actions_d_createError as createError, spxToaster_actions_d_createInfo as createInfo, spxToaster_actions_d_createSuccess as createSuccess, spxToaster_actions_d_createWarning as createWarning };
128
- export type { spxToaster_actions_d_Actions as Actions };
129
- }
42
+ declare const spxToasterActions: {
43
+ clearAll: _ngrx_store.ActionCreator<"[SpxToaster] ClearAll", () => _ngrx_store.Action<"[SpxToaster] ClearAll">>;
44
+ clearAllErrors: _ngrx_store.ActionCreator<"[SpxToaster] ClearAllErrors", () => _ngrx_store.Action<"[SpxToaster] ClearAllErrors">>;
45
+ clearAllErrorsAndWarnings: _ngrx_store.ActionCreator<"[SpxToaster] ClearAllErrorsAndWarnings", () => _ngrx_store.Action<"[SpxToaster] ClearAllErrorsAndWarnings">>;
46
+ clearMessage: _ngrx_store.ActionCreator<"[SpxToaster] ClearMessage", (props: {
47
+ id: number;
48
+ }) => {
49
+ id: number;
50
+ } & _ngrx_store.Action<"[SpxToaster] ClearMessage">>;
51
+ createError: _ngrx_store.ActionCreator<"[SpxToaster] CreateError", (props: {
52
+ autoClose?: number | SpxToasterAutoCloseSpeedEnum;
53
+ closeable?: boolean;
54
+ messageText: string;
55
+ title?: string;
56
+ }) => {
57
+ autoClose?: number | SpxToasterAutoCloseSpeedEnum;
58
+ closeable?: boolean;
59
+ messageText: string;
60
+ title?: string;
61
+ } & _ngrx_store.Action<"[SpxToaster] CreateError">>;
62
+ createInfo: _ngrx_store.ActionCreator<"[SpxToaster] CreateInfo", (props: {
63
+ autoClose?: number | SpxToasterAutoCloseSpeedEnum;
64
+ closeable?: boolean;
65
+ messageText: string;
66
+ title?: string;
67
+ }) => {
68
+ autoClose?: number | SpxToasterAutoCloseSpeedEnum;
69
+ closeable?: boolean;
70
+ messageText: string;
71
+ title?: string;
72
+ } & _ngrx_store.Action<"[SpxToaster] CreateInfo">>;
73
+ createSuccess: _ngrx_store.ActionCreator<"[SpxToaster] CreateSuccess", (props: {
74
+ autoClose?: number | SpxToasterAutoCloseSpeedEnum;
75
+ closeable?: boolean;
76
+ messageText: string;
77
+ title?: string;
78
+ }) => {
79
+ autoClose?: number | SpxToasterAutoCloseSpeedEnum;
80
+ closeable?: boolean;
81
+ messageText: string;
82
+ title?: string;
83
+ } & _ngrx_store.Action<"[SpxToaster] CreateSuccess">>;
84
+ createWarning: _ngrx_store.ActionCreator<"[SpxToaster] CreateWarning", (props: {
85
+ autoClose?: number | SpxToasterAutoCloseSpeedEnum;
86
+ closeable?: boolean;
87
+ messageText: string;
88
+ title?: string;
89
+ }) => {
90
+ autoClose?: number | SpxToasterAutoCloseSpeedEnum;
91
+ closeable?: boolean;
92
+ messageText: string;
93
+ title?: string;
94
+ } & _ngrx_store.Action<"[SpxToaster] CreateWarning">>;
95
+ };
130
96
 
131
97
  interface StateI {
132
98
  messages: SpxToasterMessageI[];
@@ -164,4 +130,4 @@ declare namespace spxToaster_reducer_d {
164
130
  };
165
131
  }
166
132
 
167
- export { SpxToasterAutoCloseSpeedEnum, SpxToasterComponent, SpxToasterMessageI, SpxToasterSeverityEnum, spxToaster_actions_d as spxToasterActions, spxToaster_initial_d as spxToasterInitial, spxToaster_reducer_d as spxToasterReducer, spxToaster_state_d as spxToasterState, toasterAutocloseSpeed };
133
+ export { SpxToasterAutoCloseSpeedEnum, SpxToasterComponent, SpxToasterMessageI, SpxToasterSeverityEnum, spxToasterActions, spxToaster_initial_d as spxToasterInitial, spxToaster_reducer_d as spxToasterReducer, spxToaster_state_d as spxToasterState, toasterAutocloseSpeed };
@@ -1,12 +1,12 @@
1
1
  import { NavController } from '@ionic/angular/standalone';
2
+ import { ActivatedRoute } from '@angular/router';
2
3
  import * as _ngrx_store from '@ngrx/store';
3
4
  import { Store } from '@ngrx/store';
4
- import { ActivatedRoute } from '@angular/router';
5
5
  import * as i0 from '@angular/core';
6
6
  import { SpxSeverityEnum } from '@softpak/components/spx-helpers';
7
7
  import { SafeStyle, DomSanitizer } from '@angular/platform-browser';
8
8
  import { Observable } from 'rxjs';
9
- import { Actions as Actions$2 } from '@ngrx/effects';
9
+ import { Actions as Actions$1 } from '@ngrx/effects';
10
10
 
11
11
  declare class SpxUpdatePageComponent {
12
12
  private readonly appStore;
@@ -46,44 +46,33 @@ declare class SpxUpdatePendingComponent {
46
46
 
47
47
  declare const spxUpdateUrl = "";
48
48
 
49
- declare const anUpdateIsReady: _ngrx_store.ActionCreator<"[SPX / Update Check] An update is ready", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Check] An update is ready">>;
50
- declare const clearError: _ngrx_store.ActionCreator<"[SPX / Update Check] Clear error", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Check] Clear error">>;
51
- declare const checkFailed: _ngrx_store.ActionCreator<"[SPX / Update Check] Error happened", (props: {
52
- startUpdateAgainAfterTimeout?: boolean;
53
- }) => {
54
- startUpdateAgainAfterTimeout?: boolean;
55
- } & _ngrx_store.Action<"[SPX / Update Check] Error happened">>;
56
- declare const initialize: _ngrx_store.ActionCreator<"[SPX / Update Check] Initialize", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Check] Initialize">>;
57
- declare const noUpdateWasFound: _ngrx_store.ActionCreator<"[SPX / Update Check] No update was found", (props: {
58
- startUpdateAgainAfterTimeout?: boolean;
59
- }) => {
60
- startUpdateAgainAfterTimeout?: boolean;
61
- } & _ngrx_store.Action<"[SPX / Update Check] No update was found">>;
62
- declare const notAvailableOnWeb: _ngrx_store.ActionCreator<"[SPX / Update Check] Not available on web", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Check] Not available on web">>;
63
- declare const runCheck: _ngrx_store.ActionCreator<"[SPX / Update Check] Run", (props: {
64
- forceWaitForUpdate?: boolean;
65
- }) => {
66
- forceWaitForUpdate?: boolean;
67
- } & _ngrx_store.Action<"[SPX / Update Check] Run">>;
68
- declare const all$1: (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Check] An update is ready">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Check] Clear error">) | ({
69
- startUpdateAgainAfterTimeout?: boolean;
70
- } & _ngrx_store.Action<"[SPX / Update Check] Error happened">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Check] Initialize">) | ({
71
- startUpdateAgainAfterTimeout?: boolean;
72
- } & _ngrx_store.Action<"[SPX / Update Check] No update was found">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Check] Not available on web">) | ({
73
- forceWaitForUpdate?: boolean;
74
- } & _ngrx_store.Action<"[SPX / Update Check] Run">);
75
- type Actions$1 = typeof all$1;
76
-
77
- declare const spxUpdateCheck_actions_d_anUpdateIsReady: typeof anUpdateIsReady;
78
- declare const spxUpdateCheck_actions_d_checkFailed: typeof checkFailed;
79
- declare const spxUpdateCheck_actions_d_clearError: typeof clearError;
80
- declare const spxUpdateCheck_actions_d_initialize: typeof initialize;
81
- declare const spxUpdateCheck_actions_d_noUpdateWasFound: typeof noUpdateWasFound;
82
- declare const spxUpdateCheck_actions_d_notAvailableOnWeb: typeof notAvailableOnWeb;
83
- declare const spxUpdateCheck_actions_d_runCheck: typeof runCheck;
49
+ declare const spxUpdateCheckActions: {
50
+ anUpdateIsReady: _ngrx_store.ActionCreator<"[SpxUpdateCheck] anUpdateIsReady", () => _ngrx_store.Action<"[SpxUpdateCheck] anUpdateIsReady">>;
51
+ checkFailed: _ngrx_store.ActionCreator<"[SpxUpdateCheck] checkFailed", (props: {
52
+ startUpdateAgainAfterTimeout?: boolean;
53
+ }) => {
54
+ startUpdateAgainAfterTimeout?: boolean;
55
+ } & _ngrx_store.Action<"[SpxUpdateCheck] checkFailed">>;
56
+ clearError: _ngrx_store.ActionCreator<"[SpxUpdateCheck] clearError", () => _ngrx_store.Action<"[SpxUpdateCheck] clearError">>;
57
+ initialize: _ngrx_store.ActionCreator<"[SpxUpdateCheck] initialize", () => _ngrx_store.Action<"[SpxUpdateCheck] initialize">>;
58
+ noUpdateWasFound: _ngrx_store.ActionCreator<"[SpxUpdateCheck] noUpdateWasFound", (props: {
59
+ startUpdateAgainAfterTimeout?: boolean;
60
+ }) => {
61
+ startUpdateAgainAfterTimeout?: boolean;
62
+ } & _ngrx_store.Action<"[SpxUpdateCheck] noUpdateWasFound">>;
63
+ notAvailableOnWeb: _ngrx_store.ActionCreator<"[SpxUpdateCheck] notAvailableOnWeb", () => _ngrx_store.Action<"[SpxUpdateCheck] notAvailableOnWeb">>;
64
+ runCheck: _ngrx_store.ActionCreator<"[SpxUpdateCheck] runCheck", (props: {
65
+ forceWaitForUpdate?: boolean;
66
+ }) => {
67
+ forceWaitForUpdate?: boolean;
68
+ } & _ngrx_store.Action<"[SpxUpdateCheck] runCheck">>;
69
+ };
70
+
71
+ declare const spxUpdateCheck_actions_d_spxUpdateCheckActions: typeof spxUpdateCheckActions;
84
72
  declare namespace spxUpdateCheck_actions_d {
85
- export { spxUpdateCheck_actions_d_anUpdateIsReady as anUpdateIsReady, spxUpdateCheck_actions_d_checkFailed as checkFailed, spxUpdateCheck_actions_d_clearError as clearError, spxUpdateCheck_actions_d_initialize as initialize, spxUpdateCheck_actions_d_noUpdateWasFound as noUpdateWasFound, spxUpdateCheck_actions_d_notAvailableOnWeb as notAvailableOnWeb, spxUpdateCheck_actions_d_runCheck as runCheck };
86
- export type { Actions$1 as Actions };
73
+ export {
74
+ spxUpdateCheck_actions_d_spxUpdateCheckActions as spxUpdateCheckActions,
75
+ };
87
76
  }
88
77
 
89
78
  declare class Effects$1 {
@@ -141,7 +130,7 @@ declare const hasBeenDownloaded: _ngrx_store.ActionCreator<"[SPX / Update Pendin
141
130
  declare const hasBeenInstalled: _ngrx_store.ActionCreator<"[SPX / Update Pending] Has been installed", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Has been installed">>;
142
131
  declare const postpone: _ngrx_store.ActionCreator<"[SPX / Update Pending] Postpone", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Postpone">>;
143
132
  declare const postponeExpired: _ngrx_store.ActionCreator<"[SPX / Update Pending] Postpone expired", (props: Record<string, unknown>) => Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Postpone expired">>;
144
- declare const all: (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Has been downloaded">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Has been installed">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Postpone">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Postpone expired">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Accept update">);
133
+ declare const all: (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Accept update">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Has been downloaded">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Has been installed">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Postpone">) | (Record<string, unknown> & _ngrx_store.Action<"[SPX / Update Pending] Postpone expired">);
145
134
  type Actions = typeof all;
146
135
 
147
136
  type spxUpdatePending_actions_d_Actions = Actions;
@@ -157,7 +146,7 @@ declare namespace spxUpdatePending_actions_d {
157
146
 
158
147
  declare class Effects {
159
148
  private readonly actions$;
160
- constructor(actions$: Actions$2);
149
+ constructor(actions$: Actions$1);
161
150
  whenAccepted$: Observable<any>;
162
151
  static ɵfac: i0.ɵɵFactoryDeclaration<Effects, never>;
163
152
  static ɵprov: i0.ɵɵInjectableDeclaration<Effects>;