@incodetech/core 0.0.0-dev-20260429-71d4c48 → 0.0.0-dev-20260429-35afdca

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.
@@ -1,6 +1,6 @@
1
1
  import { t as Manager } from "./Manager-uUcXOI3u.js";
2
2
  import { t as ActorRefFrom } from "./Actor-BW-sqJw1.js";
3
- import * as xstate863 from "xstate";
3
+ import * as xstate1090 from "xstate";
4
4
 
5
5
  //#region src/modules/identity-reuse/types.d.ts
6
6
 
@@ -32,7 +32,7 @@ type IdentityReuseContext = {
32
32
  type IdentityReuseInput = {
33
33
  config: IdentityReuseConfig;
34
34
  };
35
- declare const identityReuseMachine: xstate863.StateMachine<IdentityReuseContext, {
35
+ declare const identityReuseMachine: xstate1090.StateMachine<IdentityReuseContext, {
36
36
  type: "LOAD";
37
37
  } | {
38
38
  type: "START_SELECTION";
@@ -48,49 +48,49 @@ declare const identityReuseMachine: xstate863.StateMachine<IdentityReuseContext,
48
48
  } | {
49
49
  type: "RETRY";
50
50
  }, {
51
- [x: string]: xstate863.ActorRefFromLogic<xstate863.PromiseActorLogic<FetchCandidatesResponse, void, xstate863.EventObject>> | xstate863.ActorRefFromLogic<xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>> | undefined;
52
- }, xstate863.Values<{
51
+ [x: string]: xstate1090.ActorRefFromLogic<xstate1090.PromiseActorLogic<FetchCandidatesResponse, void, xstate1090.EventObject>> | xstate1090.ActorRefFromLogic<xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>> | undefined;
52
+ }, xstate1090.Values<{
53
53
  fetchCandidates: {
54
54
  src: "fetchCandidates";
55
- logic: xstate863.PromiseActorLogic<FetchCandidatesResponse, void, xstate863.EventObject>;
55
+ logic: xstate1090.PromiseActorLogic<FetchCandidatesResponse, void, xstate1090.EventObject>;
56
56
  id: string | undefined;
57
57
  };
58
58
  submitContinue: {
59
59
  src: "submitContinue";
60
- logic: xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>;
60
+ logic: xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>;
61
61
  id: string | undefined;
62
62
  };
63
63
  submitSkip: {
64
64
  src: "submitSkip";
65
- logic: xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>;
65
+ logic: xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>;
66
66
  id: string | undefined;
67
67
  };
68
- }>, xstate863.Values<{
68
+ }>, xstate1090.Values<{
69
69
  setError: {
70
70
  type: "setError";
71
- params: xstate863.NonReducibleUnknown;
71
+ params: xstate1090.NonReducibleUnknown;
72
72
  };
73
73
  clearError: {
74
74
  type: "clearError";
75
- params: xstate863.NonReducibleUnknown;
75
+ params: xstate1090.NonReducibleUnknown;
76
76
  };
77
77
  setCandidates: {
78
78
  type: "setCandidates";
79
- params: xstate863.NonReducibleUnknown;
79
+ params: xstate1090.NonReducibleUnknown;
80
80
  };
81
81
  setSelectedCandidate: {
82
82
  type: "setSelectedCandidate";
83
- params: xstate863.NonReducibleUnknown;
83
+ params: xstate1090.NonReducibleUnknown;
84
84
  };
85
85
  autoSelectSingleCandidate: {
86
86
  type: "autoSelectSingleCandidate";
87
- params: xstate863.NonReducibleUnknown;
87
+ params: xstate1090.NonReducibleUnknown;
88
88
  };
89
89
  clearSelection: {
90
90
  type: "clearSelection";
91
- params: xstate863.NonReducibleUnknown;
91
+ params: xstate1090.NonReducibleUnknown;
92
92
  };
93
- }>, xstate863.Values<{
93
+ }>, xstate1090.Values<{
94
94
  hasMultipleCandidates: {
95
95
  type: "hasMultipleCandidates";
96
96
  params: unknown;
@@ -105,7 +105,7 @@ declare const identityReuseMachine: xstate863.StateMachine<IdentityReuseContext,
105
105
  };
106
106
  }>, never, "error" | "idle" | "finished" | "loading" | "submitContinue" | "submitSkip" | "oneCandidateFound" | "noCandidatesFound" | {
107
107
  multiCandidatesFound: "noCandidateSelected" | "choosingCandidate" | "candidateSelected";
108
- }, string, IdentityReuseInput, xstate863.NonReducibleUnknown, xstate863.EventObject, xstate863.MetaObject, {
108
+ }, string, IdentityReuseInput, xstate1090.NonReducibleUnknown, xstate1090.EventObject, xstate1090.MetaObject, {
109
109
  readonly id: "identityReuse";
110
110
  readonly initial: "idle";
111
111
  readonly context: ({
@@ -114,75 +114,75 @@ declare const identityReuseMachine: xstate863.StateMachine<IdentityReuseContext,
114
114
  spawn: {
115
115
  <TSrc extends "fetchCandidates" | "submitContinue" | "submitSkip">(logic: TSrc, ...[options]: ({
116
116
  src: "fetchCandidates";
117
- logic: xstate863.PromiseActorLogic<FetchCandidatesResponse, void, xstate863.EventObject>;
117
+ logic: xstate1090.PromiseActorLogic<FetchCandidatesResponse, void, xstate1090.EventObject>;
118
118
  id: string | undefined;
119
119
  } extends infer T ? T extends {
120
120
  src: "fetchCandidates";
121
- logic: xstate863.PromiseActorLogic<FetchCandidatesResponse, void, xstate863.EventObject>;
121
+ logic: xstate1090.PromiseActorLogic<FetchCandidatesResponse, void, xstate1090.EventObject>;
122
122
  id: string | undefined;
123
123
  } ? T extends {
124
124
  src: TSrc;
125
- } ? xstate863.ConditionalRequired<[options?: ({
125
+ } ? xstate1090.ConditionalRequired<[options?: ({
126
126
  id?: T["id"] | undefined;
127
127
  systemId?: string;
128
- input?: xstate863.InputFrom<T["logic"]> | undefined;
128
+ input?: xstate1090.InputFrom<T["logic"]> | undefined;
129
129
  syncSnapshot?: boolean;
130
- } & { [K in xstate863.RequiredActorOptions<T>]: unknown }) | undefined], xstate863.IsNotNever<xstate863.RequiredActorOptions<T>>> : never : never : never) | ({
130
+ } & { [K in xstate1090.RequiredActorOptions<T>]: unknown }) | undefined], xstate1090.IsNotNever<xstate1090.RequiredActorOptions<T>>> : never : never : never) | ({
131
131
  src: "submitContinue";
132
- logic: xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>;
132
+ logic: xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>;
133
133
  id: string | undefined;
134
134
  } extends infer T_1 ? T_1 extends {
135
135
  src: "submitContinue";
136
- logic: xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>;
136
+ logic: xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>;
137
137
  id: string | undefined;
138
138
  } ? T_1 extends {
139
139
  src: TSrc;
140
- } ? xstate863.ConditionalRequired<[options?: ({
140
+ } ? xstate1090.ConditionalRequired<[options?: ({
141
141
  id?: T_1["id"] | undefined;
142
142
  systemId?: string;
143
- input?: xstate863.InputFrom<T_1["logic"]> | undefined;
143
+ input?: xstate1090.InputFrom<T_1["logic"]> | undefined;
144
144
  syncSnapshot?: boolean;
145
- } & { [K_1 in xstate863.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate863.IsNotNever<xstate863.RequiredActorOptions<T_1>>> : never : never : never) | ({
145
+ } & { [K_1 in xstate1090.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate1090.IsNotNever<xstate1090.RequiredActorOptions<T_1>>> : never : never : never) | ({
146
146
  src: "submitSkip";
147
- logic: xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>;
147
+ logic: xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>;
148
148
  id: string | undefined;
149
149
  } extends infer T_2 ? T_2 extends {
150
150
  src: "submitSkip";
151
- logic: xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>;
151
+ logic: xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>;
152
152
  id: string | undefined;
153
153
  } ? T_2 extends {
154
154
  src: TSrc;
155
- } ? xstate863.ConditionalRequired<[options?: ({
155
+ } ? xstate1090.ConditionalRequired<[options?: ({
156
156
  id?: T_2["id"] | undefined;
157
157
  systemId?: string;
158
- input?: xstate863.InputFrom<T_2["logic"]> | undefined;
158
+ input?: xstate1090.InputFrom<T_2["logic"]> | undefined;
159
159
  syncSnapshot?: boolean;
160
- } & { [K_2 in xstate863.RequiredActorOptions<T_2>]: unknown }) | undefined], xstate863.IsNotNever<xstate863.RequiredActorOptions<T_2>>> : never : never : never)): xstate863.ActorRefFromLogic<xstate863.GetConcreteByKey<xstate863.Values<{
160
+ } & { [K_2 in xstate1090.RequiredActorOptions<T_2>]: unknown }) | undefined], xstate1090.IsNotNever<xstate1090.RequiredActorOptions<T_2>>> : never : never : never)): xstate1090.ActorRefFromLogic<xstate1090.GetConcreteByKey<xstate1090.Values<{
161
161
  fetchCandidates: {
162
162
  src: "fetchCandidates";
163
- logic: xstate863.PromiseActorLogic<FetchCandidatesResponse, void, xstate863.EventObject>;
163
+ logic: xstate1090.PromiseActorLogic<FetchCandidatesResponse, void, xstate1090.EventObject>;
164
164
  id: string | undefined;
165
165
  };
166
166
  submitContinue: {
167
167
  src: "submitContinue";
168
- logic: xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>;
168
+ logic: xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>;
169
169
  id: string | undefined;
170
170
  };
171
171
  submitSkip: {
172
172
  src: "submitSkip";
173
- logic: xstate863.PromiseActorLogic<SubmitResponse, void, xstate863.EventObject>;
173
+ logic: xstate1090.PromiseActorLogic<SubmitResponse, void, xstate1090.EventObject>;
174
174
  id: string | undefined;
175
175
  };
176
176
  }>, "src", TSrc>["logic"]>;
177
- <TLogic extends xstate863.AnyActorLogic>(src: TLogic, ...[options]: xstate863.ConditionalRequired<[options?: ({
177
+ <TLogic extends xstate1090.AnyActorLogic>(src: TLogic, ...[options]: xstate1090.ConditionalRequired<[options?: ({
178
178
  id?: never;
179
179
  systemId?: string;
180
- input?: xstate863.InputFrom<TLogic> | undefined;
180
+ input?: xstate1090.InputFrom<TLogic> | undefined;
181
181
  syncSnapshot?: boolean;
182
- } & { [K in xstate863.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate863.IsNotNever<xstate863.RequiredLogicInput<TLogic>>>): xstate863.ActorRefFromLogic<TLogic>;
182
+ } & { [K in xstate1090.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate1090.IsNotNever<xstate1090.RequiredLogicInput<TLogic>>>): xstate1090.ActorRefFromLogic<TLogic>;
183
183
  };
184
184
  input: IdentityReuseInput;
185
- self: xstate863.ActorRef<xstate863.MachineSnapshot<IdentityReuseContext, {
185
+ self: xstate1090.ActorRef<xstate1090.MachineSnapshot<IdentityReuseContext, {
186
186
  type: "LOAD";
187
187
  } | {
188
188
  type: "START_SELECTION";
@@ -197,7 +197,7 @@ declare const identityReuseMachine: xstate863.StateMachine<IdentityReuseContext,
197
197
  type: "SKIP";
198
198
  } | {
199
199
  type: "RETRY";
200
- }, Record<string, xstate863.AnyActorRef | undefined>, xstate863.StateValue, string, unknown, any, any>, {
200
+ }, Record<string, xstate1090.AnyActorRef | undefined>, xstate1090.StateValue, string, unknown, any, any>, {
201
201
  type: "LOAD";
202
202
  } | {
203
203
  type: "START_SELECTION";
@@ -212,7 +212,7 @@ declare const identityReuseMachine: xstate863.StateMachine<IdentityReuseContext,
212
212
  type: "SKIP";
213
213
  } | {
214
214
  type: "RETRY";
215
- }, xstate863.AnyEventObject>;
215
+ }, xstate1090.AnyEventObject>;
216
216
  }) => {
217
217
  config: IdentityReuseConfig;
218
218
  currentOrganizationName: undefined;
@@ -3,7 +3,7 @@ import "./Actor-BW-sqJw1.js";
3
3
  import "./camera-8mZXnNHU.js";
4
4
  import "./types-ClH8UoEK.js";
5
5
  import { a as RegulationTypes } from "./types-CqgOGNlq.js";
6
- import * as xstate325 from "xstate";
6
+ import * as xstate565 from "xstate";
7
7
 
8
8
  //#region src/modules/mandatory-consent/types.d.ts
9
9
  type MandatoryConsentConfig = {
@@ -30,7 +30,7 @@ type MandatoryConsentContext = {
30
30
  type MandatoryConsentInput = {
31
31
  config: MandatoryConsentConfig;
32
32
  };
33
- declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentContext, {
33
+ declare const mandatoryConsentMachine: xstate565.StateMachine<MandatoryConsentContext, {
34
34
  type: "LOAD";
35
35
  } | {
36
36
  type: "TOGGLE";
@@ -43,53 +43,53 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
43
43
  } | {
44
44
  type: "RESET";
45
45
  }, {
46
- [x: string]: xstate325.ActorRefFromLogic<xstate325.PromiseActorLogic<FetchMandatoryConsentResponse, {
46
+ [x: string]: xstate565.ActorRefFromLogic<xstate565.PromiseActorLogic<FetchMandatoryConsentResponse, {
47
47
  config: MandatoryConsentConfig;
48
- }, xstate325.EventObject>> | xstate325.ActorRefFromLogic<xstate325.PromiseActorLogic<void, {
48
+ }, xstate565.EventObject>> | xstate565.ActorRefFromLogic<xstate565.PromiseActorLogic<void, {
49
49
  consentId: string;
50
50
  isSigned: boolean;
51
- }, xstate325.EventObject>> | undefined;
52
- }, xstate325.Values<{
51
+ }, xstate565.EventObject>> | undefined;
52
+ }, xstate565.Values<{
53
53
  fetchConsent: {
54
54
  src: "fetchConsent";
55
- logic: xstate325.PromiseActorLogic<FetchMandatoryConsentResponse, {
55
+ logic: xstate565.PromiseActorLogic<FetchMandatoryConsentResponse, {
56
56
  config: MandatoryConsentConfig;
57
- }, xstate325.EventObject>;
57
+ }, xstate565.EventObject>;
58
58
  id: string | undefined;
59
59
  };
60
60
  submitConsent: {
61
61
  src: "submitConsent";
62
- logic: xstate325.PromiseActorLogic<void, {
62
+ logic: xstate565.PromiseActorLogic<void, {
63
63
  consentId: string;
64
64
  isSigned: boolean;
65
- }, xstate325.EventObject>;
65
+ }, xstate565.EventObject>;
66
66
  id: string | undefined;
67
67
  };
68
- }>, xstate325.Values<{
68
+ }>, xstate565.Values<{
69
69
  setConsent: {
70
70
  type: "setConsent";
71
- params: xstate325.NonReducibleUnknown;
72
- };
73
- toggleSigned: {
74
- type: "toggleSigned";
75
- params: xstate325.NonReducibleUnknown;
71
+ params: xstate565.NonReducibleUnknown;
76
72
  };
77
73
  setError: {
78
74
  type: "setError";
79
- params: xstate325.NonReducibleUnknown;
75
+ params: xstate565.NonReducibleUnknown;
76
+ };
77
+ toggleSigned: {
78
+ type: "toggleSigned";
79
+ params: xstate565.NonReducibleUnknown;
80
80
  };
81
81
  clearError: {
82
82
  type: "clearError";
83
- params: xstate325.NonReducibleUnknown;
83
+ params: xstate565.NonReducibleUnknown;
84
84
  };
85
85
  resetContext: {
86
86
  type: "resetContext";
87
- params: xstate325.NonReducibleUnknown;
87
+ params: xstate565.NonReducibleUnknown;
88
88
  };
89
89
  }>, {
90
90
  type: "canSubmit";
91
91
  params: unknown;
92
- }, never, "error" | "idle" | "closed" | "finished" | "loading" | "display" | "submitting", string, MandatoryConsentInput, xstate325.NonReducibleUnknown, xstate325.EventObject, xstate325.MetaObject, {
92
+ }, never, "error" | "idle" | "closed" | "finished" | "loading" | "submitting" | "display", string, MandatoryConsentInput, xstate565.NonReducibleUnknown, xstate565.EventObject, xstate565.MetaObject, {
93
93
  readonly id: "mandatoryConsent";
94
94
  readonly initial: "idle";
95
95
  readonly context: ({
@@ -98,70 +98,70 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
98
98
  spawn: {
99
99
  <TSrc extends "fetchConsent" | "submitConsent">(logic: TSrc, ...[options]: ({
100
100
  src: "fetchConsent";
101
- logic: xstate325.PromiseActorLogic<FetchMandatoryConsentResponse, {
101
+ logic: xstate565.PromiseActorLogic<FetchMandatoryConsentResponse, {
102
102
  config: MandatoryConsentConfig;
103
- }, xstate325.EventObject>;
103
+ }, xstate565.EventObject>;
104
104
  id: string | undefined;
105
105
  } extends infer T ? T extends {
106
106
  src: "fetchConsent";
107
- logic: xstate325.PromiseActorLogic<FetchMandatoryConsentResponse, {
107
+ logic: xstate565.PromiseActorLogic<FetchMandatoryConsentResponse, {
108
108
  config: MandatoryConsentConfig;
109
- }, xstate325.EventObject>;
109
+ }, xstate565.EventObject>;
110
110
  id: string | undefined;
111
111
  } ? T extends {
112
112
  src: TSrc;
113
- } ? xstate325.ConditionalRequired<[options?: ({
113
+ } ? xstate565.ConditionalRequired<[options?: ({
114
114
  id?: T["id"] | undefined;
115
115
  systemId?: string;
116
- input?: xstate325.InputFrom<T["logic"]> | undefined;
116
+ input?: xstate565.InputFrom<T["logic"]> | undefined;
117
117
  syncSnapshot?: boolean;
118
- } & { [K in xstate325.RequiredActorOptions<T>]: unknown }) | undefined], xstate325.IsNotNever<xstate325.RequiredActorOptions<T>>> : never : never : never) | ({
118
+ } & { [K in xstate565.RequiredActorOptions<T>]: unknown }) | undefined], xstate565.IsNotNever<xstate565.RequiredActorOptions<T>>> : never : never : never) | ({
119
119
  src: "submitConsent";
120
- logic: xstate325.PromiseActorLogic<void, {
120
+ logic: xstate565.PromiseActorLogic<void, {
121
121
  consentId: string;
122
122
  isSigned: boolean;
123
- }, xstate325.EventObject>;
123
+ }, xstate565.EventObject>;
124
124
  id: string | undefined;
125
125
  } extends infer T_1 ? T_1 extends {
126
126
  src: "submitConsent";
127
- logic: xstate325.PromiseActorLogic<void, {
127
+ logic: xstate565.PromiseActorLogic<void, {
128
128
  consentId: string;
129
129
  isSigned: boolean;
130
- }, xstate325.EventObject>;
130
+ }, xstate565.EventObject>;
131
131
  id: string | undefined;
132
132
  } ? T_1 extends {
133
133
  src: TSrc;
134
- } ? xstate325.ConditionalRequired<[options?: ({
134
+ } ? xstate565.ConditionalRequired<[options?: ({
135
135
  id?: T_1["id"] | undefined;
136
136
  systemId?: string;
137
- input?: xstate325.InputFrom<T_1["logic"]> | undefined;
137
+ input?: xstate565.InputFrom<T_1["logic"]> | undefined;
138
138
  syncSnapshot?: boolean;
139
- } & { [K_1 in xstate325.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate325.IsNotNever<xstate325.RequiredActorOptions<T_1>>> : never : never : never)): xstate325.ActorRefFromLogic<xstate325.GetConcreteByKey<xstate325.Values<{
139
+ } & { [K_1 in xstate565.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate565.IsNotNever<xstate565.RequiredActorOptions<T_1>>> : never : never : never)): xstate565.ActorRefFromLogic<xstate565.GetConcreteByKey<xstate565.Values<{
140
140
  fetchConsent: {
141
141
  src: "fetchConsent";
142
- logic: xstate325.PromiseActorLogic<FetchMandatoryConsentResponse, {
142
+ logic: xstate565.PromiseActorLogic<FetchMandatoryConsentResponse, {
143
143
  config: MandatoryConsentConfig;
144
- }, xstate325.EventObject>;
144
+ }, xstate565.EventObject>;
145
145
  id: string | undefined;
146
146
  };
147
147
  submitConsent: {
148
148
  src: "submitConsent";
149
- logic: xstate325.PromiseActorLogic<void, {
149
+ logic: xstate565.PromiseActorLogic<void, {
150
150
  consentId: string;
151
151
  isSigned: boolean;
152
- }, xstate325.EventObject>;
152
+ }, xstate565.EventObject>;
153
153
  id: string | undefined;
154
154
  };
155
155
  }>, "src", TSrc>["logic"]>;
156
- <TLogic extends xstate325.AnyActorLogic>(src: TLogic, ...[options]: xstate325.ConditionalRequired<[options?: ({
156
+ <TLogic extends xstate565.AnyActorLogic>(src: TLogic, ...[options]: xstate565.ConditionalRequired<[options?: ({
157
157
  id?: never;
158
158
  systemId?: string;
159
- input?: xstate325.InputFrom<TLogic> | undefined;
159
+ input?: xstate565.InputFrom<TLogic> | undefined;
160
160
  syncSnapshot?: boolean;
161
- } & { [K in xstate325.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate325.IsNotNever<xstate325.RequiredLogicInput<TLogic>>>): xstate325.ActorRefFromLogic<TLogic>;
161
+ } & { [K in xstate565.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate565.IsNotNever<xstate565.RequiredLogicInput<TLogic>>>): xstate565.ActorRefFromLogic<TLogic>;
162
162
  };
163
163
  input: MandatoryConsentInput;
164
- self: xstate325.ActorRef<xstate325.MachineSnapshot<MandatoryConsentContext, {
164
+ self: xstate565.ActorRef<xstate565.MachineSnapshot<MandatoryConsentContext, {
165
165
  type: "LOAD";
166
166
  } | {
167
167
  type: "TOGGLE";
@@ -173,7 +173,7 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
173
173
  type: "RETRY";
174
174
  } | {
175
175
  type: "RESET";
176
- }, Record<string, xstate325.AnyActorRef | undefined>, xstate325.StateValue, string, unknown, any, any>, {
176
+ }, Record<string, xstate565.AnyActorRef | undefined>, xstate565.StateValue, string, unknown, any, any>, {
177
177
  type: "LOAD";
178
178
  } | {
179
179
  type: "TOGGLE";
@@ -185,7 +185,7 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
185
185
  type: "RETRY";
186
186
  } | {
187
187
  type: "RESET";
188
- }, xstate325.AnyEventObject>;
188
+ }, xstate565.AnyEventObject>;
189
189
  }) => {
190
190
  config: MandatoryConsentConfig;
191
191
  consent: undefined;
@@ -222,7 +222,7 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
222
222
  } | {
223
223
  type: "RESET";
224
224
  };
225
- self: xstate325.ActorRef<xstate325.MachineSnapshot<MandatoryConsentContext, {
225
+ self: xstate565.ActorRef<xstate565.MachineSnapshot<MandatoryConsentContext, {
226
226
  type: "LOAD";
227
227
  } | {
228
228
  type: "TOGGLE";
@@ -234,7 +234,7 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
234
234
  type: "RETRY";
235
235
  } | {
236
236
  type: "RESET";
237
- }, Record<string, xstate325.AnyActorRef>, xstate325.StateValue, string, unknown, any, any>, {
237
+ }, Record<string, xstate565.AnyActorRef>, xstate565.StateValue, string, unknown, any, any>, {
238
238
  type: "LOAD";
239
239
  } | {
240
240
  type: "TOGGLE";
@@ -246,7 +246,7 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
246
246
  type: "RETRY";
247
247
  } | {
248
248
  type: "RESET";
249
- }, xstate325.AnyEventObject>;
249
+ }, xstate565.AnyEventObject>;
250
250
  }) => {
251
251
  config: MandatoryConsentConfig;
252
252
  };
@@ -299,7 +299,7 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
299
299
  } | {
300
300
  type: "RESET";
301
301
  };
302
- self: xstate325.ActorRef<xstate325.MachineSnapshot<MandatoryConsentContext, {
302
+ self: xstate565.ActorRef<xstate565.MachineSnapshot<MandatoryConsentContext, {
303
303
  type: "LOAD";
304
304
  } | {
305
305
  type: "TOGGLE";
@@ -311,7 +311,7 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
311
311
  type: "RETRY";
312
312
  } | {
313
313
  type: "RESET";
314
- }, Record<string, xstate325.AnyActorRef>, xstate325.StateValue, string, unknown, any, any>, {
314
+ }, Record<string, xstate565.AnyActorRef>, xstate565.StateValue, string, unknown, any, any>, {
315
315
  type: "LOAD";
316
316
  } | {
317
317
  type: "TOGGLE";
@@ -323,7 +323,7 @@ declare const mandatoryConsentMachine: xstate325.StateMachine<MandatoryConsentCo
323
323
  type: "RETRY";
324
324
  } | {
325
325
  type: "RESET";
326
- }, xstate325.AnyEventObject>;
326
+ }, xstate565.AnyEventObject>;
327
327
  }) => {
328
328
  consentId: string;
329
329
  isSigned: boolean;