@incodetech/core 0.0.0-dev-20260515-80ea77b → 0.0.0-dev-20260515-5ea50d5
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/dist/ae-signature.d.ts +1 -1
- package/dist/consent.d.ts +1 -1
- package/dist/cpf-ocr.d.ts +17 -17
- package/dist/document-capture.d.ts +68 -68
- package/dist/document-upload.d.ts +40 -40
- package/dist/ekyb.esm.js +3 -3
- package/dist/{ekybStateMachine-DYxuz2QY.esm.js → ekybStateMachine-CQyZTMF0.esm.js} +1 -1
- package/dist/electronic-signature.d.ts +1 -1
- package/dist/extensibility.d.ts +1 -1
- package/dist/extensibility.esm.js +3 -3
- package/dist/flow.d.ts +2 -2
- package/dist/flow.esm.js +2 -2
- package/dist/{flowServices-Du8Q3bE4.esm.js → flowServices-jTW-yhzr.esm.js} +1 -1
- package/dist/home.d.ts +10 -10
- package/dist/id-ocr.d.ts +52 -52
- package/dist/id-verification.d.ts +25 -25
- package/dist/id.d.ts +1 -1
- package/dist/id.esm.js +3 -3
- package/dist/{idCaptureManager-Dzaillra.d.ts → idCaptureManager-B9TGA5dq.d.ts} +15 -0
- package/dist/{idCaptureManager-Csz8P9dH.esm.js → idCaptureManager-DFk3Tytl.esm.js} +1 -1
- package/dist/{idCaptureStateMachine-B-LCI5je.esm.js → idCaptureStateMachine-DAO1IbBO.esm.js} +49 -10
- package/dist/identity-reuse.d.ts +43 -43
- package/dist/{index-BJL5opOT.d.ts → index-CoVWTOZj.d.ts} +119 -119
- package/dist/index.esm.js +2 -2
- package/dist/mandatory-consent.d.ts +50 -50
- package/dist/qe-signature.d.ts +1 -1
- package/dist/{session-Np-FjqC8.esm.js → session-DwRz_09p.esm.js} +1 -1
- package/dist/session.esm.js +1 -1
- package/dist/{setup-vPCAg9e5.esm.js → setup-Ewnwm56p.esm.js} +1 -1
- package/dist/wasm.esm.js +2 -2
- package/dist/workflow.d.ts +87 -87
- package/dist/workflow.esm.js +4 -4
- package/package.json +1 -1
|
@@ -2,10 +2,10 @@ import { t as Manager } from "./Manager-C8PrhBOx.js";
|
|
|
2
2
|
import "./Actor-CI32dTbG.js";
|
|
3
3
|
import "./camera-DBSxa6ML.js";
|
|
4
4
|
import { n as DocumentUploadContext, r as DocumentUploadInput, t as DocumentUploadConfig } from "./types-CFV9G_7j.js";
|
|
5
|
-
import * as
|
|
5
|
+
import * as xstate845 from "xstate";
|
|
6
6
|
|
|
7
7
|
//#region src/modules/document-upload/documentUploadStateMachine.d.ts
|
|
8
|
-
declare const documentUploadMachine:
|
|
8
|
+
declare const documentUploadMachine: xstate845.StateMachine<DocumentUploadContext, {
|
|
9
9
|
type: "START";
|
|
10
10
|
} | {
|
|
11
11
|
type: "CAPTURE";
|
|
@@ -18,52 +18,52 @@ declare const documentUploadMachine: xstate459.StateMachine<DocumentUploadContex
|
|
|
18
18
|
} | {
|
|
19
19
|
type: "CLOSE";
|
|
20
20
|
}, {
|
|
21
|
-
[x: string]:
|
|
21
|
+
[x: string]: xstate845.ActorRefFromLogic<xstate845.PromiseActorLogic<MediaStream, void, xstate845.EventObject>> | xstate845.ActorRefFromLogic<xstate845.PromiseActorLogic<void, {
|
|
22
22
|
imageBase64: string;
|
|
23
23
|
documentType: string;
|
|
24
24
|
onProgress: (progress: number) => void;
|
|
25
|
-
},
|
|
26
|
-
},
|
|
25
|
+
}, xstate845.EventObject>> | undefined;
|
|
26
|
+
}, xstate845.Values<{
|
|
27
27
|
uploadDocument: {
|
|
28
28
|
src: "uploadDocument";
|
|
29
|
-
logic:
|
|
29
|
+
logic: xstate845.PromiseActorLogic<void, {
|
|
30
30
|
imageBase64: string;
|
|
31
31
|
documentType: string;
|
|
32
32
|
onProgress: (progress: number) => void;
|
|
33
|
-
},
|
|
33
|
+
}, xstate845.EventObject>;
|
|
34
34
|
id: string | undefined;
|
|
35
35
|
};
|
|
36
36
|
initCamera: {
|
|
37
37
|
src: "initCamera";
|
|
38
|
-
logic:
|
|
38
|
+
logic: xstate845.PromiseActorLogic<MediaStream, void, xstate845.EventObject>;
|
|
39
39
|
id: string | undefined;
|
|
40
40
|
};
|
|
41
|
-
}>,
|
|
41
|
+
}>, xstate845.Values<{
|
|
42
42
|
setError: {
|
|
43
43
|
type: "setError";
|
|
44
|
-
params:
|
|
44
|
+
params: xstate845.NonReducibleUnknown;
|
|
45
45
|
};
|
|
46
46
|
clearError: {
|
|
47
47
|
type: "clearError";
|
|
48
|
-
params:
|
|
48
|
+
params: xstate845.NonReducibleUnknown;
|
|
49
49
|
};
|
|
50
50
|
setStream: {
|
|
51
51
|
type: "setStream";
|
|
52
|
-
params:
|
|
52
|
+
params: xstate845.NonReducibleUnknown;
|
|
53
53
|
};
|
|
54
54
|
setProgress: {
|
|
55
55
|
type: "setProgress";
|
|
56
|
-
params:
|
|
56
|
+
params: xstate845.NonReducibleUnknown;
|
|
57
57
|
};
|
|
58
58
|
stopStream: {
|
|
59
59
|
type: "stopStream";
|
|
60
|
-
params:
|
|
60
|
+
params: xstate845.NonReducibleUnknown;
|
|
61
61
|
};
|
|
62
62
|
setImageAndClearError: {
|
|
63
63
|
type: "setImageAndClearError";
|
|
64
|
-
params:
|
|
64
|
+
params: xstate845.NonReducibleUnknown;
|
|
65
65
|
};
|
|
66
|
-
}>, never, never, "error" | "idle" | "uploading" | "closed" | "finished" | "initCamera" | "capturing", string, DocumentUploadInput,
|
|
66
|
+
}>, never, never, "error" | "idle" | "uploading" | "closed" | "finished" | "initCamera" | "capturing", string, DocumentUploadInput, xstate845.NonReducibleUnknown, xstate845.EventObject, xstate845.MetaObject, {
|
|
67
67
|
readonly id: "documentUpload";
|
|
68
68
|
readonly initial: "idle";
|
|
69
69
|
readonly context: ({
|
|
@@ -72,67 +72,67 @@ declare const documentUploadMachine: xstate459.StateMachine<DocumentUploadContex
|
|
|
72
72
|
spawn: {
|
|
73
73
|
<TSrc extends "uploadDocument" | "initCamera">(logic: TSrc, ...[options]: ({
|
|
74
74
|
src: "uploadDocument";
|
|
75
|
-
logic:
|
|
75
|
+
logic: xstate845.PromiseActorLogic<void, {
|
|
76
76
|
imageBase64: string;
|
|
77
77
|
documentType: string;
|
|
78
78
|
onProgress: (progress: number) => void;
|
|
79
|
-
},
|
|
79
|
+
}, xstate845.EventObject>;
|
|
80
80
|
id: string | undefined;
|
|
81
81
|
} extends infer T ? T extends {
|
|
82
82
|
src: "uploadDocument";
|
|
83
|
-
logic:
|
|
83
|
+
logic: xstate845.PromiseActorLogic<void, {
|
|
84
84
|
imageBase64: string;
|
|
85
85
|
documentType: string;
|
|
86
86
|
onProgress: (progress: number) => void;
|
|
87
|
-
},
|
|
87
|
+
}, xstate845.EventObject>;
|
|
88
88
|
id: string | undefined;
|
|
89
89
|
} ? T extends {
|
|
90
90
|
src: TSrc;
|
|
91
|
-
} ?
|
|
91
|
+
} ? xstate845.ConditionalRequired<[options?: ({
|
|
92
92
|
id?: T["id"] | undefined;
|
|
93
93
|
systemId?: string;
|
|
94
|
-
input?:
|
|
94
|
+
input?: xstate845.InputFrom<T["logic"]> | undefined;
|
|
95
95
|
syncSnapshot?: boolean;
|
|
96
|
-
} & { [K in
|
|
96
|
+
} & { [K in xstate845.RequiredActorOptions<T>]: unknown }) | undefined], xstate845.IsNotNever<xstate845.RequiredActorOptions<T>>> : never : never : never) | ({
|
|
97
97
|
src: "initCamera";
|
|
98
|
-
logic:
|
|
98
|
+
logic: xstate845.PromiseActorLogic<MediaStream, void, xstate845.EventObject>;
|
|
99
99
|
id: string | undefined;
|
|
100
100
|
} extends infer T_1 ? T_1 extends {
|
|
101
101
|
src: "initCamera";
|
|
102
|
-
logic:
|
|
102
|
+
logic: xstate845.PromiseActorLogic<MediaStream, void, xstate845.EventObject>;
|
|
103
103
|
id: string | undefined;
|
|
104
104
|
} ? T_1 extends {
|
|
105
105
|
src: TSrc;
|
|
106
|
-
} ?
|
|
106
|
+
} ? xstate845.ConditionalRequired<[options?: ({
|
|
107
107
|
id?: T_1["id"] | undefined;
|
|
108
108
|
systemId?: string;
|
|
109
|
-
input?:
|
|
109
|
+
input?: xstate845.InputFrom<T_1["logic"]> | undefined;
|
|
110
110
|
syncSnapshot?: boolean;
|
|
111
|
-
} & { [K_1 in
|
|
111
|
+
} & { [K_1 in xstate845.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate845.IsNotNever<xstate845.RequiredActorOptions<T_1>>> : never : never : never)): xstate845.ActorRefFromLogic<xstate845.GetConcreteByKey<xstate845.Values<{
|
|
112
112
|
uploadDocument: {
|
|
113
113
|
src: "uploadDocument";
|
|
114
|
-
logic:
|
|
114
|
+
logic: xstate845.PromiseActorLogic<void, {
|
|
115
115
|
imageBase64: string;
|
|
116
116
|
documentType: string;
|
|
117
117
|
onProgress: (progress: number) => void;
|
|
118
|
-
},
|
|
118
|
+
}, xstate845.EventObject>;
|
|
119
119
|
id: string | undefined;
|
|
120
120
|
};
|
|
121
121
|
initCamera: {
|
|
122
122
|
src: "initCamera";
|
|
123
|
-
logic:
|
|
123
|
+
logic: xstate845.PromiseActorLogic<MediaStream, void, xstate845.EventObject>;
|
|
124
124
|
id: string | undefined;
|
|
125
125
|
};
|
|
126
126
|
}>, "src", TSrc>["logic"]>;
|
|
127
|
-
<TLogic extends
|
|
127
|
+
<TLogic extends xstate845.AnyActorLogic>(src: TLogic, ...[options]: xstate845.ConditionalRequired<[options?: ({
|
|
128
128
|
id?: never;
|
|
129
129
|
systemId?: string;
|
|
130
|
-
input?:
|
|
130
|
+
input?: xstate845.InputFrom<TLogic> | undefined;
|
|
131
131
|
syncSnapshot?: boolean;
|
|
132
|
-
} & { [K in
|
|
132
|
+
} & { [K in xstate845.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate845.IsNotNever<xstate845.RequiredLogicInput<TLogic>>>): xstate845.ActorRefFromLogic<TLogic>;
|
|
133
133
|
};
|
|
134
134
|
input: DocumentUploadInput;
|
|
135
|
-
self:
|
|
135
|
+
self: xstate845.ActorRef<xstate845.MachineSnapshot<DocumentUploadContext, {
|
|
136
136
|
type: "START";
|
|
137
137
|
} | {
|
|
138
138
|
type: "CAPTURE";
|
|
@@ -144,7 +144,7 @@ declare const documentUploadMachine: xstate459.StateMachine<DocumentUploadContex
|
|
|
144
144
|
type: "RETRY";
|
|
145
145
|
} | {
|
|
146
146
|
type: "CLOSE";
|
|
147
|
-
}, Record<string,
|
|
147
|
+
}, Record<string, xstate845.AnyActorRef | undefined>, xstate845.StateValue, string, unknown, any, any>, {
|
|
148
148
|
type: "START";
|
|
149
149
|
} | {
|
|
150
150
|
type: "CAPTURE";
|
|
@@ -156,7 +156,7 @@ declare const documentUploadMachine: xstate459.StateMachine<DocumentUploadContex
|
|
|
156
156
|
type: "RETRY";
|
|
157
157
|
} | {
|
|
158
158
|
type: "CLOSE";
|
|
159
|
-
},
|
|
159
|
+
}, xstate845.AnyEventObject>;
|
|
160
160
|
}) => {
|
|
161
161
|
config: DocumentUploadConfig;
|
|
162
162
|
stream: undefined;
|
|
@@ -226,7 +226,7 @@ declare const documentUploadMachine: xstate459.StateMachine<DocumentUploadContex
|
|
|
226
226
|
} | {
|
|
227
227
|
type: "CLOSE";
|
|
228
228
|
};
|
|
229
|
-
self:
|
|
229
|
+
self: xstate845.ActorRef<xstate845.MachineSnapshot<DocumentUploadContext, {
|
|
230
230
|
type: "START";
|
|
231
231
|
} | {
|
|
232
232
|
type: "CAPTURE";
|
|
@@ -238,7 +238,7 @@ declare const documentUploadMachine: xstate459.StateMachine<DocumentUploadContex
|
|
|
238
238
|
type: "RETRY";
|
|
239
239
|
} | {
|
|
240
240
|
type: "CLOSE";
|
|
241
|
-
}, Record<string,
|
|
241
|
+
}, Record<string, xstate845.AnyActorRef>, xstate845.StateValue, string, unknown, any, any>, {
|
|
242
242
|
type: "START";
|
|
243
243
|
} | {
|
|
244
244
|
type: "CAPTURE";
|
|
@@ -250,7 +250,7 @@ declare const documentUploadMachine: xstate459.StateMachine<DocumentUploadContex
|
|
|
250
250
|
type: "RETRY";
|
|
251
251
|
} | {
|
|
252
252
|
type: "CLOSE";
|
|
253
|
-
},
|
|
253
|
+
}, xstate845.AnyEventObject>;
|
|
254
254
|
}) => {
|
|
255
255
|
imageBase64: string;
|
|
256
256
|
documentType: string;
|
package/dist/ekyb.esm.js
CHANGED
|
@@ -2,13 +2,13 @@ import "./BrowserTimerProvider-DhNc_x02.esm.js";
|
|
|
2
2
|
import "./api-CESGtpbH.esm.js";
|
|
3
3
|
import { n as eventModuleNames, o as createManagerInstrumentation } from "./events-D6-e4vok.esm.js";
|
|
4
4
|
import "./endpoints-CnN3SyDa.esm.js";
|
|
5
|
-
import "./session-
|
|
5
|
+
import "./session-DwRz_09p.esm.js";
|
|
6
6
|
import "./IpifyProvider-D7jx52AL.esm.js";
|
|
7
7
|
import "./browserSimulation-gxD8cSpM.esm.js";
|
|
8
8
|
import { c as createManager, s as createActor } from "./xstate.esm-B70JrNqo.esm.js";
|
|
9
|
-
import { a as DEV_ONLY_COUNTRIES, i as ALL_COUNTRIES, n as computeDisplayErrors, o as SUPPORTED_COUNTRIES, r as toEkybConfig, s as isSupportedCountry, t as ekybMachine } from "./ekybStateMachine-
|
|
9
|
+
import { a as DEV_ONLY_COUNTRIES, i as ALL_COUNTRIES, n as computeDisplayErrors, o as SUPPORTED_COUNTRIES, r as toEkybConfig, s as isSupportedCountry, t as ekybMachine } from "./ekybStateMachine-CQyZTMF0.esm.js";
|
|
10
10
|
import "./addressSearch-BpTbTWCa.esm.js";
|
|
11
|
-
import "./flowServices-
|
|
11
|
+
import "./flowServices-jTW-yhzr.esm.js";
|
|
12
12
|
|
|
13
13
|
//#region src/modules/ekyb/ekybActor.ts
|
|
14
14
|
/**
|
|
@@ -2,7 +2,7 @@ import { t as api } from "./api-CESGtpbH.esm.js";
|
|
|
2
2
|
import { t as endpoints } from "./endpoints-CnN3SyDa.esm.js";
|
|
3
3
|
import { a as fromPromise, r as assign, t as setup } from "./xstate.esm-B70JrNqo.esm.js";
|
|
4
4
|
import { a as POSTAL_CODE_FORMAT_ERROR_KEYS, c as getPostalCodeMaxLength, i as FIXED_DIGIT_POSTAL_CODE_LENGTH, l as validatePostalCode, n as fillFromSuggestion, o as formatPostalCode, r as DYNAMIC_REQUIRED_KEY, s as getPostalCodeErrorKey, t as debounceSearchActor, u as usStateOptions } from "./addressSearch-BpTbTWCa.esm.js";
|
|
5
|
-
import { t as getFlow } from "./flowServices-
|
|
5
|
+
import { t as getFlow } from "./flowServices-jTW-yhzr.esm.js";
|
|
6
6
|
|
|
7
7
|
//#region src/modules/ekyb/ekybConstants.ts
|
|
8
8
|
const UBO_INPUT_LIMIT = 8;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import "./Manager-C8PrhBOx.js";
|
|
2
2
|
import "./Actor-CI32dTbG.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-
|
|
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-CoVWTOZj.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/extensibility.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import "./types-CAD4va6a.js";
|
|
|
11
11
|
import { a as ProcessFaceResponse, i as createSelfieManagerFromActor, n as SelfieState, t as SelfieManager } from "./selfieManager-D0lSgd-J.js";
|
|
12
12
|
import { i as createAuthenticationManagerFromActor, n as AuthenticationState, t as AuthenticationManager } from "./authenticationManager-C83GNIhl.js";
|
|
13
13
|
import { i as createEmailManagerFromActor, n as EmailState, t as EmailManager } from "./emailManager-DIfnS5g1.js";
|
|
14
|
-
import { A as CaptureIdResponse, i as createIdCaptureManagerFromActor, n as IdCaptureManager, r as IdCaptureState } from "./idCaptureManager-
|
|
14
|
+
import { A as CaptureIdResponse, i as createIdCaptureManagerFromActor, n as IdCaptureManager, r as IdCaptureState } from "./idCaptureManager-B9TGA5dq.js";
|
|
15
15
|
import { i as createPhoneManagerFromActor, n as PhoneState, t as PhoneManager } from "./phoneManager-B6M30hKE.js";
|
|
16
16
|
|
|
17
17
|
//#region src/modules/authentication/authenticationUploadService.d.ts
|
|
@@ -4,7 +4,7 @@ import "./BrowserTimerProvider-DhNc_x02.esm.js";
|
|
|
4
4
|
import "./api-CESGtpbH.esm.js";
|
|
5
5
|
import "./events-D6-e4vok.esm.js";
|
|
6
6
|
import "./endpoints-CnN3SyDa.esm.js";
|
|
7
|
-
import { a as FingerprintProvider, o as getDeviceFingerprintInfo, t as getDisableIpify } from "./session-
|
|
7
|
+
import { a as FingerprintProvider, o as getDeviceFingerprintInfo, t as getDisableIpify } from "./session-DwRz_09p.esm.js";
|
|
8
8
|
import { t as IpifyProvider } from "./IpifyProvider-D7jx52AL.esm.js";
|
|
9
9
|
import "./browserSimulation-gxD8cSpM.esm.js";
|
|
10
10
|
import { a as fromPromise, s as createActor } from "./xstate.esm-B70JrNqo.esm.js";
|
|
@@ -28,8 +28,8 @@ import "./emailStateMachine-DOf4j58N.esm.js";
|
|
|
28
28
|
import { n as createEmailManagerFromActor } from "./emailManager-wAV0LE-H.esm.js";
|
|
29
29
|
import "./selfieStateMachine-D76whWEf.esm.js";
|
|
30
30
|
import { n as createSelfieManagerFromActor } from "./selfieManager-Duisl7qN.esm.js";
|
|
31
|
-
import "./idCaptureStateMachine-
|
|
32
|
-
import { r as createIdCaptureManagerFromActor } from "./idCaptureManager-
|
|
31
|
+
import "./idCaptureStateMachine-DAO1IbBO.esm.js";
|
|
32
|
+
import { r as createIdCaptureManagerFromActor } from "./idCaptureManager-DFk3Tytl.esm.js";
|
|
33
33
|
import "./phoneStateMachine-CuPARRaT.esm.js";
|
|
34
34
|
import { n as createPhoneManagerFromActor } from "./phoneManager-DAJbGhlY.esm.js";
|
|
35
35
|
|
package/dist/flow.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { i as FlowModuleConfig, n as Flow, r as FlowModule } from "./types-BP1m8
|
|
|
7
7
|
import { n as GetFinishStatusFn, t as FinishStatus } from "./flowCompletionService-DhkT4SRY.js";
|
|
8
8
|
import { o as FlowEventSubscribable } from "./index-BcRG8rtJ.js";
|
|
9
9
|
import { n as ModuleRegistry } from "./types-B06Ypu2F.js";
|
|
10
|
-
import * as
|
|
10
|
+
import * as xstate909 from "xstate";
|
|
11
11
|
|
|
12
12
|
//#region src/modules/flow/flowUtils.d.ts
|
|
13
13
|
type NormalizeFlowModulesOptions = {
|
|
@@ -59,7 +59,7 @@ type GetFlow = (signal: AbortSignal, options?: GetFlowOptions) => Promise<Flow>;
|
|
|
59
59
|
declare const getFlow: GetFlow;
|
|
60
60
|
//#endregion
|
|
61
61
|
//#region src/modules/flow/noOpFlowModuleMachine.d.ts
|
|
62
|
-
declare const noOpFlowModuleMachine:
|
|
62
|
+
declare const noOpFlowModuleMachine: xstate909.StateMachine<xstate909.MachineContext, xstate909.AnyEventObject, {}, never, never, never, never, "finished", string, xstate909.NonReducibleUnknown, xstate909.NonReducibleUnknown, xstate909.EventObject, xstate909.MetaObject, {
|
|
63
63
|
readonly id: "noOpFlowModule";
|
|
64
64
|
readonly initial: "finished";
|
|
65
65
|
readonly states: {
|
package/dist/flow.esm.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import "./api-CESGtpbH.esm.js";
|
|
2
2
|
import "./events-D6-e4vok.esm.js";
|
|
3
3
|
import "./endpoints-CnN3SyDa.esm.js";
|
|
4
|
-
import "./session-
|
|
4
|
+
import "./session-DwRz_09p.esm.js";
|
|
5
5
|
import "./IpifyProvider-D7jx52AL.esm.js";
|
|
6
6
|
import "./browserSimulation-gxD8cSpM.esm.js";
|
|
7
7
|
import { a as fromPromise, c as createManager, r as assign, s as createActor, t as setup } from "./xstate.esm-B70JrNqo.esm.js";
|
|
8
|
-
import { n as getRequiredWasmPipelines, r as normalizeFlowModules, t as getFlow } from "./flowServices-
|
|
8
|
+
import { n as getRequiredWasmPipelines, r as normalizeFlowModules, t as getFlow } from "./flowServices-jTW-yhzr.esm.js";
|
|
9
9
|
import { n as attachFlowEventEmitter, t as runChildModule } from "./runChildModule-CqqwqAkW.esm.js";
|
|
10
10
|
import { t as getFinishStatus } from "./flowCompletionService-P54yzGvA.esm.js";
|
|
11
11
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as api } from "./api-CESGtpbH.esm.js";
|
|
2
2
|
import { t as endpoints } from "./endpoints-CnN3SyDa.esm.js";
|
|
3
|
-
import { n as getSessionFingerprintResult, r as initializeSession } from "./session-
|
|
3
|
+
import { n as getSessionFingerprintResult, r as initializeSession } from "./session-DwRz_09p.esm.js";
|
|
4
4
|
|
|
5
5
|
//#region src/modules/flow/flowUtils.ts
|
|
6
6
|
const WASM_MODULE_PIPELINES = {
|
package/dist/home.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { t as Manager } from "./Manager-C8PrhBOx.js";
|
|
|
2
2
|
import "./camera-DBSxa6ML.js";
|
|
3
3
|
import "./types-CFV9G_7j.js";
|
|
4
4
|
import { t as EmptyConfig } from "./types-BP1m8VRw.js";
|
|
5
|
-
import * as
|
|
5
|
+
import * as xstate350 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:
|
|
37
|
+
declare const homeMachine: xstate350.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,
|
|
43
|
+
}, {}, never, never, never, never, "idle" | "finished" | "main", string, HomeInput, xstate350.NonReducibleUnknown, xstate350.EventObject, xstate350.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):
|
|
51
|
-
<TLogic extends
|
|
50
|
+
<TSrc extends never>(logic: TSrc, ...[options]: never): xstate350.ActorRefFromLogic<never>;
|
|
51
|
+
<TLogic extends xstate350.AnyActorLogic>(src: TLogic, ...[options]: xstate350.ConditionalRequired<[options?: ({
|
|
52
52
|
id?: never;
|
|
53
53
|
systemId?: string;
|
|
54
|
-
input?:
|
|
54
|
+
input?: xstate350.InputFrom<TLogic> | undefined;
|
|
55
55
|
syncSnapshot?: boolean;
|
|
56
|
-
} & { [K in
|
|
56
|
+
} & { [K in xstate350.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate350.IsNotNever<xstate350.RequiredLogicInput<TLogic>>>): xstate350.ActorRefFromLogic<TLogic>;
|
|
57
57
|
};
|
|
58
58
|
input: HomeInput;
|
|
59
|
-
self:
|
|
59
|
+
self: xstate350.ActorRef<xstate350.MachineSnapshot<HomeContext, {
|
|
60
60
|
type: "LOAD";
|
|
61
61
|
} | {
|
|
62
62
|
type: "COMPLETE";
|
|
63
63
|
} | {
|
|
64
64
|
type: "RESET";
|
|
65
|
-
}, Record<string,
|
|
65
|
+
}, Record<string, xstate350.AnyActorRef | undefined>, xstate350.StateValue, string, unknown, any, any>, {
|
|
66
66
|
type: "LOAD";
|
|
67
67
|
} | {
|
|
68
68
|
type: "COMPLETE";
|
|
69
69
|
} | {
|
|
70
70
|
type: "RESET";
|
|
71
|
-
},
|
|
71
|
+
}, xstate350.AnyEventObject>;
|
|
72
72
|
}) => {
|
|
73
73
|
config: EmptyConfig;
|
|
74
74
|
};
|