@reclaimprotocol/inapp-rn-sdk 0.3.0 → 0.3.1

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 (36) hide show
  1. package/README.md +1 -0
  2. package/lib/commonjs/index.js +124 -31
  3. package/lib/commonjs/index.js.map +1 -1
  4. package/lib/commonjs/{ReclaimVerificationPlatformChannel.js → platform.js} +11 -105
  5. package/lib/commonjs/platform.js.map +1 -0
  6. package/lib/module/index.js +125 -14
  7. package/lib/module/index.js.map +1 -1
  8. package/lib/module/{ReclaimVerificationPlatformChannel.js → platform.js} +9 -102
  9. package/lib/module/platform.js.map +1 -0
  10. package/lib/typescript/commonjs/src/index.d.ts +140 -9
  11. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  12. package/lib/typescript/commonjs/src/platform.d.ts +18 -0
  13. package/lib/typescript/commonjs/src/platform.d.ts.map +1 -0
  14. package/lib/typescript/module/src/index.d.ts +140 -9
  15. package/lib/typescript/module/src/index.d.ts.map +1 -1
  16. package/lib/typescript/module/src/platform.d.ts +18 -0
  17. package/lib/typescript/module/src/platform.d.ts.map +1 -0
  18. package/package.json +2 -1
  19. package/src/index.ts +258 -20
  20. package/src/platform.ts +218 -0
  21. package/lib/commonjs/ReclaimVerificationPlatformChannel.js.map +0 -1
  22. package/lib/commonjs/types/proof.js +0 -16
  23. package/lib/commonjs/types/proof.js.map +0 -1
  24. package/lib/module/ReclaimVerificationPlatformChannel.js.map +0 -1
  25. package/lib/module/types/proof.js +0 -12
  26. package/lib/module/types/proof.js.map +0 -1
  27. package/lib/typescript/commonjs/src/ReclaimVerificationPlatformChannel.d.ts +0 -115
  28. package/lib/typescript/commonjs/src/ReclaimVerificationPlatformChannel.d.ts.map +0 -1
  29. package/lib/typescript/commonjs/src/types/proof.d.ts +0 -33
  30. package/lib/typescript/commonjs/src/types/proof.d.ts.map +0 -1
  31. package/lib/typescript/module/src/ReclaimVerificationPlatformChannel.d.ts +0 -115
  32. package/lib/typescript/module/src/ReclaimVerificationPlatformChannel.d.ts.map +0 -1
  33. package/lib/typescript/module/src/types/proof.d.ts +0 -33
  34. package/lib/typescript/module/src/types/proof.d.ts.map +0 -1
  35. package/src/ReclaimVerificationPlatformChannel.ts +0 -408
  36. package/src/types/proof.ts +0 -44
@@ -1,114 +1,21 @@
1
1
  "use strict";
2
2
 
3
3
  import NativeReclaimInappModule from "./specs/NativeInappRnSdk.js";
4
- import { ReclaimResult } from "./types/proof.js";
5
- /**
6
- * This namespace provides types involved in initiating and managing the verification process
7
- * for proving claims about user data through various providers.
8
- */
9
- export let ReclaimVerificationApi;
10
- (function (_ReclaimVerificationApi) {
11
- /**
12
- * Represents user's session information for a verification attempt.
13
- * This data class contains the necessary data to identify and validate a verification session.
14
- */
15
- /**
16
- * Represents a request for a verification attempt.
17
- *
18
- * You can create a request using the [ReclaimVerification.Request] constructor or the [ReclaimVerification.Request.fromManifestMetaData] factory method.
19
- */
20
- /**
21
- * Contains the proof and response data after verification
22
- */
23
- let Overrides;
24
- (function (_Overrides) {
25
- ;
26
- })(Overrides || (Overrides = _ReclaimVerificationApi.Overrides || (_ReclaimVerificationApi.Overrides = {})));
27
- let ExceptionType = /*#__PURE__*/function (ExceptionType) {
28
- ExceptionType["Cancelled"] = "Cancelled";
29
- ExceptionType["Dismissed"] = "Dismissed";
30
- ExceptionType["SessionExpired"] = "SessionExpired";
31
- ExceptionType["Failed"] = "Failed";
32
- return ExceptionType;
33
- }({});
34
- _ReclaimVerificationApi.ExceptionType = ExceptionType;
35
- class ReclaimPlatformException extends Error {
36
- constructor(message, innerError) {
37
- super(message);
38
- this.innerError = innerError;
39
- this.reason = innerError.message;
40
- if ('userInfo' in innerError) {
41
- const details = innerError.userInfo;
42
- this.details = details;
43
- if ('message' in details) {
44
- this.reason = details.message || this.reason;
45
- }
46
- }
47
- }
48
- static isReclaimPlatformException(error) {
49
- return error instanceof ReclaimPlatformException;
50
- }
51
- }
52
- _ReclaimVerificationApi.ReclaimPlatformException = ReclaimPlatformException;
53
- class ReclaimVerificationException extends Error {
54
- constructor(message, innerError, type, sessionId, didSubmitManualVerification, reason) {
55
- super(message);
56
- this.innerError = innerError;
57
- this.type = type;
58
- this.sessionId = sessionId;
59
- this.didSubmitManualVerification = didSubmitManualVerification;
60
- this.reason = reason;
61
- }
62
- static fromTypeName(name) {
63
- switch (name) {
64
- case "cancelled":
65
- case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Cancelled":
66
- return ExceptionType.Cancelled;
67
- case "dismissed":
68
- case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Dismissed":
69
- return ExceptionType.Dismissed;
70
- case "sessionExpired":
71
- case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.SessionExpired":
72
- return ExceptionType.SessionExpired;
73
- case "failed":
74
- case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Failed":
75
- return ExceptionType.Failed;
76
- }
77
- return ExceptionType.Failed;
78
- }
79
- static fromError(error, sessionIdHint) {
80
- if ('userInfo' in error) {
81
- // From native, we send information about error in userInfo
82
- let userInfo = error.userInfo;
83
- if (userInfo) {
84
- let type = ReclaimVerificationApi.ReclaimVerificationException.fromTypeName(userInfo.errorType);
85
- let maybeSessionId = userInfo?.sessionId;
86
- return new ReclaimVerificationException(error.message, error, type, typeof maybeSessionId === 'string' && maybeSessionId ? maybeSessionId : sessionIdHint, userInfo?.didSubmitManualVerification ?? false, userInfo?.reason ?? "");
87
- }
88
- }
89
- return new ReclaimVerificationException(error.message, error, ReclaimVerificationApi.ExceptionType.Failed, sessionIdHint, false, "");
90
- }
91
- static isReclaimVerificationException(error) {
92
- return error instanceof ReclaimVerificationException;
93
- }
94
- }
95
- _ReclaimVerificationApi.ReclaimVerificationException = ReclaimVerificationException;
96
- })(ReclaimVerificationApi || (ReclaimVerificationApi = {}));
97
- export class ReclaimVerificationPlatformChannel {}
98
- export class ReclaimVerificationPlatformChannelImpl extends ReclaimVerificationPlatformChannel {
4
+ import { ReclaimVerification } from "./index.js";
5
+ export class PlatformImpl extends ReclaimVerification.Platform {
99
6
  async startVerification(request) {
100
7
  try {
101
8
  const response = await NativeReclaimInappModule.startVerification(request);
102
9
  return {
103
10
  ...response,
104
- proofs: ReclaimResult.asProofs(response.proofs)
11
+ proofs: ReclaimVerification.ReclaimResult.asProofs(response.proofs)
105
12
  };
106
13
  } catch (error) {
107
14
  console.info({
108
15
  error
109
16
  });
110
17
  if (error instanceof Error) {
111
- throw ReclaimVerificationApi.ReclaimVerificationException.fromError(error, request.session?.sessionId ?? "");
18
+ throw ReclaimVerification.ReclaimVerificationException.fromError(error, request.session?.sessionId ?? "");
112
19
  }
113
20
  throw error;
114
21
  }
@@ -118,14 +25,14 @@ export class ReclaimVerificationPlatformChannelImpl extends ReclaimVerificationP
118
25
  const response = await NativeReclaimInappModule.startVerificationFromUrl(requestUrl);
119
26
  return {
120
27
  ...response,
121
- proofs: ReclaimResult.asProofs(response.proofs)
28
+ proofs: ReclaimVerification.ReclaimResult.asProofs(response.proofs)
122
29
  };
123
30
  } catch (error) {
124
31
  console.info({
125
32
  error
126
33
  });
127
34
  if (error instanceof Error) {
128
- throw ReclaimVerificationApi.ReclaimVerificationException.fromError(error, "");
35
+ throw ReclaimVerification.ReclaimVerificationException.fromError(error, "");
129
36
  }
130
37
  throw error;
131
38
  }
@@ -250,7 +157,7 @@ export class ReclaimVerificationPlatformChannelImpl extends ReclaimVerificationP
250
157
  capabilityAccessToken
251
158
  });
252
159
  } catch (error) {
253
- throw new ReclaimVerificationApi.ReclaimPlatformException("Failed to set overrides", error);
160
+ throw new ReclaimVerification.ReclaimPlatformException("Failed to set overrides", error);
254
161
  }
255
162
  }
256
163
  async clearAllOverrides() {
@@ -292,8 +199,8 @@ export class ReclaimVerificationPlatformChannelImpl extends ReclaimVerificationP
292
199
  options: args
293
200
  });
294
201
  } catch (error) {
295
- throw new ReclaimVerificationApi.ReclaimPlatformException("Failed to set verification options", error);
202
+ throw new ReclaimVerification.ReclaimPlatformException("Failed to set verification options", error);
296
203
  }
297
204
  }
298
205
  }
299
- //# sourceMappingURL=ReclaimVerificationPlatformChannel.js.map
206
+ //# sourceMappingURL=platform.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["NativeReclaimInappModule","ReclaimVerification","PlatformImpl","Platform","startVerification","request","response","proofs","ReclaimResult","asProofs","error","console","info","Error","ReclaimVerificationException","fromError","session","sessionId","startVerificationFromUrl","requestUrl","ping","previousSessionManagementCancelCallback","disposeSessionManagement","callback","undefined","previousLogSubscription","disposeLogListener","remove","previousProviderRequestCancelCallback","disposeProviderRequestListener","setOverrides","provider","featureOptions","logConsumer","sessionManagement","appInfo","capabilityAccessToken","providerCallback","providerOverride","url","jsonString","canFetchProviderInformationFromHost","providerRequestSubscription","onProviderInformationRequest","event","result","replyWithString","replyId","cancel","onLogsListener","onLogs","logConsumerRequest","enableLogHandler","canSdkCollectTelemetry","canSdkPrintLogs","arg","sessionManagementRequest","enableSdkSessionManagement","sessionCreateSubscription","onSessionCreateRequest","reply","sessionUpdateSubscription","onSessionUpdateRequest","sessionLogsSubscription","onSessionLogs","onLog","ReclaimPlatformException","clearAllOverrides","previousAttestorAuthRequestCancelCallback","disposeAttestorAuthRequestListener","setVerificationOptions","options","args","canUseAttestorAuthenticationRequest","fetchAttestorAuthenticationRequest","canDeleteCookiesBeforeVerificationStarts","attestorAuthRequestSubscription","onReclaimAttestorAuthRequest","reclaimHttpProviderJsonString"],"sourceRoot":"../../src","sources":["platform.ts"],"mappings":"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","ignoreList":[]}
@@ -1,14 +1,145 @@
1
- import { type ReclaimVerificationApi, ReclaimVerificationPlatformChannel } from './ReclaimVerificationPlatformChannel';
2
- export { ReclaimVerificationPlatformChannel, ReclaimVerificationApi, ReclaimVerificationPlatformChannelImpl } from './ReclaimVerificationPlatformChannel';
3
- export type { ReclaimVerificationApi as ReclaimVerificationApiType, ReclaimResult } from './ReclaimVerificationPlatformChannel';
1
+ import * as NativeReclaimInappModuleTypes from "./specs/NativeInappRnSdk";
2
+ /**
3
+ * [ReclaimVerification] is the main class for interacting with the Reclaim verification system.
4
+ * It provides methods to start verification processes, manage platform configurations,
5
+ * and handle verification options.
6
+ *
7
+ * The class can be instantiated with a custom platform implementation, or will use
8
+ * the default [PlatformImpl] if none is provided.
9
+ */
4
10
  export declare class ReclaimVerification {
5
- channel: ReclaimVerificationPlatformChannel;
6
- private static defaultChannel;
7
- constructor(channel?: ReclaimVerificationPlatformChannel);
8
- startVerification(request: ReclaimVerificationApi.Request): Promise<ReclaimVerificationApi.Response>;
11
+ platform: ReclaimVerification.Platform;
12
+ private static defaultPlatform;
13
+ constructor(platform?: ReclaimVerification.Platform);
14
+ startVerification(request: ReclaimVerification.Request): Promise<ReclaimVerification.Response>;
9
15
  ping(): Promise<boolean>;
10
- setOverrides(overrides: ReclaimVerificationApi.OverrideConfig): Promise<void>;
16
+ setOverrides(overrides: ReclaimVerification.OverrideConfig): Promise<void>;
11
17
  clearAllOverrides(): Promise<void>;
12
- setVerificationOptions(options?: ReclaimVerificationApi.VerificationOptions | null): Promise<void>;
18
+ setVerificationOptions(options?: ReclaimVerification.VerificationOptions | null): Promise<void>;
19
+ }
20
+ /**
21
+ * This namespace provides types involved in initiating and managing the verification process
22
+ * for proving claims about user data through various providers.
23
+ */
24
+ export declare namespace ReclaimVerification {
25
+ /**
26
+ * Represents user's session information for a verification attempt.
27
+ * This data class contains the necessary data to identify and validate a verification session.
28
+ */
29
+ type SessionInformation = NativeReclaimInappModuleTypes.SessionInformation;
30
+ /**
31
+ * Represents a request for a verification attempt.
32
+ *
33
+ * You can create a request using the [ReclaimVerification.Request] constructor or the [ReclaimVerification.Request.fromManifestMetaData] factory method.
34
+ */
35
+ type Request = NativeReclaimInappModuleTypes.Request;
36
+ /**
37
+ * Contains the proof and response data after verification
38
+ */
39
+ interface Response extends NativeReclaimInappModuleTypes.Response {
40
+ proofs: ReclaimResult.Proof[];
41
+ }
42
+ namespace ReclaimResult {
43
+ interface Proof {
44
+ identifier: string;
45
+ signatures: string[];
46
+ /**
47
+ * A data associated with this [Proof].
48
+ * The data type of this object is dynamic and can be any JSON serializable Javascript object.
49
+ */
50
+ publicData?: any | null;
51
+ witnesses: WitnessData[];
52
+ claimData: ProviderClaimData;
53
+ }
54
+ const isProof: (value: Record<string, any>) => value is Proof;
55
+ const asProofs: (proofs: Record<string, any>[]) => Proof[];
56
+ interface ProviderClaimData {
57
+ owner: string;
58
+ provider: string;
59
+ timestampS: number;
60
+ epoch: number;
61
+ context: string;
62
+ identifier: string;
63
+ parameters: string;
64
+ }
65
+ interface WitnessData {
66
+ id: string;
67
+ url: string;
68
+ }
69
+ }
70
+ interface VerificationOptions {
71
+ canDeleteCookiesBeforeVerificationStarts: boolean;
72
+ fetchAttestorAuthenticationRequest: (reclaimHttpProviderJsonString: string) => Promise<string>;
73
+ }
74
+ namespace Overrides {
75
+ interface ProviderInformation {
76
+ url?: string;
77
+ jsonString?: string;
78
+ callback?: (request: NativeReclaimInappModuleTypes.ProviderInformationRequest) => Promise<string>;
79
+ }
80
+ type FeatureOptions = NativeReclaimInappModuleTypes.FeatureOptions;
81
+ interface LogConsumer {
82
+ /**
83
+ * Handler for consuming logs exported from the SDK.
84
+ * Defaults to false.
85
+ */
86
+ onLogs?: (logJsonString: String, cancel: () => void) => void;
87
+ /**
88
+ * When enabled, logs are sent to reclaim that can be used to help you.
89
+ * Defaults to true.
90
+ */
91
+ canSdkCollectTelemetry?: boolean;
92
+ /**
93
+ * Defaults to enabled when not in release mode.
94
+ */
95
+ canSdkPrintLogs?: boolean;
96
+ }
97
+ interface SessionManagement {
98
+ onLog: (event: NativeReclaimInappModuleTypes.SessionLogEvent) => void;
99
+ onSessionCreateRequest: (event: NativeReclaimInappModuleTypes.SessionCreateRequestEvent) => Promise<boolean>;
100
+ onSessionUpdateRequest: (event: NativeReclaimInappModuleTypes.SessionUpdateRequestEvent) => Promise<boolean>;
101
+ }
102
+ type ReclaimAppInfo = NativeReclaimInappModuleTypes.ReclaimAppInfo;
103
+ }
104
+ type OverrideConfig = {
105
+ provider?: Overrides.ProviderInformation;
106
+ featureOptions?: Overrides.FeatureOptions;
107
+ logConsumer?: Overrides.LogConsumer;
108
+ sessionManagement?: Overrides.SessionManagement;
109
+ appInfo?: Overrides.ReclaimAppInfo;
110
+ capabilityAccessToken?: string | null;
111
+ };
112
+ enum ExceptionType {
113
+ Cancelled = "Cancelled",
114
+ Dismissed = "Dismissed",
115
+ SessionExpired = "SessionExpired",
116
+ Failed = "Failed"
117
+ }
118
+ class ReclaimPlatformException extends Error {
119
+ readonly innerError: Error;
120
+ readonly reason?: string;
121
+ readonly details?: any;
122
+ constructor(message: string, innerError: Error);
123
+ static isReclaimPlatformException(error: Error): error is ReclaimPlatformException;
124
+ }
125
+ class ReclaimVerificationException extends Error {
126
+ readonly innerError: Error;
127
+ readonly type: ExceptionType;
128
+ readonly sessionId: string;
129
+ readonly "didSubmitManualVerification": boolean;
130
+ readonly "reason": string;
131
+ constructor(message: string, innerError: Error, type: ExceptionType, sessionId: string, didSubmitManualVerification: boolean, reason: string);
132
+ private static fromTypeName;
133
+ static fromError(error: Error, sessionIdHint: string): ReclaimVerificationException;
134
+ static isReclaimVerificationException(error: Error): error is ReclaimVerificationException;
135
+ }
136
+ abstract class Platform {
137
+ abstract startVerification(request: ReclaimVerification.Request): Promise<ReclaimVerification.Response>;
138
+ abstract startVerificationFromUrl(requestUrl: string): Promise<ReclaimVerification.Response>;
139
+ abstract ping(): Promise<boolean>;
140
+ abstract setOverrides(config: ReclaimVerification.OverrideConfig): Promise<void>;
141
+ abstract clearAllOverrides(): Promise<void>;
142
+ abstract setVerificationOptions(options?: ReclaimVerification.VerificationOptions | null): Promise<void>;
143
+ }
13
144
  }
14
145
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,sBAAsB,EAAE,kCAAkC,EAA0C,MAAM,sCAAsC,CAAC;AAC/J,OAAO,EAAE,kCAAkC,EAAE,sBAAsB,EAAE,sCAAsC,EAAE,MAAM,sCAAsC,CAAC;AAC1J,YAAY,EAAE,sBAAsB,IAAI,0BAA0B,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAEhI,qBAAa,mBAAmB;IACvB,OAAO,EAAE,kCAAkC,CAAC;IAEnD,OAAO,CAAC,MAAM,CAAC,cAAc,CAAmD;gBAE7D,OAAO,CAAC,EAAE,kCAAkC;IAWlD,iBAAiB,CAAC,OAAO,EAAE,sBAAsB,CAAC,OAAO,GAAG,OAAO,CAAC,sBAAsB,CAAC,QAAQ,CAAC;IAIpG,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;IAI9B,YAAY,CAAC,SAAS,EAAE,sBAAsB,CAAC,cAAc;IAI7D,iBAAiB;IAIjB,sBAAsB,CAAC,OAAO,CAAC,EAAE,sBAAsB,CAAC,mBAAmB,GAAG,IAAI;CAG1F"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,6BAA6B,MAAM,0BAA0B,CAAC;AAG1E;;;;;;;GAOG;AACH,qBAAa,mBAAmB;IACvB,QAAQ,EAAE,mBAAmB,CAAC,QAAQ,CAAC;IAE9C,OAAO,CAAC,MAAM,CAAC,eAAe,CAA6C;gBAExD,QAAQ,CAAC,EAAE,mBAAmB,CAAC,QAAQ;IAW7C,iBAAiB,CAAC,OAAO,EAAE,mBAAmB,CAAC,OAAO,GAAG,OAAO,CAAC,mBAAmB,CAAC,QAAQ,CAAC;IAI9F,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;IAI9B,YAAY,CAAC,SAAS,EAAE,mBAAmB,CAAC,cAAc;IAI1D,iBAAiB;IAIjB,sBAAsB,CAAC,OAAO,CAAC,EAAE,mBAAmB,CAAC,mBAAmB,GAAG,IAAI;CAGvF;AAGD;;;GAGG;AACH,yBAAiB,mBAAmB,CAAC;IACnC;;;OAGG;IACH,KAAY,kBAAkB,GAAG,6BAA6B,CAAC,kBAAkB,CAAC;IAElF;;;;OAIG;IACH,KAAY,OAAO,GAAG,6BAA6B,CAAC,OAAO,CAAC;IAE5D;;OAEG;IACH,UAAiB,QAAS,SAAQ,6BAA6B,CAAC,QAAQ;QACtE,MAAM,EAAE,aAAa,CAAC,KAAK,EAAE,CAAC;KAC/B;IAED,UAAiB,aAAa,CAAC;QAC7B,UAAiB,KAAK;YACpB,UAAU,EAAE,MAAM,CAAC;YACnB,UAAU,EAAE,MAAM,EAAE,CAAC;YACrB;;;eAGG;YACH,UAAU,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC;YACxB,SAAS,EAAE,WAAW,EAAE,CAAC;YACzB,SAAS,EAAE,iBAAiB,CAAC;SAC9B;QAEM,MAAM,OAAO,GAAI,OAAO,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAG,KAAK,IAAI,KAE7D,CAAA;QAEM,MAAM,QAAQ,GAAI,QAAQ,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,KAAG,KAAK,EAE7D,CAAA;QAED,UAAiB,iBAAiB;YAChC,KAAK,EAAE,MAAM,CAAC;YACd,QAAQ,EAAE,MAAM,CAAC;YAEjB,UAAU,EAAE,MAAM,CAAC;YAEnB,KAAK,EAAE,MAAM,CAAC;YACd,OAAO,EAAE,MAAM,CAAC;YAChB,UAAU,EAAE,MAAM,CAAC;YACnB,UAAU,EAAE,MAAM,CAAC;SACpB;QAED,UAAiB,WAAW;YAC1B,EAAE,EAAE,MAAM,CAAC;YACX,GAAG,EAAE,MAAM,CAAC;SACb;KACF;IAED,UAAiB,mBAAmB;QAClC,wCAAwC,EAAE,OAAO,CAAC;QAClD,kCAAkC,EAAE,CAAC,6BAA6B,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;KAChG;IAED,UAAiB,SAAS,CAAC;QACzB,UAAiB,mBAAmB;YAClC,GAAG,CAAC,EAAE,MAAM,CAAC;YACb,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,QAAQ,CAAC,EAAE,CAAC,OAAO,EAAE,6BAA6B,CAAC,0BAA0B,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;SACnG;QACD,KAAY,cAAc,GAAG,6BAA6B,CAAC,cAAc,CAAC;QAC1E,UAAiB,WAAW;YAC1B;;;eAGG;YACH,MAAM,CAAC,EAAE,CAAC,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,IAAI,KAAK,IAAI,CAAC;YAE7D;;;eAGG;YACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;YAEjC;;eAEG;YACH,eAAe,CAAC,EAAE,OAAO,CAAC;SAC3B;QACD,UAAiB,iBAAiB;YAChC,KAAK,EAAE,CAAC,KAAK,EAAE,6BAA6B,CAAC,eAAe,KAAK,IAAI,CAAC;YACtE,sBAAsB,EAAE,CAAC,KAAK,EAAE,6BAA6B,CAAC,yBAAyB,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;YAC7G,sBAAsB,EAAE,CAAC,KAAK,EAAE,6BAA6B,CAAC,yBAAyB,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;SAC9G;QACD,KAAY,cAAc,GAAG,6BAA6B,CAAC,cAAc,CAAC;KAC3E;IAED,KAAY,cAAc,GAAG;QAC3B,QAAQ,CAAC,EAAE,SAAS,CAAC,mBAAmB,CAAC;QACzC,cAAc,CAAC,EAAE,SAAS,CAAC,cAAc,CAAC;QAC1C,WAAW,CAAC,EAAE,SAAS,CAAC,WAAW,CAAC;QACpC,iBAAiB,CAAC,EAAE,SAAS,CAAC,iBAAiB,CAAC;QAChD,OAAO,CAAC,EAAE,SAAS,CAAC,cAAc,CAAC;QACnC,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;KACvC,CAAA;IAED,KAAY,aAAa;QACvB,SAAS,cAAc;QACvB,SAAS,cAAc;QACvB,cAAc,mBAAmB;QACjC,MAAM,WAAW;KAClB;IAED,MAAa,wBAAyB,SAAQ,KAAK;QACjD,QAAQ,CAAC,UAAU,EAAE,KAAK,CAAA;QAC1B,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;QACxB,QAAQ,CAAC,OAAO,CAAC,EAAE,GAAG,CAAA;oBAEV,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,KAAK;QAa9C,MAAM,CAAC,0BAA0B,CAAC,KAAK,EAAE,KAAK,GAAG,KAAK,IAAI,wBAAwB;KAGnF;IAED,MAAa,4BAA6B,SAAQ,KAAK;QACrD,QAAQ,CAAC,UAAU,EAAE,KAAK,CAAA;QAC1B,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAA;QAC5B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;QAC1B,QAAQ,CAAC,6BAA6B,EAAE,OAAO,CAAA;QAC/C,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;oBAGvB,OAAO,EAAE,MAAM,EACf,UAAU,EAAE,KAAK,EACjB,IAAI,EAAE,aAAa,EACnB,SAAS,EAAE,MAAM,EACjB,2BAA2B,EAAE,OAAO,EACpC,MAAM,EAAE,MAAM;QAUhB,OAAO,CAAC,MAAM,CAAC,YAAY;QAkB3B,MAAM,CAAC,SAAS,CAAC,KAAK,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,GAAG,4BAA4B;QA4BnF,MAAM,CAAC,8BAA8B,CAAC,KAAK,EAAE,KAAK,GAAG,KAAK,IAAI,4BAA4B;KAG3F;IAED,eAAsB,QAAQ;QAC5B,QAAQ,CAAC,iBAAiB,CAAC,OAAO,EAAE,mBAAmB,CAAC,OAAO,GAAG,OAAO,CAAC,mBAAmB,CAAC,QAAQ,CAAC;QAEvG,QAAQ,CAAC,wBAAwB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC,QAAQ,CAAC;QAE5F,QAAQ,CAAC,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;QAEjC,QAAQ,CAAC,YAAY,CAAC,MAAM,EAAE,mBAAmB,CAAC,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;QAEhF,QAAQ,CAAC,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;QAE3C,QAAQ,CAAC,sBAAsB,CAAC,OAAO,CAAC,EAAE,mBAAmB,CAAC,mBAAmB,GAAG,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;KACzG;CACF"}
@@ -0,0 +1,18 @@
1
+ import { ReclaimVerification } from "./index";
2
+ export declare class PlatformImpl extends ReclaimVerification.Platform {
3
+ startVerification(request: ReclaimVerification.Request): Promise<ReclaimVerification.Response>;
4
+ startVerificationFromUrl(requestUrl: string): Promise<ReclaimVerification.Response>;
5
+ ping(): Promise<boolean>;
6
+ private previousSessionManagementCancelCallback;
7
+ disposeSessionManagement(): void;
8
+ private previousLogSubscription;
9
+ disposeLogListener(): void;
10
+ private previousProviderRequestCancelCallback;
11
+ private disposeProviderRequestListener;
12
+ setOverrides({ provider, featureOptions, logConsumer, sessionManagement, appInfo, capabilityAccessToken }: ReclaimVerification.OverrideConfig): Promise<void>;
13
+ clearAllOverrides(): Promise<void>;
14
+ private previousAttestorAuthRequestCancelCallback;
15
+ disposeAttestorAuthRequestListener(): void;
16
+ setVerificationOptions(options?: ReclaimVerification.VerificationOptions | null): Promise<void>;
17
+ }
18
+ //# sourceMappingURL=platform.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"platform.d.ts","sourceRoot":"","sources":["../../../../src/platform.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAE9C,qBAAa,YAAa,SAAQ,mBAAmB,CAAC,QAAQ;IAC3C,iBAAiB,CAAC,OAAO,EAAE,mBAAmB,CAAC,OAAO,GAAG,OAAO,CAAC,mBAAmB,CAAC,QAAQ,CAAC;IAkB9F,wBAAwB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC,QAAQ,CAAC;IAkBnF,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;IAIvC,OAAO,CAAC,uCAAuC,CAA6B;IAC5E,wBAAwB;IAQxB,OAAO,CAAC,uBAAuB,CAAkC;IACjE,kBAAkB;IAKlB,OAAO,CAAC,qCAAqC,CAA6B;IAC1E,OAAO,CAAC,8BAA8B;IAQvB,YAAY,CAAC,EACxB,QAAQ,EACR,cAAc,EACd,WAAW,EACX,iBAAiB,EACjB,OAAO,EACP,qBAAqB,EACxB,EAAE,mBAAmB,CAAC,cAAc;IAgGtB,iBAAiB;IAOhC,OAAO,CAAC,yCAAyC,CAA6B;IAC9E,kCAAkC;IAQnB,sBAAsB,CAAC,OAAO,CAAC,EAAE,mBAAmB,CAAC,mBAAmB,GAAG,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;CA4BjH"}
@@ -1,14 +1,145 @@
1
- import { type ReclaimVerificationApi, ReclaimVerificationPlatformChannel } from './ReclaimVerificationPlatformChannel';
2
- export { ReclaimVerificationPlatformChannel, ReclaimVerificationApi, ReclaimVerificationPlatformChannelImpl } from './ReclaimVerificationPlatformChannel';
3
- export type { ReclaimVerificationApi as ReclaimVerificationApiType, ReclaimResult } from './ReclaimVerificationPlatformChannel';
1
+ import * as NativeReclaimInappModuleTypes from "./specs/NativeInappRnSdk";
2
+ /**
3
+ * [ReclaimVerification] is the main class for interacting with the Reclaim verification system.
4
+ * It provides methods to start verification processes, manage platform configurations,
5
+ * and handle verification options.
6
+ *
7
+ * The class can be instantiated with a custom platform implementation, or will use
8
+ * the default [PlatformImpl] if none is provided.
9
+ */
4
10
  export declare class ReclaimVerification {
5
- channel: ReclaimVerificationPlatformChannel;
6
- private static defaultChannel;
7
- constructor(channel?: ReclaimVerificationPlatformChannel);
8
- startVerification(request: ReclaimVerificationApi.Request): Promise<ReclaimVerificationApi.Response>;
11
+ platform: ReclaimVerification.Platform;
12
+ private static defaultPlatform;
13
+ constructor(platform?: ReclaimVerification.Platform);
14
+ startVerification(request: ReclaimVerification.Request): Promise<ReclaimVerification.Response>;
9
15
  ping(): Promise<boolean>;
10
- setOverrides(overrides: ReclaimVerificationApi.OverrideConfig): Promise<void>;
16
+ setOverrides(overrides: ReclaimVerification.OverrideConfig): Promise<void>;
11
17
  clearAllOverrides(): Promise<void>;
12
- setVerificationOptions(options?: ReclaimVerificationApi.VerificationOptions | null): Promise<void>;
18
+ setVerificationOptions(options?: ReclaimVerification.VerificationOptions | null): Promise<void>;
19
+ }
20
+ /**
21
+ * This namespace provides types involved in initiating and managing the verification process
22
+ * for proving claims about user data through various providers.
23
+ */
24
+ export declare namespace ReclaimVerification {
25
+ /**
26
+ * Represents user's session information for a verification attempt.
27
+ * This data class contains the necessary data to identify and validate a verification session.
28
+ */
29
+ type SessionInformation = NativeReclaimInappModuleTypes.SessionInformation;
30
+ /**
31
+ * Represents a request for a verification attempt.
32
+ *
33
+ * You can create a request using the [ReclaimVerification.Request] constructor or the [ReclaimVerification.Request.fromManifestMetaData] factory method.
34
+ */
35
+ type Request = NativeReclaimInappModuleTypes.Request;
36
+ /**
37
+ * Contains the proof and response data after verification
38
+ */
39
+ interface Response extends NativeReclaimInappModuleTypes.Response {
40
+ proofs: ReclaimResult.Proof[];
41
+ }
42
+ namespace ReclaimResult {
43
+ interface Proof {
44
+ identifier: string;
45
+ signatures: string[];
46
+ /**
47
+ * A data associated with this [Proof].
48
+ * The data type of this object is dynamic and can be any JSON serializable Javascript object.
49
+ */
50
+ publicData?: any | null;
51
+ witnesses: WitnessData[];
52
+ claimData: ProviderClaimData;
53
+ }
54
+ const isProof: (value: Record<string, any>) => value is Proof;
55
+ const asProofs: (proofs: Record<string, any>[]) => Proof[];
56
+ interface ProviderClaimData {
57
+ owner: string;
58
+ provider: string;
59
+ timestampS: number;
60
+ epoch: number;
61
+ context: string;
62
+ identifier: string;
63
+ parameters: string;
64
+ }
65
+ interface WitnessData {
66
+ id: string;
67
+ url: string;
68
+ }
69
+ }
70
+ interface VerificationOptions {
71
+ canDeleteCookiesBeforeVerificationStarts: boolean;
72
+ fetchAttestorAuthenticationRequest: (reclaimHttpProviderJsonString: string) => Promise<string>;
73
+ }
74
+ namespace Overrides {
75
+ interface ProviderInformation {
76
+ url?: string;
77
+ jsonString?: string;
78
+ callback?: (request: NativeReclaimInappModuleTypes.ProviderInformationRequest) => Promise<string>;
79
+ }
80
+ type FeatureOptions = NativeReclaimInappModuleTypes.FeatureOptions;
81
+ interface LogConsumer {
82
+ /**
83
+ * Handler for consuming logs exported from the SDK.
84
+ * Defaults to false.
85
+ */
86
+ onLogs?: (logJsonString: String, cancel: () => void) => void;
87
+ /**
88
+ * When enabled, logs are sent to reclaim that can be used to help you.
89
+ * Defaults to true.
90
+ */
91
+ canSdkCollectTelemetry?: boolean;
92
+ /**
93
+ * Defaults to enabled when not in release mode.
94
+ */
95
+ canSdkPrintLogs?: boolean;
96
+ }
97
+ interface SessionManagement {
98
+ onLog: (event: NativeReclaimInappModuleTypes.SessionLogEvent) => void;
99
+ onSessionCreateRequest: (event: NativeReclaimInappModuleTypes.SessionCreateRequestEvent) => Promise<boolean>;
100
+ onSessionUpdateRequest: (event: NativeReclaimInappModuleTypes.SessionUpdateRequestEvent) => Promise<boolean>;
101
+ }
102
+ type ReclaimAppInfo = NativeReclaimInappModuleTypes.ReclaimAppInfo;
103
+ }
104
+ type OverrideConfig = {
105
+ provider?: Overrides.ProviderInformation;
106
+ featureOptions?: Overrides.FeatureOptions;
107
+ logConsumer?: Overrides.LogConsumer;
108
+ sessionManagement?: Overrides.SessionManagement;
109
+ appInfo?: Overrides.ReclaimAppInfo;
110
+ capabilityAccessToken?: string | null;
111
+ };
112
+ enum ExceptionType {
113
+ Cancelled = "Cancelled",
114
+ Dismissed = "Dismissed",
115
+ SessionExpired = "SessionExpired",
116
+ Failed = "Failed"
117
+ }
118
+ class ReclaimPlatformException extends Error {
119
+ readonly innerError: Error;
120
+ readonly reason?: string;
121
+ readonly details?: any;
122
+ constructor(message: string, innerError: Error);
123
+ static isReclaimPlatformException(error: Error): error is ReclaimPlatformException;
124
+ }
125
+ class ReclaimVerificationException extends Error {
126
+ readonly innerError: Error;
127
+ readonly type: ExceptionType;
128
+ readonly sessionId: string;
129
+ readonly "didSubmitManualVerification": boolean;
130
+ readonly "reason": string;
131
+ constructor(message: string, innerError: Error, type: ExceptionType, sessionId: string, didSubmitManualVerification: boolean, reason: string);
132
+ private static fromTypeName;
133
+ static fromError(error: Error, sessionIdHint: string): ReclaimVerificationException;
134
+ static isReclaimVerificationException(error: Error): error is ReclaimVerificationException;
135
+ }
136
+ abstract class Platform {
137
+ abstract startVerification(request: ReclaimVerification.Request): Promise<ReclaimVerification.Response>;
138
+ abstract startVerificationFromUrl(requestUrl: string): Promise<ReclaimVerification.Response>;
139
+ abstract ping(): Promise<boolean>;
140
+ abstract setOverrides(config: ReclaimVerification.OverrideConfig): Promise<void>;
141
+ abstract clearAllOverrides(): Promise<void>;
142
+ abstract setVerificationOptions(options?: ReclaimVerification.VerificationOptions | null): Promise<void>;
143
+ }
13
144
  }
14
145
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,sBAAsB,EAAE,kCAAkC,EAA0C,MAAM,sCAAsC,CAAC;AAC/J,OAAO,EAAE,kCAAkC,EAAE,sBAAsB,EAAE,sCAAsC,EAAE,MAAM,sCAAsC,CAAC;AAC1J,YAAY,EAAE,sBAAsB,IAAI,0BAA0B,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAEhI,qBAAa,mBAAmB;IACvB,OAAO,EAAE,kCAAkC,CAAC;IAEnD,OAAO,CAAC,MAAM,CAAC,cAAc,CAAmD;gBAE7D,OAAO,CAAC,EAAE,kCAAkC;IAWlD,iBAAiB,CAAC,OAAO,EAAE,sBAAsB,CAAC,OAAO,GAAG,OAAO,CAAC,sBAAsB,CAAC,QAAQ,CAAC;IAIpG,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;IAI9B,YAAY,CAAC,SAAS,EAAE,sBAAsB,CAAC,cAAc;IAI7D,iBAAiB;IAIjB,sBAAsB,CAAC,OAAO,CAAC,EAAE,sBAAsB,CAAC,mBAAmB,GAAG,IAAI;CAG1F"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,18 @@
1
+ import { ReclaimVerification } from "./index";
2
+ export declare class PlatformImpl extends ReclaimVerification.Platform {
3
+ startVerification(request: ReclaimVerification.Request): Promise<ReclaimVerification.Response>;
4
+ startVerificationFromUrl(requestUrl: string): Promise<ReclaimVerification.Response>;
5
+ ping(): Promise<boolean>;
6
+ private previousSessionManagementCancelCallback;
7
+ disposeSessionManagement(): void;
8
+ private previousLogSubscription;
9
+ disposeLogListener(): void;
10
+ private previousProviderRequestCancelCallback;
11
+ private disposeProviderRequestListener;
12
+ setOverrides({ provider, featureOptions, logConsumer, sessionManagement, appInfo, capabilityAccessToken }: ReclaimVerification.OverrideConfig): Promise<void>;
13
+ clearAllOverrides(): Promise<void>;
14
+ private previousAttestorAuthRequestCancelCallback;
15
+ disposeAttestorAuthRequestListener(): void;
16
+ setVerificationOptions(options?: ReclaimVerification.VerificationOptions | null): Promise<void>;
17
+ }
18
+ //# sourceMappingURL=platform.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"platform.d.ts","sourceRoot":"","sources":["../../../../src/platform.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAE9C,qBAAa,YAAa,SAAQ,mBAAmB,CAAC,QAAQ;IAC3C,iBAAiB,CAAC,OAAO,EAAE,mBAAmB,CAAC,OAAO,GAAG,OAAO,CAAC,mBAAmB,CAAC,QAAQ,CAAC;IAkB9F,wBAAwB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC,QAAQ,CAAC;IAkBnF,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;IAIvC,OAAO,CAAC,uCAAuC,CAA6B;IAC5E,wBAAwB;IAQxB,OAAO,CAAC,uBAAuB,CAAkC;IACjE,kBAAkB;IAKlB,OAAO,CAAC,qCAAqC,CAA6B;IAC1E,OAAO,CAAC,8BAA8B;IAQvB,YAAY,CAAC,EACxB,QAAQ,EACR,cAAc,EACd,WAAW,EACX,iBAAiB,EACjB,OAAO,EACP,qBAAqB,EACxB,EAAE,mBAAmB,CAAC,cAAc;IAgGtB,iBAAiB;IAOhC,OAAO,CAAC,yCAAyC,CAA6B;IAC9E,kCAAkC;IAQnB,sBAAsB,CAAC,OAAO,CAAC,EAAE,mBAAmB,CAAC,mBAAmB,GAAG,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;CA4BjH"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reclaimprotocol/inapp-rn-sdk",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Reclaim Protocol's InApp React Native SDK for ZK proof generations for requests with an in-app experience of web verification",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./lib/commonjs/index.js",
@@ -44,6 +44,7 @@
44
44
  "lint": "eslint \"**/*.{js,ts,tsx}\"",
45
45
  "android:gen:specs": "cd example/android && ./gradlew :app:invokeLibraryCodegen",
46
46
  "ios:gen:specs": "cd example/ios && bundle install && bundle exec pod install",
47
+ "gen:specs": "npx react-native codegen",
47
48
  "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
48
49
  "prepare": "bob build",
49
50
  "release": "release-it"