oro-sdk 3.21.3 → 3.24.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,612 +9,1029 @@ var initApis__default = _interopDefault(initApis);
9
9
  var oroToolbox = require('oro-toolbox');
10
10
  var idbKeyval = require('idb-keyval');
11
11
 
12
- function _regeneratorRuntime() {
13
- /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
12
+ function _wrapRegExp() {
13
+ _wrapRegExp = function (re, groups) {
14
+ return new BabelRegExp(re, void 0, groups);
15
+ };
16
+
17
+ var _super = RegExp.prototype,
18
+ _groups = new WeakMap();
19
+
20
+ function BabelRegExp(re, flags, groups) {
21
+ var _this = new RegExp(re, flags);
22
+
23
+ return _groups.set(_this, groups || _groups.get(re)), _setPrototypeOf(_this, BabelRegExp.prototype);
24
+ }
25
+
26
+ function buildGroups(result, re) {
27
+ var g = _groups.get(re);
28
+
29
+ return Object.keys(g).reduce(function (groups, name) {
30
+ return groups[name] = result[g[name]], groups;
31
+ }, Object.create(null));
32
+ }
33
+
34
+ return _inherits(BabelRegExp, RegExp), BabelRegExp.prototype.exec = function (str) {
35
+ var result = _super.exec.call(this, str);
36
+
37
+ return result && (result.groups = buildGroups(result, this)), result;
38
+ }, BabelRegExp.prototype[Symbol.replace] = function (str, substitution) {
39
+ if ("string" == typeof substitution) {
40
+ var groups = _groups.get(this);
41
+
42
+ return _super[Symbol.replace].call(this, str, substitution.replace(/\$<([^>]+)>/g, function (_, name) {
43
+ return "$" + groups[name];
44
+ }));
45
+ }
46
+
47
+ if ("function" == typeof substitution) {
48
+ var _this = this;
49
+
50
+ return _super[Symbol.replace].call(this, str, function () {
51
+ var args = arguments;
52
+ return "object" != typeof args[args.length - 1] && (args = [].slice.call(args)).push(buildGroups(args, _this)), substitution.apply(this, args);
53
+ });
54
+ }
55
+
56
+ return _super[Symbol.replace].call(this, str, substitution);
57
+ }, _wrapRegExp.apply(this, arguments);
58
+ }
59
+
60
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
61
+ try {
62
+ var info = gen[key](arg);
63
+ var value = info.value;
64
+ } catch (error) {
65
+ reject(error);
66
+ return;
67
+ }
68
+
69
+ if (info.done) {
70
+ resolve(value);
71
+ } else {
72
+ Promise.resolve(value).then(_next, _throw);
73
+ }
74
+ }
75
+
76
+ function _asyncToGenerator(fn) {
77
+ return function () {
78
+ var self = this,
79
+ args = arguments;
80
+ return new Promise(function (resolve, reject) {
81
+ var gen = fn.apply(self, args);
82
+
83
+ function _next(value) {
84
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
85
+ }
86
+
87
+ function _throw(err) {
88
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
89
+ }
90
+
91
+ _next(undefined);
92
+ });
93
+ };
94
+ }
95
+
96
+ function _extends() {
97
+ _extends = Object.assign || function (target) {
98
+ for (var i = 1; i < arguments.length; i++) {
99
+ var source = arguments[i];
100
+
101
+ for (var key in source) {
102
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
103
+ target[key] = source[key];
104
+ }
105
+ }
106
+ }
14
107
 
15
- _regeneratorRuntime = function () {
16
- return exports;
108
+ return target;
17
109
  };
18
110
 
19
- var exports = {},
20
- Op = Object.prototype,
21
- hasOwn = Op.hasOwnProperty,
22
- $Symbol = "function" == typeof Symbol ? Symbol : {},
23
- iteratorSymbol = $Symbol.iterator || "@@iterator",
24
- asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator",
25
- toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
111
+ return _extends.apply(this, arguments);
112
+ }
113
+
114
+ function _inherits(subClass, superClass) {
115
+ if (typeof superClass !== "function" && superClass !== null) {
116
+ throw new TypeError("Super expression must either be null or a function");
117
+ }
118
+
119
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
120
+ constructor: {
121
+ value: subClass,
122
+ writable: true,
123
+ configurable: true
124
+ }
125
+ });
126
+ Object.defineProperty(subClass, "prototype", {
127
+ writable: false
128
+ });
129
+ if (superClass) _setPrototypeOf(subClass, superClass);
130
+ }
131
+
132
+ function _inheritsLoose(subClass, superClass) {
133
+ subClass.prototype = Object.create(superClass.prototype);
134
+ subClass.prototype.constructor = subClass;
135
+
136
+ _setPrototypeOf(subClass, superClass);
137
+ }
138
+
139
+ function _getPrototypeOf(o) {
140
+ _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
141
+ return o.__proto__ || Object.getPrototypeOf(o);
142
+ };
143
+ return _getPrototypeOf(o);
144
+ }
145
+
146
+ function _setPrototypeOf(o, p) {
147
+ _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
148
+ o.__proto__ = p;
149
+ return o;
150
+ };
151
+
152
+ return _setPrototypeOf(o, p);
153
+ }
154
+
155
+ function _isNativeReflectConstruct() {
156
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
157
+ if (Reflect.construct.sham) return false;
158
+ if (typeof Proxy === "function") return true;
159
+
160
+ try {
161
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
162
+ return true;
163
+ } catch (e) {
164
+ return false;
165
+ }
166
+ }
167
+
168
+ function _construct(Parent, args, Class) {
169
+ if (_isNativeReflectConstruct()) {
170
+ _construct = Reflect.construct;
171
+ } else {
172
+ _construct = function _construct(Parent, args, Class) {
173
+ var a = [null];
174
+ a.push.apply(a, args);
175
+ var Constructor = Function.bind.apply(Parent, a);
176
+ var instance = new Constructor();
177
+ if (Class) _setPrototypeOf(instance, Class.prototype);
178
+ return instance;
179
+ };
180
+ }
181
+
182
+ return _construct.apply(null, arguments);
183
+ }
184
+
185
+ function _isNativeFunction(fn) {
186
+ return Function.toString.call(fn).indexOf("[native code]") !== -1;
187
+ }
188
+
189
+ function _wrapNativeSuper(Class) {
190
+ var _cache = typeof Map === "function" ? new Map() : undefined;
191
+
192
+ _wrapNativeSuper = function _wrapNativeSuper(Class) {
193
+ if (Class === null || !_isNativeFunction(Class)) return Class;
194
+
195
+ if (typeof Class !== "function") {
196
+ throw new TypeError("Super expression must either be null or a function");
197
+ }
198
+
199
+ if (typeof _cache !== "undefined") {
200
+ if (_cache.has(Class)) return _cache.get(Class);
201
+
202
+ _cache.set(Class, Wrapper);
203
+ }
204
+
205
+ function Wrapper() {
206
+ return _construct(Class, arguments, _getPrototypeOf(this).constructor);
207
+ }
208
+
209
+ Wrapper.prototype = Object.create(Class.prototype, {
210
+ constructor: {
211
+ value: Wrapper,
212
+ enumerable: false,
213
+ writable: true,
214
+ configurable: true
215
+ }
216
+ });
217
+ return _setPrototypeOf(Wrapper, Class);
218
+ };
219
+
220
+ return _wrapNativeSuper(Class);
221
+ }
222
+
223
+ function _objectWithoutPropertiesLoose(source, excluded) {
224
+ if (source == null) return {};
225
+ var target = {};
226
+ var sourceKeys = Object.keys(source);
227
+ var key, i;
228
+
229
+ for (i = 0; i < sourceKeys.length; i++) {
230
+ key = sourceKeys[i];
231
+ if (excluded.indexOf(key) >= 0) continue;
232
+ target[key] = source[key];
233
+ }
234
+
235
+ return target;
236
+ }
237
+
238
+ function _unsupportedIterableToArray(o, minLen) {
239
+ if (!o) return;
240
+ if (typeof o === "string") return _arrayLikeToArray(o, minLen);
241
+ var n = Object.prototype.toString.call(o).slice(8, -1);
242
+ if (n === "Object" && o.constructor) n = o.constructor.name;
243
+ if (n === "Map" || n === "Set") return Array.from(o);
244
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
245
+ }
246
+
247
+ function _arrayLikeToArray(arr, len) {
248
+ if (len == null || len > arr.length) len = arr.length;
249
+
250
+ for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
251
+
252
+ return arr2;
253
+ }
254
+
255
+ function _createForOfIteratorHelperLoose(o, allowArrayLike) {
256
+ var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
257
+ if (it) return (it = it.call(o)).next.bind(it);
258
+
259
+ if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
260
+ if (it) o = it;
261
+ var i = 0;
262
+ return function () {
263
+ if (i >= o.length) return {
264
+ done: true
265
+ };
266
+ return {
267
+ done: false,
268
+ value: o[i++]
269
+ };
270
+ };
271
+ }
272
+
273
+ throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
274
+ }
275
+
276
+ function createCommonjsModule(fn, module) {
277
+ return module = { exports: {} }, fn(module, module.exports), module.exports;
278
+ }
279
+
280
+ var runtime_1 = createCommonjsModule(function (module) {
281
+ /**
282
+ * Copyright (c) 2014-present, Facebook, Inc.
283
+ *
284
+ * This source code is licensed under the MIT license found in the
285
+ * LICENSE file in the root directory of this source tree.
286
+ */
287
+
288
+ var runtime = (function (exports) {
289
+
290
+ var Op = Object.prototype;
291
+ var hasOwn = Op.hasOwnProperty;
292
+ var undefined$1; // More compressible than void 0.
293
+ var $Symbol = typeof Symbol === "function" ? Symbol : {};
294
+ var iteratorSymbol = $Symbol.iterator || "@@iterator";
295
+ var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
296
+ var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
26
297
 
27
298
  function define(obj, key, value) {
28
- return Object.defineProperty(obj, key, {
299
+ Object.defineProperty(obj, key, {
29
300
  value: value,
30
- enumerable: !0,
31
- configurable: !0,
32
- writable: !0
33
- }), obj[key];
301
+ enumerable: true,
302
+ configurable: true,
303
+ writable: true
304
+ });
305
+ return obj[key];
34
306
  }
35
-
36
307
  try {
308
+ // IE 8 has a broken Object.defineProperty that only works on DOM objects.
37
309
  define({}, "");
38
310
  } catch (err) {
39
- define = function (obj, key, value) {
311
+ define = function(obj, key, value) {
40
312
  return obj[key] = value;
41
313
  };
42
314
  }
43
315
 
44
316
  function wrap(innerFn, outerFn, self, tryLocsList) {
45
- var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator,
46
- generator = Object.create(protoGenerator.prototype),
47
- context = new Context(tryLocsList || []);
48
- return generator._invoke = function (innerFn, self, context) {
49
- var state = "suspendedStart";
50
- return function (method, arg) {
51
- if ("executing" === state) throw new Error("Generator is already running");
52
-
53
- if ("completed" === state) {
54
- if ("throw" === method) throw arg;
55
- return doneResult();
56
- }
57
-
58
- for (context.method = method, context.arg = arg;;) {
59
- var delegate = context.delegate;
60
-
61
- if (delegate) {
62
- var delegateResult = maybeInvokeDelegate(delegate, context);
317
+ // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
318
+ var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
319
+ var generator = Object.create(protoGenerator.prototype);
320
+ var context = new Context(tryLocsList || []);
63
321
 
64
- if (delegateResult) {
65
- if (delegateResult === ContinueSentinel) continue;
66
- return delegateResult;
67
- }
68
- }
69
-
70
- if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) {
71
- if ("suspendedStart" === state) throw state = "completed", context.arg;
72
- context.dispatchException(context.arg);
73
- } else "return" === context.method && context.abrupt("return", context.arg);
74
- state = "executing";
75
- var record = tryCatch(innerFn, self, context);
76
-
77
- if ("normal" === record.type) {
78
- if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue;
79
- return {
80
- value: record.arg,
81
- done: context.done
82
- };
83
- }
322
+ // The ._invoke method unifies the implementations of the .next,
323
+ // .throw, and .return methods.
324
+ generator._invoke = makeInvokeMethod(innerFn, self, context);
84
325
 
85
- "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg);
86
- }
87
- };
88
- }(innerFn, self, context), generator;
326
+ return generator;
89
327
  }
328
+ exports.wrap = wrap;
90
329
 
330
+ // Try/catch helper to minimize deoptimizations. Returns a completion
331
+ // record like context.tryEntries[i].completion. This interface could
332
+ // have been (and was previously) designed to take a closure to be
333
+ // invoked without arguments, but in all the cases we care about we
334
+ // already have an existing method we want to call, so there's no need
335
+ // to create a new function object. We can even get away with assuming
336
+ // the method takes exactly one argument, since that happens to be true
337
+ // in every case, so we don't have to touch the arguments object. The
338
+ // only additional allocation required is the completion record, which
339
+ // has a stable shape and so hopefully should be cheap to allocate.
91
340
  function tryCatch(fn, obj, arg) {
92
341
  try {
93
- return {
94
- type: "normal",
95
- arg: fn.call(obj, arg)
96
- };
342
+ return { type: "normal", arg: fn.call(obj, arg) };
97
343
  } catch (err) {
98
- return {
99
- type: "throw",
100
- arg: err
101
- };
344
+ return { type: "throw", arg: err };
102
345
  }
103
346
  }
104
347
 
105
- exports.wrap = wrap;
348
+ var GenStateSuspendedStart = "suspendedStart";
349
+ var GenStateSuspendedYield = "suspendedYield";
350
+ var GenStateExecuting = "executing";
351
+ var GenStateCompleted = "completed";
352
+
353
+ // Returning this object from the innerFn has the same effect as
354
+ // breaking out of the dispatch switch statement.
106
355
  var ContinueSentinel = {};
107
356
 
357
+ // Dummy constructor functions that we use as the .constructor and
358
+ // .constructor.prototype properties for functions that return Generator
359
+ // objects. For full spec compliance, you may wish to configure your
360
+ // minifier not to mangle the names of these two functions.
108
361
  function Generator() {}
109
-
110
362
  function GeneratorFunction() {}
111
-
112
363
  function GeneratorFunctionPrototype() {}
113
364
 
365
+ // This is a polyfill for %IteratorPrototype% for environments that
366
+ // don't natively support it.
114
367
  var IteratorPrototype = {};
115
368
  define(IteratorPrototype, iteratorSymbol, function () {
116
369
  return this;
117
370
  });
118
- var getProto = Object.getPrototypeOf,
119
- NativeIteratorPrototype = getProto && getProto(getProto(values([])));
120
- NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype);
121
- var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);
122
371
 
372
+ var getProto = Object.getPrototypeOf;
373
+ var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
374
+ if (NativeIteratorPrototype &&
375
+ NativeIteratorPrototype !== Op &&
376
+ hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {
377
+ // This environment has a native %IteratorPrototype%; use it instead
378
+ // of the polyfill.
379
+ IteratorPrototype = NativeIteratorPrototype;
380
+ }
381
+
382
+ var Gp = GeneratorFunctionPrototype.prototype =
383
+ Generator.prototype = Object.create(IteratorPrototype);
384
+ GeneratorFunction.prototype = GeneratorFunctionPrototype;
385
+ define(Gp, "constructor", GeneratorFunctionPrototype);
386
+ define(GeneratorFunctionPrototype, "constructor", GeneratorFunction);
387
+ GeneratorFunction.displayName = define(
388
+ GeneratorFunctionPrototype,
389
+ toStringTagSymbol,
390
+ "GeneratorFunction"
391
+ );
392
+
393
+ // Helper for defining the .next, .throw, and .return methods of the
394
+ // Iterator interface in terms of a single ._invoke method.
123
395
  function defineIteratorMethods(prototype) {
124
- ["next", "throw", "return"].forEach(function (method) {
125
- define(prototype, method, function (arg) {
396
+ ["next", "throw", "return"].forEach(function(method) {
397
+ define(prototype, method, function(arg) {
126
398
  return this._invoke(method, arg);
127
399
  });
128
400
  });
129
401
  }
130
402
 
403
+ exports.isGeneratorFunction = function(genFun) {
404
+ var ctor = typeof genFun === "function" && genFun.constructor;
405
+ return ctor
406
+ ? ctor === GeneratorFunction ||
407
+ // For the native GeneratorFunction constructor, the best we can
408
+ // do is to check its .name property.
409
+ (ctor.displayName || ctor.name) === "GeneratorFunction"
410
+ : false;
411
+ };
412
+
413
+ exports.mark = function(genFun) {
414
+ if (Object.setPrototypeOf) {
415
+ Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
416
+ } else {
417
+ genFun.__proto__ = GeneratorFunctionPrototype;
418
+ define(genFun, toStringTagSymbol, "GeneratorFunction");
419
+ }
420
+ genFun.prototype = Object.create(Gp);
421
+ return genFun;
422
+ };
423
+
424
+ // Within the body of any async function, `await x` is transformed to
425
+ // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
426
+ // `hasOwn.call(value, "__await")` to determine if the yielded value is
427
+ // meant to be awaited.
428
+ exports.awrap = function(arg) {
429
+ return { __await: arg };
430
+ };
431
+
131
432
  function AsyncIterator(generator, PromiseImpl) {
132
433
  function invoke(method, arg, resolve, reject) {
133
434
  var record = tryCatch(generator[method], generator, arg);
435
+ if (record.type === "throw") {
436
+ reject(record.arg);
437
+ } else {
438
+ var result = record.arg;
439
+ var value = result.value;
440
+ if (value &&
441
+ typeof value === "object" &&
442
+ hasOwn.call(value, "__await")) {
443
+ return PromiseImpl.resolve(value.__await).then(function(value) {
444
+ invoke("next", value, resolve, reject);
445
+ }, function(err) {
446
+ invoke("throw", err, resolve, reject);
447
+ });
448
+ }
134
449
 
135
- if ("throw" !== record.type) {
136
- var result = record.arg,
137
- value = result.value;
138
- return value && "object" == typeof value && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) {
139
- invoke("next", value, resolve, reject);
140
- }, function (err) {
141
- invoke("throw", err, resolve, reject);
142
- }) : PromiseImpl.resolve(value).then(function (unwrapped) {
143
- result.value = unwrapped, resolve(result);
144
- }, function (error) {
450
+ return PromiseImpl.resolve(value).then(function(unwrapped) {
451
+ // When a yielded Promise is resolved, its final value becomes
452
+ // the .value of the Promise<{value,done}> result for the
453
+ // current iteration.
454
+ result.value = unwrapped;
455
+ resolve(result);
456
+ }, function(error) {
457
+ // If a rejected Promise was yielded, throw the rejection back
458
+ // into the async generator function so it can be handled there.
145
459
  return invoke("throw", error, resolve, reject);
146
460
  });
147
461
  }
148
-
149
- reject(record.arg);
150
462
  }
151
463
 
152
464
  var previousPromise;
153
465
 
154
- this._invoke = function (method, arg) {
466
+ function enqueue(method, arg) {
155
467
  function callInvokeWithMethodAndArg() {
156
- return new PromiseImpl(function (resolve, reject) {
468
+ return new PromiseImpl(function(resolve, reject) {
157
469
  invoke(method, arg, resolve, reject);
158
470
  });
159
471
  }
160
472
 
161
- return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
162
- };
163
- }
164
-
165
- function maybeInvokeDelegate(delegate, context) {
166
- var method = delegate.iterator[context.method];
167
-
168
- if (undefined === method) {
169
- if (context.delegate = null, "throw" === context.method) {
170
- if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel;
171
- context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method");
172
- }
173
-
174
- return ContinueSentinel;
473
+ return previousPromise =
474
+ // If enqueue has been called before, then we want to wait until
475
+ // all previous Promises have been resolved before calling invoke,
476
+ // so that results are always delivered in the correct order. If
477
+ // enqueue has not been called before, then it is important to
478
+ // call invoke immediately, without waiting on a callback to fire,
479
+ // so that the async generator function has the opportunity to do
480
+ // any necessary setup in a predictable way. This predictability
481
+ // is why the Promise constructor synchronously invokes its
482
+ // executor callback, and why async functions synchronously
483
+ // execute code before the first await. Since we implement simple
484
+ // async functions in terms of async generators, it is especially
485
+ // important to get this right, even though it requires care.
486
+ previousPromise ? previousPromise.then(
487
+ callInvokeWithMethodAndArg,
488
+ // Avoid propagating failures to Promises returned by later
489
+ // invocations of the iterator.
490
+ callInvokeWithMethodAndArg
491
+ ) : callInvokeWithMethodAndArg();
175
492
  }
176
493
 
177
- var record = tryCatch(method, delegate.iterator, context.arg);
178
- if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel;
179
- var info = record.arg;
180
- return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel);
181
- }
182
-
183
- function pushTryEntry(locs) {
184
- var entry = {
185
- tryLoc: locs[0]
186
- };
187
- 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry);
188
- }
189
-
190
- function resetTryEntry(entry) {
191
- var record = entry.completion || {};
192
- record.type = "normal", delete record.arg, entry.completion = record;
494
+ // Define the unified helper method that is used to implement .next,
495
+ // .throw, and .return (see defineIteratorMethods).
496
+ this._invoke = enqueue;
193
497
  }
194
498
 
195
- function Context(tryLocsList) {
196
- this.tryEntries = [{
197
- tryLoc: "root"
198
- }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0);
199
- }
499
+ defineIteratorMethods(AsyncIterator.prototype);
500
+ define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
501
+ return this;
502
+ });
503
+ exports.AsyncIterator = AsyncIterator;
504
+
505
+ // Note that simple async functions are implemented on top of
506
+ // AsyncIterator objects; they just return a Promise for the value of
507
+ // the final result produced by the iterator.
508
+ exports.async = function(innerFn, outerFn, self, tryLocsList, PromiseImpl) {
509
+ if (PromiseImpl === void 0) PromiseImpl = Promise;
510
+
511
+ var iter = new AsyncIterator(
512
+ wrap(innerFn, outerFn, self, tryLocsList),
513
+ PromiseImpl
514
+ );
515
+
516
+ return exports.isGeneratorFunction(outerFn)
517
+ ? iter // If outerFn is a generator, return the full iterator.
518
+ : iter.next().then(function(result) {
519
+ return result.done ? result.value : iter.next();
520
+ });
521
+ };
200
522
 
201
- function values(iterable) {
202
- if (iterable) {
203
- var iteratorMethod = iterable[iteratorSymbol];
204
- if (iteratorMethod) return iteratorMethod.call(iterable);
205
- if ("function" == typeof iterable.next) return iterable;
523
+ function makeInvokeMethod(innerFn, self, context) {
524
+ var state = GenStateSuspendedStart;
206
525
 
207
- if (!isNaN(iterable.length)) {
208
- var i = -1,
209
- next = function next() {
210
- for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next;
526
+ return function invoke(method, arg) {
527
+ if (state === GenStateExecuting) {
528
+ throw new Error("Generator is already running");
529
+ }
211
530
 
212
- return next.value = undefined, next.done = !0, next;
213
- };
531
+ if (state === GenStateCompleted) {
532
+ if (method === "throw") {
533
+ throw arg;
534
+ }
214
535
 
215
- return next.next = next;
536
+ // Be forgiving, per 25.3.3.3.3 of the spec:
537
+ // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
538
+ return doneResult();
216
539
  }
217
- }
218
540
 
219
- return {
220
- next: doneResult
221
- };
222
- }
541
+ context.method = method;
542
+ context.arg = arg;
223
543
 
224
- function doneResult() {
225
- return {
226
- value: undefined,
227
- done: !0
228
- };
229
- }
230
-
231
- return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) {
232
- var ctor = "function" == typeof genFun && genFun.constructor;
233
- return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name));
234
- }, exports.mark = function (genFun) {
235
- return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun;
236
- }, exports.awrap = function (arg) {
237
- return {
238
- __await: arg
239
- };
240
- }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
241
- return this;
242
- }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) {
243
- void 0 === PromiseImpl && (PromiseImpl = Promise);
244
- var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl);
245
- return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) {
246
- return result.done ? result.value : iter.next();
247
- });
248
- }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () {
249
- return this;
250
- }), define(Gp, "toString", function () {
251
- return "[object Generator]";
252
- }), exports.keys = function (object) {
253
- var keys = [];
544
+ while (true) {
545
+ var delegate = context.delegate;
546
+ if (delegate) {
547
+ var delegateResult = maybeInvokeDelegate(delegate, context);
548
+ if (delegateResult) {
549
+ if (delegateResult === ContinueSentinel) continue;
550
+ return delegateResult;
551
+ }
552
+ }
254
553
 
255
- for (var key in object) keys.push(key);
554
+ if (context.method === "next") {
555
+ // Setting context._sent for legacy support of Babel's
556
+ // function.sent implementation.
557
+ context.sent = context._sent = context.arg;
256
558
 
257
- return keys.reverse(), function next() {
258
- for (; keys.length;) {
259
- var key = keys.pop();
260
- if (key in object) return next.value = key, next.done = !1, next;
261
- }
559
+ } else if (context.method === "throw") {
560
+ if (state === GenStateSuspendedStart) {
561
+ state = GenStateCompleted;
562
+ throw context.arg;
563
+ }
262
564
 
263
- return next.done = !0, next;
264
- };
265
- }, exports.values = values, Context.prototype = {
266
- constructor: Context,
267
- reset: function (skipTempReset) {
268
- if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined);
269
- },
270
- stop: function () {
271
- this.done = !0;
272
- var rootRecord = this.tryEntries[0].completion;
273
- if ("throw" === rootRecord.type) throw rootRecord.arg;
274
- return this.rval;
275
- },
276
- dispatchException: function (exception) {
277
- if (this.done) throw exception;
278
- var context = this;
565
+ context.dispatchException(context.arg);
279
566
 
280
- function handle(loc, caught) {
281
- return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught;
282
- }
567
+ } else if (context.method === "return") {
568
+ context.abrupt("return", context.arg);
569
+ }
283
570
 
284
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
285
- var entry = this.tryEntries[i],
286
- record = entry.completion;
287
- if ("root" === entry.tryLoc) return handle("end");
571
+ state = GenStateExecuting;
288
572
 
289
- if (entry.tryLoc <= this.prev) {
290
- var hasCatch = hasOwn.call(entry, "catchLoc"),
291
- hasFinally = hasOwn.call(entry, "finallyLoc");
573
+ var record = tryCatch(innerFn, self, context);
574
+ if (record.type === "normal") {
575
+ // If an exception is thrown from innerFn, we leave state ===
576
+ // GenStateExecuting and loop back for another invocation.
577
+ state = context.done
578
+ ? GenStateCompleted
579
+ : GenStateSuspendedYield;
292
580
 
293
- if (hasCatch && hasFinally) {
294
- if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
295
- if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
296
- } else if (hasCatch) {
297
- if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
298
- } else {
299
- if (!hasFinally) throw new Error("try statement without catch or finally");
300
- if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
581
+ if (record.arg === ContinueSentinel) {
582
+ continue;
301
583
  }
584
+
585
+ return {
586
+ value: record.arg,
587
+ done: context.done
588
+ };
589
+
590
+ } else if (record.type === "throw") {
591
+ state = GenStateCompleted;
592
+ // Dispatch the exception by looping back around to the
593
+ // context.dispatchException(context.arg) call above.
594
+ context.method = "throw";
595
+ context.arg = record.arg;
302
596
  }
303
597
  }
304
- },
305
- abrupt: function (type, arg) {
306
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
307
- var entry = this.tryEntries[i];
598
+ };
599
+ }
308
600
 
309
- if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) {
310
- var finallyEntry = entry;
311
- break;
601
+ // Call delegate.iterator[context.method](context.arg) and handle the
602
+ // result, either by returning a { value, done } result from the
603
+ // delegate iterator, or by modifying context.method and context.arg,
604
+ // setting context.delegate to null, and returning the ContinueSentinel.
605
+ function maybeInvokeDelegate(delegate, context) {
606
+ var method = delegate.iterator[context.method];
607
+ if (method === undefined$1) {
608
+ // A .throw or .return when the delegate iterator has no .throw
609
+ // method always terminates the yield* loop.
610
+ context.delegate = null;
611
+
612
+ if (context.method === "throw") {
613
+ // Note: ["return"] must be used for ES3 parsing compatibility.
614
+ if (delegate.iterator["return"]) {
615
+ // If the delegate iterator has a return method, give it a
616
+ // chance to clean up.
617
+ context.method = "return";
618
+ context.arg = undefined$1;
619
+ maybeInvokeDelegate(delegate, context);
620
+
621
+ if (context.method === "throw") {
622
+ // If maybeInvokeDelegate(context) changed context.method from
623
+ // "return" to "throw", let that override the TypeError below.
624
+ return ContinueSentinel;
625
+ }
312
626
  }
313
- }
314
627
 
315
- finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null);
316
- var record = finallyEntry ? finallyEntry.completion : {};
317
- return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record);
318
- },
319
- complete: function (record, afterLoc) {
320
- if ("throw" === record.type) throw record.arg;
321
- return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel;
322
- },
323
- finish: function (finallyLoc) {
324
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
325
- var entry = this.tryEntries[i];
326
- if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel;
628
+ context.method = "throw";
629
+ context.arg = new TypeError(
630
+ "The iterator does not provide a 'throw' method");
327
631
  }
328
- },
329
- catch: function (tryLoc) {
330
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
331
- var entry = this.tryEntries[i];
332
632
 
333
- if (entry.tryLoc === tryLoc) {
334
- var record = entry.completion;
335
-
336
- if ("throw" === record.type) {
337
- var thrown = record.arg;
338
- resetTryEntry(entry);
339
- }
633
+ return ContinueSentinel;
634
+ }
340
635
 
341
- return thrown;
342
- }
343
- }
636
+ var record = tryCatch(method, delegate.iterator, context.arg);
344
637
 
345
- throw new Error("illegal catch attempt");
346
- },
347
- delegateYield: function (iterable, resultName, nextLoc) {
348
- return this.delegate = {
349
- iterator: values(iterable),
350
- resultName: resultName,
351
- nextLoc: nextLoc
352
- }, "next" === this.method && (this.arg = undefined), ContinueSentinel;
638
+ if (record.type === "throw") {
639
+ context.method = "throw";
640
+ context.arg = record.arg;
641
+ context.delegate = null;
642
+ return ContinueSentinel;
353
643
  }
354
- }, exports;
355
- }
356
644
 
357
- function _wrapRegExp() {
358
- _wrapRegExp = function (re, groups) {
359
- return new BabelRegExp(re, void 0, groups);
360
- };
645
+ var info = record.arg;
361
646
 
362
- var _super = RegExp.prototype,
363
- _groups = new WeakMap();
647
+ if (! info) {
648
+ context.method = "throw";
649
+ context.arg = new TypeError("iterator result is not an object");
650
+ context.delegate = null;
651
+ return ContinueSentinel;
652
+ }
364
653
 
365
- function BabelRegExp(re, flags, groups) {
366
- var _this = new RegExp(re, flags);
654
+ if (info.done) {
655
+ // Assign the result of the finished delegate to the temporary
656
+ // variable specified by delegate.resultName (see delegateYield).
657
+ context[delegate.resultName] = info.value;
658
+
659
+ // Resume execution at the desired location (see delegateYield).
660
+ context.next = delegate.nextLoc;
661
+
662
+ // If context.method was "throw" but the delegate handled the
663
+ // exception, let the outer generator proceed normally. If
664
+ // context.method was "next", forget context.arg since it has been
665
+ // "consumed" by the delegate iterator. If context.method was
666
+ // "return", allow the original .return call to continue in the
667
+ // outer generator.
668
+ if (context.method !== "return") {
669
+ context.method = "next";
670
+ context.arg = undefined$1;
671
+ }
367
672
 
368
- return _groups.set(_this, groups || _groups.get(re)), _setPrototypeOf(_this, BabelRegExp.prototype);
673
+ } else {
674
+ // Re-yield the result returned by the delegate method.
675
+ return info;
676
+ }
677
+
678
+ // The delegate iterator is finished, so forget it and continue with
679
+ // the outer generator.
680
+ context.delegate = null;
681
+ return ContinueSentinel;
369
682
  }
370
683
 
371
- function buildGroups(result, re) {
372
- var g = _groups.get(re);
684
+ // Define Generator.prototype.{next,throw,return} in terms of the
685
+ // unified ._invoke helper method.
686
+ defineIteratorMethods(Gp);
373
687
 
374
- return Object.keys(g).reduce(function (groups, name) {
375
- return groups[name] = result[g[name]], groups;
376
- }, Object.create(null));
377
- }
688
+ define(Gp, toStringTagSymbol, "Generator");
378
689
 
379
- return _inherits(BabelRegExp, RegExp), BabelRegExp.prototype.exec = function (str) {
380
- var result = _super.exec.call(this, str);
690
+ // A Generator should always return itself as the iterator object when the
691
+ // @@iterator function is called on it. Some browsers' implementations of the
692
+ // iterator prototype chain incorrectly implement this, causing the Generator
693
+ // object to not be returned from this call. This ensures that doesn't happen.
694
+ // See https://github.com/facebook/regenerator/issues/274 for more details.
695
+ define(Gp, iteratorSymbol, function() {
696
+ return this;
697
+ });
381
698
 
382
- return result && (result.groups = buildGroups(result, this)), result;
383
- }, BabelRegExp.prototype[Symbol.replace] = function (str, substitution) {
384
- if ("string" == typeof substitution) {
385
- var groups = _groups.get(this);
699
+ define(Gp, "toString", function() {
700
+ return "[object Generator]";
701
+ });
386
702
 
387
- return _super[Symbol.replace].call(this, str, substitution.replace(/\$<([^>]+)>/g, function (_, name) {
388
- return "$" + groups[name];
389
- }));
390
- }
703
+ function pushTryEntry(locs) {
704
+ var entry = { tryLoc: locs[0] };
391
705
 
392
- if ("function" == typeof substitution) {
393
- var _this = this;
706
+ if (1 in locs) {
707
+ entry.catchLoc = locs[1];
708
+ }
394
709
 
395
- return _super[Symbol.replace].call(this, str, function () {
396
- var args = arguments;
397
- return "object" != typeof args[args.length - 1] && (args = [].slice.call(args)).push(buildGroups(args, _this)), substitution.apply(this, args);
398
- });
710
+ if (2 in locs) {
711
+ entry.finallyLoc = locs[2];
712
+ entry.afterLoc = locs[3];
399
713
  }
400
714
 
401
- return _super[Symbol.replace].call(this, str, substitution);
402
- }, _wrapRegExp.apply(this, arguments);
403
- }
715
+ this.tryEntries.push(entry);
716
+ }
404
717
 
405
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
406
- try {
407
- var info = gen[key](arg);
408
- var value = info.value;
409
- } catch (error) {
410
- reject(error);
411
- return;
718
+ function resetTryEntry(entry) {
719
+ var record = entry.completion || {};
720
+ record.type = "normal";
721
+ delete record.arg;
722
+ entry.completion = record;
412
723
  }
413
724
 
414
- if (info.done) {
415
- resolve(value);
416
- } else {
417
- Promise.resolve(value).then(_next, _throw);
725
+ function Context(tryLocsList) {
726
+ // The root entry object (effectively a try statement without a catch
727
+ // or a finally block) gives us a place to store values thrown from
728
+ // locations where there is no enclosing try statement.
729
+ this.tryEntries = [{ tryLoc: "root" }];
730
+ tryLocsList.forEach(pushTryEntry, this);
731
+ this.reset(true);
418
732
  }
419
- }
420
733
 
421
- function _asyncToGenerator(fn) {
422
- return function () {
423
- var self = this,
424
- args = arguments;
425
- return new Promise(function (resolve, reject) {
426
- var gen = fn.apply(self, args);
734
+ exports.keys = function(object) {
735
+ var keys = [];
736
+ for (var key in object) {
737
+ keys.push(key);
738
+ }
739
+ keys.reverse();
427
740
 
428
- function _next(value) {
429
- asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
741
+ // Rather than returning an object with a next method, we keep
742
+ // things simple and return the next function itself.
743
+ return function next() {
744
+ while (keys.length) {
745
+ var key = keys.pop();
746
+ if (key in object) {
747
+ next.value = key;
748
+ next.done = false;
749
+ return next;
750
+ }
430
751
  }
431
752
 
432
- function _throw(err) {
433
- asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
753
+ // To avoid creating an additional object, we just hang the .value
754
+ // and .done properties off the next function object itself. This
755
+ // also ensures that the minifier will not anonymize the function.
756
+ next.done = true;
757
+ return next;
758
+ };
759
+ };
760
+
761
+ function values(iterable) {
762
+ if (iterable) {
763
+ var iteratorMethod = iterable[iteratorSymbol];
764
+ if (iteratorMethod) {
765
+ return iteratorMethod.call(iterable);
434
766
  }
435
767
 
436
- _next(undefined);
437
- });
438
- };
439
- }
768
+ if (typeof iterable.next === "function") {
769
+ return iterable;
770
+ }
771
+
772
+ if (!isNaN(iterable.length)) {
773
+ var i = -1, next = function next() {
774
+ while (++i < iterable.length) {
775
+ if (hasOwn.call(iterable, i)) {
776
+ next.value = iterable[i];
777
+ next.done = false;
778
+ return next;
779
+ }
780
+ }
440
781
 
441
- function _extends() {
442
- _extends = Object.assign ? Object.assign.bind() : function (target) {
443
- for (var i = 1; i < arguments.length; i++) {
444
- var source = arguments[i];
782
+ next.value = undefined$1;
783
+ next.done = true;
445
784
 
446
- for (var key in source) {
447
- if (Object.prototype.hasOwnProperty.call(source, key)) {
448
- target[key] = source[key];
449
- }
785
+ return next;
786
+ };
787
+
788
+ return next.next = next;
450
789
  }
451
790
  }
452
791
 
453
- return target;
454
- };
455
- return _extends.apply(this, arguments);
456
- }
792
+ // Return an iterator with no values.
793
+ return { next: doneResult };
794
+ }
795
+ exports.values = values;
457
796
 
458
- function _inherits(subClass, superClass) {
459
- if (typeof superClass !== "function" && superClass !== null) {
460
- throw new TypeError("Super expression must either be null or a function");
797
+ function doneResult() {
798
+ return { value: undefined$1, done: true };
461
799
  }
462
800
 
463
- subClass.prototype = Object.create(superClass && superClass.prototype, {
464
- constructor: {
465
- value: subClass,
466
- writable: true,
467
- configurable: true
468
- }
469
- });
470
- Object.defineProperty(subClass, "prototype", {
471
- writable: false
472
- });
473
- if (superClass) _setPrototypeOf(subClass, superClass);
474
- }
801
+ Context.prototype = {
802
+ constructor: Context,
475
803
 
476
- function _inheritsLoose(subClass, superClass) {
477
- subClass.prototype = Object.create(superClass.prototype);
478
- subClass.prototype.constructor = subClass;
804
+ reset: function(skipTempReset) {
805
+ this.prev = 0;
806
+ this.next = 0;
807
+ // Resetting context._sent for legacy support of Babel's
808
+ // function.sent implementation.
809
+ this.sent = this._sent = undefined$1;
810
+ this.done = false;
811
+ this.delegate = null;
812
+
813
+ this.method = "next";
814
+ this.arg = undefined$1;
815
+
816
+ this.tryEntries.forEach(resetTryEntry);
817
+
818
+ if (!skipTempReset) {
819
+ for (var name in this) {
820
+ // Not sure about the optimal order of these conditions:
821
+ if (name.charAt(0) === "t" &&
822
+ hasOwn.call(this, name) &&
823
+ !isNaN(+name.slice(1))) {
824
+ this[name] = undefined$1;
825
+ }
826
+ }
827
+ }
828
+ },
479
829
 
480
- _setPrototypeOf(subClass, superClass);
481
- }
830
+ stop: function() {
831
+ this.done = true;
482
832
 
483
- function _getPrototypeOf(o) {
484
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
485
- return o.__proto__ || Object.getPrototypeOf(o);
486
- };
487
- return _getPrototypeOf(o);
488
- }
833
+ var rootEntry = this.tryEntries[0];
834
+ var rootRecord = rootEntry.completion;
835
+ if (rootRecord.type === "throw") {
836
+ throw rootRecord.arg;
837
+ }
489
838
 
490
- function _setPrototypeOf(o, p) {
491
- _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
492
- o.__proto__ = p;
493
- return o;
494
- };
495
- return _setPrototypeOf(o, p);
496
- }
839
+ return this.rval;
840
+ },
497
841
 
498
- function _isNativeReflectConstruct() {
499
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
500
- if (Reflect.construct.sham) return false;
501
- if (typeof Proxy === "function") return true;
842
+ dispatchException: function(exception) {
843
+ if (this.done) {
844
+ throw exception;
845
+ }
502
846
 
503
- try {
504
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
505
- return true;
506
- } catch (e) {
507
- return false;
508
- }
509
- }
847
+ var context = this;
848
+ function handle(loc, caught) {
849
+ record.type = "throw";
850
+ record.arg = exception;
851
+ context.next = loc;
852
+
853
+ if (caught) {
854
+ // If the dispatched exception was caught by a catch block,
855
+ // then let that catch block handle the exception normally.
856
+ context.method = "next";
857
+ context.arg = undefined$1;
858
+ }
510
859
 
511
- function _construct(Parent, args, Class) {
512
- if (_isNativeReflectConstruct()) {
513
- _construct = Reflect.construct.bind();
514
- } else {
515
- _construct = function _construct(Parent, args, Class) {
516
- var a = [null];
517
- a.push.apply(a, args);
518
- var Constructor = Function.bind.apply(Parent, a);
519
- var instance = new Constructor();
520
- if (Class) _setPrototypeOf(instance, Class.prototype);
521
- return instance;
522
- };
523
- }
860
+ return !! caught;
861
+ }
524
862
 
525
- return _construct.apply(null, arguments);
526
- }
863
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
864
+ var entry = this.tryEntries[i];
865
+ var record = entry.completion;
527
866
 
528
- function _isNativeFunction(fn) {
529
- return Function.toString.call(fn).indexOf("[native code]") !== -1;
530
- }
867
+ if (entry.tryLoc === "root") {
868
+ // Exception thrown outside of any try block that could handle
869
+ // it, so set the completion value of the entire function to
870
+ // throw the exception.
871
+ return handle("end");
872
+ }
531
873
 
532
- function _wrapNativeSuper(Class) {
533
- var _cache = typeof Map === "function" ? new Map() : undefined;
874
+ if (entry.tryLoc <= this.prev) {
875
+ var hasCatch = hasOwn.call(entry, "catchLoc");
876
+ var hasFinally = hasOwn.call(entry, "finallyLoc");
534
877
 
535
- _wrapNativeSuper = function _wrapNativeSuper(Class) {
536
- if (Class === null || !_isNativeFunction(Class)) return Class;
878
+ if (hasCatch && hasFinally) {
879
+ if (this.prev < entry.catchLoc) {
880
+ return handle(entry.catchLoc, true);
881
+ } else if (this.prev < entry.finallyLoc) {
882
+ return handle(entry.finallyLoc);
883
+ }
537
884
 
538
- if (typeof Class !== "function") {
539
- throw new TypeError("Super expression must either be null or a function");
540
- }
885
+ } else if (hasCatch) {
886
+ if (this.prev < entry.catchLoc) {
887
+ return handle(entry.catchLoc, true);
888
+ }
541
889
 
542
- if (typeof _cache !== "undefined") {
543
- if (_cache.has(Class)) return _cache.get(Class);
890
+ } else if (hasFinally) {
891
+ if (this.prev < entry.finallyLoc) {
892
+ return handle(entry.finallyLoc);
893
+ }
544
894
 
545
- _cache.set(Class, Wrapper);
546
- }
895
+ } else {
896
+ throw new Error("try statement without catch or finally");
897
+ }
898
+ }
899
+ }
900
+ },
547
901
 
548
- function Wrapper() {
549
- return _construct(Class, arguments, _getPrototypeOf(this).constructor);
550
- }
902
+ abrupt: function(type, arg) {
903
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
904
+ var entry = this.tryEntries[i];
905
+ if (entry.tryLoc <= this.prev &&
906
+ hasOwn.call(entry, "finallyLoc") &&
907
+ this.prev < entry.finallyLoc) {
908
+ var finallyEntry = entry;
909
+ break;
910
+ }
911
+ }
551
912
 
552
- Wrapper.prototype = Object.create(Class.prototype, {
553
- constructor: {
554
- value: Wrapper,
555
- enumerable: false,
556
- writable: true,
557
- configurable: true
913
+ if (finallyEntry &&
914
+ (type === "break" ||
915
+ type === "continue") &&
916
+ finallyEntry.tryLoc <= arg &&
917
+ arg <= finallyEntry.finallyLoc) {
918
+ // Ignore the finally entry if control is not jumping to a
919
+ // location outside the try/catch block.
920
+ finallyEntry = null;
558
921
  }
559
- });
560
- return _setPrototypeOf(Wrapper, Class);
561
- };
562
922
 
563
- return _wrapNativeSuper(Class);
564
- }
923
+ var record = finallyEntry ? finallyEntry.completion : {};
924
+ record.type = type;
925
+ record.arg = arg;
565
926
 
566
- function _objectWithoutPropertiesLoose(source, excluded) {
567
- if (source == null) return {};
568
- var target = {};
569
- var sourceKeys = Object.keys(source);
570
- var key, i;
927
+ if (finallyEntry) {
928
+ this.method = "next";
929
+ this.next = finallyEntry.finallyLoc;
930
+ return ContinueSentinel;
931
+ }
571
932
 
572
- for (i = 0; i < sourceKeys.length; i++) {
573
- key = sourceKeys[i];
574
- if (excluded.indexOf(key) >= 0) continue;
575
- target[key] = source[key];
576
- }
933
+ return this.complete(record);
934
+ },
577
935
 
578
- return target;
579
- }
936
+ complete: function(record, afterLoc) {
937
+ if (record.type === "throw") {
938
+ throw record.arg;
939
+ }
580
940
 
581
- function _unsupportedIterableToArray(o, minLen) {
582
- if (!o) return;
583
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
584
- var n = Object.prototype.toString.call(o).slice(8, -1);
585
- if (n === "Object" && o.constructor) n = o.constructor.name;
586
- if (n === "Map" || n === "Set") return Array.from(o);
587
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
588
- }
941
+ if (record.type === "break" ||
942
+ record.type === "continue") {
943
+ this.next = record.arg;
944
+ } else if (record.type === "return") {
945
+ this.rval = this.arg = record.arg;
946
+ this.method = "return";
947
+ this.next = "end";
948
+ } else if (record.type === "normal" && afterLoc) {
949
+ this.next = afterLoc;
950
+ }
589
951
 
590
- function _arrayLikeToArray(arr, len) {
591
- if (len == null || len > arr.length) len = arr.length;
952
+ return ContinueSentinel;
953
+ },
592
954
 
593
- for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
955
+ finish: function(finallyLoc) {
956
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
957
+ var entry = this.tryEntries[i];
958
+ if (entry.finallyLoc === finallyLoc) {
959
+ this.complete(entry.completion, entry.afterLoc);
960
+ resetTryEntry(entry);
961
+ return ContinueSentinel;
962
+ }
963
+ }
964
+ },
594
965
 
595
- return arr2;
596
- }
966
+ "catch": function(tryLoc) {
967
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
968
+ var entry = this.tryEntries[i];
969
+ if (entry.tryLoc === tryLoc) {
970
+ var record = entry.completion;
971
+ if (record.type === "throw") {
972
+ var thrown = record.arg;
973
+ resetTryEntry(entry);
974
+ }
975
+ return thrown;
976
+ }
977
+ }
597
978
 
598
- function _createForOfIteratorHelperLoose(o, allowArrayLike) {
599
- var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
600
- if (it) return (it = it.call(o)).next.bind(it);
979
+ // The context.catch method must only be called with a location
980
+ // argument that corresponds to a known catch block.
981
+ throw new Error("illegal catch attempt");
982
+ },
601
983
 
602
- if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
603
- if (it) o = it;
604
- var i = 0;
605
- return function () {
606
- if (i >= o.length) return {
607
- done: true
608
- };
609
- return {
610
- done: false,
611
- value: o[i++]
984
+ delegateYield: function(iterable, resultName, nextLoc) {
985
+ this.delegate = {
986
+ iterator: values(iterable),
987
+ resultName: resultName,
988
+ nextLoc: nextLoc
612
989
  };
613
- };
614
- }
615
990
 
616
- throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
991
+ if (this.method === "next") {
992
+ // Deliberately forget the last sent value so that we don't
993
+ // accidentally pass it on to the delegate.
994
+ this.arg = undefined$1;
995
+ }
996
+
997
+ return ContinueSentinel;
998
+ }
999
+ };
1000
+
1001
+ // Regardless of whether this script is executing as a CommonJS module
1002
+ // or not, return the runtime object so that we can declare the variable
1003
+ // regeneratorRuntime in the outer scope, which allows this module to be
1004
+ // injected easily by `bin/regenerator --include-runtime script.js`.
1005
+ return exports;
1006
+
1007
+ }(
1008
+ // If this script is executing as a CommonJS module, use module.exports
1009
+ // as the regeneratorRuntime namespace. Otherwise create a new empty
1010
+ // object. Either way, the resulting object will be used to initialize
1011
+ // the regeneratorRuntime variable at the top of this file.
1012
+ module.exports
1013
+ ));
1014
+
1015
+ try {
1016
+ regeneratorRuntime = runtime;
1017
+ } catch (accidentalStrictMode) {
1018
+ // This module should not be running in strict mode, so the above
1019
+ // assignment should always work unless something is misconfigured. Just
1020
+ // in case runtime.js accidentally runs in strict mode, in modern engines
1021
+ // we can explicitly access globalThis. In older engines we can escape
1022
+ // strict mode using a global Function call. This could conceivably fail
1023
+ // if a Content Security Policy forbids using Function, but in that case
1024
+ // the proper solution is to fix the accidental strict mode problem. If
1025
+ // you've misconfigured your bundler to force strict mode and applied a
1026
+ // CSP to forbid Function, and you're not willing to fix either of those
1027
+ // problems, please detail your unique predicament in a GitHub issue.
1028
+ if (typeof globalThis === "object") {
1029
+ globalThis.regeneratorRuntime = runtime;
1030
+ } else {
1031
+ Function("r", "regeneratorRuntime = r")(runtime);
1032
+ }
617
1033
  }
1034
+ });
618
1035
 
619
1036
  var _personalMetaToPrefix;
620
1037
  var personalMetaToPrefix = (_personalMetaToPrefix = {}, _personalMetaToPrefix[initApis.MetadataCategory.Personal] = 'you', _personalMetaToPrefix[initApis.MetadataCategory.ChildPersonal] = 'child', _personalMetaToPrefix[initApis.MetadataCategory.OtherPersonal] = 'other', _personalMetaToPrefix);
@@ -625,7 +1042,7 @@ var personalMetaToPrefix = (_personalMetaToPrefix = {}, _personalMetaToPrefix[in
625
1042
  */
626
1043
 
627
1044
  function identificationToPersonalInformations(data, category) {
628
- var _data;
1045
+ var _data$;
629
1046
 
630
1047
  var prefix = personalMetaToPrefix[category];
631
1048
  return {
@@ -635,7 +1052,7 @@ function identificationToPersonalInformations(data, category) {
635
1052
  name: data[prefix + "Name"],
636
1053
  phone: data[prefix + "Phone"],
637
1054
  zip: data[prefix + "Zip"],
638
- hid: (_data = data[prefix + "HID"]) != null ? _data : data[prefix + "ID"],
1055
+ hid: (_data$ = data[prefix + "HID"]) != null ? _data$ : data[prefix + "ID"],
639
1056
  pharmacy: data[prefix + "Pharmacy"],
640
1057
  address: data[prefix + "Address"]
641
1058
  };
@@ -844,9 +1261,9 @@ function filterTriggeredAnsweredWithKind(_x, _x2) {
844
1261
  */
845
1262
 
846
1263
  function _filterTriggeredAnsweredWithKind() {
847
- _filterTriggeredAnsweredWithKind = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(workflowData, kind) {
1264
+ _filterTriggeredAnsweredWithKind = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(workflowData, kind) {
848
1265
  var flattenedAnswers, triggeredQuestionsWithKind, samePageAnswers, res;
849
- return _regeneratorRuntime().wrap(function _callee$(_context) {
1266
+ return runtime_1.wrap(function _callee$(_context) {
850
1267
  while (1) {
851
1268
  switch (_context.prev = _context.next) {
852
1269
  case 0:
@@ -890,9 +1307,9 @@ function getWorkflowDataByCategory(_x3, _x4) {
890
1307
  }
891
1308
 
892
1309
  function _getWorkflowDataByCategory() {
893
- _getWorkflowDataByCategory = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(workflowData, category) {
1310
+ _getWorkflowDataByCategory = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(workflowData, category) {
894
1311
  var flattenedAnswers, triggeredQuestions, fields;
895
- return _regeneratorRuntime().wrap(function _callee2$(_context2) {
1312
+ return runtime_1.wrap(function _callee2$(_context2) {
896
1313
  while (1) {
897
1314
  switch (_context2.prev = _context2.next) {
898
1315
  case 0:
@@ -963,8 +1380,8 @@ function getImagesFromIndexDb(_x5) {
963
1380
  */
964
1381
 
965
1382
  function _getImagesFromIndexDb() {
966
- _getImagesFromIndexDb = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(answer) {
967
- return _regeneratorRuntime().wrap(function _callee3$(_context3) {
1383
+ _getImagesFromIndexDb = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee3(answer) {
1384
+ return runtime_1.wrap(function _callee3$(_context3) {
968
1385
  while (1) {
969
1386
  switch (_context3.prev = _context3.next) {
970
1387
  case 0:
@@ -1040,9 +1457,9 @@ function populateWorkflowField(_x6, _x7) {
1040
1457
 
1041
1458
 
1042
1459
  function _populateWorkflowField() {
1043
- _populateWorkflowField = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(question, answerValue) {
1460
+ _populateWorkflowField = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee4(question, answerValue) {
1044
1461
  var answer, displayedAnswer;
1045
- return _regeneratorRuntime().wrap(function _callee4$(_context4) {
1462
+ return runtime_1.wrap(function _callee4$(_context4) {
1046
1463
  while (1) {
1047
1464
  switch (_context4.prev = _context4.next) {
1048
1465
  case 0:
@@ -1220,10 +1637,11 @@ var MAX_RETRIES = 15;
1220
1637
  * @param masterKey
1221
1638
  * @param recoveryQA
1222
1639
  * @param indexSearch create search index for the consultation if true
1640
+ * @param onProgress callback that is called whenever a new step of patient registration is executed. Note: progress ranges from 0 to 1, and descriptionKey is a description of the progress as a key so the app would use it to translate the description
1223
1641
  * @returns the successful registration
1224
1642
  */
1225
1643
 
1226
- function registerPatient(_x, _x2, _x3, _x4, _x5, _x6, _x7) {
1644
+ function registerPatient(_x, _x2, _x3, _x4, _x5, _x6, _x7, _x8) {
1227
1645
  return _registerPatient.apply(this, arguments);
1228
1646
  }
1229
1647
  /**
@@ -1234,10 +1652,10 @@ function registerPatient(_x, _x2, _x3, _x4, _x5, _x6, _x7) {
1234
1652
  */
1235
1653
 
1236
1654
  function _registerPatient() {
1237
- _registerPatient = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(patientUuid, consultRequest, workflow, oroClient, masterKey, recoveryQA, indexSearch) {
1238
- var consult, lockboxUuid, practitionerAdmin, retry, identity, errorsThrown, _ret;
1655
+ _registerPatient = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee4(patientUuid, consultRequest, workflow, oroClient, masterKey, recoveryQA, indexSearch, onProgress) {
1656
+ var consult, lockboxUuid, practitionerAdmin, retry, identity, errorsThrown, stepsTotalNum, currentStep, _ret;
1239
1657
 
1240
- return _regeneratorRuntime().wrap(function _callee4$(_context4) {
1658
+ return runtime_1.wrap(function _callee4$(_context4) {
1241
1659
  while (1) {
1242
1660
  switch (_context4.prev = _context4.next) {
1243
1661
  case 0:
@@ -1251,105 +1669,117 @@ function _registerPatient() {
1251
1669
  retry = MAX_RETRIES;
1252
1670
  identity = undefined;
1253
1671
  errorsThrown = [];
1672
+ stepsTotalNum = 9;
1254
1673
 
1255
- case 7:
1674
+ case 8:
1256
1675
  if (!(retry > 0)) {
1257
- _context4.next = 23;
1676
+ _context4.next = 24;
1258
1677
  break;
1259
1678
  }
1260
1679
 
1261
- _context4.prev = 8;
1262
- return _context4.delegateYield( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
1680
+ _context4.prev = 9;
1681
+ return _context4.delegateYield( /*#__PURE__*/runtime_1.mark(function _callee3() {
1263
1682
  var _consultIndex, _identity, _identity2;
1264
1683
 
1265
1684
  var practitioners, grantPromises, consultIndex, consultIndexPromises;
1266
- return _regeneratorRuntime().wrap(function _callee3$(_context3) {
1685
+ return runtime_1.wrap(function _callee3$(_context3) {
1267
1686
  while (1) {
1268
1687
  switch (_context3.prev = _context3.next) {
1269
1688
  case 0:
1270
- _context3.next = 2;
1689
+ currentStep = 0;
1690
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'retrieve_practitioners'); // Wait a bit each retry (we also want the first one to wait)
1691
+
1692
+ _context3.next = 4;
1271
1693
  return new Promise(function (resolve) {
1272
1694
  return setTimeout(resolve, 2000);
1273
1695
  });
1274
1696
 
1275
- case 2:
1697
+ case 4:
1276
1698
  if (practitionerAdmin) {
1277
- _context3.next = 6;
1699
+ _context3.next = 8;
1278
1700
  break;
1279
1701
  }
1280
1702
 
1281
- _context3.next = 5;
1703
+ _context3.next = 7;
1282
1704
  return oroClient.practiceClient.practiceGetFromUuid(consultRequest.uuidPractice);
1283
1705
 
1284
- case 5:
1706
+ case 7:
1285
1707
  practitionerAdmin = _context3.sent.uuidAdmin;
1286
1708
 
1287
- case 6:
1288
- _context3.next = 8;
1709
+ case 8:
1710
+ _context3.next = 10;
1289
1711
  return oroClient.practiceClient.practiceGetPractitioners(consultRequest.uuidPractice)["catch"](function (err) {
1290
1712
  console.log("Error retrieving practitioners", err);
1291
1713
  return [];
1292
1714
  });
1293
1715
 
1294
- case 8:
1716
+ case 10:
1295
1717
  practitioners = _context3.sent;
1718
+ // Creating consult
1719
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'create_consult');
1296
1720
 
1297
1721
  if (consult) {
1298
- _context3.next = 13;
1722
+ _context3.next = 16;
1299
1723
  break;
1300
1724
  }
1301
1725
 
1302
- _context3.next = 12;
1726
+ _context3.next = 15;
1303
1727
  return getOrCreatePatientConsultationUuid(consultRequest, oroClient);
1304
1728
 
1305
- case 12:
1729
+ case 15:
1306
1730
  consult = _context3.sent;
1307
1731
 
1308
- case 13:
1732
+ case 16:
1733
+ // Creating lockbox
1734
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'create_lockbox');
1735
+
1309
1736
  if (lockboxUuid) {
1310
- _context3.next = 17;
1737
+ _context3.next = 21;
1311
1738
  break;
1312
1739
  }
1313
1740
 
1314
- _context3.next = 16;
1741
+ _context3.next = 20;
1315
1742
  return getOrCreatePatientLockbox(oroClient);
1316
1743
 
1317
- case 16:
1744
+ case 20:
1318
1745
  lockboxUuid = _context3.sent;
1319
1746
 
1320
- case 17:
1747
+ case 21:
1321
1748
  if (identity) {
1322
- _context3.next = 21;
1749
+ _context3.next = 25;
1323
1750
  break;
1324
1751
  }
1325
1752
 
1326
- _context3.next = 20;
1753
+ _context3.next = 24;
1327
1754
  return oroClient.guardClient.identityGet(patientUuid);
1328
1755
 
1329
- case 20:
1756
+ case 24:
1330
1757
  identity = _context3.sent;
1331
1758
 
1332
- case 21:
1333
- _context3.next = 23;
1759
+ case 25:
1760
+ _context3.next = 27;
1334
1761
  return oroClient.grantLockbox(practitionerAdmin, lockboxUuid)["catch"](function (err) {
1335
1762
  console.error("Error while granting lockbox to practitioner admin " + practitionerAdmin, err); // if we cannot grant to the admin, then the registration will fail
1336
1763
 
1764
+ // if we cannot grant to the admin, then the registration will fail
1337
1765
  errorsThrown.push(err);
1338
1766
  });
1339
1767
 
1340
- case 23:
1768
+ case 27:
1341
1769
  // Patient Grant to practice
1770
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'grant_patient');
1342
1771
  grantPromises = practitioners.filter(function (practitioner) {
1343
1772
  return practitioner.uuid !== practitionerAdmin;
1344
1773
  }).map( /*#__PURE__*/function () {
1345
- var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(practitioner) {
1346
- return _regeneratorRuntime().wrap(function _callee$(_context) {
1774
+ var _ref = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(practitioner) {
1775
+ return runtime_1.wrap(function _callee$(_context) {
1347
1776
  while (1) {
1348
1777
  switch (_context.prev = _context.next) {
1349
1778
  case 0:
1350
1779
  return _context.abrupt("return", oroClient.grantLockbox(practitioner.uuid, lockboxUuid)["catch"](function (err) {
1351
1780
  console.error("Error while granting lockbox to practitioner", err); // Acceptable to continue as admin has already been granted, but we should still retry until the last retry remains
1352
1781
 
1782
+ // Acceptable to continue as admin has already been granted, but we should still retry until the last retry remains
1353
1783
  if (retry <= 1) return;
1354
1784
  errorsThrown.push(err);
1355
1785
  }));
@@ -1362,7 +1792,7 @@ function _registerPatient() {
1362
1792
  }, _callee);
1363
1793
  }));
1364
1794
 
1365
- return function (_x29) {
1795
+ return function (_x31) {
1366
1796
  return _ref.apply(this, arguments);
1367
1797
  };
1368
1798
  }());
@@ -1375,14 +1805,15 @@ function _registerPatient() {
1375
1805
  }], _consultIndex); // the index will identify in which lockbox a consultation resides
1376
1806
 
1377
1807
  consultIndexPromises = practitioners.map( /*#__PURE__*/function () {
1378
- var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(practitioner) {
1379
- return _regeneratorRuntime().wrap(function _callee2$(_context2) {
1808
+ var _ref2 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(practitioner) {
1809
+ return runtime_1.wrap(function _callee2$(_context2) {
1380
1810
  while (1) {
1381
1811
  switch (_context2.prev = _context2.next) {
1382
1812
  case 0:
1383
1813
  return _context2.abrupt("return", oroClient.vaultIndexAdd(consultIndex, practitioner.uuid)["catch"](function (err) {
1384
1814
  console.error("[SDK: registration] Error while adding to the practitioner's index " + practitioner.uuid, err); // Acceptable to continue as the index can be rebuilt, but we should still retry until the last retry remains
1385
1815
 
1816
+ // Acceptable to continue as the index can be rebuilt, but we should still retry until the last retry remains
1386
1817
  if (retry <= 1) return;else errorsThrown.push(err);
1387
1818
  }));
1388
1819
 
@@ -1394,167 +1825,185 @@ function _registerPatient() {
1394
1825
  }, _callee2);
1395
1826
  }));
1396
1827
 
1397
- return function (_x30) {
1828
+ return function (_x32) {
1398
1829
  return _ref2.apply(this, arguments);
1399
1830
  };
1400
1831
  }());
1401
- _context3.next = 28;
1402
- return storeImageAliases(consult.uuid, lockboxUuid, workflow, oroClient)["catch"](function (err) {
1832
+ _context3.next = 33;
1833
+ return storeImageAliases(consult.uuid, lockboxUuid, workflow, oroClient, onProgress ? {
1834
+ onProgress: onProgress,
1835
+ currentStep: currentStep,
1836
+ stepsTotalNum: stepsTotalNum
1837
+ } : undefined)["catch"](function (err) {
1403
1838
  console.error('[SDK: registration] Some errors happened during image upload', err); // Acceptable to continue as images can be requested during the consultation, but we should still retry until the last retry remains
1404
1839
 
1840
+ // Acceptable to continue as images can be requested during the consultation, but we should still retry until the last retry remains
1405
1841
  if (retry <= 1) return;else errorsThrown.push(err);
1406
1842
  });
1407
1843
 
1408
- case 28:
1409
- _context3.next = 30;
1844
+ case 33:
1845
+ ++currentStep;
1846
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'store_patient_data');
1847
+ _context3.next = 37;
1410
1848
  return storePatientData(consult.uuid, consultRequest.isoLanguageRequired, lockboxUuid, workflow, oroClient)["catch"](function (err) {
1411
1849
  console.error('[SDK: registration] Some errors happened during patient data upload', err);
1412
1850
  errorsThrown.push(err);
1413
1851
  });
1414
1852
 
1415
- case 30:
1853
+ case 37:
1854
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'set_masterkey');
1855
+
1416
1856
  if (!(masterKey && !((_identity = identity) != null && _identity.recoveryMasterKey))) {
1417
- _context3.next = 36;
1857
+ _context3.next = 44;
1418
1858
  break;
1419
1859
  }
1420
1860
 
1421
- _context3.next = 33;
1861
+ _context3.next = 41;
1422
1862
  return oroClient.updateMasterKey(patientUuid, masterKey, lockboxUuid)["catch"](function (err) {
1423
1863
  console.error("[SDK: registration] Error while updating master key", err); /// it's acceptable to continue registration (return old identity)
1424
1864
 
1865
+ /// it's acceptable to continue registration (return old identity)
1425
1866
  if (retry <= 1) return;
1426
1867
  errorsThrown.push(err);
1427
1868
  return identity;
1428
1869
  });
1429
1870
 
1430
- case 33:
1871
+ case 41:
1431
1872
  identity = _context3.sent;
1432
- _context3.next = 37;
1873
+ _context3.next = 45;
1433
1874
  break;
1434
1875
 
1435
- case 36:
1876
+ case 44:
1436
1877
  // we did not set the master key so we do not return it
1437
1878
  masterKey = undefined;
1438
1879
 
1439
- case 37:
1880
+ case 45:
1881
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'set_security_questions');
1882
+
1440
1883
  if (!(recoveryQA && !((_identity2 = identity) != null && _identity2.recoverySecurityQuestions))) {
1441
- _context3.next = 41;
1884
+ _context3.next = 50;
1442
1885
  break;
1443
1886
  }
1444
1887
 
1445
- _context3.next = 40;
1888
+ _context3.next = 49;
1446
1889
  return oroClient.updateSecurityQuestions(patientUuid, recoveryQA.recoverySecurityQuestions, recoveryQA.recoverySecurityAnswers, 2)["catch"](function (err) {
1447
1890
  console.error("[SDK: registration] Error while updating security questions", err); /// it's acceptable to continue registration (return old identity)
1448
1891
 
1892
+ /// it's acceptable to continue registration (return old identity)
1449
1893
  if (retry <= 1) return;
1450
1894
  errorsThrown.push(err);
1451
1895
  return identity;
1452
1896
  });
1453
1897
 
1454
- case 40:
1898
+ case 49:
1455
1899
  identity = _context3.sent;
1456
1900
 
1457
- case 41:
1458
- _context3.next = 43;
1901
+ case 50:
1902
+ _context3.next = 52;
1459
1903
  return Promise.all([].concat(grantPromises, consultIndexPromises));
1460
1904
 
1461
- case 43:
1905
+ case 52:
1906
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'search_indexing');
1907
+
1462
1908
  if (!indexSearch) {
1463
- _context3.next = 46;
1909
+ _context3.next = 56;
1464
1910
  break;
1465
1911
  }
1466
1912
 
1467
- _context3.next = 46;
1913
+ _context3.next = 56;
1468
1914
  return buildConsultSearchIndex(consult, workflow, oroClient)["catch"](function (err) {
1469
1915
  console.error('[SDK: registration] personal information not found or another error occured during search indexing', err);
1470
1916
  if (retry <= 1) return; // this statement is to avoid failing the registration due to the failure in search indexing the consult, this practically implements a soft retry
1471
1917
 
1918
+ // this statement is to avoid failing the registration due to the failure in search indexing the consult, this practically implements a soft retry
1472
1919
  errorsThrown.push(err);
1473
1920
  });
1474
1921
 
1475
- case 46:
1922
+ case 56:
1476
1923
  if (!(errorsThrown.length > 0)) {
1477
- _context3.next = 48;
1924
+ _context3.next = 58;
1478
1925
  break;
1479
1926
  }
1480
1927
 
1481
1928
  throw errorsThrown;
1482
1929
 
1483
- case 48:
1484
- _context3.next = 50;
1930
+ case 58:
1931
+ _context3.next = 60;
1485
1932
  return oroClient.consultClient.updateConsultByUUID(consult.uuid, {
1486
1933
  statusMedical: initApis.MedicalStatus.New
1487
1934
  });
1488
1935
 
1489
- case 50:
1936
+ case 60:
1937
+ // if we got through the complete flow, the registration succeeded
1938
+ if (onProgress) onProgress(currentStep++ / stepsTotalNum, 'success');
1490
1939
  return _context3.abrupt("return", "break");
1491
1940
 
1492
- case 51:
1941
+ case 62:
1493
1942
  case "end":
1494
1943
  return _context3.stop();
1495
1944
  }
1496
1945
  }
1497
1946
  }, _callee3);
1498
- })(), "t0", 10);
1947
+ })(), "t0", 11);
1499
1948
 
1500
- case 10:
1949
+ case 11:
1501
1950
  _ret = _context4.t0;
1502
1951
 
1503
1952
  if (!(_ret === "break")) {
1504
- _context4.next = 13;
1953
+ _context4.next = 14;
1505
1954
  break;
1506
1955
  }
1507
1956
 
1508
- return _context4.abrupt("break", 23);
1957
+ return _context4.abrupt("break", 24);
1509
1958
 
1510
- case 13:
1511
- _context4.next = 20;
1959
+ case 14:
1960
+ _context4.next = 21;
1512
1961
  break;
1513
1962
 
1514
- case 15:
1515
- _context4.prev = 15;
1516
- _context4.t1 = _context4["catch"](8);
1963
+ case 16:
1964
+ _context4.prev = 16;
1965
+ _context4.t1 = _context4["catch"](9);
1517
1966
  console.error("[SDK] Error occured during registration: " + _context4.t1 + ", retrying... Retries remaining: " + retry);
1518
1967
  errorsThrown = [];
1519
- return _context4.abrupt("continue", 20);
1968
+ return _context4.abrupt("continue", 21);
1520
1969
 
1521
- case 20:
1970
+ case 21:
1522
1971
  retry--;
1523
- _context4.next = 7;
1972
+ _context4.next = 8;
1524
1973
  break;
1525
1974
 
1526
- case 23:
1975
+ case 24:
1527
1976
  if (!(retry <= 0)) {
1528
- _context4.next = 26;
1977
+ _context4.next = 27;
1529
1978
  break;
1530
1979
  }
1531
1980
 
1532
1981
  console.error('[SDK] registration failed: MAX_RETRIES reached');
1533
1982
  throw 'RegistrationFailed';
1534
1983
 
1535
- case 26:
1984
+ case 27:
1536
1985
  console.log('Successfully Registered');
1537
- _context4.next = 29;
1986
+ _context4.next = 30;
1538
1987
  return oroClient.cleanIndex();
1539
1988
 
1540
- case 29:
1989
+ case 30:
1541
1990
  return _context4.abrupt("return", {
1542
1991
  masterKey: masterKey,
1543
1992
  consultationId: consult.uuid,
1544
1993
  lockboxUuid: lockboxUuid
1545
1994
  });
1546
1995
 
1547
- case 30:
1996
+ case 31:
1548
1997
  case "end":
1549
1998
  return _context4.stop();
1550
1999
  }
1551
2000
  }
1552
- }, _callee4, null, [[8, 15]]);
2001
+ }, _callee4, null, [[9, 16]]);
1553
2002
  }));
1554
2003
  return _registerPatient.apply(this, arguments);
1555
2004
  }
1556
2005
 
1557
- function getOrCreatePatientConsultationUuid(_x8, _x9) {
2006
+ function getOrCreatePatientConsultationUuid(_x9, _x10) {
1558
2007
  return _getOrCreatePatientConsultationUuid.apply(this, arguments);
1559
2008
  }
1560
2009
  /**
@@ -1565,9 +2014,9 @@ function getOrCreatePatientConsultationUuid(_x8, _x9) {
1565
2014
 
1566
2015
 
1567
2016
  function _getOrCreatePatientConsultationUuid() {
1568
- _getOrCreatePatientConsultationUuid = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(consult, oroClient) {
2017
+ _getOrCreatePatientConsultationUuid = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee5(consult, oroClient) {
1569
2018
  var payment;
1570
- return _regeneratorRuntime().wrap(function _callee5$(_context5) {
2019
+ return runtime_1.wrap(function _callee5$(_context5) {
1571
2020
  while (1) {
1572
2021
  switch (_context5.prev = _context5.next) {
1573
2022
  case 0:
@@ -1607,7 +2056,7 @@ function _getOrCreatePatientConsultationUuid() {
1607
2056
  return _getOrCreatePatientConsultationUuid.apply(this, arguments);
1608
2057
  }
1609
2058
 
1610
- function getOrCreatePatientLockbox(_x10) {
2059
+ function getOrCreatePatientLockbox(_x11) {
1611
2060
  return _getOrCreatePatientLockbox.apply(this, arguments);
1612
2061
  }
1613
2062
  /**
@@ -1622,9 +2071,9 @@ function getOrCreatePatientLockbox(_x10) {
1622
2071
 
1623
2072
 
1624
2073
  function _getOrCreatePatientLockbox() {
1625
- _getOrCreatePatientLockbox = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(oroClient) {
2074
+ _getOrCreatePatientLockbox = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee6(oroClient) {
1626
2075
  var grants, lockboxResponse, tokens;
1627
- return _regeneratorRuntime().wrap(function _callee6$(_context6) {
2076
+ return runtime_1.wrap(function _callee6$(_context6) {
1628
2077
  while (1) {
1629
2078
  switch (_context6.prev = _context6.next) {
1630
2079
  case 0:
@@ -1679,13 +2128,13 @@ function _getOrCreatePatientLockbox() {
1679
2128
  return _getOrCreatePatientLockbox.apply(this, arguments);
1680
2129
  }
1681
2130
 
1682
- function storePatientData(_x11, _x12, _x13, _x14, _x15) {
2131
+ function storePatientData(_x12, _x13, _x14, _x15, _x16) {
1683
2132
  return _storePatientData.apply(this, arguments);
1684
2133
  }
1685
2134
 
1686
2135
  function _storePatientData() {
1687
- _storePatientData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(consultationId, isoLanguage, lockboxUuid, workflow, oroClient) {
1688
- return _regeneratorRuntime().wrap(function _callee7$(_context7) {
2136
+ _storePatientData = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee7(consultationId, isoLanguage, lockboxUuid, workflow, oroClient) {
2137
+ return runtime_1.wrap(function _callee7$(_context7) {
1689
2138
  while (1) {
1690
2139
  switch (_context7.prev = _context7.next) {
1691
2140
  case 0:
@@ -1727,7 +2176,7 @@ function _storePatientData() {
1727
2176
  return _storePatientData.apply(this, arguments);
1728
2177
  }
1729
2178
 
1730
- function storeImageAliases(_x16, _x17, _x18, _x19) {
2179
+ function storeImageAliases(_x17, _x18, _x19, _x20, _x21) {
1731
2180
  return _storeImageAliases.apply(this, arguments);
1732
2181
  }
1733
2182
  /**
@@ -1742,9 +2191,9 @@ function storeImageAliases(_x16, _x17, _x18, _x19) {
1742
2191
 
1743
2192
 
1744
2193
  function _storeImageAliases() {
1745
- _storeImageAliases = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(consultationId, lockboxUuid, workflow, oroClient) {
1746
- var images, nonNullImages, promises;
1747
- return _regeneratorRuntime().wrap(function _callee8$(_context8) {
2194
+ _storeImageAliases = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee8(consultationId, lockboxUuid, workflow, oroClient, progress) {
2195
+ var images, nonNullImages, storedImagesNum, totalImagesNum, promises;
2196
+ return runtime_1.wrap(function _callee8$(_context8) {
1748
2197
  while (1) {
1749
2198
  switch (_context8.prev = _context8.next) {
1750
2199
  case 0:
@@ -1767,17 +2216,32 @@ function _storeImageAliases() {
1767
2216
  console.error('[SDK] Some images have not been found, they have been skipped.');
1768
2217
  }
1769
2218
 
2219
+ storedImagesNum = 0;
2220
+ totalImagesNum = nonNullImages.length;
2221
+ if (progress) progress.onProgress(progress.currentStep / progress.stepsTotalNum, 'store_images', {
2222
+ storedImagesNum: storedImagesNum,
2223
+ totalImagesNum: totalImagesNum
2224
+ });
1770
2225
  promises = nonNullImages.map(function (image) {
1771
2226
  return oroClient.getOrInsertJsonData(lockboxUuid, image, {
1772
2227
  category: initApis.MetadataCategory.Consultation,
1773
2228
  documentType: initApis.DocumentType.ImageAlias,
1774
2229
  consultationId: consultationId,
1775
2230
  idbId: image.idbId
1776
- }, {});
2231
+ }, {}).then(function () {
2232
+ if (progress) {
2233
+ ++storedImagesNum;
2234
+ var progressStepValue = Math.round(((progress.currentStep + 1) / progress.stepsTotalNum - progress.currentStep / progress.stepsTotalNum) * 100) / 100;
2235
+ progress.onProgress(progress.currentStep / progress.stepsTotalNum + progressStepValue * (storedImagesNum / totalImagesNum), 'store_images', {
2236
+ storedImagesNum: storedImagesNum,
2237
+ totalImagesNum: totalImagesNum
2238
+ });
2239
+ }
2240
+ });
1777
2241
  });
1778
2242
  return _context8.abrupt("return", Promise.all(promises));
1779
2243
 
1780
- case 11:
2244
+ case 14:
1781
2245
  case "end":
1782
2246
  return _context8.stop();
1783
2247
  }
@@ -1787,7 +2251,7 @@ function _storeImageAliases() {
1787
2251
  return _storeImageAliases.apply(this, arguments);
1788
2252
  }
1789
2253
 
1790
- function extractAndStorePersonalWorkflowData(_x20, _x21, _x22, _x23, _x24) {
2254
+ function extractAndStorePersonalWorkflowData(_x22, _x23, _x24, _x25, _x26) {
1791
2255
  return _extractAndStorePersonalWorkflowData.apply(this, arguments);
1792
2256
  }
1793
2257
  /**
@@ -1796,8 +2260,8 @@ function extractAndStorePersonalWorkflowData(_x20, _x21, _x22, _x23, _x24) {
1796
2260
  */
1797
2261
 
1798
2262
  function _extractAndStorePersonalWorkflowData() {
1799
- _extractAndStorePersonalWorkflowData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9(workflow, lockboxUuid, consultationId, category, oroClient) {
1800
- return _regeneratorRuntime().wrap(function _callee9$(_context9) {
2263
+ _extractAndStorePersonalWorkflowData = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee9(workflow, lockboxUuid, consultationId, category, oroClient) {
2264
+ return runtime_1.wrap(function _callee9$(_context9) {
1801
2265
  while (1) {
1802
2266
  switch (_context9.prev = _context9.next) {
1803
2267
  case 0:
@@ -1820,7 +2284,7 @@ function _extractAndStorePersonalWorkflowData() {
1820
2284
  return _extractAndStorePersonalWorkflowData.apply(this, arguments);
1821
2285
  }
1822
2286
 
1823
- function extractPersonalInfoFromWorkflowData(_x25) {
2287
+ function extractPersonalInfoFromWorkflowData(_x27) {
1824
2288
  return _extractPersonalInfoFromWorkflowData.apply(this, arguments);
1825
2289
  }
1826
2290
  /**
@@ -1831,8 +2295,8 @@ function extractPersonalInfoFromWorkflowData(_x25) {
1831
2295
  */
1832
2296
 
1833
2297
  function _extractPersonalInfoFromWorkflowData() {
1834
- _extractPersonalInfoFromWorkflowData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10(workflow) {
1835
- return _regeneratorRuntime().wrap(function _callee10$(_context10) {
2298
+ _extractPersonalInfoFromWorkflowData = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee10(workflow) {
2299
+ return runtime_1.wrap(function _callee10$(_context10) {
1836
2300
  while (1) {
1837
2301
  switch (_context10.prev = _context10.next) {
1838
2302
  case 0:
@@ -1857,15 +2321,15 @@ function _extractPersonalInfoFromWorkflowData() {
1857
2321
  return _extractPersonalInfoFromWorkflowData.apply(this, arguments);
1858
2322
  }
1859
2323
 
1860
- function buildConsultSearchIndex(_x26, _x27, _x28) {
2324
+ function buildConsultSearchIndex(_x28, _x29, _x30) {
1861
2325
  return _buildConsultSearchIndex.apply(this, arguments);
1862
2326
  }
1863
2327
 
1864
2328
  function _buildConsultSearchIndex() {
1865
- _buildConsultSearchIndex = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee11(consult, workflow, oroClient) {
2329
+ _buildConsultSearchIndex = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee11(consult, workflow, oroClient) {
1866
2330
  var terms, _yield$extractPersona, personalInfoPopulatedWfData, childPersonalInfoPopulatedWfData, otherPersonalInfoPopulatedWfData, personalInfo, childPersonalInfo, otherPersonalInfo;
1867
2331
 
1868
- return _regeneratorRuntime().wrap(function _callee11$(_context11) {
2332
+ return runtime_1.wrap(function _callee11$(_context11) {
1869
2333
  while (1) {
1870
2334
  switch (_context11.prev = _context11.next) {
1871
2335
  case 0:
@@ -1986,10 +2450,10 @@ function filterGrantsWithLockboxMetadata(_x, _x2) {
1986
2450
  }
1987
2451
 
1988
2452
  function _filterGrantsWithLockboxMetadata() {
1989
- _filterGrantsWithLockboxMetadata = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(oroClient, filter) {
2453
+ _filterGrantsWithLockboxMetadata = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(oroClient, filter) {
1990
2454
  var grants, filteredGrants, _iterator, _step, grant, consultationIdExistsInMetadata;
1991
2455
 
1992
- return _regeneratorRuntime().wrap(function _callee$(_context) {
2456
+ return runtime_1.wrap(function _callee$(_context) {
1993
2457
  while (1) {
1994
2458
  switch (_context.prev = _context.next) {
1995
2459
  case 0:
@@ -2062,8 +2526,8 @@ var OroClient = /*#__PURE__*/function () {
2062
2526
  _proto.cleanIndex =
2063
2527
  /*#__PURE__*/
2064
2528
  function () {
2065
- var _cleanIndex = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
2066
- return _regeneratorRuntime().wrap(function _callee$(_context) {
2529
+ var _cleanIndex = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee() {
2530
+ return runtime_1.wrap(function _callee$(_context) {
2067
2531
  while (1) {
2068
2532
  switch (_context.prev = _context.next) {
2069
2533
  case 0:
@@ -2100,9 +2564,9 @@ var OroClient = /*#__PURE__*/function () {
2100
2564
  _proto.signUp =
2101
2565
  /*#__PURE__*/
2102
2566
  function () {
2103
- var _signUp = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(email, password, practice, tosAndCpAcceptance, tokenData, subscription, skipEmailValidation) {
2567
+ var _signUp = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(email, password, practice, tosAndCpAcceptance, tokenData, subscription, skipEmailValidation) {
2104
2568
  var privateKey, symmetricEncryptor, recoveryPassword, hashedPassword, emailConfirmed, signupRequest, identity, symetricEncryptor;
2105
- return _regeneratorRuntime().wrap(function _callee2$(_context2) {
2569
+ return runtime_1.wrap(function _callee2$(_context2) {
2106
2570
  while (1) {
2107
2571
  switch (_context2.prev = _context2.next) {
2108
2572
  case 0:
@@ -2161,9 +2625,9 @@ var OroClient = /*#__PURE__*/function () {
2161
2625
  _proto.confirmEmail =
2162
2626
  /*#__PURE__*/
2163
2627
  function () {
2164
- var _confirmEmail = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(accessToken) {
2628
+ var _confirmEmail = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee3(accessToken) {
2165
2629
  var claims;
2166
- return _regeneratorRuntime().wrap(function _callee3$(_context3) {
2630
+ return runtime_1.wrap(function _callee3$(_context3) {
2167
2631
  while (1) {
2168
2632
  switch (_context3.prev = _context3.next) {
2169
2633
  case 0:
@@ -2208,9 +2672,9 @@ var OroClient = /*#__PURE__*/function () {
2208
2672
  _proto.signIn =
2209
2673
  /*#__PURE__*/
2210
2674
  function () {
2211
- var _signIn = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(practiceUuid, email, password, otp) {
2675
+ var _signIn = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee4(practiceUuid, email, password, otp) {
2212
2676
  var hashedPassword, tokenRequest, userUuid;
2213
- return _regeneratorRuntime().wrap(function _callee4$(_context4) {
2677
+ return runtime_1.wrap(function _callee4$(_context4) {
2214
2678
  while (1) {
2215
2679
  switch (_context4.prev = _context4.next) {
2216
2680
  case 0:
@@ -2263,9 +2727,9 @@ var OroClient = /*#__PURE__*/function () {
2263
2727
  _proto.resumeSession =
2264
2728
  /*#__PURE__*/
2265
2729
  function () {
2266
- var _resumeSession = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5() {
2730
+ var _resumeSession = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee5() {
2267
2731
  var id, recoveryPayload, recoveryKey, symmetricDecryptor, privateKey;
2268
- return _regeneratorRuntime().wrap(function _callee5$(_context5) {
2732
+ return runtime_1.wrap(function _callee5$(_context5) {
2269
2733
  while (1) {
2270
2734
  switch (_context5.prev = _context5.next) {
2271
2735
  case 0:
@@ -2366,8 +2830,8 @@ var OroClient = /*#__PURE__*/function () {
2366
2830
  _proto.signOut =
2367
2831
  /*#__PURE__*/
2368
2832
  function () {
2369
- var _signOut = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6() {
2370
- return _regeneratorRuntime().wrap(function _callee6$(_context6) {
2833
+ var _signOut = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee6() {
2834
+ return runtime_1.wrap(function _callee6$(_context6) {
2371
2835
  while (1) {
2372
2836
  switch (_context6.prev = _context6.next) {
2373
2837
  case 0:
@@ -2410,6 +2874,7 @@ var OroClient = /*#__PURE__*/function () {
2410
2874
  * @param workflow
2411
2875
  * @param recoveryQA
2412
2876
  * @param indexSearch create search index for the consultation if true
2877
+ * @param onProgress callback that is called whenever a new step of patient registration is executed. Note: progress ranges from 0 to 1, and descriptionKey is a description of the progress as a key so the app would use it to translate the description
2413
2878
  * @returns
2414
2879
  */
2415
2880
  ;
@@ -2417,8 +2882,8 @@ var OroClient = /*#__PURE__*/function () {
2417
2882
  _proto.registerPatient =
2418
2883
  /*#__PURE__*/
2419
2884
  function () {
2420
- var _registerPatient2 = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(patientUuid, consult, workflow, recoveryQA, indexSearch) {
2421
- return _regeneratorRuntime().wrap(function _callee7$(_context7) {
2885
+ var _registerPatient2 = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee7(patientUuid, consult, workflow, recoveryQA, indexSearch, onProgress) {
2886
+ return runtime_1.wrap(function _callee7$(_context7) {
2422
2887
  while (1) {
2423
2888
  switch (_context7.prev = _context7.next) {
2424
2889
  case 0:
@@ -2434,7 +2899,7 @@ var OroClient = /*#__PURE__*/function () {
2434
2899
  throw IncompleteAuthentication;
2435
2900
 
2436
2901
  case 3:
2437
- return _context7.abrupt("return", registerPatient(patientUuid, consult, workflow, this, this.toolbox.uuid(), recoveryQA, indexSearch));
2902
+ return _context7.abrupt("return", registerPatient(patientUuid, consult, workflow, this, this.toolbox.uuid(), recoveryQA, indexSearch, onProgress));
2438
2903
 
2439
2904
  case 4:
2440
2905
  case "end":
@@ -2444,7 +2909,7 @@ var OroClient = /*#__PURE__*/function () {
2444
2909
  }, _callee7, this);
2445
2910
  }));
2446
2911
 
2447
- function registerPatient$1(_x13, _x14, _x15, _x16, _x17) {
2912
+ function registerPatient$1(_x13, _x14, _x15, _x16, _x17, _x18) {
2448
2913
  return _registerPatient2.apply(this, arguments);
2449
2914
  }
2450
2915
 
@@ -2459,12 +2924,12 @@ var OroClient = /*#__PURE__*/function () {
2459
2924
  _proto.forceUpdateIndexEntries =
2460
2925
  /*#__PURE__*/
2461
2926
  function () {
2462
- var _forceUpdateIndexEntries = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9() {
2927
+ var _forceUpdateIndexEntries = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee9() {
2463
2928
  var _this = this,
2464
2929
  _this$vaultIndexAdd;
2465
2930
 
2466
2931
  var grants, indexConsultLockbox;
2467
- return _regeneratorRuntime().wrap(function _callee9$(_context9) {
2932
+ return runtime_1.wrap(function _callee9$(_context9) {
2468
2933
  while (1) {
2469
2934
  switch (_context9.prev = _context9.next) {
2470
2935
  case 0:
@@ -2475,8 +2940,8 @@ var OroClient = /*#__PURE__*/function () {
2475
2940
  grants = _context9.sent;
2476
2941
  _context9.next = 5;
2477
2942
  return Promise.all(grants.map( /*#__PURE__*/function () {
2478
- var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(grant) {
2479
- return _regeneratorRuntime().wrap(function _callee8$(_context8) {
2943
+ var _ref2 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee8(grant) {
2944
+ return runtime_1.wrap(function _callee8$(_context8) {
2480
2945
  while (1) {
2481
2946
  switch (_context8.prev = _context8.next) {
2482
2947
  case 0:
@@ -2512,7 +2977,7 @@ var OroClient = /*#__PURE__*/function () {
2512
2977
  }, _callee8);
2513
2978
  }));
2514
2979
 
2515
- return function (_x18) {
2980
+ return function (_x19) {
2516
2981
  return _ref2.apply(this, arguments);
2517
2982
  };
2518
2983
  }())).then(function (consults) {
@@ -2552,10 +3017,10 @@ var OroClient = /*#__PURE__*/function () {
2552
3017
  _proto.vaultIndexAdd =
2553
3018
  /*#__PURE__*/
2554
3019
  function () {
2555
- var _vaultIndexAdd = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10(entries, indexOwnerUuid) {
3020
+ var _vaultIndexAdd = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee10(entries, indexOwnerUuid) {
2556
3021
  var rsaPub, base64IndexOwnerPubKey, encryptedIndex, _i, _Object$keys, keyString, key;
2557
3022
 
2558
- return _regeneratorRuntime().wrap(function _callee10$(_context10) {
3023
+ return runtime_1.wrap(function _callee10$(_context10) {
2559
3024
  while (1) {
2560
3025
  switch (_context10.prev = _context10.next) {
2561
3026
  case 0:
@@ -2635,7 +3100,7 @@ var OroClient = /*#__PURE__*/function () {
2635
3100
  }, _callee10, this);
2636
3101
  }));
2637
3102
 
2638
- function vaultIndexAdd(_x19, _x20) {
3103
+ function vaultIndexAdd(_x20, _x21) {
2639
3104
  return _vaultIndexAdd.apply(this, arguments);
2640
3105
  }
2641
3106
 
@@ -2653,9 +3118,9 @@ var OroClient = /*#__PURE__*/function () {
2653
3118
  _proto.grantLockbox =
2654
3119
  /*#__PURE__*/
2655
3120
  function () {
2656
- var _grantLockbox = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee11(granteeUuid, lockboxUuid, lockboxOwnerUuid) {
3121
+ var _grantLockbox = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee11(granteeUuid, lockboxUuid, lockboxOwnerUuid) {
2657
3122
  var secret, base64GranteePublicKey, granteePublicKey, granteeEncryptedSecret, request;
2658
- return _regeneratorRuntime().wrap(function _callee11$(_context11) {
3123
+ return runtime_1.wrap(function _callee11$(_context11) {
2659
3124
  while (1) {
2660
3125
  switch (_context11.prev = _context11.next) {
2661
3126
  case 0:
@@ -2694,7 +3159,7 @@ var OroClient = /*#__PURE__*/function () {
2694
3159
  }, _callee11, this);
2695
3160
  }));
2696
3161
 
2697
- function grantLockbox(_x21, _x22, _x23) {
3162
+ function grantLockbox(_x22, _x23, _x24) {
2698
3163
  return _grantLockbox.apply(this, arguments);
2699
3164
  }
2700
3165
 
@@ -2715,9 +3180,9 @@ var OroClient = /*#__PURE__*/function () {
2715
3180
  _proto.createMessageData =
2716
3181
  /*#__PURE__*/
2717
3182
  function () {
2718
- var _createMessageData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee12(lockboxUuid, message, consultationId, lockboxOwnerUuid, previousDataUuid) {
3183
+ var _createMessageData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee12(lockboxUuid, message, consultationId, lockboxOwnerUuid, previousDataUuid) {
2719
3184
  var symmetricEncryptor, encryptedData, encryptedPrivateMeta, meta, request;
2720
- return _regeneratorRuntime().wrap(function _callee12$(_context12) {
3185
+ return runtime_1.wrap(function _callee12$(_context12) {
2721
3186
  while (1) {
2722
3187
  switch (_context12.prev = _context12.next) {
2723
3188
  case 0:
@@ -2766,7 +3231,7 @@ var OroClient = /*#__PURE__*/function () {
2766
3231
  }, _callee12, this);
2767
3232
  }));
2768
3233
 
2769
- function createMessageData(_x24, _x25, _x26, _x27, _x28) {
3234
+ function createMessageData(_x25, _x26, _x27, _x28, _x29) {
2770
3235
  return _createMessageData.apply(this, arguments);
2771
3236
  }
2772
3237
 
@@ -2787,9 +3252,9 @@ var OroClient = /*#__PURE__*/function () {
2787
3252
  _proto.createMessageAttachmentData =
2788
3253
  /*#__PURE__*/
2789
3254
  function () {
2790
- var _createMessageAttachmentData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee13(lockboxUuid, data, consultationId, lockboxOwnerUuid, previousDataUuid) {
3255
+ var _createMessageAttachmentData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee13(lockboxUuid, data, consultationId, lockboxOwnerUuid, previousDataUuid) {
2791
3256
  var symmetricEncryptor, encryptedData, encryptedPrivateMeta, meta, request;
2792
- return _regeneratorRuntime().wrap(function _callee13$(_context13) {
3257
+ return runtime_1.wrap(function _callee13$(_context13) {
2793
3258
  while (1) {
2794
3259
  switch (_context13.prev = _context13.next) {
2795
3260
  case 0:
@@ -2852,7 +3317,7 @@ var OroClient = /*#__PURE__*/function () {
2852
3317
  }, _callee13, this);
2853
3318
  }));
2854
3319
 
2855
- function createMessageAttachmentData(_x29, _x30, _x31, _x32, _x33) {
3320
+ function createMessageAttachmentData(_x30, _x31, _x32, _x33, _x34) {
2856
3321
  return _createMessageAttachmentData.apply(this, arguments);
2857
3322
  }
2858
3323
 
@@ -2874,8 +3339,8 @@ var OroClient = /*#__PURE__*/function () {
2874
3339
  _proto.createConsultationAttachmentData =
2875
3340
  /*#__PURE__*/
2876
3341
  function () {
2877
- var _createConsultationAttachmentData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee14(lockboxUuid, data, consultationId, documentType, lockboxOwnerUuid, previousDataUuid) {
2878
- return _regeneratorRuntime().wrap(function _callee14$(_context14) {
3342
+ var _createConsultationAttachmentData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee14(lockboxUuid, data, consultationId, documentType, lockboxOwnerUuid, previousDataUuid) {
3343
+ return runtime_1.wrap(function _callee14$(_context14) {
2879
3344
  while (1) {
2880
3345
  switch (_context14.prev = _context14.next) {
2881
3346
  case 0:
@@ -2924,7 +3389,7 @@ var OroClient = /*#__PURE__*/function () {
2924
3389
  }, _callee14, this);
2925
3390
  }));
2926
3391
 
2927
- function createConsultationAttachmentData(_x34, _x35, _x36, _x37, _x38, _x39) {
3392
+ function createConsultationAttachmentData(_x35, _x36, _x37, _x38, _x39, _x40) {
2928
3393
  return _createConsultationAttachmentData.apply(this, arguments);
2929
3394
  }
2930
3395
 
@@ -2946,9 +3411,9 @@ var OroClient = /*#__PURE__*/function () {
2946
3411
  _proto.createJsonData =
2947
3412
  /*#__PURE__*/
2948
3413
  function () {
2949
- var _createJsonData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee15(lockboxUuid, data, meta, privateMeta, lockboxOwnerUuid, previousDataUuid) {
3414
+ var _createJsonData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee15(lockboxUuid, data, meta, privateMeta, lockboxOwnerUuid, previousDataUuid) {
2950
3415
  var symmetricEncryptor, encryptedData, encryptedPrivateMeta, request;
2951
- return _regeneratorRuntime().wrap(function _callee15$(_context15) {
3416
+ return runtime_1.wrap(function _callee15$(_context15) {
2952
3417
  while (1) {
2953
3418
  switch (_context15.prev = _context15.next) {
2954
3419
  case 0:
@@ -2982,7 +3447,7 @@ var OroClient = /*#__PURE__*/function () {
2982
3447
  }, _callee15, this);
2983
3448
  }));
2984
3449
 
2985
- function createJsonData(_x40, _x41, _x42, _x43, _x44, _x45) {
3450
+ function createJsonData(_x41, _x42, _x43, _x44, _x45, _x46) {
2986
3451
  return _createJsonData.apply(this, arguments);
2987
3452
  }
2988
3453
 
@@ -3002,9 +3467,9 @@ var OroClient = /*#__PURE__*/function () {
3002
3467
  _proto.getOrInsertJsonData =
3003
3468
  /*#__PURE__*/
3004
3469
  function () {
3005
- var _getOrInsertJsonData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee16(lockboxUuid, data, publicMetadata, privateMetadata, forceReplace) {
3470
+ var _getOrInsertJsonData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee16(lockboxUuid, data, publicMetadata, privateMetadata, forceReplace) {
3006
3471
  var manifest;
3007
- return _regeneratorRuntime().wrap(function _callee16$(_context16) {
3472
+ return runtime_1.wrap(function _callee16$(_context16) {
3008
3473
  while (1) {
3009
3474
  switch (_context16.prev = _context16.next) {
3010
3475
  case 0:
@@ -3045,7 +3510,7 @@ var OroClient = /*#__PURE__*/function () {
3045
3510
  }, _callee16, this);
3046
3511
  }));
3047
3512
 
3048
- function getOrInsertJsonData(_x46, _x47, _x48, _x49, _x50) {
3513
+ function getOrInsertJsonData(_x47, _x48, _x49, _x50, _x51) {
3049
3514
  return _getOrInsertJsonData.apply(this, arguments);
3050
3515
  }
3051
3516
 
@@ -3067,9 +3532,9 @@ var OroClient = /*#__PURE__*/function () {
3067
3532
  _proto.createBytesData =
3068
3533
  /*#__PURE__*/
3069
3534
  function () {
3070
- var _createBytesData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee17(lockboxUuid, data, meta, privateMeta, lockboxOwnerUuid, previousDataUuid) {
3535
+ var _createBytesData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee17(lockboxUuid, data, meta, privateMeta, lockboxOwnerUuid, previousDataUuid) {
3071
3536
  var symmetricEncryptor, encryptedData, encryptedPrivateMeta, request;
3072
- return _regeneratorRuntime().wrap(function _callee17$(_context17) {
3537
+ return runtime_1.wrap(function _callee17$(_context17) {
3073
3538
  while (1) {
3074
3539
  switch (_context17.prev = _context17.next) {
3075
3540
  case 0:
@@ -3103,7 +3568,7 @@ var OroClient = /*#__PURE__*/function () {
3103
3568
  }, _callee17, this);
3104
3569
  }));
3105
3570
 
3106
- function createBytesData(_x51, _x52, _x53, _x54, _x55, _x56) {
3571
+ function createBytesData(_x52, _x53, _x54, _x55, _x56, _x57) {
3107
3572
  return _createBytesData.apply(this, arguments);
3108
3573
  }
3109
3574
 
@@ -3125,10 +3590,10 @@ var OroClient = /*#__PURE__*/function () {
3125
3590
  _proto.getJsonData =
3126
3591
  /*#__PURE__*/
3127
3592
  function () {
3128
- var _getJsonData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee18(lockboxUuid, dataUuid, lockboxOwnerUuid) {
3593
+ var _getJsonData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee18(lockboxUuid, dataUuid, lockboxOwnerUuid) {
3129
3594
  var _yield$Promise$all, encryptedPayload, symmetricDecryptor;
3130
3595
 
3131
- return _regeneratorRuntime().wrap(function _callee18$(_context18) {
3596
+ return runtime_1.wrap(function _callee18$(_context18) {
3132
3597
  while (1) {
3133
3598
  switch (_context18.prev = _context18.next) {
3134
3599
  case 0:
@@ -3157,7 +3622,7 @@ var OroClient = /*#__PURE__*/function () {
3157
3622
  }, _callee18, this);
3158
3623
  }));
3159
3624
 
3160
- function getJsonData(_x57, _x58, _x59) {
3625
+ function getJsonData(_x58, _x59, _x60) {
3161
3626
  return _getJsonData.apply(this, arguments);
3162
3627
  }
3163
3628
 
@@ -3175,10 +3640,10 @@ var OroClient = /*#__PURE__*/function () {
3175
3640
  _proto.getBytesData =
3176
3641
  /*#__PURE__*/
3177
3642
  function () {
3178
- var _getBytesData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee19(lockboxUuid, dataUuid, lockboxOwnerUuid) {
3643
+ var _getBytesData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee19(lockboxUuid, dataUuid, lockboxOwnerUuid) {
3179
3644
  var _yield$Promise$all2, encryptedPayload, symmetricDecryptor;
3180
3645
 
3181
- return _regeneratorRuntime().wrap(function _callee19$(_context19) {
3646
+ return runtime_1.wrap(function _callee19$(_context19) {
3182
3647
  while (1) {
3183
3648
  switch (_context19.prev = _context19.next) {
3184
3649
  case 0:
@@ -3207,7 +3672,7 @@ var OroClient = /*#__PURE__*/function () {
3207
3672
  }, _callee19, this);
3208
3673
  }));
3209
3674
 
3210
- function getBytesData(_x60, _x61, _x62) {
3675
+ function getBytesData(_x61, _x62, _x63) {
3211
3676
  return _getBytesData.apply(this, arguments);
3212
3677
  }
3213
3678
 
@@ -3228,9 +3693,9 @@ var OroClient = /*#__PURE__*/function () {
3228
3693
  _proto.getGrants =
3229
3694
  /*#__PURE__*/
3230
3695
  function () {
3231
- var _getGrants = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee20(filter) {
3696
+ var _getGrants = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee20(filter) {
3232
3697
  var filterString, currentAccountRole, encryptedGrants, decryptedGrants, grantsByConsultLockbox, decryptedConsults;
3233
- return _regeneratorRuntime().wrap(function _callee20$(_context20) {
3698
+ return runtime_1.wrap(function _callee20$(_context20) {
3234
3699
  while (1) {
3235
3700
  switch (_context20.prev = _context20.next) {
3236
3701
  case 0:
@@ -3345,7 +3810,7 @@ var OroClient = /*#__PURE__*/function () {
3345
3810
  }, _callee20, this);
3346
3811
  }));
3347
3812
 
3348
- function getGrants(_x63) {
3813
+ function getGrants(_x64) {
3349
3814
  return _getGrants.apply(this, arguments);
3350
3815
  }
3351
3816
 
@@ -3361,8 +3826,8 @@ var OroClient = /*#__PURE__*/function () {
3361
3826
  _proto.getAccountRole =
3362
3827
  /*#__PURE__*/
3363
3828
  function () {
3364
- var _getAccountRole = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee21() {
3365
- return _regeneratorRuntime().wrap(function _callee21$(_context21) {
3829
+ var _getAccountRole = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee21() {
3830
+ return runtime_1.wrap(function _callee21$(_context21) {
3366
3831
  while (1) {
3367
3832
  switch (_context21.prev = _context21.next) {
3368
3833
  case 0:
@@ -3398,9 +3863,9 @@ var OroClient = /*#__PURE__*/function () {
3398
3863
  _proto.getCachedSecretCryptor =
3399
3864
  /*#__PURE__*/
3400
3865
  function () {
3401
- var _getCachedSecretCryptor = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee22(lockboxUuid, lockboxOwnerUuid) {
3866
+ var _getCachedSecretCryptor = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee22(lockboxUuid, lockboxOwnerUuid) {
3402
3867
  var index, encryptedSecret, secret, cryptor;
3403
- return _regeneratorRuntime().wrap(function _callee22$(_context22) {
3868
+ return runtime_1.wrap(function _callee22$(_context22) {
3404
3869
  while (1) {
3405
3870
  switch (_context22.prev = _context22.next) {
3406
3871
  case 0:
@@ -3445,7 +3910,7 @@ var OroClient = /*#__PURE__*/function () {
3445
3910
  }, _callee22, this);
3446
3911
  }));
3447
3912
 
3448
- function getCachedSecretCryptor(_x64, _x65) {
3913
+ function getCachedSecretCryptor(_x65, _x66) {
3449
3914
  return _getCachedSecretCryptor.apply(this, arguments);
3450
3915
  }
3451
3916
 
@@ -3465,8 +3930,8 @@ var OroClient = /*#__PURE__*/function () {
3465
3930
  _proto.getPersonalInformationsFromConsultId =
3466
3931
  /*#__PURE__*/
3467
3932
  function () {
3468
- var _getPersonalInformationsFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee23(consultationId, category, forceRefresh) {
3469
- return _regeneratorRuntime().wrap(function _callee23$(_context23) {
3933
+ var _getPersonalInformationsFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee23(consultationId, category, forceRefresh) {
3934
+ return runtime_1.wrap(function _callee23$(_context23) {
3470
3935
  while (1) {
3471
3936
  switch (_context23.prev = _context23.next) {
3472
3937
  case 0:
@@ -3484,7 +3949,7 @@ var OroClient = /*#__PURE__*/function () {
3484
3949
  }, _callee23, this);
3485
3950
  }));
3486
3951
 
3487
- function getPersonalInformationsFromConsultId(_x66, _x67, _x68) {
3952
+ function getPersonalInformationsFromConsultId(_x67, _x68, _x69) {
3488
3953
  return _getPersonalInformationsFromConsultId.apply(this, arguments);
3489
3954
  }
3490
3955
 
@@ -3503,8 +3968,8 @@ var OroClient = /*#__PURE__*/function () {
3503
3968
  _proto.getMedicalDataFromConsultId =
3504
3969
  /*#__PURE__*/
3505
3970
  function () {
3506
- var _getMedicalDataFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee24(consultationId, forceRefresh) {
3507
- return _regeneratorRuntime().wrap(function _callee24$(_context24) {
3971
+ var _getMedicalDataFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee24(consultationId, forceRefresh) {
3972
+ return runtime_1.wrap(function _callee24$(_context24) {
3508
3973
  while (1) {
3509
3974
  switch (_context24.prev = _context24.next) {
3510
3975
  case 0:
@@ -3522,7 +3987,7 @@ var OroClient = /*#__PURE__*/function () {
3522
3987
  }, _callee24, this);
3523
3988
  }));
3524
3989
 
3525
- function getMedicalDataFromConsultId(_x69, _x70) {
3990
+ function getMedicalDataFromConsultId(_x70, _x71) {
3526
3991
  return _getMedicalDataFromConsultId.apply(this, arguments);
3527
3992
  }
3528
3993
 
@@ -3530,12 +3995,12 @@ var OroClient = /*#__PURE__*/function () {
3530
3995
  }();
3531
3996
 
3532
3997
  _proto.getMetaCategoryFromConsultId = /*#__PURE__*/function () {
3533
- var _getMetaCategoryFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee26(consultationId, category, forceRefresh) {
3998
+ var _getMetaCategoryFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee26(consultationId, category, forceRefresh) {
3534
3999
  var _this2 = this;
3535
4000
 
3536
4001
  var grants, workflowData, _loop, _iterator, _step;
3537
4002
 
3538
- return _regeneratorRuntime().wrap(function _callee26$(_context27) {
4003
+ return runtime_1.wrap(function _callee26$(_context27) {
3539
4004
  while (1) {
3540
4005
  switch (_context27.prev = _context27.next) {
3541
4006
  case 0:
@@ -3551,9 +4016,9 @@ var OroClient = /*#__PURE__*/function () {
3551
4016
  case 3:
3552
4017
  grants = _context27.sent;
3553
4018
  workflowData = [];
3554
- _loop = /*#__PURE__*/_regeneratorRuntime().mark(function _loop() {
4019
+ _loop = /*#__PURE__*/runtime_1.mark(function _loop() {
3555
4020
  var grant, manifest, data;
3556
- return _regeneratorRuntime().wrap(function _loop$(_context26) {
4021
+ return runtime_1.wrap(function _loop$(_context26) {
3557
4022
  while (1) {
3558
4023
  switch (_context26.prev = _context26.next) {
3559
4024
  case 0:
@@ -3587,8 +4052,8 @@ var OroClient = /*#__PURE__*/function () {
3587
4052
  case 8:
3588
4053
  _context26.next = 10;
3589
4054
  return Promise.all(manifest.map( /*#__PURE__*/function () {
3590
- var _ref3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee25(entry) {
3591
- return _regeneratorRuntime().wrap(function _callee25$(_context25) {
4055
+ var _ref3 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee25(entry) {
4056
+ return runtime_1.wrap(function _callee25$(_context25) {
3592
4057
  while (1) {
3593
4058
  switch (_context25.prev = _context25.next) {
3594
4059
  case 0:
@@ -3615,7 +4080,7 @@ var OroClient = /*#__PURE__*/function () {
3615
4080
  }, _callee25);
3616
4081
  }));
3617
4082
 
3618
- return function (_x74) {
4083
+ return function (_x75) {
3619
4084
  return _ref3.apply(this, arguments);
3620
4085
  };
3621
4086
  }()));
@@ -3656,7 +4121,7 @@ var OroClient = /*#__PURE__*/function () {
3656
4121
  }, _callee26, this);
3657
4122
  }));
3658
4123
 
3659
- function getMetaCategoryFromConsultId(_x71, _x72, _x73) {
4124
+ function getMetaCategoryFromConsultId(_x72, _x73, _x74) {
3660
4125
  return _getMetaCategoryFromConsultId.apply(this, arguments);
3661
4126
  }
3662
4127
 
@@ -3672,9 +4137,9 @@ var OroClient = /*#__PURE__*/function () {
3672
4137
  _proto.getPersonalInformations =
3673
4138
  /*#__PURE__*/
3674
4139
  function () {
3675
- var _getPersonalInformations = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee27(userId) {
4140
+ var _getPersonalInformations = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee27(userId) {
3676
4141
  var grant, lockboxUuid, lockboxOwnerUuid, identificationDataUuid;
3677
- return _regeneratorRuntime().wrap(function _callee27$(_context28) {
4142
+ return runtime_1.wrap(function _callee27$(_context28) {
3678
4143
  while (1) {
3679
4144
  switch (_context28.prev = _context28.next) {
3680
4145
  case 0:
@@ -3743,7 +4208,7 @@ var OroClient = /*#__PURE__*/function () {
3743
4208
  }, _callee27, this);
3744
4209
  }));
3745
4210
 
3746
- function getPersonalInformations(_x75) {
4211
+ function getPersonalInformations(_x76) {
3747
4212
  return _getPersonalInformations.apply(this, arguments);
3748
4213
  }
3749
4214
 
@@ -3760,9 +4225,9 @@ var OroClient = /*#__PURE__*/function () {
3760
4225
  _proto.getGrantFromConsultId =
3761
4226
  /*#__PURE__*/
3762
4227
  function () {
3763
- var _getGrantFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee28(consultationId) {
4228
+ var _getGrantFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee28(consultationId) {
3764
4229
  var grants;
3765
- return _regeneratorRuntime().wrap(function _callee28$(_context29) {
4230
+ return runtime_1.wrap(function _callee28$(_context29) {
3766
4231
  while (1) {
3767
4232
  switch (_context29.prev = _context29.next) {
3768
4233
  case 0:
@@ -3792,7 +4257,7 @@ var OroClient = /*#__PURE__*/function () {
3792
4257
  }, _callee28, this);
3793
4258
  }));
3794
4259
 
3795
- function getGrantFromConsultId(_x76) {
4260
+ function getGrantFromConsultId(_x77) {
3796
4261
  return _getGrantFromConsultId.apply(this, arguments);
3797
4262
  }
3798
4263
 
@@ -3808,9 +4273,9 @@ var OroClient = /*#__PURE__*/function () {
3808
4273
  _proto.getIdentityFromConsultId =
3809
4274
  /*#__PURE__*/
3810
4275
  function () {
3811
- var _getIdentityFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee29(consultationId) {
4276
+ var _getIdentityFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee29(consultationId) {
3812
4277
  var grant;
3813
- return _regeneratorRuntime().wrap(function _callee29$(_context30) {
4278
+ return runtime_1.wrap(function _callee29$(_context30) {
3814
4279
  while (1) {
3815
4280
  switch (_context30.prev = _context30.next) {
3816
4281
  case 0:
@@ -3842,7 +4307,7 @@ var OroClient = /*#__PURE__*/function () {
3842
4307
  }, _callee29, this);
3843
4308
  }));
3844
4309
 
3845
- function getIdentityFromConsultId(_x77) {
4310
+ function getIdentityFromConsultId(_x78) {
3846
4311
  return _getIdentityFromConsultId.apply(this, arguments);
3847
4312
  }
3848
4313
 
@@ -3863,11 +4328,11 @@ var OroClient = /*#__PURE__*/function () {
3863
4328
  _proto.getLockboxManifest =
3864
4329
  /*#__PURE__*/
3865
4330
  function () {
3866
- var _getLockboxManifest = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee31(lockboxUuid, filter, expandPrivateMetadata, lockboxOwnerUuid, forceRefresh) {
4331
+ var _getLockboxManifest = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee31(lockboxUuid, filter, expandPrivateMetadata, lockboxOwnerUuid, forceRefresh) {
3867
4332
  var _this3 = this;
3868
4333
 
3869
4334
  var manifestKey;
3870
- return _regeneratorRuntime().wrap(function _callee31$(_context32) {
4335
+ return runtime_1.wrap(function _callee31$(_context32) {
3871
4336
  while (1) {
3872
4337
  switch (_context32.prev = _context32.next) {
3873
4338
  case 0:
@@ -3892,9 +4357,9 @@ var OroClient = /*#__PURE__*/function () {
3892
4357
  case 4:
3893
4358
  return _context32.abrupt("return", this.vaultClient.lockboxManifestGet(lockboxUuid, filter, lockboxOwnerUuid).then(function (manifest) {
3894
4359
  return Promise.all(manifest.map( /*#__PURE__*/function () {
3895
- var _ref4 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee30(entry) {
4360
+ var _ref4 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee30(entry) {
3896
4361
  var privateMeta;
3897
- return _regeneratorRuntime().wrap(function _callee30$(_context31) {
4362
+ return runtime_1.wrap(function _callee30$(_context31) {
3898
4363
  while (1) {
3899
4364
  switch (_context31.prev = _context31.next) {
3900
4365
  case 0:
@@ -3921,7 +4386,7 @@ var OroClient = /*#__PURE__*/function () {
3921
4386
  }, _callee30);
3922
4387
  }));
3923
4388
 
3924
- return function (_x83) {
4389
+ return function (_x84) {
3925
4390
  return _ref4.apply(this, arguments);
3926
4391
  };
3927
4392
  }())).then(function (manifest) {
@@ -3937,7 +4402,7 @@ var OroClient = /*#__PURE__*/function () {
3937
4402
  }, _callee31, this);
3938
4403
  }));
3939
4404
 
3940
- function getLockboxManifest(_x78, _x79, _x80, _x81, _x82) {
4405
+ function getLockboxManifest(_x79, _x80, _x81, _x82, _x83) {
3941
4406
  return _getLockboxManifest.apply(this, arguments);
3942
4407
  }
3943
4408
 
@@ -3955,11 +4420,11 @@ var OroClient = /*#__PURE__*/function () {
3955
4420
  _proto.createPersonalInformations =
3956
4421
  /*#__PURE__*/
3957
4422
  function () {
3958
- var _createPersonalInformations = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee32(identity, data, dataUuid) {
4423
+ var _createPersonalInformations = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee32(identity, data, dataUuid) {
3959
4424
  var _yield$this$getGrants;
3960
4425
 
3961
4426
  var lockboxUuid;
3962
- return _regeneratorRuntime().wrap(function _callee32$(_context33) {
4427
+ return runtime_1.wrap(function _callee32$(_context33) {
3963
4428
  while (1) {
3964
4429
  switch (_context33.prev = _context33.next) {
3965
4430
  case 0:
@@ -4007,7 +4472,7 @@ var OroClient = /*#__PURE__*/function () {
4007
4472
  }, _callee32, this);
4008
4473
  }));
4009
4474
 
4010
- function createPersonalInformations(_x84, _x85, _x86) {
4475
+ function createPersonalInformations(_x85, _x86, _x87) {
4011
4476
  return _createPersonalInformations.apply(this, arguments);
4012
4477
  }
4013
4478
 
@@ -4025,11 +4490,11 @@ var OroClient = /*#__PURE__*/function () {
4025
4490
  _proto.createUserPreference =
4026
4491
  /*#__PURE__*/
4027
4492
  function () {
4028
- var _createUserPreference = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee33(identity, preference, dataUuid) {
4493
+ var _createUserPreference = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee33(identity, preference, dataUuid) {
4029
4494
  var _yield$this$getGrants2;
4030
4495
 
4031
4496
  var lockboxUuid;
4032
- return _regeneratorRuntime().wrap(function _callee33$(_context34) {
4497
+ return runtime_1.wrap(function _callee33$(_context34) {
4033
4498
  while (1) {
4034
4499
  switch (_context34.prev = _context34.next) {
4035
4500
  case 0:
@@ -4077,7 +4542,7 @@ var OroClient = /*#__PURE__*/function () {
4077
4542
  }, _callee33, this);
4078
4543
  }));
4079
4544
 
4080
- function createUserPreference(_x87, _x88, _x89) {
4545
+ function createUserPreference(_x88, _x89, _x90) {
4081
4546
  return _createUserPreference.apply(this, arguments);
4082
4547
  }
4083
4548
 
@@ -4093,9 +4558,9 @@ var OroClient = /*#__PURE__*/function () {
4093
4558
  _proto.getDataFromGrant =
4094
4559
  /*#__PURE__*/
4095
4560
  function () {
4096
- var _getDataFromGrant = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee34(grant, filter) {
4561
+ var _getDataFromGrant = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee34(grant, filter) {
4097
4562
  var lockboxUuid, lockboxOwnerUuid, identificationDataUuid;
4098
- return _regeneratorRuntime().wrap(function _callee34$(_context35) {
4563
+ return runtime_1.wrap(function _callee34$(_context35) {
4099
4564
  while (1) {
4100
4565
  switch (_context35.prev = _context35.next) {
4101
4566
  case 0:
@@ -4145,7 +4610,7 @@ var OroClient = /*#__PURE__*/function () {
4145
4610
  }, _callee34, this);
4146
4611
  }));
4147
4612
 
4148
- function getDataFromGrant(_x90, _x91) {
4613
+ function getDataFromGrant(_x91, _x92) {
4149
4614
  return _getDataFromGrant.apply(this, arguments);
4150
4615
  }
4151
4616
 
@@ -4161,9 +4626,9 @@ var OroClient = /*#__PURE__*/function () {
4161
4626
  _proto.getUserPreferenceFromConsultId =
4162
4627
  /*#__PURE__*/
4163
4628
  function () {
4164
- var _getUserPreferenceFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee35(consultationId) {
4629
+ var _getUserPreferenceFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee35(consultationId) {
4165
4630
  var grant;
4166
- return _regeneratorRuntime().wrap(function _callee35$(_context36) {
4631
+ return runtime_1.wrap(function _callee35$(_context36) {
4167
4632
  while (1) {
4168
4633
  switch (_context36.prev = _context36.next) {
4169
4634
  case 0:
@@ -4194,7 +4659,7 @@ var OroClient = /*#__PURE__*/function () {
4194
4659
  }, _callee35, this);
4195
4660
  }));
4196
4661
 
4197
- function getUserPreferenceFromConsultId(_x92) {
4662
+ function getUserPreferenceFromConsultId(_x93) {
4198
4663
  return _getUserPreferenceFromConsultId.apply(this, arguments);
4199
4664
  }
4200
4665
 
@@ -4210,9 +4675,9 @@ var OroClient = /*#__PURE__*/function () {
4210
4675
  _proto.getUserPreference =
4211
4676
  /*#__PURE__*/
4212
4677
  function () {
4213
- var _getUserPreference = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee36(identity) {
4678
+ var _getUserPreference = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee36(identity) {
4214
4679
  var grant;
4215
- return _regeneratorRuntime().wrap(function _callee36$(_context37) {
4680
+ return runtime_1.wrap(function _callee36$(_context37) {
4216
4681
  while (1) {
4217
4682
  switch (_context37.prev = _context37.next) {
4218
4683
  case 0:
@@ -4245,7 +4710,7 @@ var OroClient = /*#__PURE__*/function () {
4245
4710
  }, _callee36, this);
4246
4711
  }));
4247
4712
 
4248
- function getUserPreference(_x93) {
4713
+ function getUserPreference(_x94) {
4249
4714
  return _getUserPreference.apply(this, arguments);
4250
4715
  }
4251
4716
 
@@ -4261,9 +4726,9 @@ var OroClient = /*#__PURE__*/function () {
4261
4726
  _proto.getRecoveryDataFromConsultId =
4262
4727
  /*#__PURE__*/
4263
4728
  function () {
4264
- var _getRecoveryDataFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee37(consultationId) {
4729
+ var _getRecoveryDataFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee37(consultationId) {
4265
4730
  var grant;
4266
- return _regeneratorRuntime().wrap(function _callee37$(_context38) {
4731
+ return runtime_1.wrap(function _callee37$(_context38) {
4267
4732
  while (1) {
4268
4733
  switch (_context38.prev = _context38.next) {
4269
4734
  case 0:
@@ -4294,7 +4759,7 @@ var OroClient = /*#__PURE__*/function () {
4294
4759
  }, _callee37, this);
4295
4760
  }));
4296
4761
 
4297
- function getRecoveryDataFromConsultId(_x94) {
4762
+ function getRecoveryDataFromConsultId(_x95) {
4298
4763
  return _getRecoveryDataFromConsultId.apply(this, arguments);
4299
4764
  }
4300
4765
 
@@ -4310,9 +4775,9 @@ var OroClient = /*#__PURE__*/function () {
4310
4775
  _proto.getRecoveryData =
4311
4776
  /*#__PURE__*/
4312
4777
  function () {
4313
- var _getRecoveryData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee38(identity) {
4778
+ var _getRecoveryData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee38(identity) {
4314
4779
  var grant;
4315
- return _regeneratorRuntime().wrap(function _callee38$(_context39) {
4780
+ return runtime_1.wrap(function _callee38$(_context39) {
4316
4781
  while (1) {
4317
4782
  switch (_context39.prev = _context39.next) {
4318
4783
  case 0:
@@ -4345,7 +4810,7 @@ var OroClient = /*#__PURE__*/function () {
4345
4810
  }, _callee38, this);
4346
4811
  }));
4347
4812
 
4348
- function getRecoveryData(_x95) {
4813
+ function getRecoveryData(_x96) {
4349
4814
  return _getRecoveryData.apply(this, arguments);
4350
4815
  }
4351
4816
 
@@ -4366,10 +4831,10 @@ var OroClient = /*#__PURE__*/function () {
4366
4831
  _proto.getAssignedConsultations =
4367
4832
  /*#__PURE__*/
4368
4833
  function () {
4369
- var _getAssignedConsultations = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee40(practiceUuid) {
4834
+ var _getAssignedConsultations = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee40(practiceUuid) {
4370
4835
  var _this4 = this;
4371
4836
 
4372
- return _regeneratorRuntime().wrap(function _callee40$(_context41) {
4837
+ return runtime_1.wrap(function _callee40$(_context41) {
4373
4838
  while (1) {
4374
4839
  switch (_context41.prev = _context41.next) {
4375
4840
  case 0:
@@ -4384,8 +4849,8 @@ var OroClient = /*#__PURE__*/function () {
4384
4849
  documentType: initApis.DocumentType.PopulatedWorkflowData
4385
4850
  }, true, undefined).then(function (manifest) {
4386
4851
  return Promise.all(manifest.map( /*#__PURE__*/function () {
4387
- var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee39(entry) {
4388
- return _regeneratorRuntime().wrap(function _callee39$(_context40) {
4852
+ var _ref5 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee39(entry) {
4853
+ return runtime_1.wrap(function _callee39$(_context40) {
4389
4854
  while (1) {
4390
4855
  switch (_context40.prev = _context40.next) {
4391
4856
  case 0:
@@ -4403,7 +4868,7 @@ var OroClient = /*#__PURE__*/function () {
4403
4868
  }, _callee39);
4404
4869
  }));
4405
4870
 
4406
- return function (_x97) {
4871
+ return function (_x98) {
4407
4872
  return _ref5.apply(this, arguments);
4408
4873
  };
4409
4874
  }())).then(function (promise) {
@@ -4423,7 +4888,7 @@ var OroClient = /*#__PURE__*/function () {
4423
4888
  }, _callee40, this);
4424
4889
  }));
4425
4890
 
4426
- function getAssignedConsultations(_x96) {
4891
+ function getAssignedConsultations(_x97) {
4427
4892
  return _getAssignedConsultations.apply(this, arguments);
4428
4893
  }
4429
4894
 
@@ -4439,11 +4904,11 @@ var OroClient = /*#__PURE__*/function () {
4439
4904
  _proto.getPastConsultationsFromConsultId =
4440
4905
  /*#__PURE__*/
4441
4906
  function () {
4442
- var _getPastConsultationsFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee42(consultationId, practiceUuid) {
4907
+ var _getPastConsultationsFromConsultId = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee42(consultationId, practiceUuid) {
4443
4908
  var _this5 = this;
4444
4909
 
4445
4910
  var grant, consultationsInLockbox;
4446
- return _regeneratorRuntime().wrap(function _callee42$(_context43) {
4911
+ return runtime_1.wrap(function _callee42$(_context43) {
4447
4912
  while (1) {
4448
4913
  switch (_context43.prev = _context43.next) {
4449
4914
  case 0:
@@ -4482,8 +4947,8 @@ var OroClient = /*#__PURE__*/function () {
4482
4947
  case 10:
4483
4948
  _context43.next = 12;
4484
4949
  return Promise.all(consultationsInLockbox.map( /*#__PURE__*/function () {
4485
- var _ref6 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee41(consultId) {
4486
- return _regeneratorRuntime().wrap(function _callee41$(_context42) {
4950
+ var _ref6 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee41(consultId) {
4951
+ return runtime_1.wrap(function _callee41$(_context42) {
4487
4952
  while (1) {
4488
4953
  switch (_context42.prev = _context42.next) {
4489
4954
  case 0:
@@ -4501,7 +4966,7 @@ var OroClient = /*#__PURE__*/function () {
4501
4966
  }, _callee41);
4502
4967
  }));
4503
4968
 
4504
- return function (_x100) {
4969
+ return function (_x101) {
4505
4970
  return _ref6.apply(this, arguments);
4506
4971
  };
4507
4972
  }()));
@@ -4517,7 +4982,7 @@ var OroClient = /*#__PURE__*/function () {
4517
4982
  }, _callee42, this);
4518
4983
  }));
4519
4984
 
4520
- function getPastConsultationsFromConsultId(_x98, _x99) {
4985
+ function getPastConsultationsFromConsultId(_x99, _x100) {
4521
4986
  return _getPastConsultationsFromConsultId.apply(this, arguments);
4522
4987
  }
4523
4988
 
@@ -4534,10 +4999,10 @@ var OroClient = /*#__PURE__*/function () {
4534
4999
  _proto.getPatientConsultationData =
4535
5000
  /*#__PURE__*/
4536
5001
  function () {
4537
- var _getPatientConsultationData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee43(consultationId, forceRefresh) {
5002
+ var _getPatientConsultationData = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee43(consultationId, forceRefresh) {
4538
5003
  var _this6 = this;
4539
5004
 
4540
- return _regeneratorRuntime().wrap(function _callee43$(_context44) {
5005
+ return runtime_1.wrap(function _callee43$(_context44) {
4541
5006
  while (1) {
4542
5007
  switch (_context44.prev = _context44.next) {
4543
5008
  case 0:
@@ -4575,7 +5040,7 @@ var OroClient = /*#__PURE__*/function () {
4575
5040
  }, _callee43, this);
4576
5041
  }));
4577
5042
 
4578
- function getPatientConsultationData(_x101, _x102) {
5043
+ function getPatientConsultationData(_x102, _x103) {
4579
5044
  return _getPatientConsultationData.apply(this, arguments);
4580
5045
  }
4581
5046
 
@@ -4591,8 +5056,8 @@ var OroClient = /*#__PURE__*/function () {
4591
5056
  _proto.getPatientPrescriptionsList =
4592
5057
  /*#__PURE__*/
4593
5058
  function () {
4594
- var _getPatientPrescriptionsList = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee44(consultationId) {
4595
- return _regeneratorRuntime().wrap(function _callee44$(_context45) {
5059
+ var _getPatientPrescriptionsList = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee44(consultationId) {
5060
+ return runtime_1.wrap(function _callee44$(_context45) {
4596
5061
  while (1) {
4597
5062
  switch (_context45.prev = _context45.next) {
4598
5063
  case 0:
@@ -4609,7 +5074,7 @@ var OroClient = /*#__PURE__*/function () {
4609
5074
  }, _callee44, this);
4610
5075
  }));
4611
5076
 
4612
- function getPatientPrescriptionsList(_x103) {
5077
+ function getPatientPrescriptionsList(_x104) {
4613
5078
  return _getPatientPrescriptionsList.apply(this, arguments);
4614
5079
  }
4615
5080
 
@@ -4625,8 +5090,8 @@ var OroClient = /*#__PURE__*/function () {
4625
5090
  _proto.getPatientResultsList =
4626
5091
  /*#__PURE__*/
4627
5092
  function () {
4628
- var _getPatientResultsList = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee45(consultationId) {
4629
- return _regeneratorRuntime().wrap(function _callee45$(_context46) {
5093
+ var _getPatientResultsList = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee45(consultationId) {
5094
+ return runtime_1.wrap(function _callee45$(_context46) {
4630
5095
  while (1) {
4631
5096
  switch (_context46.prev = _context46.next) {
4632
5097
  case 0:
@@ -4643,7 +5108,7 @@ var OroClient = /*#__PURE__*/function () {
4643
5108
  }, _callee45, this);
4644
5109
  }));
4645
5110
 
4646
- function getPatientResultsList(_x104) {
5111
+ function getPatientResultsList(_x105) {
4647
5112
  return _getPatientResultsList.apply(this, arguments);
4648
5113
  }
4649
5114
 
@@ -4659,8 +5124,8 @@ var OroClient = /*#__PURE__*/function () {
4659
5124
  _proto.getPatientTreatmentPlans =
4660
5125
  /*#__PURE__*/
4661
5126
  function () {
4662
- var _getPatientTreatmentPlans = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee46(consultationId) {
4663
- return _regeneratorRuntime().wrap(function _callee46$(_context47) {
5127
+ var _getPatientTreatmentPlans = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee46(consultationId) {
5128
+ return runtime_1.wrap(function _callee46$(_context47) {
4664
5129
  while (1) {
4665
5130
  switch (_context47.prev = _context47.next) {
4666
5131
  case 0:
@@ -4677,7 +5142,7 @@ var OroClient = /*#__PURE__*/function () {
4677
5142
  }, _callee46, this);
4678
5143
  }));
4679
5144
 
4680
- function getPatientTreatmentPlans(_x105) {
5145
+ function getPatientTreatmentPlans(_x106) {
4681
5146
  return _getPatientTreatmentPlans.apply(this, arguments);
4682
5147
  }
4683
5148
 
@@ -4694,8 +5159,8 @@ var OroClient = /*#__PURE__*/function () {
4694
5159
  _proto.getPatientTreatmentPlanByUuid =
4695
5160
  /*#__PURE__*/
4696
5161
  function () {
4697
- var _getPatientTreatmentPlanByUuid = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee47(consultationId, treatmentPlanId) {
4698
- return _regeneratorRuntime().wrap(function _callee47$(_context48) {
5162
+ var _getPatientTreatmentPlanByUuid = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee47(consultationId, treatmentPlanId) {
5163
+ return runtime_1.wrap(function _callee47$(_context48) {
4699
5164
  while (1) {
4700
5165
  switch (_context48.prev = _context48.next) {
4701
5166
  case 0:
@@ -4713,7 +5178,7 @@ var OroClient = /*#__PURE__*/function () {
4713
5178
  }, _callee47, this);
4714
5179
  }));
4715
5180
 
4716
- function getPatientTreatmentPlanByUuid(_x106, _x107) {
5181
+ function getPatientTreatmentPlanByUuid(_x107, _x108) {
4717
5182
  return _getPatientTreatmentPlanByUuid.apply(this, arguments);
4718
5183
  }
4719
5184
 
@@ -4733,10 +5198,10 @@ var OroClient = /*#__PURE__*/function () {
4733
5198
  _proto.getPatientDocumentsList =
4734
5199
  /*#__PURE__*/
4735
5200
  function () {
4736
- var _getPatientDocumentsList = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee49(filters, expandPrivateMetadata, consultationId) {
5201
+ var _getPatientDocumentsList = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee49(filters, expandPrivateMetadata, consultationId) {
4737
5202
  var _this7 = this;
4738
5203
 
4739
- return _regeneratorRuntime().wrap(function _callee49$(_context50) {
5204
+ return runtime_1.wrap(function _callee49$(_context50) {
4740
5205
  while (1) {
4741
5206
  switch (_context50.prev = _context50.next) {
4742
5207
  case 0:
@@ -4752,8 +5217,8 @@ var OroClient = /*#__PURE__*/function () {
4752
5217
  consultationId: consultationId
4753
5218
  }), expandPrivateMetadata, grant.lockboxOwnerUuid, true).then(function (manifest) {
4754
5219
  return Promise.all(manifest.map( /*#__PURE__*/function () {
4755
- var _ref7 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee48(entry) {
4756
- return _regeneratorRuntime().wrap(function _callee48$(_context49) {
5220
+ var _ref7 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee48(entry) {
5221
+ return runtime_1.wrap(function _callee48$(_context49) {
4757
5222
  while (1) {
4758
5223
  switch (_context49.prev = _context49.next) {
4759
5224
  case 0:
@@ -4770,7 +5235,7 @@ var OroClient = /*#__PURE__*/function () {
4770
5235
  }, _callee48);
4771
5236
  }));
4772
5237
 
4773
- return function (_x111) {
5238
+ return function (_x112) {
4774
5239
  return _ref7.apply(this, arguments);
4775
5240
  };
4776
5241
  }()));
@@ -4788,7 +5253,7 @@ var OroClient = /*#__PURE__*/function () {
4788
5253
  }, _callee49, this);
4789
5254
  }));
4790
5255
 
4791
- function getPatientDocumentsList(_x108, _x109, _x110) {
5256
+ function getPatientDocumentsList(_x109, _x110, _x111) {
4792
5257
  return _getPatientDocumentsList.apply(this, arguments);
4793
5258
  }
4794
5259
 
@@ -4811,9 +5276,9 @@ var OroClient = /*#__PURE__*/function () {
4811
5276
  _proto.recoverPrivateKeyFromSecurityQuestions =
4812
5277
  /*#__PURE__*/
4813
5278
  function () {
4814
- var _recoverPrivateKeyFromSecurityQuestions = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee50(id, recoverySecurityQuestions, recoverySecurityAnswers, threshold) {
5279
+ var _recoverPrivateKeyFromSecurityQuestions = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee50(id, recoverySecurityQuestions, recoverySecurityAnswers, threshold) {
4815
5280
  var shards, answeredShards, privateKey;
4816
- return _regeneratorRuntime().wrap(function _callee50$(_context51) {
5281
+ return runtime_1.wrap(function _callee50$(_context51) {
4817
5282
  while (1) {
4818
5283
  switch (_context51.prev = _context51.next) {
4819
5284
  case 0:
@@ -4850,7 +5315,7 @@ var OroClient = /*#__PURE__*/function () {
4850
5315
  }, _callee50, this);
4851
5316
  }));
4852
5317
 
4853
- function recoverPrivateKeyFromSecurityQuestions(_x112, _x113, _x114, _x115) {
5318
+ function recoverPrivateKeyFromSecurityQuestions(_x113, _x114, _x115, _x116) {
4854
5319
  return _recoverPrivateKeyFromSecurityQuestions.apply(this, arguments);
4855
5320
  }
4856
5321
 
@@ -4867,9 +5332,9 @@ var OroClient = /*#__PURE__*/function () {
4867
5332
  _proto.recoverPrivateKeyFromPassword =
4868
5333
  /*#__PURE__*/
4869
5334
  function () {
4870
- var _recoverPrivateKeyFromPassword = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee51(id, password) {
5335
+ var _recoverPrivateKeyFromPassword = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee51(id, password) {
4871
5336
  var identity, recoveryPayload, symmetricDecryptor, privateKey, symetricEncryptor;
4872
- return _regeneratorRuntime().wrap(function _callee51$(_context52) {
5337
+ return runtime_1.wrap(function _callee51$(_context52) {
4873
5338
  while (1) {
4874
5339
  switch (_context52.prev = _context52.next) {
4875
5340
  case 0:
@@ -4898,7 +5363,7 @@ var OroClient = /*#__PURE__*/function () {
4898
5363
  }, _callee51, this);
4899
5364
  }));
4900
5365
 
4901
- function recoverPrivateKeyFromPassword(_x116, _x117) {
5366
+ function recoverPrivateKeyFromPassword(_x117, _x118) {
4902
5367
  return _recoverPrivateKeyFromPassword.apply(this, arguments);
4903
5368
  }
4904
5369
 
@@ -4915,9 +5380,9 @@ var OroClient = /*#__PURE__*/function () {
4915
5380
  _proto.recoverPrivateKeyFromMasterKey =
4916
5381
  /*#__PURE__*/
4917
5382
  function () {
4918
- var _recoverPrivateKeyFromMasterKey = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee52(id, masterKey) {
5383
+ var _recoverPrivateKeyFromMasterKey = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee52(id, masterKey) {
4919
5384
  var recoveryPayload, symmetricDecryptor, privateKey;
4920
- return _regeneratorRuntime().wrap(function _callee52$(_context53) {
5385
+ return runtime_1.wrap(function _callee52$(_context53) {
4921
5386
  while (1) {
4922
5387
  switch (_context53.prev = _context53.next) {
4923
5388
  case 0:
@@ -4938,7 +5403,7 @@ var OroClient = /*#__PURE__*/function () {
4938
5403
  }, _callee52, this);
4939
5404
  }));
4940
5405
 
4941
- function recoverPrivateKeyFromMasterKey(_x118, _x119) {
5406
+ function recoverPrivateKeyFromMasterKey(_x119, _x120) {
4942
5407
  return _recoverPrivateKeyFromMasterKey.apply(this, arguments);
4943
5408
  }
4944
5409
 
@@ -4957,9 +5422,9 @@ var OroClient = /*#__PURE__*/function () {
4957
5422
  _proto.updateSecurityQuestions =
4958
5423
  /*#__PURE__*/
4959
5424
  function () {
4960
- var _updateSecurityQuestions = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee53(id, recoverySecurityQuestions, recoverySecurityAnswers, threshold) {
5425
+ var _updateSecurityQuestions = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee53(id, recoverySecurityQuestions, recoverySecurityAnswers, threshold) {
4961
5426
  var securityQuestionPayload, updateRequest;
4962
- return _regeneratorRuntime().wrap(function _callee53$(_context54) {
5427
+ return runtime_1.wrap(function _callee53$(_context54) {
4963
5428
  while (1) {
4964
5429
  switch (_context54.prev = _context54.next) {
4965
5430
  case 0:
@@ -4989,7 +5454,7 @@ var OroClient = /*#__PURE__*/function () {
4989
5454
  }, _callee53, this);
4990
5455
  }));
4991
5456
 
4992
- function updateSecurityQuestions(_x120, _x121, _x122, _x123) {
5457
+ function updateSecurityQuestions(_x121, _x122, _x123, _x124) {
4993
5458
  return _updateSecurityQuestions.apply(this, arguments);
4994
5459
  }
4995
5460
 
@@ -5011,9 +5476,9 @@ var OroClient = /*#__PURE__*/function () {
5011
5476
  _proto.updatePassword =
5012
5477
  /*#__PURE__*/
5013
5478
  function () {
5014
- var _updatePassword = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee54(id, newPassword, oldPassword) {
5479
+ var _updatePassword = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee54(id, newPassword, oldPassword) {
5015
5480
  var symmetricEncryptor, passwordPayload, updateRequest;
5016
- return _regeneratorRuntime().wrap(function _callee54$(_context55) {
5481
+ return runtime_1.wrap(function _callee54$(_context55) {
5017
5482
  while (1) {
5018
5483
  switch (_context55.prev = _context55.next) {
5019
5484
  case 0:
@@ -5054,7 +5519,7 @@ var OroClient = /*#__PURE__*/function () {
5054
5519
  }, _callee54, this);
5055
5520
  }));
5056
5521
 
5057
- function updatePassword(_x124, _x125, _x126) {
5522
+ function updatePassword(_x125, _x126, _x127) {
5058
5523
  return _updatePassword.apply(this, arguments);
5059
5524
  }
5060
5525
 
@@ -5073,9 +5538,9 @@ var OroClient = /*#__PURE__*/function () {
5073
5538
  _proto.updateMasterKey =
5074
5539
  /*#__PURE__*/
5075
5540
  function () {
5076
- var _updateMasterKey = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee55(id, masterKey, lockboxUuid) {
5541
+ var _updateMasterKey = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee55(id, masterKey, lockboxUuid) {
5077
5542
  var symmetricEncryptor, masterKeyPayload, updateRequest, updatedIdentity;
5078
- return _regeneratorRuntime().wrap(function _callee55$(_context56) {
5543
+ return runtime_1.wrap(function _callee55$(_context56) {
5079
5544
  while (1) {
5080
5545
  switch (_context56.prev = _context56.next) {
5081
5546
  case 0:
@@ -5116,7 +5581,7 @@ var OroClient = /*#__PURE__*/function () {
5116
5581
  }, _callee55, this);
5117
5582
  }));
5118
5583
 
5119
- function updateMasterKey(_x127, _x128, _x129) {
5584
+ function updateMasterKey(_x128, _x129, _x130) {
5120
5585
  return _updateMasterKey.apply(this, arguments);
5121
5586
  }
5122
5587