@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
package/README.md CHANGED
@@ -290,6 +290,7 @@ error.innerError
290
290
 
291
291
  ## Migration
292
292
 
293
+ - Migration steps for [0.3.1](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#031)
293
294
  - Migration steps for [0.3.0](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#030)
294
295
  - Migration steps for [0.2.1](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#021)
295
296
 
@@ -4,52 +4,145 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.ReclaimVerification = void 0;
7
- Object.defineProperty(exports, "ReclaimVerificationApi", {
8
- enumerable: true,
9
- get: function () {
10
- return _ReclaimVerificationPlatformChannel.ReclaimVerificationApi;
11
- }
12
- });
13
- Object.defineProperty(exports, "ReclaimVerificationPlatformChannel", {
14
- enumerable: true,
15
- get: function () {
16
- return _ReclaimVerificationPlatformChannel.ReclaimVerificationPlatformChannel;
17
- }
18
- });
19
- Object.defineProperty(exports, "ReclaimVerificationPlatformChannelImpl", {
20
- enumerable: true,
21
- get: function () {
22
- return _ReclaimVerificationPlatformChannel.ReclaimVerificationPlatformChannelImpl;
23
- }
24
- });
25
- var _ReclaimVerificationPlatformChannel = require("./ReclaimVerificationPlatformChannel.js");
7
+ var _platform = require("./platform.js");
8
+ /**
9
+ * [ReclaimVerification] is the main class for interacting with the Reclaim verification system.
10
+ * It provides methods to start verification processes, manage platform configurations,
11
+ * and handle verification options.
12
+ *
13
+ * The class can be instantiated with a custom platform implementation, or will use
14
+ * the default [PlatformImpl] if none is provided.
15
+ */
26
16
  class ReclaimVerification {
27
- static defaultChannel = null;
28
- constructor(channel) {
29
- if (channel) {
30
- this.channel = channel;
17
+ static defaultPlatform = null;
18
+ constructor(platform) {
19
+ if (platform) {
20
+ this.platform = platform;
31
21
  } else {
32
- if (ReclaimVerification.defaultChannel == null) {
33
- ReclaimVerification.defaultChannel = new _ReclaimVerificationPlatformChannel.ReclaimVerificationPlatformChannelImpl();
22
+ if (ReclaimVerification.defaultPlatform == null) {
23
+ ReclaimVerification.defaultPlatform = new _platform.PlatformImpl();
34
24
  }
35
- this.channel = ReclaimVerification.defaultChannel;
25
+ this.platform = ReclaimVerification.defaultPlatform;
36
26
  }
37
27
  }
38
28
  async startVerification(request) {
39
- return this.channel.startVerification(request);
29
+ return this.platform.startVerification(request);
40
30
  }
41
31
  async ping() {
42
- return this.channel.ping();
32
+ return this.platform.ping();
43
33
  }
44
34
  setOverrides(overrides) {
45
- return this.channel.setOverrides(overrides);
35
+ return this.platform.setOverrides(overrides);
46
36
  }
47
37
  clearAllOverrides() {
48
- return this.channel.clearAllOverrides();
38
+ return this.platform.clearAllOverrides();
49
39
  }
50
40
  setVerificationOptions(options) {
51
- return this.channel.setVerificationOptions(options);
41
+ return this.platform.setVerificationOptions(options);
52
42
  }
53
43
  }
44
+
45
+ /**
46
+ * This namespace provides types involved in initiating and managing the verification process
47
+ * for proving claims about user data through various providers.
48
+ */
54
49
  exports.ReclaimVerification = ReclaimVerification;
50
+ (function (_ReclaimVerification) {
51
+ /**
52
+ * Represents user's session information for a verification attempt.
53
+ * This data class contains the necessary data to identify and validate a verification session.
54
+ */
55
+ /**
56
+ * Represents a request for a verification attempt.
57
+ *
58
+ * You can create a request using the [ReclaimVerification.Request] constructor or the [ReclaimVerification.Request.fromManifestMetaData] factory method.
59
+ */
60
+ /**
61
+ * Contains the proof and response data after verification
62
+ */
63
+ let ReclaimResult;
64
+ (function (_ReclaimResult) {
65
+ const isProof = _ReclaimResult.isProof = value => {
66
+ return typeof value === 'object' && value !== null && 'identifier' in value && 'signatures' in value && 'witnesses' in value;
67
+ };
68
+ const asProofs = _ReclaimResult.asProofs = proofs => {
69
+ return proofs.filter(isProof);
70
+ };
71
+ })(ReclaimResult || (ReclaimResult = _ReclaimVerification.ReclaimResult || (_ReclaimVerification.ReclaimResult = {})));
72
+ let Overrides;
73
+ (function (_Overrides) {
74
+ ;
75
+ })(Overrides || (Overrides = _ReclaimVerification.Overrides || (_ReclaimVerification.Overrides = {})));
76
+ let ExceptionType = /*#__PURE__*/function (ExceptionType) {
77
+ ExceptionType["Cancelled"] = "Cancelled";
78
+ ExceptionType["Dismissed"] = "Dismissed";
79
+ ExceptionType["SessionExpired"] = "SessionExpired";
80
+ ExceptionType["Failed"] = "Failed";
81
+ return ExceptionType;
82
+ }({});
83
+ _ReclaimVerification.ExceptionType = ExceptionType;
84
+ class ReclaimPlatformException extends Error {
85
+ constructor(message, innerError) {
86
+ super(message);
87
+ this.innerError = innerError;
88
+ this.reason = innerError.message;
89
+ if ('userInfo' in innerError) {
90
+ const details = innerError.userInfo;
91
+ this.details = details;
92
+ if ('message' in details) {
93
+ this.reason = details.message || this.reason;
94
+ }
95
+ }
96
+ }
97
+ static isReclaimPlatformException(error) {
98
+ return error instanceof ReclaimPlatformException;
99
+ }
100
+ }
101
+ _ReclaimVerification.ReclaimPlatformException = ReclaimPlatformException;
102
+ class ReclaimVerificationException extends Error {
103
+ constructor(message, innerError, type, sessionId, didSubmitManualVerification, reason) {
104
+ super(message);
105
+ this.innerError = innerError;
106
+ this.type = type;
107
+ this.sessionId = sessionId;
108
+ this.didSubmitManualVerification = didSubmitManualVerification;
109
+ this.reason = reason;
110
+ }
111
+ static fromTypeName(name) {
112
+ switch (name) {
113
+ case "cancelled":
114
+ case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Cancelled":
115
+ return ExceptionType.Cancelled;
116
+ case "dismissed":
117
+ case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Dismissed":
118
+ return ExceptionType.Dismissed;
119
+ case "sessionExpired":
120
+ case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.SessionExpired":
121
+ return ExceptionType.SessionExpired;
122
+ case "failed":
123
+ case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Failed":
124
+ return ExceptionType.Failed;
125
+ }
126
+ return ExceptionType.Failed;
127
+ }
128
+ static fromError(error, sessionIdHint) {
129
+ if ('userInfo' in error) {
130
+ // From native, we send information about error in userInfo
131
+ let userInfo = error.userInfo;
132
+ if (userInfo) {
133
+ let type = ReclaimVerification.ReclaimVerificationException.fromTypeName(userInfo.errorType);
134
+ let maybeSessionId = userInfo?.sessionId;
135
+ return new ReclaimVerificationException(error.message, error, type, typeof maybeSessionId === 'string' && maybeSessionId ? maybeSessionId : sessionIdHint, userInfo?.didSubmitManualVerification ?? false, userInfo?.reason ?? "");
136
+ }
137
+ }
138
+ return new ReclaimVerificationException(error.message, error, ReclaimVerification.ExceptionType.Failed, sessionIdHint, false, "");
139
+ }
140
+ static isReclaimVerificationException(error) {
141
+ return error instanceof ReclaimVerificationException;
142
+ }
143
+ }
144
+ _ReclaimVerification.ReclaimVerificationException = ReclaimVerificationException;
145
+ class Platform {}
146
+ _ReclaimVerification.Platform = Platform;
147
+ })(ReclaimVerification || (exports.ReclaimVerification = ReclaimVerification = {}));
55
148
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_ReclaimVerificationPlatformChannel","require","ReclaimVerification","defaultChannel","constructor","channel","ReclaimVerificationPlatformChannelImpl","startVerification","request","ping","setOverrides","overrides","clearAllOverrides","setVerificationOptions","options","exports"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,mCAAA,GAAAC,OAAA;AAIO,MAAMC,mBAAmB,CAAC;EAG/B,OAAeC,cAAc,GAA8C,IAAI;EAExEC,WAAWA,CAACC,OAA4C,EAAE;IAC/D,IAAIA,OAAO,EAAE;MACX,IAAI,CAACA,OAAO,GAAGA,OAAO;IACxB,CAAC,MAAM;MACL,IAAIH,mBAAmB,CAACC,cAAc,IAAI,IAAI,EAAE;QAC9CD,mBAAmB,CAACC,cAAc,GAAG,IAAIG,0EAAsC,CAAC,CAAC;MACnF;MACA,IAAI,CAACD,OAAO,GAAGH,mBAAmB,CAACC,cAAc;IACnD;EACF;EAEA,MAAaI,iBAAiBA,CAACC,OAAuC,EAA4C;IAChH,OAAO,IAAI,CAACH,OAAO,CAACE,iBAAiB,CAACC,OAAO,CAAC;EAChD;EAEA,MAAaC,IAAIA,CAAA,EAAqB;IACpC,OAAO,IAAI,CAACJ,OAAO,CAACI,IAAI,CAAC,CAAC;EAC5B;EAEOC,YAAYA,CAACC,SAAgD,EAAE;IACpE,OAAO,IAAI,CAACN,OAAO,CAACK,YAAY,CAACC,SAAS,CAAC;EAC7C;EAEOC,iBAAiBA,CAAA,EAAG;IACzB,OAAO,IAAI,CAACP,OAAO,CAACO,iBAAiB,CAAC,CAAC;EACzC;EAEOC,sBAAsBA,CAACC,OAA2D,EAAE;IACzF,OAAO,IAAI,CAACT,OAAO,CAACQ,sBAAsB,CAACC,OAAO,CAAC;EACrD;AACF;AAACC,OAAA,CAAAb,mBAAA,GAAAA,mBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_platform","require","ReclaimVerification","defaultPlatform","constructor","platform","PlatformImpl","startVerification","request","ping","setOverrides","overrides","clearAllOverrides","setVerificationOptions","options","exports","_ReclaimVerification","ReclaimResult","_ReclaimResult","isProof","value","asProofs","proofs","filter","Overrides","_Overrides","ExceptionType","ReclaimPlatformException","Error","message","innerError","reason","details","userInfo","isReclaimPlatformException","error","ReclaimVerificationException","type","sessionId","didSubmitManualVerification","fromTypeName","name","Cancelled","Dismissed","SessionExpired","Failed","fromError","sessionIdHint","errorType","maybeSessionId","isReclaimVerificationException","Platform"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"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","ignoreList":[]}
@@ -3,118 +3,24 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.ReclaimVerificationPlatformChannelImpl = exports.ReclaimVerificationPlatformChannel = exports.ReclaimVerificationApi = void 0;
6
+ exports.PlatformImpl = void 0;
7
7
  var _NativeInappRnSdk = _interopRequireDefault(require("./specs/NativeInappRnSdk.js"));
8
- var _proof = require("./types/proof.js");
8
+ var _index = require("./index.js");
9
9
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
10
- /**
11
- * This namespace provides types involved in initiating and managing the verification process
12
- * for proving claims about user data through various providers.
13
- */
14
- let ReclaimVerificationApi = exports.ReclaimVerificationApi = void 0;
15
- (function (_ReclaimVerificationApi) {
16
- /**
17
- * Represents user's session information for a verification attempt.
18
- * This data class contains the necessary data to identify and validate a verification session.
19
- */
20
- /**
21
- * Represents a request for a verification attempt.
22
- *
23
- * You can create a request using the [ReclaimVerification.Request] constructor or the [ReclaimVerification.Request.fromManifestMetaData] factory method.
24
- */
25
- /**
26
- * Contains the proof and response data after verification
27
- */
28
- let Overrides;
29
- (function (_Overrides) {
30
- ;
31
- })(Overrides || (Overrides = _ReclaimVerificationApi.Overrides || (_ReclaimVerificationApi.Overrides = {})));
32
- let ExceptionType = /*#__PURE__*/function (ExceptionType) {
33
- ExceptionType["Cancelled"] = "Cancelled";
34
- ExceptionType["Dismissed"] = "Dismissed";
35
- ExceptionType["SessionExpired"] = "SessionExpired";
36
- ExceptionType["Failed"] = "Failed";
37
- return ExceptionType;
38
- }({});
39
- _ReclaimVerificationApi.ExceptionType = ExceptionType;
40
- class ReclaimPlatformException extends Error {
41
- constructor(message, innerError) {
42
- super(message);
43
- this.innerError = innerError;
44
- this.reason = innerError.message;
45
- if ('userInfo' in innerError) {
46
- const details = innerError.userInfo;
47
- this.details = details;
48
- if ('message' in details) {
49
- this.reason = details.message || this.reason;
50
- }
51
- }
52
- }
53
- static isReclaimPlatformException(error) {
54
- return error instanceof ReclaimPlatformException;
55
- }
56
- }
57
- _ReclaimVerificationApi.ReclaimPlatformException = ReclaimPlatformException;
58
- class ReclaimVerificationException extends Error {
59
- constructor(message, innerError, type, sessionId, didSubmitManualVerification, reason) {
60
- super(message);
61
- this.innerError = innerError;
62
- this.type = type;
63
- this.sessionId = sessionId;
64
- this.didSubmitManualVerification = didSubmitManualVerification;
65
- this.reason = reason;
66
- }
67
- static fromTypeName(name) {
68
- switch (name) {
69
- case "cancelled":
70
- case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Cancelled":
71
- return ExceptionType.Cancelled;
72
- case "dismissed":
73
- case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Dismissed":
74
- return ExceptionType.Dismissed;
75
- case "sessionExpired":
76
- case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.SessionExpired":
77
- return ExceptionType.SessionExpired;
78
- case "failed":
79
- case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Failed":
80
- return ExceptionType.Failed;
81
- }
82
- return ExceptionType.Failed;
83
- }
84
- static fromError(error, sessionIdHint) {
85
- if ('userInfo' in error) {
86
- // From native, we send information about error in userInfo
87
- let userInfo = error.userInfo;
88
- if (userInfo) {
89
- let type = ReclaimVerificationApi.ReclaimVerificationException.fromTypeName(userInfo.errorType);
90
- let maybeSessionId = userInfo?.sessionId;
91
- return new ReclaimVerificationException(error.message, error, type, typeof maybeSessionId === 'string' && maybeSessionId ? maybeSessionId : sessionIdHint, userInfo?.didSubmitManualVerification ?? false, userInfo?.reason ?? "");
92
- }
93
- }
94
- return new ReclaimVerificationException(error.message, error, ReclaimVerificationApi.ExceptionType.Failed, sessionIdHint, false, "");
95
- }
96
- static isReclaimVerificationException(error) {
97
- return error instanceof ReclaimVerificationException;
98
- }
99
- }
100
- _ReclaimVerificationApi.ReclaimVerificationException = ReclaimVerificationException;
101
- })(ReclaimVerificationApi || (exports.ReclaimVerificationApi = ReclaimVerificationApi = {}));
102
- class ReclaimVerificationPlatformChannel {}
103
- exports.ReclaimVerificationPlatformChannel = ReclaimVerificationPlatformChannel;
104
- class ReclaimVerificationPlatformChannelImpl extends ReclaimVerificationPlatformChannel {
10
+ class PlatformImpl extends _index.ReclaimVerification.Platform {
105
11
  async startVerification(request) {
106
12
  try {
107
13
  const response = await _NativeInappRnSdk.default.startVerification(request);
108
14
  return {
109
15
  ...response,
110
- proofs: _proof.ReclaimResult.asProofs(response.proofs)
16
+ proofs: _index.ReclaimVerification.ReclaimResult.asProofs(response.proofs)
111
17
  };
112
18
  } catch (error) {
113
19
  console.info({
114
20
  error
115
21
  });
116
22
  if (error instanceof Error) {
117
- throw ReclaimVerificationApi.ReclaimVerificationException.fromError(error, request.session?.sessionId ?? "");
23
+ throw _index.ReclaimVerification.ReclaimVerificationException.fromError(error, request.session?.sessionId ?? "");
118
24
  }
119
25
  throw error;
120
26
  }
@@ -124,14 +30,14 @@ class ReclaimVerificationPlatformChannelImpl extends ReclaimVerificationPlatform
124
30
  const response = await _NativeInappRnSdk.default.startVerificationFromUrl(requestUrl);
125
31
  return {
126
32
  ...response,
127
- proofs: _proof.ReclaimResult.asProofs(response.proofs)
33
+ proofs: _index.ReclaimVerification.ReclaimResult.asProofs(response.proofs)
128
34
  };
129
35
  } catch (error) {
130
36
  console.info({
131
37
  error
132
38
  });
133
39
  if (error instanceof Error) {
134
- throw ReclaimVerificationApi.ReclaimVerificationException.fromError(error, "");
40
+ throw _index.ReclaimVerification.ReclaimVerificationException.fromError(error, "");
135
41
  }
136
42
  throw error;
137
43
  }
@@ -256,7 +162,7 @@ class ReclaimVerificationPlatformChannelImpl extends ReclaimVerificationPlatform
256
162
  capabilityAccessToken
257
163
  });
258
164
  } catch (error) {
259
- throw new ReclaimVerificationApi.ReclaimPlatformException("Failed to set overrides", error);
165
+ throw new _index.ReclaimVerification.ReclaimPlatformException("Failed to set overrides", error);
260
166
  }
261
167
  }
262
168
  async clearAllOverrides() {
@@ -298,9 +204,9 @@ class ReclaimVerificationPlatformChannelImpl extends ReclaimVerificationPlatform
298
204
  options: args
299
205
  });
300
206
  } catch (error) {
301
- throw new ReclaimVerificationApi.ReclaimPlatformException("Failed to set verification options", error);
207
+ throw new _index.ReclaimVerification.ReclaimPlatformException("Failed to set verification options", error);
302
208
  }
303
209
  }
304
210
  }
305
- exports.ReclaimVerificationPlatformChannelImpl = ReclaimVerificationPlatformChannelImpl;
306
- //# sourceMappingURL=ReclaimVerificationPlatformChannel.js.map
211
+ exports.PlatformImpl = PlatformImpl;
212
+ //# sourceMappingURL=platform.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_NativeInappRnSdk","_interopRequireDefault","require","_index","e","__esModule","default","PlatformImpl","ReclaimVerification","Platform","startVerification","request","response","NativeReclaimInappModule","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","exports"],"sourceRoot":"../../src","sources":["platform.ts"],"mappings":"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","ignoreList":[]}
@@ -1,33 +1,144 @@
1
1
  "use strict";
2
2
 
3
- import { ReclaimVerificationPlatformChannelImpl } from "./ReclaimVerificationPlatformChannel.js";
4
- export { ReclaimVerificationPlatformChannel, ReclaimVerificationApi, ReclaimVerificationPlatformChannelImpl } from "./ReclaimVerificationPlatformChannel.js";
3
+ import { PlatformImpl } from "./platform.js";
4
+
5
+ /**
6
+ * [ReclaimVerification] is the main class for interacting with the Reclaim verification system.
7
+ * It provides methods to start verification processes, manage platform configurations,
8
+ * and handle verification options.
9
+ *
10
+ * The class can be instantiated with a custom platform implementation, or will use
11
+ * the default [PlatformImpl] if none is provided.
12
+ */
5
13
  export class ReclaimVerification {
6
- static defaultChannel = null;
7
- constructor(channel) {
8
- if (channel) {
9
- this.channel = channel;
14
+ static defaultPlatform = null;
15
+ constructor(platform) {
16
+ if (platform) {
17
+ this.platform = platform;
10
18
  } else {
11
- if (ReclaimVerification.defaultChannel == null) {
12
- ReclaimVerification.defaultChannel = new ReclaimVerificationPlatformChannelImpl();
19
+ if (ReclaimVerification.defaultPlatform == null) {
20
+ ReclaimVerification.defaultPlatform = new PlatformImpl();
13
21
  }
14
- this.channel = ReclaimVerification.defaultChannel;
22
+ this.platform = ReclaimVerification.defaultPlatform;
15
23
  }
16
24
  }
17
25
  async startVerification(request) {
18
- return this.channel.startVerification(request);
26
+ return this.platform.startVerification(request);
19
27
  }
20
28
  async ping() {
21
- return this.channel.ping();
29
+ return this.platform.ping();
22
30
  }
23
31
  setOverrides(overrides) {
24
- return this.channel.setOverrides(overrides);
32
+ return this.platform.setOverrides(overrides);
25
33
  }
26
34
  clearAllOverrides() {
27
- return this.channel.clearAllOverrides();
35
+ return this.platform.clearAllOverrides();
28
36
  }
29
37
  setVerificationOptions(options) {
30
- return this.channel.setVerificationOptions(options);
38
+ return this.platform.setVerificationOptions(options);
31
39
  }
32
40
  }
41
+
42
+ /**
43
+ * This namespace provides types involved in initiating and managing the verification process
44
+ * for proving claims about user data through various providers.
45
+ */
46
+ (function (_ReclaimVerification) {
47
+ /**
48
+ * Represents user's session information for a verification attempt.
49
+ * This data class contains the necessary data to identify and validate a verification session.
50
+ */
51
+ /**
52
+ * Represents a request for a verification attempt.
53
+ *
54
+ * You can create a request using the [ReclaimVerification.Request] constructor or the [ReclaimVerification.Request.fromManifestMetaData] factory method.
55
+ */
56
+ /**
57
+ * Contains the proof and response data after verification
58
+ */
59
+ let ReclaimResult;
60
+ (function (_ReclaimResult) {
61
+ const isProof = _ReclaimResult.isProof = value => {
62
+ return typeof value === 'object' && value !== null && 'identifier' in value && 'signatures' in value && 'witnesses' in value;
63
+ };
64
+ const asProofs = _ReclaimResult.asProofs = proofs => {
65
+ return proofs.filter(isProof);
66
+ };
67
+ })(ReclaimResult || (ReclaimResult = _ReclaimVerification.ReclaimResult || (_ReclaimVerification.ReclaimResult = {})));
68
+ let Overrides;
69
+ (function (_Overrides) {
70
+ ;
71
+ })(Overrides || (Overrides = _ReclaimVerification.Overrides || (_ReclaimVerification.Overrides = {})));
72
+ let ExceptionType = /*#__PURE__*/function (ExceptionType) {
73
+ ExceptionType["Cancelled"] = "Cancelled";
74
+ ExceptionType["Dismissed"] = "Dismissed";
75
+ ExceptionType["SessionExpired"] = "SessionExpired";
76
+ ExceptionType["Failed"] = "Failed";
77
+ return ExceptionType;
78
+ }({});
79
+ _ReclaimVerification.ExceptionType = ExceptionType;
80
+ class ReclaimPlatformException extends Error {
81
+ constructor(message, innerError) {
82
+ super(message);
83
+ this.innerError = innerError;
84
+ this.reason = innerError.message;
85
+ if ('userInfo' in innerError) {
86
+ const details = innerError.userInfo;
87
+ this.details = details;
88
+ if ('message' in details) {
89
+ this.reason = details.message || this.reason;
90
+ }
91
+ }
92
+ }
93
+ static isReclaimPlatformException(error) {
94
+ return error instanceof ReclaimPlatformException;
95
+ }
96
+ }
97
+ _ReclaimVerification.ReclaimPlatformException = ReclaimPlatformException;
98
+ class ReclaimVerificationException extends Error {
99
+ constructor(message, innerError, type, sessionId, didSubmitManualVerification, reason) {
100
+ super(message);
101
+ this.innerError = innerError;
102
+ this.type = type;
103
+ this.sessionId = sessionId;
104
+ this.didSubmitManualVerification = didSubmitManualVerification;
105
+ this.reason = reason;
106
+ }
107
+ static fromTypeName(name) {
108
+ switch (name) {
109
+ case "cancelled":
110
+ case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Cancelled":
111
+ return ExceptionType.Cancelled;
112
+ case "dismissed":
113
+ case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Dismissed":
114
+ return ExceptionType.Dismissed;
115
+ case "sessionExpired":
116
+ case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.SessionExpired":
117
+ return ExceptionType.SessionExpired;
118
+ case "failed":
119
+ case "org.reclaimprotocol.inapp_sdk.ReclaimVerification.ReclaimVerificationException.Failed":
120
+ return ExceptionType.Failed;
121
+ }
122
+ return ExceptionType.Failed;
123
+ }
124
+ static fromError(error, sessionIdHint) {
125
+ if ('userInfo' in error) {
126
+ // From native, we send information about error in userInfo
127
+ let userInfo = error.userInfo;
128
+ if (userInfo) {
129
+ let type = ReclaimVerification.ReclaimVerificationException.fromTypeName(userInfo.errorType);
130
+ let maybeSessionId = userInfo?.sessionId;
131
+ return new ReclaimVerificationException(error.message, error, type, typeof maybeSessionId === 'string' && maybeSessionId ? maybeSessionId : sessionIdHint, userInfo?.didSubmitManualVerification ?? false, userInfo?.reason ?? "");
132
+ }
133
+ }
134
+ return new ReclaimVerificationException(error.message, error, ReclaimVerification.ExceptionType.Failed, sessionIdHint, false, "");
135
+ }
136
+ static isReclaimVerificationException(error) {
137
+ return error instanceof ReclaimVerificationException;
138
+ }
139
+ }
140
+ _ReclaimVerification.ReclaimVerificationException = ReclaimVerificationException;
141
+ class Platform {}
142
+ _ReclaimVerification.Platform = Platform;
143
+ })(ReclaimVerification || (ReclaimVerification = {}));
33
144
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["ReclaimVerificationPlatformChannelImpl","ReclaimVerificationPlatformChannel","ReclaimVerificationApi","ReclaimVerification","defaultChannel","constructor","channel","startVerification","request","ping","setOverrides","overrides","clearAllOverrides","setVerificationOptions","options"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA,SAA0EA,sCAAsC,QAAQ,yCAAsC;AAC9J,SAASC,kCAAkC,EAAEC,sBAAsB,EAAEF,sCAAsC,QAAQ,yCAAsC;AAGzJ,OAAO,MAAMG,mBAAmB,CAAC;EAG/B,OAAeC,cAAc,GAA8C,IAAI;EAExEC,WAAWA,CAACC,OAA4C,EAAE;IAC/D,IAAIA,OAAO,EAAE;MACX,IAAI,CAACA,OAAO,GAAGA,OAAO;IACxB,CAAC,MAAM;MACL,IAAIH,mBAAmB,CAACC,cAAc,IAAI,IAAI,EAAE;QAC9CD,mBAAmB,CAACC,cAAc,GAAG,IAAIJ,sCAAsC,CAAC,CAAC;MACnF;MACA,IAAI,CAACM,OAAO,GAAGH,mBAAmB,CAACC,cAAc;IACnD;EACF;EAEA,MAAaG,iBAAiBA,CAACC,OAAuC,EAA4C;IAChH,OAAO,IAAI,CAACF,OAAO,CAACC,iBAAiB,CAACC,OAAO,CAAC;EAChD;EAEA,MAAaC,IAAIA,CAAA,EAAqB;IACpC,OAAO,IAAI,CAACH,OAAO,CAACG,IAAI,CAAC,CAAC;EAC5B;EAEOC,YAAYA,CAACC,SAAgD,EAAE;IACpE,OAAO,IAAI,CAACL,OAAO,CAACI,YAAY,CAACC,SAAS,CAAC;EAC7C;EAEOC,iBAAiBA,CAAA,EAAG;IACzB,OAAO,IAAI,CAACN,OAAO,CAACM,iBAAiB,CAAC,CAAC;EACzC;EAEOC,sBAAsBA,CAACC,OAA2D,EAAE;IACzF,OAAO,IAAI,CAACR,OAAO,CAACO,sBAAsB,CAACC,OAAO,CAAC;EACrD;AACF","ignoreList":[]}
1
+ {"version":3,"names":["PlatformImpl","ReclaimVerification","defaultPlatform","constructor","platform","startVerification","request","ping","setOverrides","overrides","clearAllOverrides","setVerificationOptions","options","_ReclaimVerification","ReclaimResult","_ReclaimResult","isProof","value","asProofs","proofs","filter","Overrides","_Overrides","ExceptionType","ReclaimPlatformException","Error","message","innerError","reason","details","userInfo","isReclaimPlatformException","error","ReclaimVerificationException","type","sessionId","didSubmitManualVerification","fromTypeName","name","Cancelled","Dismissed","SessionExpired","Failed","fromError","sessionIdHint","errorType","maybeSessionId","isReclaimVerificationException","Platform"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"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","ignoreList":[]}