@incodetech/core 0.0.0-dev-20260416-64c00e5 → 0.0.0-dev-20260416-e8e67a4

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.
@@ -2,10 +2,10 @@ import { t as Manager } from "./Manager-C1r-74H0.js";
2
2
  import "./Actor-Cqaw-2DF.js";
3
3
  import "./camera-C1Lz6NFz.js";
4
4
  import { n as DocumentUploadContext, r as DocumentUploadInput, t as DocumentUploadConfig } from "./types-DGwsRYfm.js";
5
- import * as xstate466 from "xstate";
5
+ import * as xstate72 from "xstate";
6
6
 
7
7
  //#region src/modules/document-upload/documentUploadStateMachine.d.ts
8
- declare const documentUploadMachine: xstate466.StateMachine<DocumentUploadContext, {
8
+ declare const documentUploadMachine: xstate72.StateMachine<DocumentUploadContext, {
9
9
  type: "START";
10
10
  } | {
11
11
  type: "CAPTURE";
@@ -18,52 +18,52 @@ declare const documentUploadMachine: xstate466.StateMachine<DocumentUploadContex
18
18
  } | {
19
19
  type: "CLOSE";
20
20
  }, {
21
- [x: string]: xstate466.ActorRefFromLogic<xstate466.PromiseActorLogic<void, {
21
+ [x: string]: xstate72.ActorRefFromLogic<xstate72.PromiseActorLogic<void, {
22
22
  imageBase64: string;
23
23
  documentType: string;
24
24
  onProgress: (progress: number) => void;
25
- }, xstate466.EventObject>> | xstate466.ActorRefFromLogic<xstate466.PromiseActorLogic<MediaStream, void, xstate466.EventObject>> | undefined;
26
- }, xstate466.Values<{
25
+ }, xstate72.EventObject>> | xstate72.ActorRefFromLogic<xstate72.PromiseActorLogic<MediaStream, void, xstate72.EventObject>> | undefined;
26
+ }, xstate72.Values<{
27
27
  uploadDocument: {
28
28
  src: "uploadDocument";
29
- logic: xstate466.PromiseActorLogic<void, {
29
+ logic: xstate72.PromiseActorLogic<void, {
30
30
  imageBase64: string;
31
31
  documentType: string;
32
32
  onProgress: (progress: number) => void;
33
- }, xstate466.EventObject>;
33
+ }, xstate72.EventObject>;
34
34
  id: string | undefined;
35
35
  };
36
36
  initCamera: {
37
37
  src: "initCamera";
38
- logic: xstate466.PromiseActorLogic<MediaStream, void, xstate466.EventObject>;
38
+ logic: xstate72.PromiseActorLogic<MediaStream, void, xstate72.EventObject>;
39
39
  id: string | undefined;
40
40
  };
41
- }>, xstate466.Values<{
41
+ }>, xstate72.Values<{
42
42
  setError: {
43
43
  type: "setError";
44
- params: xstate466.NonReducibleUnknown;
44
+ params: xstate72.NonReducibleUnknown;
45
45
  };
46
46
  clearError: {
47
47
  type: "clearError";
48
- params: xstate466.NonReducibleUnknown;
48
+ params: xstate72.NonReducibleUnknown;
49
49
  };
50
50
  setStream: {
51
51
  type: "setStream";
52
- params: xstate466.NonReducibleUnknown;
52
+ params: xstate72.NonReducibleUnknown;
53
53
  };
54
54
  setImageAndClearError: {
55
55
  type: "setImageAndClearError";
56
- params: xstate466.NonReducibleUnknown;
56
+ params: xstate72.NonReducibleUnknown;
57
57
  };
58
58
  setProgress: {
59
59
  type: "setProgress";
60
- params: xstate466.NonReducibleUnknown;
60
+ params: xstate72.NonReducibleUnknown;
61
61
  };
62
62
  stopStream: {
63
63
  type: "stopStream";
64
- params: xstate466.NonReducibleUnknown;
64
+ params: xstate72.NonReducibleUnknown;
65
65
  };
66
- }>, never, never, "error" | "idle" | "uploading" | "closed" | "finished" | "initCamera" | "capturing", string, DocumentUploadInput, xstate466.NonReducibleUnknown, xstate466.EventObject, xstate466.MetaObject, {
66
+ }>, never, never, "error" | "idle" | "uploading" | "closed" | "finished" | "initCamera" | "capturing", string, DocumentUploadInput, xstate72.NonReducibleUnknown, xstate72.EventObject, xstate72.MetaObject, {
67
67
  readonly id: "documentUpload";
68
68
  readonly initial: "idle";
69
69
  readonly context: ({
@@ -72,67 +72,67 @@ declare const documentUploadMachine: xstate466.StateMachine<DocumentUploadContex
72
72
  spawn: {
73
73
  <TSrc extends "uploadDocument" | "initCamera">(logic: TSrc, ...[options]: ({
74
74
  src: "uploadDocument";
75
- logic: xstate466.PromiseActorLogic<void, {
75
+ logic: xstate72.PromiseActorLogic<void, {
76
76
  imageBase64: string;
77
77
  documentType: string;
78
78
  onProgress: (progress: number) => void;
79
- }, xstate466.EventObject>;
79
+ }, xstate72.EventObject>;
80
80
  id: string | undefined;
81
81
  } extends infer T ? T extends {
82
82
  src: "uploadDocument";
83
- logic: xstate466.PromiseActorLogic<void, {
83
+ logic: xstate72.PromiseActorLogic<void, {
84
84
  imageBase64: string;
85
85
  documentType: string;
86
86
  onProgress: (progress: number) => void;
87
- }, xstate466.EventObject>;
87
+ }, xstate72.EventObject>;
88
88
  id: string | undefined;
89
89
  } ? T extends {
90
90
  src: TSrc;
91
- } ? xstate466.ConditionalRequired<[options?: ({
91
+ } ? xstate72.ConditionalRequired<[options?: ({
92
92
  id?: T["id"] | undefined;
93
93
  systemId?: string;
94
- input?: xstate466.InputFrom<T["logic"]> | undefined;
94
+ input?: xstate72.InputFrom<T["logic"]> | undefined;
95
95
  syncSnapshot?: boolean;
96
- } & { [K in xstate466.RequiredActorOptions<T>]: unknown }) | undefined], xstate466.IsNotNever<xstate466.RequiredActorOptions<T>>> : never : never : never) | ({
96
+ } & { [K in xstate72.RequiredActorOptions<T>]: unknown }) | undefined], xstate72.IsNotNever<xstate72.RequiredActorOptions<T>>> : never : never : never) | ({
97
97
  src: "initCamera";
98
- logic: xstate466.PromiseActorLogic<MediaStream, void, xstate466.EventObject>;
98
+ logic: xstate72.PromiseActorLogic<MediaStream, void, xstate72.EventObject>;
99
99
  id: string | undefined;
100
100
  } extends infer T_1 ? T_1 extends {
101
101
  src: "initCamera";
102
- logic: xstate466.PromiseActorLogic<MediaStream, void, xstate466.EventObject>;
102
+ logic: xstate72.PromiseActorLogic<MediaStream, void, xstate72.EventObject>;
103
103
  id: string | undefined;
104
104
  } ? T_1 extends {
105
105
  src: TSrc;
106
- } ? xstate466.ConditionalRequired<[options?: ({
106
+ } ? xstate72.ConditionalRequired<[options?: ({
107
107
  id?: T_1["id"] | undefined;
108
108
  systemId?: string;
109
- input?: xstate466.InputFrom<T_1["logic"]> | undefined;
109
+ input?: xstate72.InputFrom<T_1["logic"]> | undefined;
110
110
  syncSnapshot?: boolean;
111
- } & { [K_1 in xstate466.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate466.IsNotNever<xstate466.RequiredActorOptions<T_1>>> : never : never : never)): xstate466.ActorRefFromLogic<xstate466.GetConcreteByKey<xstate466.Values<{
111
+ } & { [K_1 in xstate72.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate72.IsNotNever<xstate72.RequiredActorOptions<T_1>>> : never : never : never)): xstate72.ActorRefFromLogic<xstate72.GetConcreteByKey<xstate72.Values<{
112
112
  uploadDocument: {
113
113
  src: "uploadDocument";
114
- logic: xstate466.PromiseActorLogic<void, {
114
+ logic: xstate72.PromiseActorLogic<void, {
115
115
  imageBase64: string;
116
116
  documentType: string;
117
117
  onProgress: (progress: number) => void;
118
- }, xstate466.EventObject>;
118
+ }, xstate72.EventObject>;
119
119
  id: string | undefined;
120
120
  };
121
121
  initCamera: {
122
122
  src: "initCamera";
123
- logic: xstate466.PromiseActorLogic<MediaStream, void, xstate466.EventObject>;
123
+ logic: xstate72.PromiseActorLogic<MediaStream, void, xstate72.EventObject>;
124
124
  id: string | undefined;
125
125
  };
126
126
  }>, "src", TSrc>["logic"]>;
127
- <TLogic extends xstate466.AnyActorLogic>(src: TLogic, ...[options]: xstate466.ConditionalRequired<[options?: ({
127
+ <TLogic extends xstate72.AnyActorLogic>(src: TLogic, ...[options]: xstate72.ConditionalRequired<[options?: ({
128
128
  id?: never;
129
129
  systemId?: string;
130
- input?: xstate466.InputFrom<TLogic> | undefined;
130
+ input?: xstate72.InputFrom<TLogic> | undefined;
131
131
  syncSnapshot?: boolean;
132
- } & { [K in xstate466.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate466.IsNotNever<xstate466.RequiredLogicInput<TLogic>>>): xstate466.ActorRefFromLogic<TLogic>;
132
+ } & { [K in xstate72.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate72.IsNotNever<xstate72.RequiredLogicInput<TLogic>>>): xstate72.ActorRefFromLogic<TLogic>;
133
133
  };
134
134
  input: DocumentUploadInput;
135
- self: xstate466.ActorRef<xstate466.MachineSnapshot<DocumentUploadContext, {
135
+ self: xstate72.ActorRef<xstate72.MachineSnapshot<DocumentUploadContext, {
136
136
  type: "START";
137
137
  } | {
138
138
  type: "CAPTURE";
@@ -144,7 +144,7 @@ declare const documentUploadMachine: xstate466.StateMachine<DocumentUploadContex
144
144
  type: "RETRY";
145
145
  } | {
146
146
  type: "CLOSE";
147
- }, Record<string, xstate466.AnyActorRef | undefined>, xstate466.StateValue, string, unknown, any, any>, {
147
+ }, Record<string, xstate72.AnyActorRef | undefined>, xstate72.StateValue, string, unknown, any, any>, {
148
148
  type: "START";
149
149
  } | {
150
150
  type: "CAPTURE";
@@ -156,7 +156,7 @@ declare const documentUploadMachine: xstate466.StateMachine<DocumentUploadContex
156
156
  type: "RETRY";
157
157
  } | {
158
158
  type: "CLOSE";
159
- }, xstate466.AnyEventObject>;
159
+ }, xstate72.AnyEventObject>;
160
160
  }) => {
161
161
  config: DocumentUploadConfig;
162
162
  stream: undefined;
@@ -226,7 +226,7 @@ declare const documentUploadMachine: xstate466.StateMachine<DocumentUploadContex
226
226
  } | {
227
227
  type: "CLOSE";
228
228
  };
229
- self: xstate466.ActorRef<xstate466.MachineSnapshot<DocumentUploadContext, {
229
+ self: xstate72.ActorRef<xstate72.MachineSnapshot<DocumentUploadContext, {
230
230
  type: "START";
231
231
  } | {
232
232
  type: "CAPTURE";
@@ -238,7 +238,7 @@ declare const documentUploadMachine: xstate466.StateMachine<DocumentUploadContex
238
238
  type: "RETRY";
239
239
  } | {
240
240
  type: "CLOSE";
241
- }, Record<string, xstate466.AnyActorRef>, xstate466.StateValue, string, unknown, any, any>, {
241
+ }, Record<string, xstate72.AnyActorRef>, xstate72.StateValue, string, unknown, any, any>, {
242
242
  type: "START";
243
243
  } | {
244
244
  type: "CAPTURE";
@@ -250,7 +250,7 @@ declare const documentUploadMachine: xstate466.StateMachine<DocumentUploadContex
250
250
  type: "RETRY";
251
251
  } | {
252
252
  type: "CLOSE";
253
- }, xstate466.AnyEventObject>;
253
+ }, xstate72.AnyEventObject>;
254
254
  }) => {
255
255
  imageBase64: string;
256
256
  documentType: string;
@@ -1,4 +1,4 @@
1
1
  import "./Manager-C1r-74H0.js";
2
2
  import "./Actor-Cqaw-2DF.js";
3
- import { a as AE_CONSENT_KEYS, c as ConsentKey, d as ElectronicSignatureVariant, f as QE_CONSENT_KEYS, g as getDefaultConsentChecks, h as getConsentKeys, i as electronicSignatureMachine, l as ElectronicSignatureConfig, m as areAllConsented, n as ElectronicSignatureState, o as AeConsentKey, p as QeConsentKey, r as createElectronicSignatureManager, s as ConsentChecks, t as ElectronicSignatureManager, u as ElectronicSignatureDocument } from "./index-D98KKBR4.js";
3
+ import { a as AE_CONSENT_KEYS, c as ConsentKey, d as ElectronicSignatureVariant, f as QE_CONSENT_KEYS, g as getDefaultConsentChecks, h as getConsentKeys, i as electronicSignatureMachine, l as ElectronicSignatureConfig, m as areAllConsented, n as ElectronicSignatureState, o as AeConsentKey, p as QeConsentKey, r as createElectronicSignatureManager, s as ConsentChecks, t as ElectronicSignatureManager, u as ElectronicSignatureDocument } from "./index-BfG6VHnt.js";
4
4
  export { AE_CONSENT_KEYS, AeConsentKey, ConsentChecks, ConsentKey, ElectronicSignatureConfig, ElectronicSignatureDocument, ElectronicSignatureManager, ElectronicSignatureState, ElectronicSignatureVariant, QE_CONSENT_KEYS, QeConsentKey, areAllConsented, createElectronicSignatureManager, electronicSignatureMachine, getConsentKeys, getDefaultConsentChecks };
package/dist/home.d.ts CHANGED
@@ -2,7 +2,7 @@ import { t as Manager } from "./Manager-C1r-74H0.js";
2
2
  import "./camera-C1Lz6NFz.js";
3
3
  import "./types-DGwsRYfm.js";
4
4
  import { t as EmptyConfig } from "./types-Bk2AoUFA.js";
5
- import * as xstate627 from "xstate";
5
+ import * as xstate136 from "xstate";
6
6
 
7
7
  //#region src/modules/home/types.d.ts
8
8
  type HomeConfig = EmptyConfig;
@@ -34,41 +34,41 @@ type HomeContext = {
34
34
  type HomeInput = {
35
35
  config: EmptyConfig;
36
36
  };
37
- declare const homeMachine: xstate627.StateMachine<HomeContext, {
37
+ declare const homeMachine: xstate136.StateMachine<HomeContext, {
38
38
  type: "LOAD";
39
39
  } | {
40
40
  type: "COMPLETE";
41
41
  } | {
42
42
  type: "RESET";
43
- }, {}, never, never, never, never, "idle" | "finished" | "main", string, HomeInput, xstate627.NonReducibleUnknown, xstate627.EventObject, xstate627.MetaObject, {
43
+ }, {}, never, never, never, never, "idle" | "finished" | "main", string, HomeInput, xstate136.NonReducibleUnknown, xstate136.EventObject, xstate136.MetaObject, {
44
44
  readonly id: "home";
45
45
  readonly initial: "idle";
46
46
  readonly context: ({
47
47
  input
48
48
  }: {
49
49
  spawn: {
50
- <TSrc extends never>(logic: TSrc, ...[options]: never): xstate627.ActorRefFromLogic<never>;
51
- <TLogic extends xstate627.AnyActorLogic>(src: TLogic, ...[options]: xstate627.ConditionalRequired<[options?: ({
50
+ <TSrc extends never>(logic: TSrc, ...[options]: never): xstate136.ActorRefFromLogic<never>;
51
+ <TLogic extends xstate136.AnyActorLogic>(src: TLogic, ...[options]: xstate136.ConditionalRequired<[options?: ({
52
52
  id?: never;
53
53
  systemId?: string;
54
- input?: xstate627.InputFrom<TLogic> | undefined;
54
+ input?: xstate136.InputFrom<TLogic> | undefined;
55
55
  syncSnapshot?: boolean;
56
- } & { [K in xstate627.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate627.IsNotNever<xstate627.RequiredLogicInput<TLogic>>>): xstate627.ActorRefFromLogic<TLogic>;
56
+ } & { [K in xstate136.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate136.IsNotNever<xstate136.RequiredLogicInput<TLogic>>>): xstate136.ActorRefFromLogic<TLogic>;
57
57
  };
58
58
  input: HomeInput;
59
- self: xstate627.ActorRef<xstate627.MachineSnapshot<HomeContext, {
59
+ self: xstate136.ActorRef<xstate136.MachineSnapshot<HomeContext, {
60
60
  type: "LOAD";
61
61
  } | {
62
62
  type: "COMPLETE";
63
63
  } | {
64
64
  type: "RESET";
65
- }, Record<string, xstate627.AnyActorRef | undefined>, xstate627.StateValue, string, unknown, any, any>, {
65
+ }, Record<string, xstate136.AnyActorRef | undefined>, xstate136.StateValue, string, unknown, any, any>, {
66
66
  type: "LOAD";
67
67
  } | {
68
68
  type: "COMPLETE";
69
69
  } | {
70
70
  type: "RESET";
71
- }, xstate627.AnyEventObject>;
71
+ }, xstate136.AnyEventObject>;
72
72
  }) => {
73
73
  config: EmptyConfig;
74
74
  };
@@ -1,6 +1,6 @@
1
1
  import { t as Manager } from "./Manager-C1r-74H0.js";
2
2
  import { t as ActorRefFrom } from "./Actor-Cqaw-2DF.js";
3
- import * as xstate67 from "xstate";
3
+ import * as xstate0 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: xstate67.StateMachine<IdentityReuseContext, {
35
+ declare const identityReuseMachine: xstate0.StateMachine<IdentityReuseContext, {
36
36
  type: "LOAD";
37
37
  } | {
38
38
  type: "START_SELECTION";
@@ -48,49 +48,49 @@ declare const identityReuseMachine: xstate67.StateMachine<IdentityReuseContext,
48
48
  } | {
49
49
  type: "RETRY";
50
50
  }, {
51
- [x: string]: xstate67.ActorRefFromLogic<xstate67.PromiseActorLogic<FetchCandidatesResponse, void, xstate67.EventObject>> | xstate67.ActorRefFromLogic<xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>> | undefined;
52
- }, xstate67.Values<{
51
+ [x: string]: xstate0.ActorRefFromLogic<xstate0.PromiseActorLogic<FetchCandidatesResponse, void, xstate0.EventObject>> | xstate0.ActorRefFromLogic<xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>> | undefined;
52
+ }, xstate0.Values<{
53
53
  fetchCandidates: {
54
54
  src: "fetchCandidates";
55
- logic: xstate67.PromiseActorLogic<FetchCandidatesResponse, void, xstate67.EventObject>;
55
+ logic: xstate0.PromiseActorLogic<FetchCandidatesResponse, void, xstate0.EventObject>;
56
56
  id: string | undefined;
57
57
  };
58
58
  submitContinue: {
59
59
  src: "submitContinue";
60
- logic: xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>;
60
+ logic: xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>;
61
61
  id: string | undefined;
62
62
  };
63
63
  submitSkip: {
64
64
  src: "submitSkip";
65
- logic: xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>;
65
+ logic: xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>;
66
66
  id: string | undefined;
67
67
  };
68
- }>, xstate67.Values<{
69
- setError: {
70
- type: "setError";
71
- params: xstate67.NonReducibleUnknown;
72
- };
73
- clearError: {
74
- type: "clearError";
75
- params: xstate67.NonReducibleUnknown;
76
- };
68
+ }>, xstate0.Values<{
77
69
  setCandidates: {
78
70
  type: "setCandidates";
79
- params: xstate67.NonReducibleUnknown;
71
+ params: xstate0.NonReducibleUnknown;
80
72
  };
81
73
  setSelectedCandidate: {
82
74
  type: "setSelectedCandidate";
83
- params: xstate67.NonReducibleUnknown;
75
+ params: xstate0.NonReducibleUnknown;
84
76
  };
85
77
  autoSelectSingleCandidate: {
86
78
  type: "autoSelectSingleCandidate";
87
- params: xstate67.NonReducibleUnknown;
79
+ params: xstate0.NonReducibleUnknown;
88
80
  };
89
81
  clearSelection: {
90
82
  type: "clearSelection";
91
- params: xstate67.NonReducibleUnknown;
83
+ params: xstate0.NonReducibleUnknown;
84
+ };
85
+ setError: {
86
+ type: "setError";
87
+ params: xstate0.NonReducibleUnknown;
88
+ };
89
+ clearError: {
90
+ type: "clearError";
91
+ params: xstate0.NonReducibleUnknown;
92
92
  };
93
- }>, xstate67.Values<{
93
+ }>, xstate0.Values<{
94
94
  hasMultipleCandidates: {
95
95
  type: "hasMultipleCandidates";
96
96
  params: unknown;
@@ -103,9 +103,9 @@ declare const identityReuseMachine: xstate67.StateMachine<IdentityReuseContext,
103
103
  type: "hasChosenCandidate";
104
104
  params: unknown;
105
105
  };
106
- }>, never, "error" | "idle" | "finished" | "loading" | "submitContinue" | "submitSkip" | "oneCandidateFound" | "noCandidatesFound" | {
106
+ }>, never, "error" | "idle" | "finished" | "submitContinue" | "submitSkip" | "loading" | "oneCandidateFound" | "noCandidatesFound" | {
107
107
  multiCandidatesFound: "noCandidateSelected" | "choosingCandidate" | "candidateSelected";
108
- }, string, IdentityReuseInput, xstate67.NonReducibleUnknown, xstate67.EventObject, xstate67.MetaObject, {
108
+ }, string, IdentityReuseInput, xstate0.NonReducibleUnknown, xstate0.EventObject, xstate0.MetaObject, {
109
109
  readonly id: "identityReuse";
110
110
  readonly initial: "idle";
111
111
  readonly context: ({
@@ -114,75 +114,75 @@ declare const identityReuseMachine: xstate67.StateMachine<IdentityReuseContext,
114
114
  spawn: {
115
115
  <TSrc extends "fetchCandidates" | "submitContinue" | "submitSkip">(logic: TSrc, ...[options]: ({
116
116
  src: "fetchCandidates";
117
- logic: xstate67.PromiseActorLogic<FetchCandidatesResponse, void, xstate67.EventObject>;
117
+ logic: xstate0.PromiseActorLogic<FetchCandidatesResponse, void, xstate0.EventObject>;
118
118
  id: string | undefined;
119
119
  } extends infer T ? T extends {
120
120
  src: "fetchCandidates";
121
- logic: xstate67.PromiseActorLogic<FetchCandidatesResponse, void, xstate67.EventObject>;
121
+ logic: xstate0.PromiseActorLogic<FetchCandidatesResponse, void, xstate0.EventObject>;
122
122
  id: string | undefined;
123
123
  } ? T extends {
124
124
  src: TSrc;
125
- } ? xstate67.ConditionalRequired<[options?: ({
125
+ } ? xstate0.ConditionalRequired<[options?: ({
126
126
  id?: T["id"] | undefined;
127
127
  systemId?: string;
128
- input?: xstate67.InputFrom<T["logic"]> | undefined;
128
+ input?: xstate0.InputFrom<T["logic"]> | undefined;
129
129
  syncSnapshot?: boolean;
130
- } & { [K in xstate67.RequiredActorOptions<T>]: unknown }) | undefined], xstate67.IsNotNever<xstate67.RequiredActorOptions<T>>> : never : never : never) | ({
130
+ } & { [K in xstate0.RequiredActorOptions<T>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredActorOptions<T>>> : never : never : never) | ({
131
131
  src: "submitContinue";
132
- logic: xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>;
132
+ logic: xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>;
133
133
  id: string | undefined;
134
134
  } extends infer T_1 ? T_1 extends {
135
135
  src: "submitContinue";
136
- logic: xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>;
136
+ logic: xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>;
137
137
  id: string | undefined;
138
138
  } ? T_1 extends {
139
139
  src: TSrc;
140
- } ? xstate67.ConditionalRequired<[options?: ({
140
+ } ? xstate0.ConditionalRequired<[options?: ({
141
141
  id?: T_1["id"] | undefined;
142
142
  systemId?: string;
143
- input?: xstate67.InputFrom<T_1["logic"]> | undefined;
143
+ input?: xstate0.InputFrom<T_1["logic"]> | undefined;
144
144
  syncSnapshot?: boolean;
145
- } & { [K_1 in xstate67.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate67.IsNotNever<xstate67.RequiredActorOptions<T_1>>> : never : never : never) | ({
145
+ } & { [K_1 in xstate0.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredActorOptions<T_1>>> : never : never : never) | ({
146
146
  src: "submitSkip";
147
- logic: xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>;
147
+ logic: xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>;
148
148
  id: string | undefined;
149
149
  } extends infer T_2 ? T_2 extends {
150
150
  src: "submitSkip";
151
- logic: xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>;
151
+ logic: xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>;
152
152
  id: string | undefined;
153
153
  } ? T_2 extends {
154
154
  src: TSrc;
155
- } ? xstate67.ConditionalRequired<[options?: ({
155
+ } ? xstate0.ConditionalRequired<[options?: ({
156
156
  id?: T_2["id"] | undefined;
157
157
  systemId?: string;
158
- input?: xstate67.InputFrom<T_2["logic"]> | undefined;
158
+ input?: xstate0.InputFrom<T_2["logic"]> | undefined;
159
159
  syncSnapshot?: boolean;
160
- } & { [K_2 in xstate67.RequiredActorOptions<T_2>]: unknown }) | undefined], xstate67.IsNotNever<xstate67.RequiredActorOptions<T_2>>> : never : never : never)): xstate67.ActorRefFromLogic<xstate67.GetConcreteByKey<xstate67.Values<{
160
+ } & { [K_2 in xstate0.RequiredActorOptions<T_2>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredActorOptions<T_2>>> : never : never : never)): xstate0.ActorRefFromLogic<xstate0.GetConcreteByKey<xstate0.Values<{
161
161
  fetchCandidates: {
162
162
  src: "fetchCandidates";
163
- logic: xstate67.PromiseActorLogic<FetchCandidatesResponse, void, xstate67.EventObject>;
163
+ logic: xstate0.PromiseActorLogic<FetchCandidatesResponse, void, xstate0.EventObject>;
164
164
  id: string | undefined;
165
165
  };
166
166
  submitContinue: {
167
167
  src: "submitContinue";
168
- logic: xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>;
168
+ logic: xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>;
169
169
  id: string | undefined;
170
170
  };
171
171
  submitSkip: {
172
172
  src: "submitSkip";
173
- logic: xstate67.PromiseActorLogic<SubmitResponse, void, xstate67.EventObject>;
173
+ logic: xstate0.PromiseActorLogic<SubmitResponse, void, xstate0.EventObject>;
174
174
  id: string | undefined;
175
175
  };
176
176
  }>, "src", TSrc>["logic"]>;
177
- <TLogic extends xstate67.AnyActorLogic>(src: TLogic, ...[options]: xstate67.ConditionalRequired<[options?: ({
177
+ <TLogic extends xstate0.AnyActorLogic>(src: TLogic, ...[options]: xstate0.ConditionalRequired<[options?: ({
178
178
  id?: never;
179
179
  systemId?: string;
180
- input?: xstate67.InputFrom<TLogic> | undefined;
180
+ input?: xstate0.InputFrom<TLogic> | undefined;
181
181
  syncSnapshot?: boolean;
182
- } & { [K in xstate67.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate67.IsNotNever<xstate67.RequiredLogicInput<TLogic>>>): xstate67.ActorRefFromLogic<TLogic>;
182
+ } & { [K in xstate0.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredLogicInput<TLogic>>>): xstate0.ActorRefFromLogic<TLogic>;
183
183
  };
184
184
  input: IdentityReuseInput;
185
- self: xstate67.ActorRef<xstate67.MachineSnapshot<IdentityReuseContext, {
185
+ self: xstate0.ActorRef<xstate0.MachineSnapshot<IdentityReuseContext, {
186
186
  type: "LOAD";
187
187
  } | {
188
188
  type: "START_SELECTION";
@@ -197,7 +197,7 @@ declare const identityReuseMachine: xstate67.StateMachine<IdentityReuseContext,
197
197
  type: "SKIP";
198
198
  } | {
199
199
  type: "RETRY";
200
- }, Record<string, xstate67.AnyActorRef | undefined>, xstate67.StateValue, string, unknown, any, any>, {
200
+ }, Record<string, xstate0.AnyActorRef | undefined>, xstate0.StateValue, string, unknown, any, any>, {
201
201
  type: "LOAD";
202
202
  } | {
203
203
  type: "START_SELECTION";
@@ -212,7 +212,7 @@ declare const identityReuseMachine: xstate67.StateMachine<IdentityReuseContext,
212
212
  type: "SKIP";
213
213
  } | {
214
214
  type: "RETRY";
215
- }, xstate67.AnyEventObject>;
215
+ }, xstate0.AnyEventObject>;
216
216
  }) => {
217
217
  config: IdentityReuseConfig;
218
218
  currentOrganizationName: undefined;