oro-sdk-apis 1.52.0 → 1.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,501 +19,918 @@ function hashToBase64String(value) {
19
19
  return _.Buffer.from(hash_js.sha256().update(value).digest('hex'), 'hex').toString('base64');
20
20
  }
21
21
 
22
- function _regeneratorRuntime() {
23
- /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
22
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
23
+ try {
24
+ var info = gen[key](arg);
25
+ var value = info.value;
26
+ } catch (error) {
27
+ reject(error);
28
+ return;
29
+ }
30
+
31
+ if (info.done) {
32
+ resolve(value);
33
+ } else {
34
+ Promise.resolve(value).then(_next, _throw);
35
+ }
36
+ }
37
+
38
+ function _asyncToGenerator(fn) {
39
+ return function () {
40
+ var self = this,
41
+ args = arguments;
42
+ return new Promise(function (resolve, reject) {
43
+ var gen = fn.apply(self, args);
44
+
45
+ function _next(value) {
46
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
47
+ }
48
+
49
+ function _throw(err) {
50
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
51
+ }
52
+
53
+ _next(undefined);
54
+ });
55
+ };
56
+ }
57
+
58
+ function _extends() {
59
+ _extends = Object.assign || function (target) {
60
+ for (var i = 1; i < arguments.length; i++) {
61
+ var source = arguments[i];
62
+
63
+ for (var key in source) {
64
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
65
+ target[key] = source[key];
66
+ }
67
+ }
68
+ }
69
+
70
+ return target;
71
+ };
72
+
73
+ return _extends.apply(this, arguments);
74
+ }
75
+
76
+ function _inheritsLoose(subClass, superClass) {
77
+ subClass.prototype = Object.create(superClass.prototype);
78
+ subClass.prototype.constructor = subClass;
79
+
80
+ _setPrototypeOf(subClass, superClass);
81
+ }
24
82
 
25
- _regeneratorRuntime = function () {
26
- return exports;
83
+ function _getPrototypeOf(o) {
84
+ _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
85
+ return o.__proto__ || Object.getPrototypeOf(o);
27
86
  };
87
+ return _getPrototypeOf(o);
88
+ }
28
89
 
29
- var exports = {},
30
- Op = Object.prototype,
31
- hasOwn = Op.hasOwnProperty,
32
- $Symbol = "function" == typeof Symbol ? Symbol : {},
33
- iteratorSymbol = $Symbol.iterator || "@@iterator",
34
- asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator",
35
- toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
90
+ function _setPrototypeOf(o, p) {
91
+ _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
92
+ o.__proto__ = p;
93
+ return o;
94
+ };
95
+
96
+ return _setPrototypeOf(o, p);
97
+ }
98
+
99
+ function _isNativeReflectConstruct() {
100
+ if (typeof Reflect === "undefined" || !Reflect.construct) return false;
101
+ if (Reflect.construct.sham) return false;
102
+ if (typeof Proxy === "function") return true;
103
+
104
+ try {
105
+ Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
106
+ return true;
107
+ } catch (e) {
108
+ return false;
109
+ }
110
+ }
111
+
112
+ function _construct(Parent, args, Class) {
113
+ if (_isNativeReflectConstruct()) {
114
+ _construct = Reflect.construct;
115
+ } else {
116
+ _construct = function _construct(Parent, args, Class) {
117
+ var a = [null];
118
+ a.push.apply(a, args);
119
+ var Constructor = Function.bind.apply(Parent, a);
120
+ var instance = new Constructor();
121
+ if (Class) _setPrototypeOf(instance, Class.prototype);
122
+ return instance;
123
+ };
124
+ }
125
+
126
+ return _construct.apply(null, arguments);
127
+ }
128
+
129
+ function _isNativeFunction(fn) {
130
+ return Function.toString.call(fn).indexOf("[native code]") !== -1;
131
+ }
132
+
133
+ function _wrapNativeSuper(Class) {
134
+ var _cache = typeof Map === "function" ? new Map() : undefined;
135
+
136
+ _wrapNativeSuper = function _wrapNativeSuper(Class) {
137
+ if (Class === null || !_isNativeFunction(Class)) return Class;
138
+
139
+ if (typeof Class !== "function") {
140
+ throw new TypeError("Super expression must either be null or a function");
141
+ }
142
+
143
+ if (typeof _cache !== "undefined") {
144
+ if (_cache.has(Class)) return _cache.get(Class);
145
+
146
+ _cache.set(Class, Wrapper);
147
+ }
148
+
149
+ function Wrapper() {
150
+ return _construct(Class, arguments, _getPrototypeOf(this).constructor);
151
+ }
152
+
153
+ Wrapper.prototype = Object.create(Class.prototype, {
154
+ constructor: {
155
+ value: Wrapper,
156
+ enumerable: false,
157
+ writable: true,
158
+ configurable: true
159
+ }
160
+ });
161
+ return _setPrototypeOf(Wrapper, Class);
162
+ };
163
+
164
+ return _wrapNativeSuper(Class);
165
+ }
166
+
167
+ function _assertThisInitialized(self) {
168
+ if (self === void 0) {
169
+ throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
170
+ }
171
+
172
+ return self;
173
+ }
174
+
175
+ function createCommonjsModule(fn, module) {
176
+ return module = { exports: {} }, fn(module, module.exports), module.exports;
177
+ }
178
+
179
+ var runtime_1 = createCommonjsModule(function (module) {
180
+ /**
181
+ * Copyright (c) 2014-present, Facebook, Inc.
182
+ *
183
+ * This source code is licensed under the MIT license found in the
184
+ * LICENSE file in the root directory of this source tree.
185
+ */
186
+
187
+ var runtime = (function (exports) {
188
+
189
+ var Op = Object.prototype;
190
+ var hasOwn = Op.hasOwnProperty;
191
+ var undefined$1; // More compressible than void 0.
192
+ var $Symbol = typeof Symbol === "function" ? Symbol : {};
193
+ var iteratorSymbol = $Symbol.iterator || "@@iterator";
194
+ var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
195
+ var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
36
196
 
37
197
  function define(obj, key, value) {
38
- return Object.defineProperty(obj, key, {
198
+ Object.defineProperty(obj, key, {
39
199
  value: value,
40
- enumerable: !0,
41
- configurable: !0,
42
- writable: !0
43
- }), obj[key];
200
+ enumerable: true,
201
+ configurable: true,
202
+ writable: true
203
+ });
204
+ return obj[key];
44
205
  }
45
-
46
206
  try {
207
+ // IE 8 has a broken Object.defineProperty that only works on DOM objects.
47
208
  define({}, "");
48
209
  } catch (err) {
49
- define = function (obj, key, value) {
210
+ define = function(obj, key, value) {
50
211
  return obj[key] = value;
51
212
  };
52
213
  }
53
214
 
54
215
  function wrap(innerFn, outerFn, self, tryLocsList) {
55
- var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator,
56
- generator = Object.create(protoGenerator.prototype),
57
- context = new Context(tryLocsList || []);
58
- return generator._invoke = function (innerFn, self, context) {
59
- var state = "suspendedStart";
60
- return function (method, arg) {
61
- if ("executing" === state) throw new Error("Generator is already running");
62
-
63
- if ("completed" === state) {
64
- if ("throw" === method) throw arg;
65
- return doneResult();
66
- }
67
-
68
- for (context.method = method, context.arg = arg;;) {
69
- var delegate = context.delegate;
70
-
71
- if (delegate) {
72
- var delegateResult = maybeInvokeDelegate(delegate, context);
73
-
74
- if (delegateResult) {
75
- if (delegateResult === ContinueSentinel) continue;
76
- return delegateResult;
77
- }
78
- }
216
+ // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
217
+ var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
218
+ var generator = Object.create(protoGenerator.prototype);
219
+ var context = new Context(tryLocsList || []);
79
220
 
80
- if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) {
81
- if ("suspendedStart" === state) throw state = "completed", context.arg;
82
- context.dispatchException(context.arg);
83
- } else "return" === context.method && context.abrupt("return", context.arg);
84
- state = "executing";
85
- var record = tryCatch(innerFn, self, context);
86
-
87
- if ("normal" === record.type) {
88
- if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue;
89
- return {
90
- value: record.arg,
91
- done: context.done
92
- };
93
- }
221
+ // The ._invoke method unifies the implementations of the .next,
222
+ // .throw, and .return methods.
223
+ generator._invoke = makeInvokeMethod(innerFn, self, context);
94
224
 
95
- "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg);
96
- }
97
- };
98
- }(innerFn, self, context), generator;
225
+ return generator;
99
226
  }
227
+ exports.wrap = wrap;
100
228
 
229
+ // Try/catch helper to minimize deoptimizations. Returns a completion
230
+ // record like context.tryEntries[i].completion. This interface could
231
+ // have been (and was previously) designed to take a closure to be
232
+ // invoked without arguments, but in all the cases we care about we
233
+ // already have an existing method we want to call, so there's no need
234
+ // to create a new function object. We can even get away with assuming
235
+ // the method takes exactly one argument, since that happens to be true
236
+ // in every case, so we don't have to touch the arguments object. The
237
+ // only additional allocation required is the completion record, which
238
+ // has a stable shape and so hopefully should be cheap to allocate.
101
239
  function tryCatch(fn, obj, arg) {
102
240
  try {
103
- return {
104
- type: "normal",
105
- arg: fn.call(obj, arg)
106
- };
241
+ return { type: "normal", arg: fn.call(obj, arg) };
107
242
  } catch (err) {
108
- return {
109
- type: "throw",
110
- arg: err
111
- };
243
+ return { type: "throw", arg: err };
112
244
  }
113
245
  }
114
246
 
115
- exports.wrap = wrap;
247
+ var GenStateSuspendedStart = "suspendedStart";
248
+ var GenStateSuspendedYield = "suspendedYield";
249
+ var GenStateExecuting = "executing";
250
+ var GenStateCompleted = "completed";
251
+
252
+ // Returning this object from the innerFn has the same effect as
253
+ // breaking out of the dispatch switch statement.
116
254
  var ContinueSentinel = {};
117
255
 
256
+ // Dummy constructor functions that we use as the .constructor and
257
+ // .constructor.prototype properties for functions that return Generator
258
+ // objects. For full spec compliance, you may wish to configure your
259
+ // minifier not to mangle the names of these two functions.
118
260
  function Generator() {}
119
-
120
261
  function GeneratorFunction() {}
121
-
122
262
  function GeneratorFunctionPrototype() {}
123
263
 
264
+ // This is a polyfill for %IteratorPrototype% for environments that
265
+ // don't natively support it.
124
266
  var IteratorPrototype = {};
125
267
  define(IteratorPrototype, iteratorSymbol, function () {
126
268
  return this;
127
269
  });
128
- var getProto = Object.getPrototypeOf,
129
- NativeIteratorPrototype = getProto && getProto(getProto(values([])));
130
- NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype);
131
- var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);
132
270
 
271
+ var getProto = Object.getPrototypeOf;
272
+ var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
273
+ if (NativeIteratorPrototype &&
274
+ NativeIteratorPrototype !== Op &&
275
+ hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {
276
+ // This environment has a native %IteratorPrototype%; use it instead
277
+ // of the polyfill.
278
+ IteratorPrototype = NativeIteratorPrototype;
279
+ }
280
+
281
+ var Gp = GeneratorFunctionPrototype.prototype =
282
+ Generator.prototype = Object.create(IteratorPrototype);
283
+ GeneratorFunction.prototype = GeneratorFunctionPrototype;
284
+ define(Gp, "constructor", GeneratorFunctionPrototype);
285
+ define(GeneratorFunctionPrototype, "constructor", GeneratorFunction);
286
+ GeneratorFunction.displayName = define(
287
+ GeneratorFunctionPrototype,
288
+ toStringTagSymbol,
289
+ "GeneratorFunction"
290
+ );
291
+
292
+ // Helper for defining the .next, .throw, and .return methods of the
293
+ // Iterator interface in terms of a single ._invoke method.
133
294
  function defineIteratorMethods(prototype) {
134
- ["next", "throw", "return"].forEach(function (method) {
135
- define(prototype, method, function (arg) {
295
+ ["next", "throw", "return"].forEach(function(method) {
296
+ define(prototype, method, function(arg) {
136
297
  return this._invoke(method, arg);
137
298
  });
138
299
  });
139
300
  }
140
301
 
302
+ exports.isGeneratorFunction = function(genFun) {
303
+ var ctor = typeof genFun === "function" && genFun.constructor;
304
+ return ctor
305
+ ? ctor === GeneratorFunction ||
306
+ // For the native GeneratorFunction constructor, the best we can
307
+ // do is to check its .name property.
308
+ (ctor.displayName || ctor.name) === "GeneratorFunction"
309
+ : false;
310
+ };
311
+
312
+ exports.mark = function(genFun) {
313
+ if (Object.setPrototypeOf) {
314
+ Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
315
+ } else {
316
+ genFun.__proto__ = GeneratorFunctionPrototype;
317
+ define(genFun, toStringTagSymbol, "GeneratorFunction");
318
+ }
319
+ genFun.prototype = Object.create(Gp);
320
+ return genFun;
321
+ };
322
+
323
+ // Within the body of any async function, `await x` is transformed to
324
+ // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
325
+ // `hasOwn.call(value, "__await")` to determine if the yielded value is
326
+ // meant to be awaited.
327
+ exports.awrap = function(arg) {
328
+ return { __await: arg };
329
+ };
330
+
141
331
  function AsyncIterator(generator, PromiseImpl) {
142
332
  function invoke(method, arg, resolve, reject) {
143
333
  var record = tryCatch(generator[method], generator, arg);
334
+ if (record.type === "throw") {
335
+ reject(record.arg);
336
+ } else {
337
+ var result = record.arg;
338
+ var value = result.value;
339
+ if (value &&
340
+ typeof value === "object" &&
341
+ hasOwn.call(value, "__await")) {
342
+ return PromiseImpl.resolve(value.__await).then(function(value) {
343
+ invoke("next", value, resolve, reject);
344
+ }, function(err) {
345
+ invoke("throw", err, resolve, reject);
346
+ });
347
+ }
144
348
 
145
- if ("throw" !== record.type) {
146
- var result = record.arg,
147
- value = result.value;
148
- return value && "object" == typeof value && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) {
149
- invoke("next", value, resolve, reject);
150
- }, function (err) {
151
- invoke("throw", err, resolve, reject);
152
- }) : PromiseImpl.resolve(value).then(function (unwrapped) {
153
- result.value = unwrapped, resolve(result);
154
- }, function (error) {
349
+ return PromiseImpl.resolve(value).then(function(unwrapped) {
350
+ // When a yielded Promise is resolved, its final value becomes
351
+ // the .value of the Promise<{value,done}> result for the
352
+ // current iteration.
353
+ result.value = unwrapped;
354
+ resolve(result);
355
+ }, function(error) {
356
+ // If a rejected Promise was yielded, throw the rejection back
357
+ // into the async generator function so it can be handled there.
155
358
  return invoke("throw", error, resolve, reject);
156
359
  });
157
360
  }
158
-
159
- reject(record.arg);
160
361
  }
161
362
 
162
363
  var previousPromise;
163
364
 
164
- this._invoke = function (method, arg) {
365
+ function enqueue(method, arg) {
165
366
  function callInvokeWithMethodAndArg() {
166
- return new PromiseImpl(function (resolve, reject) {
367
+ return new PromiseImpl(function(resolve, reject) {
167
368
  invoke(method, arg, resolve, reject);
168
369
  });
169
370
  }
170
371
 
171
- return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
372
+ return previousPromise =
373
+ // If enqueue has been called before, then we want to wait until
374
+ // all previous Promises have been resolved before calling invoke,
375
+ // so that results are always delivered in the correct order. If
376
+ // enqueue has not been called before, then it is important to
377
+ // call invoke immediately, without waiting on a callback to fire,
378
+ // so that the async generator function has the opportunity to do
379
+ // any necessary setup in a predictable way. This predictability
380
+ // is why the Promise constructor synchronously invokes its
381
+ // executor callback, and why async functions synchronously
382
+ // execute code before the first await. Since we implement simple
383
+ // async functions in terms of async generators, it is especially
384
+ // important to get this right, even though it requires care.
385
+ previousPromise ? previousPromise.then(
386
+ callInvokeWithMethodAndArg,
387
+ // Avoid propagating failures to Promises returned by later
388
+ // invocations of the iterator.
389
+ callInvokeWithMethodAndArg
390
+ ) : callInvokeWithMethodAndArg();
391
+ }
392
+
393
+ // Define the unified helper method that is used to implement .next,
394
+ // .throw, and .return (see defineIteratorMethods).
395
+ this._invoke = enqueue;
396
+ }
397
+
398
+ defineIteratorMethods(AsyncIterator.prototype);
399
+ define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
400
+ return this;
401
+ });
402
+ exports.AsyncIterator = AsyncIterator;
403
+
404
+ // Note that simple async functions are implemented on top of
405
+ // AsyncIterator objects; they just return a Promise for the value of
406
+ // the final result produced by the iterator.
407
+ exports.async = function(innerFn, outerFn, self, tryLocsList, PromiseImpl) {
408
+ if (PromiseImpl === void 0) PromiseImpl = Promise;
409
+
410
+ var iter = new AsyncIterator(
411
+ wrap(innerFn, outerFn, self, tryLocsList),
412
+ PromiseImpl
413
+ );
414
+
415
+ return exports.isGeneratorFunction(outerFn)
416
+ ? iter // If outerFn is a generator, return the full iterator.
417
+ : iter.next().then(function(result) {
418
+ return result.done ? result.value : iter.next();
419
+ });
420
+ };
421
+
422
+ function makeInvokeMethod(innerFn, self, context) {
423
+ var state = GenStateSuspendedStart;
424
+
425
+ return function invoke(method, arg) {
426
+ if (state === GenStateExecuting) {
427
+ throw new Error("Generator is already running");
428
+ }
429
+
430
+ if (state === GenStateCompleted) {
431
+ if (method === "throw") {
432
+ throw arg;
433
+ }
434
+
435
+ // Be forgiving, per 25.3.3.3.3 of the spec:
436
+ // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
437
+ return doneResult();
438
+ }
439
+
440
+ context.method = method;
441
+ context.arg = arg;
442
+
443
+ while (true) {
444
+ var delegate = context.delegate;
445
+ if (delegate) {
446
+ var delegateResult = maybeInvokeDelegate(delegate, context);
447
+ if (delegateResult) {
448
+ if (delegateResult === ContinueSentinel) continue;
449
+ return delegateResult;
450
+ }
451
+ }
452
+
453
+ if (context.method === "next") {
454
+ // Setting context._sent for legacy support of Babel's
455
+ // function.sent implementation.
456
+ context.sent = context._sent = context.arg;
457
+
458
+ } else if (context.method === "throw") {
459
+ if (state === GenStateSuspendedStart) {
460
+ state = GenStateCompleted;
461
+ throw context.arg;
462
+ }
463
+
464
+ context.dispatchException(context.arg);
465
+
466
+ } else if (context.method === "return") {
467
+ context.abrupt("return", context.arg);
468
+ }
469
+
470
+ state = GenStateExecuting;
471
+
472
+ var record = tryCatch(innerFn, self, context);
473
+ if (record.type === "normal") {
474
+ // If an exception is thrown from innerFn, we leave state ===
475
+ // GenStateExecuting and loop back for another invocation.
476
+ state = context.done
477
+ ? GenStateCompleted
478
+ : GenStateSuspendedYield;
479
+
480
+ if (record.arg === ContinueSentinel) {
481
+ continue;
482
+ }
483
+
484
+ return {
485
+ value: record.arg,
486
+ done: context.done
487
+ };
488
+
489
+ } else if (record.type === "throw") {
490
+ state = GenStateCompleted;
491
+ // Dispatch the exception by looping back around to the
492
+ // context.dispatchException(context.arg) call above.
493
+ context.method = "throw";
494
+ context.arg = record.arg;
495
+ }
496
+ }
172
497
  };
173
498
  }
174
499
 
500
+ // Call delegate.iterator[context.method](context.arg) and handle the
501
+ // result, either by returning a { value, done } result from the
502
+ // delegate iterator, or by modifying context.method and context.arg,
503
+ // setting context.delegate to null, and returning the ContinueSentinel.
175
504
  function maybeInvokeDelegate(delegate, context) {
176
505
  var method = delegate.iterator[context.method];
506
+ if (method === undefined$1) {
507
+ // A .throw or .return when the delegate iterator has no .throw
508
+ // method always terminates the yield* loop.
509
+ context.delegate = null;
510
+
511
+ if (context.method === "throw") {
512
+ // Note: ["return"] must be used for ES3 parsing compatibility.
513
+ if (delegate.iterator["return"]) {
514
+ // If the delegate iterator has a return method, give it a
515
+ // chance to clean up.
516
+ context.method = "return";
517
+ context.arg = undefined$1;
518
+ maybeInvokeDelegate(delegate, context);
519
+
520
+ if (context.method === "throw") {
521
+ // If maybeInvokeDelegate(context) changed context.method from
522
+ // "return" to "throw", let that override the TypeError below.
523
+ return ContinueSentinel;
524
+ }
525
+ }
177
526
 
178
- if (undefined === method) {
179
- if (context.delegate = null, "throw" === context.method) {
180
- if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel;
181
- context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method");
527
+ context.method = "throw";
528
+ context.arg = new TypeError(
529
+ "The iterator does not provide a 'throw' method");
182
530
  }
183
531
 
184
532
  return ContinueSentinel;
185
533
  }
186
534
 
187
535
  var record = tryCatch(method, delegate.iterator, context.arg);
188
- if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel;
536
+
537
+ if (record.type === "throw") {
538
+ context.method = "throw";
539
+ context.arg = record.arg;
540
+ context.delegate = null;
541
+ return ContinueSentinel;
542
+ }
543
+
189
544
  var info = record.arg;
190
- 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);
545
+
546
+ if (! info) {
547
+ context.method = "throw";
548
+ context.arg = new TypeError("iterator result is not an object");
549
+ context.delegate = null;
550
+ return ContinueSentinel;
551
+ }
552
+
553
+ if (info.done) {
554
+ // Assign the result of the finished delegate to the temporary
555
+ // variable specified by delegate.resultName (see delegateYield).
556
+ context[delegate.resultName] = info.value;
557
+
558
+ // Resume execution at the desired location (see delegateYield).
559
+ context.next = delegate.nextLoc;
560
+
561
+ // If context.method was "throw" but the delegate handled the
562
+ // exception, let the outer generator proceed normally. If
563
+ // context.method was "next", forget context.arg since it has been
564
+ // "consumed" by the delegate iterator. If context.method was
565
+ // "return", allow the original .return call to continue in the
566
+ // outer generator.
567
+ if (context.method !== "return") {
568
+ context.method = "next";
569
+ context.arg = undefined$1;
570
+ }
571
+
572
+ } else {
573
+ // Re-yield the result returned by the delegate method.
574
+ return info;
575
+ }
576
+
577
+ // The delegate iterator is finished, so forget it and continue with
578
+ // the outer generator.
579
+ context.delegate = null;
580
+ return ContinueSentinel;
191
581
  }
192
582
 
583
+ // Define Generator.prototype.{next,throw,return} in terms of the
584
+ // unified ._invoke helper method.
585
+ defineIteratorMethods(Gp);
586
+
587
+ define(Gp, toStringTagSymbol, "Generator");
588
+
589
+ // A Generator should always return itself as the iterator object when the
590
+ // @@iterator function is called on it. Some browsers' implementations of the
591
+ // iterator prototype chain incorrectly implement this, causing the Generator
592
+ // object to not be returned from this call. This ensures that doesn't happen.
593
+ // See https://github.com/facebook/regenerator/issues/274 for more details.
594
+ define(Gp, iteratorSymbol, function() {
595
+ return this;
596
+ });
597
+
598
+ define(Gp, "toString", function() {
599
+ return "[object Generator]";
600
+ });
601
+
193
602
  function pushTryEntry(locs) {
194
- var entry = {
195
- tryLoc: locs[0]
196
- };
197
- 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry);
603
+ var entry = { tryLoc: locs[0] };
604
+
605
+ if (1 in locs) {
606
+ entry.catchLoc = locs[1];
607
+ }
608
+
609
+ if (2 in locs) {
610
+ entry.finallyLoc = locs[2];
611
+ entry.afterLoc = locs[3];
612
+ }
613
+
614
+ this.tryEntries.push(entry);
198
615
  }
199
616
 
200
617
  function resetTryEntry(entry) {
201
618
  var record = entry.completion || {};
202
- record.type = "normal", delete record.arg, entry.completion = record;
619
+ record.type = "normal";
620
+ delete record.arg;
621
+ entry.completion = record;
203
622
  }
204
623
 
205
624
  function Context(tryLocsList) {
206
- this.tryEntries = [{
207
- tryLoc: "root"
208
- }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0);
625
+ // The root entry object (effectively a try statement without a catch
626
+ // or a finally block) gives us a place to store values thrown from
627
+ // locations where there is no enclosing try statement.
628
+ this.tryEntries = [{ tryLoc: "root" }];
629
+ tryLocsList.forEach(pushTryEntry, this);
630
+ this.reset(true);
209
631
  }
210
632
 
633
+ exports.keys = function(object) {
634
+ var keys = [];
635
+ for (var key in object) {
636
+ keys.push(key);
637
+ }
638
+ keys.reverse();
639
+
640
+ // Rather than returning an object with a next method, we keep
641
+ // things simple and return the next function itself.
642
+ return function next() {
643
+ while (keys.length) {
644
+ var key = keys.pop();
645
+ if (key in object) {
646
+ next.value = key;
647
+ next.done = false;
648
+ return next;
649
+ }
650
+ }
651
+
652
+ // To avoid creating an additional object, we just hang the .value
653
+ // and .done properties off the next function object itself. This
654
+ // also ensures that the minifier will not anonymize the function.
655
+ next.done = true;
656
+ return next;
657
+ };
658
+ };
659
+
211
660
  function values(iterable) {
212
661
  if (iterable) {
213
662
  var iteratorMethod = iterable[iteratorSymbol];
214
- if (iteratorMethod) return iteratorMethod.call(iterable);
215
- if ("function" == typeof iterable.next) return iterable;
663
+ if (iteratorMethod) {
664
+ return iteratorMethod.call(iterable);
665
+ }
666
+
667
+ if (typeof iterable.next === "function") {
668
+ return iterable;
669
+ }
216
670
 
217
671
  if (!isNaN(iterable.length)) {
218
- var i = -1,
219
- next = function next() {
220
- for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next;
672
+ var i = -1, next = function next() {
673
+ while (++i < iterable.length) {
674
+ if (hasOwn.call(iterable, i)) {
675
+ next.value = iterable[i];
676
+ next.done = false;
677
+ return next;
678
+ }
679
+ }
680
+
681
+ next.value = undefined$1;
682
+ next.done = true;
221
683
 
222
- return next.value = undefined, next.done = !0, next;
684
+ return next;
223
685
  };
224
686
 
225
687
  return next.next = next;
226
688
  }
227
689
  }
228
690
 
229
- return {
230
- next: doneResult
231
- };
691
+ // Return an iterator with no values.
692
+ return { next: doneResult };
232
693
  }
694
+ exports.values = values;
233
695
 
234
696
  function doneResult() {
235
- return {
236
- value: undefined,
237
- done: !0
238
- };
697
+ return { value: undefined$1, done: true };
239
698
  }
240
699
 
241
- return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) {
242
- var ctor = "function" == typeof genFun && genFun.constructor;
243
- return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name));
244
- }, exports.mark = function (genFun) {
245
- return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun;
246
- }, exports.awrap = function (arg) {
247
- return {
248
- __await: arg
249
- };
250
- }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
251
- return this;
252
- }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) {
253
- void 0 === PromiseImpl && (PromiseImpl = Promise);
254
- var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl);
255
- return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) {
256
- return result.done ? result.value : iter.next();
257
- });
258
- }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () {
259
- return this;
260
- }), define(Gp, "toString", function () {
261
- return "[object Generator]";
262
- }), exports.keys = function (object) {
263
- var keys = [];
700
+ Context.prototype = {
701
+ constructor: Context,
702
+
703
+ reset: function(skipTempReset) {
704
+ this.prev = 0;
705
+ this.next = 0;
706
+ // Resetting context._sent for legacy support of Babel's
707
+ // function.sent implementation.
708
+ this.sent = this._sent = undefined$1;
709
+ this.done = false;
710
+ this.delegate = null;
711
+
712
+ this.method = "next";
713
+ this.arg = undefined$1;
714
+
715
+ this.tryEntries.forEach(resetTryEntry);
716
+
717
+ if (!skipTempReset) {
718
+ for (var name in this) {
719
+ // Not sure about the optimal order of these conditions:
720
+ if (name.charAt(0) === "t" &&
721
+ hasOwn.call(this, name) &&
722
+ !isNaN(+name.slice(1))) {
723
+ this[name] = undefined$1;
724
+ }
725
+ }
726
+ }
727
+ },
264
728
 
265
- for (var key in object) keys.push(key);
729
+ stop: function() {
730
+ this.done = true;
266
731
 
267
- return keys.reverse(), function next() {
268
- for (; keys.length;) {
269
- var key = keys.pop();
270
- if (key in object) return next.value = key, next.done = !1, next;
732
+ var rootEntry = this.tryEntries[0];
733
+ var rootRecord = rootEntry.completion;
734
+ if (rootRecord.type === "throw") {
735
+ throw rootRecord.arg;
271
736
  }
272
737
 
273
- return next.done = !0, next;
274
- };
275
- }, exports.values = values, Context.prototype = {
276
- constructor: Context,
277
- reset: function (skipTempReset) {
278
- 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);
279
- },
280
- stop: function () {
281
- this.done = !0;
282
- var rootRecord = this.tryEntries[0].completion;
283
- if ("throw" === rootRecord.type) throw rootRecord.arg;
284
738
  return this.rval;
285
739
  },
286
- dispatchException: function (exception) {
287
- if (this.done) throw exception;
288
- var context = this;
289
740
 
741
+ dispatchException: function(exception) {
742
+ if (this.done) {
743
+ throw exception;
744
+ }
745
+
746
+ var context = this;
290
747
  function handle(loc, caught) {
291
- return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught;
748
+ record.type = "throw";
749
+ record.arg = exception;
750
+ context.next = loc;
751
+
752
+ if (caught) {
753
+ // If the dispatched exception was caught by a catch block,
754
+ // then let that catch block handle the exception normally.
755
+ context.method = "next";
756
+ context.arg = undefined$1;
757
+ }
758
+
759
+ return !! caught;
292
760
  }
293
761
 
294
762
  for (var i = this.tryEntries.length - 1; i >= 0; --i) {
295
- var entry = this.tryEntries[i],
296
- record = entry.completion;
297
- if ("root" === entry.tryLoc) return handle("end");
763
+ var entry = this.tryEntries[i];
764
+ var record = entry.completion;
765
+
766
+ if (entry.tryLoc === "root") {
767
+ // Exception thrown outside of any try block that could handle
768
+ // it, so set the completion value of the entire function to
769
+ // throw the exception.
770
+ return handle("end");
771
+ }
298
772
 
299
773
  if (entry.tryLoc <= this.prev) {
300
- var hasCatch = hasOwn.call(entry, "catchLoc"),
301
- hasFinally = hasOwn.call(entry, "finallyLoc");
774
+ var hasCatch = hasOwn.call(entry, "catchLoc");
775
+ var hasFinally = hasOwn.call(entry, "finallyLoc");
302
776
 
303
777
  if (hasCatch && hasFinally) {
304
- if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
305
- if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
778
+ if (this.prev < entry.catchLoc) {
779
+ return handle(entry.catchLoc, true);
780
+ } else if (this.prev < entry.finallyLoc) {
781
+ return handle(entry.finallyLoc);
782
+ }
783
+
306
784
  } else if (hasCatch) {
307
- if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
785
+ if (this.prev < entry.catchLoc) {
786
+ return handle(entry.catchLoc, true);
787
+ }
788
+
789
+ } else if (hasFinally) {
790
+ if (this.prev < entry.finallyLoc) {
791
+ return handle(entry.finallyLoc);
792
+ }
793
+
308
794
  } else {
309
- if (!hasFinally) throw new Error("try statement without catch or finally");
310
- if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
795
+ throw new Error("try statement without catch or finally");
311
796
  }
312
797
  }
313
798
  }
314
799
  },
315
- abrupt: function (type, arg) {
800
+
801
+ abrupt: function(type, arg) {
316
802
  for (var i = this.tryEntries.length - 1; i >= 0; --i) {
317
803
  var entry = this.tryEntries[i];
318
-
319
- if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) {
804
+ if (entry.tryLoc <= this.prev &&
805
+ hasOwn.call(entry, "finallyLoc") &&
806
+ this.prev < entry.finallyLoc) {
320
807
  var finallyEntry = entry;
321
808
  break;
322
809
  }
323
810
  }
324
811
 
325
- finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null);
812
+ if (finallyEntry &&
813
+ (type === "break" ||
814
+ type === "continue") &&
815
+ finallyEntry.tryLoc <= arg &&
816
+ arg <= finallyEntry.finallyLoc) {
817
+ // Ignore the finally entry if control is not jumping to a
818
+ // location outside the try/catch block.
819
+ finallyEntry = null;
820
+ }
821
+
326
822
  var record = finallyEntry ? finallyEntry.completion : {};
327
- return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record);
823
+ record.type = type;
824
+ record.arg = arg;
825
+
826
+ if (finallyEntry) {
827
+ this.method = "next";
828
+ this.next = finallyEntry.finallyLoc;
829
+ return ContinueSentinel;
830
+ }
831
+
832
+ return this.complete(record);
328
833
  },
329
- complete: function (record, afterLoc) {
330
- if ("throw" === record.type) throw record.arg;
331
- 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;
834
+
835
+ complete: function(record, afterLoc) {
836
+ if (record.type === "throw") {
837
+ throw record.arg;
838
+ }
839
+
840
+ if (record.type === "break" ||
841
+ record.type === "continue") {
842
+ this.next = record.arg;
843
+ } else if (record.type === "return") {
844
+ this.rval = this.arg = record.arg;
845
+ this.method = "return";
846
+ this.next = "end";
847
+ } else if (record.type === "normal" && afterLoc) {
848
+ this.next = afterLoc;
849
+ }
850
+
851
+ return ContinueSentinel;
332
852
  },
333
- finish: function (finallyLoc) {
853
+
854
+ finish: function(finallyLoc) {
334
855
  for (var i = this.tryEntries.length - 1; i >= 0; --i) {
335
856
  var entry = this.tryEntries[i];
336
- if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel;
857
+ if (entry.finallyLoc === finallyLoc) {
858
+ this.complete(entry.completion, entry.afterLoc);
859
+ resetTryEntry(entry);
860
+ return ContinueSentinel;
861
+ }
337
862
  }
338
863
  },
339
- catch: function (tryLoc) {
864
+
865
+ "catch": function(tryLoc) {
340
866
  for (var i = this.tryEntries.length - 1; i >= 0; --i) {
341
867
  var entry = this.tryEntries[i];
342
-
343
868
  if (entry.tryLoc === tryLoc) {
344
869
  var record = entry.completion;
345
-
346
- if ("throw" === record.type) {
870
+ if (record.type === "throw") {
347
871
  var thrown = record.arg;
348
872
  resetTryEntry(entry);
349
873
  }
350
-
351
874
  return thrown;
352
875
  }
353
876
  }
354
877
 
878
+ // The context.catch method must only be called with a location
879
+ // argument that corresponds to a known catch block.
355
880
  throw new Error("illegal catch attempt");
356
881
  },
357
- delegateYield: function (iterable, resultName, nextLoc) {
358
- return this.delegate = {
882
+
883
+ delegateYield: function(iterable, resultName, nextLoc) {
884
+ this.delegate = {
359
885
  iterator: values(iterable),
360
886
  resultName: resultName,
361
887
  nextLoc: nextLoc
362
- }, "next" === this.method && (this.arg = undefined), ContinueSentinel;
363
- }
364
- }, exports;
365
- }
366
-
367
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
368
- try {
369
- var info = gen[key](arg);
370
- var value = info.value;
371
- } catch (error) {
372
- reject(error);
373
- return;
374
- }
375
-
376
- if (info.done) {
377
- resolve(value);
378
- } else {
379
- Promise.resolve(value).then(_next, _throw);
380
- }
381
- }
382
-
383
- function _asyncToGenerator(fn) {
384
- return function () {
385
- var self = this,
386
- args = arguments;
387
- return new Promise(function (resolve, reject) {
388
- var gen = fn.apply(self, args);
389
-
390
- function _next(value) {
391
- asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
392
- }
888
+ };
393
889
 
394
- function _throw(err) {
395
- asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
890
+ if (this.method === "next") {
891
+ // Deliberately forget the last sent value so that we don't
892
+ // accidentally pass it on to the delegate.
893
+ this.arg = undefined$1;
396
894
  }
397
895
 
398
- _next(undefined);
399
- });
400
- };
401
- }
402
-
403
- function _extends() {
404
- _extends = Object.assign ? Object.assign.bind() : function (target) {
405
- for (var i = 1; i < arguments.length; i++) {
406
- var source = arguments[i];
407
-
408
- for (var key in source) {
409
- if (Object.prototype.hasOwnProperty.call(source, key)) {
410
- target[key] = source[key];
411
- }
412
- }
896
+ return ContinueSentinel;
413
897
  }
414
-
415
- return target;
416
898
  };
417
- return _extends.apply(this, arguments);
418
- }
419
-
420
- function _inheritsLoose(subClass, superClass) {
421
- subClass.prototype = Object.create(superClass.prototype);
422
- subClass.prototype.constructor = subClass;
423
-
424
- _setPrototypeOf(subClass, superClass);
425
- }
426
899
 
427
- function _getPrototypeOf(o) {
428
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
429
- return o.__proto__ || Object.getPrototypeOf(o);
430
- };
431
- return _getPrototypeOf(o);
432
- }
433
-
434
- function _setPrototypeOf(o, p) {
435
- _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
436
- o.__proto__ = p;
437
- return o;
438
- };
439
- return _setPrototypeOf(o, p);
440
- }
441
-
442
- function _isNativeReflectConstruct() {
443
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
444
- if (Reflect.construct.sham) return false;
445
- if (typeof Proxy === "function") return true;
446
-
447
- try {
448
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
449
- return true;
450
- } catch (e) {
451
- return false;
452
- }
453
- }
454
-
455
- function _construct(Parent, args, Class) {
456
- if (_isNativeReflectConstruct()) {
457
- _construct = Reflect.construct.bind();
900
+ // Regardless of whether this script is executing as a CommonJS module
901
+ // or not, return the runtime object so that we can declare the variable
902
+ // regeneratorRuntime in the outer scope, which allows this module to be
903
+ // injected easily by `bin/regenerator --include-runtime script.js`.
904
+ return exports;
905
+
906
+ }(
907
+ // If this script is executing as a CommonJS module, use module.exports
908
+ // as the regeneratorRuntime namespace. Otherwise create a new empty
909
+ // object. Either way, the resulting object will be used to initialize
910
+ // the regeneratorRuntime variable at the top of this file.
911
+ module.exports
912
+ ));
913
+
914
+ try {
915
+ regeneratorRuntime = runtime;
916
+ } catch (accidentalStrictMode) {
917
+ // This module should not be running in strict mode, so the above
918
+ // assignment should always work unless something is misconfigured. Just
919
+ // in case runtime.js accidentally runs in strict mode, in modern engines
920
+ // we can explicitly access globalThis. In older engines we can escape
921
+ // strict mode using a global Function call. This could conceivably fail
922
+ // if a Content Security Policy forbids using Function, but in that case
923
+ // the proper solution is to fix the accidental strict mode problem. If
924
+ // you've misconfigured your bundler to force strict mode and applied a
925
+ // CSP to forbid Function, and you're not willing to fix either of those
926
+ // problems, please detail your unique predicament in a GitHub issue.
927
+ if (typeof globalThis === "object") {
928
+ globalThis.regeneratorRuntime = runtime;
458
929
  } else {
459
- _construct = function _construct(Parent, args, Class) {
460
- var a = [null];
461
- a.push.apply(a, args);
462
- var Constructor = Function.bind.apply(Parent, a);
463
- var instance = new Constructor();
464
- if (Class) _setPrototypeOf(instance, Class.prototype);
465
- return instance;
466
- };
467
- }
468
-
469
- return _construct.apply(null, arguments);
470
- }
471
-
472
- function _isNativeFunction(fn) {
473
- return Function.toString.call(fn).indexOf("[native code]") !== -1;
474
- }
475
-
476
- function _wrapNativeSuper(Class) {
477
- var _cache = typeof Map === "function" ? new Map() : undefined;
478
-
479
- _wrapNativeSuper = function _wrapNativeSuper(Class) {
480
- if (Class === null || !_isNativeFunction(Class)) return Class;
481
-
482
- if (typeof Class !== "function") {
483
- throw new TypeError("Super expression must either be null or a function");
484
- }
485
-
486
- if (typeof _cache !== "undefined") {
487
- if (_cache.has(Class)) return _cache.get(Class);
488
-
489
- _cache.set(Class, Wrapper);
490
- }
491
-
492
- function Wrapper() {
493
- return _construct(Class, arguments, _getPrototypeOf(this).constructor);
494
- }
495
-
496
- Wrapper.prototype = Object.create(Class.prototype, {
497
- constructor: {
498
- value: Wrapper,
499
- enumerable: false,
500
- writable: true,
501
- configurable: true
502
- }
503
- });
504
- return _setPrototypeOf(Wrapper, Class);
505
- };
506
-
507
- return _wrapNativeSuper(Class);
508
- }
509
-
510
- function _assertThisInitialized(self) {
511
- if (self === void 0) {
512
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
930
+ Function("r", "regeneratorRuntime = r")(runtime);
513
931
  }
514
-
515
- return self;
516
932
  }
933
+ });
517
934
 
518
935
  var AxiosService = /*#__PURE__*/function () {
519
936
  function AxiosService(config) {
@@ -524,8 +941,8 @@ var AxiosService = /*#__PURE__*/function () {
524
941
  var _proto = AxiosService.prototype;
525
942
 
526
943
  _proto.apiRequest = /*#__PURE__*/function () {
527
- var _apiRequest = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(config, url, data) {
528
- return _regeneratorRuntime().wrap(function _callee$(_context) {
944
+ var _apiRequest = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(config, url, data) {
945
+ return runtime_1.wrap(function _callee$(_context) {
529
946
  while (1) {
530
947
  switch (_context.prev = _context.next) {
531
948
  case 0:
@@ -554,8 +971,8 @@ var AxiosService = /*#__PURE__*/function () {
554
971
  }();
555
972
 
556
973
  _proto.apiRequestHeader = /*#__PURE__*/function () {
557
- var _apiRequestHeader = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(config, url, headerToRetrieve, data) {
558
- return _regeneratorRuntime().wrap(function _callee2$(_context2) {
974
+ var _apiRequestHeader = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(config, url, headerToRetrieve, data) {
975
+ return runtime_1.wrap(function _callee2$(_context2) {
559
976
  while (1) {
560
977
  switch (_context2.prev = _context2.next) {
561
978
  case 0:
@@ -658,9 +1075,9 @@ var APIService = /*#__PURE__*/function (_AxiosService) {
658
1075
  });
659
1076
 
660
1077
  createAuthRefreshInterceptor(_this.axios, /*#__PURE__*/function () {
661
- var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(failedRequest) {
1078
+ var _ref = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(failedRequest) {
662
1079
  var tokenResp;
663
- return _regeneratorRuntime().wrap(function _callee$(_context) {
1080
+ return runtime_1.wrap(function _callee$(_context) {
664
1081
  while (1) {
665
1082
  switch (_context.prev = _context.next) {
666
1083
  case 0:
@@ -776,11 +1193,11 @@ var ApisPracticeManager = /*#__PURE__*/function () {
776
1193
  _proto.get =
777
1194
  /*#__PURE__*/
778
1195
  function () {
779
- var _get = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(practiceUuid) {
1196
+ var _get = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(practiceUuid) {
780
1197
  var _this = this;
781
1198
 
782
1199
  var practiceInstance, newPracticeInstance, authTokenFunc;
783
- return _regeneratorRuntime().wrap(function _callee2$(_context2) {
1200
+ return runtime_1.wrap(function _callee2$(_context2) {
784
1201
  while (1) {
785
1202
  switch (_context2.prev = _context2.next) {
786
1203
  case 0:
@@ -797,8 +1214,8 @@ var ApisPracticeManager = /*#__PURE__*/function () {
797
1214
  newPracticeInstance = init(this.serviceCollReq, undefined, this.useLocalStorage); // Create one auth token callback per practice since the practice uuid needs to change
798
1215
 
799
1216
  authTokenFunc = /*#__PURE__*/function () {
800
- var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
801
- return _regeneratorRuntime().wrap(function _callee$(_context) {
1217
+ var _ref = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee() {
1218
+ return runtime_1.wrap(function _callee$(_context) {
802
1219
  while (1) {
803
1220
  switch (_context.prev = _context.next) {
804
1221
  case 0:
@@ -1164,6 +1581,8 @@ var VaultDataMissing = /*#__PURE__*/function (_Error8) {
1164
1581
  PracticeConfigKind["PractitionerConsultList"] = "PractitionerConsultList";
1165
1582
  PracticeConfigKind["PractitionerSearch"] = "PractitionerSearch";
1166
1583
  PracticeConfigKind["PracticeRegisterWalkthrough"] = "PracticeRegisterWalkthrough";
1584
+ PracticeConfigKind["PracticeExamsAndResults"] = "PracticeExamsAndResults";
1585
+ PracticeConfigKind["PracticeLayout"] = "PracticeLayout";
1167
1586
  })(exports.PracticeConfigKind || (exports.PracticeConfigKind = {}));
1168
1587
 
1169
1588
  (function (StripePriceType) {
@@ -1498,9 +1917,9 @@ var DiagnosisService = /*#__PURE__*/function () {
1498
1917
  _proto.getAllDrugs =
1499
1918
  /*#__PURE__*/
1500
1919
  function () {
1501
- var _getAllDrugs = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(uuidPractice) {
1920
+ var _getAllDrugs = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(uuidPractice) {
1502
1921
  var res;
1503
- return _regeneratorRuntime().wrap(function _callee$(_context) {
1922
+ return runtime_1.wrap(function _callee$(_context) {
1504
1923
  while (1) {
1505
1924
  switch (_context.prev = _context.next) {
1506
1925
  case 0:
@@ -1576,10 +1995,10 @@ var GuardService = /*#__PURE__*/function () {
1576
1995
  _proto.m2mToken =
1577
1996
  /*#__PURE__*/
1578
1997
  function () {
1579
- var _m2mToken = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(req) {
1998
+ var _m2mToken = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(req) {
1580
1999
  var resp, config, _e$response, code;
1581
2000
 
1582
- return _regeneratorRuntime().wrap(function _callee$(_context) {
2001
+ return runtime_1.wrap(function _callee$(_context) {
1583
2002
  while (1) {
1584
2003
  switch (_context.prev = _context.next) {
1585
2004
  case 0:
@@ -1654,10 +2073,10 @@ var GuardService = /*#__PURE__*/function () {
1654
2073
  _proto.authToken =
1655
2074
  /*#__PURE__*/
1656
2075
  function () {
1657
- var _authToken = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(req) {
2076
+ var _authToken = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(req) {
1658
2077
  var resp, config, _e$response2, code;
1659
2078
 
1660
- return _regeneratorRuntime().wrap(function _callee2$(_context2) {
2079
+ return runtime_1.wrap(function _callee2$(_context2) {
1661
2080
  while (1) {
1662
2081
  switch (_context2.prev = _context2.next) {
1663
2082
  case 0:
@@ -1734,9 +2153,9 @@ var GuardService = /*#__PURE__*/function () {
1734
2153
  _proto.authRefresh =
1735
2154
  /*#__PURE__*/
1736
2155
  function () {
1737
- var _authRefresh = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(refreshToken) {
2156
+ var _authRefresh = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee3(refreshToken) {
1738
2157
  var config;
1739
- return _regeneratorRuntime().wrap(function _callee3$(_context3) {
2158
+ return runtime_1.wrap(function _callee3$(_context3) {
1740
2159
  while (1) {
1741
2160
  switch (_context3.prev = _context3.next) {
1742
2161
  case 0:
@@ -1770,8 +2189,8 @@ var GuardService = /*#__PURE__*/function () {
1770
2189
  _proto.authLogout =
1771
2190
  /*#__PURE__*/
1772
2191
  function () {
1773
- var _authLogout = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4() {
1774
- return _regeneratorRuntime().wrap(function _callee4$(_context4) {
2192
+ var _authLogout = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee4() {
2193
+ return runtime_1.wrap(function _callee4$(_context4) {
1775
2194
  while (1) {
1776
2195
  switch (_context4.prev = _context4.next) {
1777
2196
  case 0:
@@ -1802,8 +2221,8 @@ var GuardService = /*#__PURE__*/function () {
1802
2221
  _proto.authRecover =
1803
2222
  /*#__PURE__*/
1804
2223
  function () {
1805
- var _authRecover = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(req) {
1806
- return _regeneratorRuntime().wrap(function _callee5$(_context5) {
2224
+ var _authRecover = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee5(req) {
2225
+ return runtime_1.wrap(function _callee5$(_context5) {
1807
2226
  while (1) {
1808
2227
  switch (_context5.prev = _context5.next) {
1809
2228
  case 0:
@@ -1835,10 +2254,10 @@ var GuardService = /*#__PURE__*/function () {
1835
2254
  _proto.identityCreate =
1836
2255
  /*#__PURE__*/
1837
2256
  function () {
1838
- var _identityCreate = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(req) {
2257
+ var _identityCreate = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee6(req) {
1839
2258
  var resp, _e$response3, code;
1840
2259
 
1841
- return _regeneratorRuntime().wrap(function _callee6$(_context6) {
2260
+ return runtime_1.wrap(function _callee6$(_context6) {
1842
2261
  while (1) {
1843
2262
  switch (_context6.prev = _context6.next) {
1844
2263
  case 0:
@@ -1910,11 +2329,11 @@ var GuardService = /*#__PURE__*/function () {
1910
2329
  _proto.identityGet =
1911
2330
  /*#__PURE__*/
1912
2331
  function () {
1913
- var _identityGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(identityID, skipCache) {
2332
+ var _identityGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee7(identityID, skipCache) {
1914
2333
  var _tokens$accessToken, _tokens$refreshToken;
1915
2334
 
1916
2335
  var tokens, cacheKey, identity;
1917
- return _regeneratorRuntime().wrap(function _callee7$(_context7) {
2336
+ return runtime_1.wrap(function _callee7$(_context7) {
1918
2337
  while (1) {
1919
2338
  switch (_context7.prev = _context7.next) {
1920
2339
  case 0:
@@ -1974,11 +2393,11 @@ var GuardService = /*#__PURE__*/function () {
1974
2393
  _proto.whoAmI =
1975
2394
  /*#__PURE__*/
1976
2395
  function () {
1977
- var _whoAmI = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(refreshCache) {
2396
+ var _whoAmI = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee8(refreshCache) {
1978
2397
  var _this$api$getTokens$a;
1979
2398
 
1980
2399
  var cacheKey;
1981
- return _regeneratorRuntime().wrap(function _callee8$(_context8) {
2400
+ return runtime_1.wrap(function _callee8$(_context8) {
1982
2401
  while (1) {
1983
2402
  switch (_context8.prev = _context8.next) {
1984
2403
  case 0:
@@ -2028,8 +2447,8 @@ var GuardService = /*#__PURE__*/function () {
2028
2447
  _proto.identityUpdate =
2029
2448
  /*#__PURE__*/
2030
2449
  function () {
2031
- var _identityUpdate = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9(identityID, req) {
2032
- return _regeneratorRuntime().wrap(function _callee9$(_context9) {
2450
+ var _identityUpdate = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee9(identityID, req) {
2451
+ return runtime_1.wrap(function _callee9$(_context9) {
2033
2452
  while (1) {
2034
2453
  switch (_context9.prev = _context9.next) {
2035
2454
  case 0:
@@ -2062,9 +2481,9 @@ var GuardService = /*#__PURE__*/function () {
2062
2481
  _proto.identityMFAQRCode =
2063
2482
  /*#__PURE__*/
2064
2483
  function () {
2065
- var _identityMFAQRCode = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10(identityID, password) {
2484
+ var _identityMFAQRCode = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee10(identityID, password) {
2066
2485
  var req;
2067
- return _regeneratorRuntime().wrap(function _callee10$(_context10) {
2486
+ return runtime_1.wrap(function _callee10$(_context10) {
2068
2487
  while (1) {
2069
2488
  switch (_context10.prev = _context10.next) {
2070
2489
  case 0:
@@ -2102,8 +2521,8 @@ var GuardService = /*#__PURE__*/function () {
2102
2521
  _proto.identitySendConfirmEmail =
2103
2522
  /*#__PURE__*/
2104
2523
  function () {
2105
- var _identitySendConfirmEmail = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee11(req) {
2106
- return _regeneratorRuntime().wrap(function _callee11$(_context11) {
2524
+ var _identitySendConfirmEmail = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee11(req) {
2525
+ return runtime_1.wrap(function _callee11$(_context11) {
2107
2526
  while (1) {
2108
2527
  switch (_context11.prev = _context11.next) {
2109
2528
  case 0:
@@ -2134,8 +2553,8 @@ var GuardService = /*#__PURE__*/function () {
2134
2553
  _proto.identityGetByCustomerEmail =
2135
2554
  /*#__PURE__*/
2136
2555
  function () {
2137
- var _identityGetByCustomerEmail = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee12(email) {
2138
- return _regeneratorRuntime().wrap(function _callee12$(_context12) {
2556
+ var _identityGetByCustomerEmail = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee12(email) {
2557
+ return runtime_1.wrap(function _callee12$(_context12) {
2139
2558
  while (1) {
2140
2559
  switch (_context12.prev = _context12.next) {
2141
2560
  case 0:
@@ -2166,8 +2585,8 @@ var GuardService = /*#__PURE__*/function () {
2166
2585
  _proto.identityGetByHash =
2167
2586
  /*#__PURE__*/
2168
2587
  function () {
2169
- var _identityGetByHash = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee13(b64Hash) {
2170
- return _regeneratorRuntime().wrap(function _callee13$(_context13) {
2588
+ var _identityGetByHash = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee13(b64Hash) {
2589
+ return runtime_1.wrap(function _callee13$(_context13) {
2171
2590
  while (1) {
2172
2591
  switch (_context13.prev = _context13.next) {
2173
2592
  case 0:
@@ -2570,8 +2989,8 @@ var TellerService = /*#__PURE__*/function () {
2570
2989
  var _proto = TellerService.prototype;
2571
2990
 
2572
2991
  _proto.lockboxDataStore = /*#__PURE__*/function () {
2573
- var _lockboxDataStore = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(lockboxUuid, req, lockboxOwnerUuid, previousDataUuid) {
2574
- return _regeneratorRuntime().wrap(function _callee$(_context) {
2992
+ var _lockboxDataStore = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(lockboxUuid, req, lockboxOwnerUuid, previousDataUuid) {
2993
+ return runtime_1.wrap(function _callee$(_context) {
2575
2994
  while (1) {
2576
2995
  switch (_context.prev = _context.next) {
2577
2996
  case 0:
@@ -2679,8 +3098,8 @@ var VaultService = /*#__PURE__*/function () {
2679
3098
  var _proto = VaultService.prototype;
2680
3099
 
2681
3100
  _proto.lockboxCreate = /*#__PURE__*/function () {
2682
- var _lockboxCreate = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(lockboxMetadata) {
2683
- return _regeneratorRuntime().wrap(function _callee$(_context) {
3101
+ var _lockboxCreate = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee(lockboxMetadata) {
3102
+ return runtime_1.wrap(function _callee$(_context) {
2684
3103
  while (1) {
2685
3104
  switch (_context.prev = _context.next) {
2686
3105
  case 0:
@@ -2702,8 +3121,8 @@ var VaultService = /*#__PURE__*/function () {
2702
3121
  }();
2703
3122
 
2704
3123
  _proto.lockboxMetadataAdd = /*#__PURE__*/function () {
2705
- var _lockboxMetadataAdd = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(lockboxUuid, lockboxMetadata, lockboxOwnerUuid) {
2706
- return _regeneratorRuntime().wrap(function _callee2$(_context2) {
3124
+ var _lockboxMetadataAdd = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(lockboxUuid, lockboxMetadata, lockboxOwnerUuid) {
3125
+ return runtime_1.wrap(function _callee2$(_context2) {
2707
3126
  while (1) {
2708
3127
  switch (_context2.prev = _context2.next) {
2709
3128
  case 0:
@@ -2729,8 +3148,8 @@ var VaultService = /*#__PURE__*/function () {
2729
3148
  }();
2730
3149
 
2731
3150
  _proto.lockboxSecretGet = /*#__PURE__*/function () {
2732
- var _lockboxSecretGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(lockboxUuid, lockboxOwnerUuid) {
2733
- return _regeneratorRuntime().wrap(function _callee3$(_context3) {
3151
+ var _lockboxSecretGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee3(lockboxUuid, lockboxOwnerUuid) {
3152
+ return runtime_1.wrap(function _callee3$(_context3) {
2734
3153
  while (1) {
2735
3154
  switch (_context3.prev = _context3.next) {
2736
3155
  case 0:
@@ -2756,8 +3175,8 @@ var VaultService = /*#__PURE__*/function () {
2756
3175
  }();
2757
3176
 
2758
3177
  _proto.lockboxGrant = /*#__PURE__*/function () {
2759
- var _lockboxGrant = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(lockboxUuid, req, lockboxOwnerUuid) {
2760
- return _regeneratorRuntime().wrap(function _callee4$(_context4) {
3178
+ var _lockboxGrant = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee4(lockboxUuid, req, lockboxOwnerUuid) {
3179
+ return runtime_1.wrap(function _callee4$(_context4) {
2761
3180
  while (1) {
2762
3181
  switch (_context4.prev = _context4.next) {
2763
3182
  case 0:
@@ -2791,8 +3210,8 @@ var VaultService = /*#__PURE__*/function () {
2791
3210
  _proto.grantsGet =
2792
3211
  /*#__PURE__*/
2793
3212
  function () {
2794
- var _grantsGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5() {
2795
- return _regeneratorRuntime().wrap(function _callee5$(_context5) {
3213
+ var _grantsGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee5() {
3214
+ return runtime_1.wrap(function _callee5$(_context5) {
2796
3215
  while (1) {
2797
3216
  switch (_context5.prev = _context5.next) {
2798
3217
  case 0:
@@ -2827,8 +3246,8 @@ var VaultService = /*#__PURE__*/function () {
2827
3246
  _proto.lockboxDataStore =
2828
3247
  /*#__PURE__*/
2829
3248
  function () {
2830
- var _lockboxDataStore = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(lockboxUuid, req, lockboxOwnerUuid, previousDataUuid) {
2831
- return _regeneratorRuntime().wrap(function _callee6$(_context6) {
3249
+ var _lockboxDataStore = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee6(lockboxUuid, req, lockboxOwnerUuid, previousDataUuid) {
3250
+ return runtime_1.wrap(function _callee6$(_context6) {
2832
3251
  while (1) {
2833
3252
  switch (_context6.prev = _context6.next) {
2834
3253
  case 0:
@@ -2855,9 +3274,9 @@ var VaultService = /*#__PURE__*/function () {
2855
3274
  }();
2856
3275
 
2857
3276
  _proto.lockboxDataGet = /*#__PURE__*/function () {
2858
- var _lockboxDataGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(lockboxUuid, dataUuid, lockboxOwnerUuid, stream) {
3277
+ var _lockboxDataGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee7(lockboxUuid, dataUuid, lockboxOwnerUuid, stream) {
2859
3278
  var data;
2860
- return _regeneratorRuntime().wrap(function _callee7$(_context7) {
3279
+ return runtime_1.wrap(function _callee7$(_context7) {
2861
3280
  while (1) {
2862
3281
  switch (_context7.prev = _context7.next) {
2863
3282
  case 0:
@@ -2904,8 +3323,8 @@ var VaultService = /*#__PURE__*/function () {
2904
3323
  }();
2905
3324
 
2906
3325
  _proto.lockboxManifestGet = /*#__PURE__*/function () {
2907
- var _lockboxManifestGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(lockboxUuid, filter, lockboxOwnerUuid) {
2908
- return _regeneratorRuntime().wrap(function _callee8$(_context8) {
3326
+ var _lockboxManifestGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee8(lockboxUuid, filter, lockboxOwnerUuid) {
3327
+ return runtime_1.wrap(function _callee8$(_context8) {
2909
3328
  while (1) {
2910
3329
  switch (_context8.prev = _context8.next) {
2911
3330
  case 0:
@@ -2932,8 +3351,8 @@ var VaultService = /*#__PURE__*/function () {
2932
3351
  }();
2933
3352
 
2934
3353
  _proto.lockboxMetadataGet = /*#__PURE__*/function () {
2935
- var _lockboxMetadataGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9(lockboxUuid, fields, groupby, filter, lockboxOwnerUuid) {
2936
- return _regeneratorRuntime().wrap(function _callee9$(_context9) {
3354
+ var _lockboxMetadataGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee9(lockboxUuid, fields, groupby, filter, lockboxOwnerUuid) {
3355
+ return runtime_1.wrap(function _callee9$(_context9) {
2937
3356
  while (1) {
2938
3357
  switch (_context9.prev = _context9.next) {
2939
3358
  case 0:
@@ -2972,8 +3391,8 @@ var VaultService = /*#__PURE__*/function () {
2972
3391
  _proto.vaultIndexPut =
2973
3392
  /*#__PURE__*/
2974
3393
  function () {
2975
- var _vaultIndexPut = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10(entries, indexOwnerUuid) {
2976
- return _regeneratorRuntime().wrap(function _callee10$(_context10) {
3394
+ var _vaultIndexPut = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee10(entries, indexOwnerUuid) {
3395
+ return runtime_1.wrap(function _callee10$(_context10) {
2977
3396
  while (1) {
2978
3397
  switch (_context10.prev = _context10.next) {
2979
3398
  case 0:
@@ -3007,8 +3426,8 @@ var VaultService = /*#__PURE__*/function () {
3007
3426
  _proto.vaultIndexSnapshotPut =
3008
3427
  /*#__PURE__*/
3009
3428
  function () {
3010
- var _vaultIndexSnapshotPut = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee11(entry) {
3011
- return _regeneratorRuntime().wrap(function _callee11$(_context11) {
3429
+ var _vaultIndexSnapshotPut = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee11(entry) {
3430
+ return runtime_1.wrap(function _callee11$(_context11) {
3012
3431
  while (1) {
3013
3432
  switch (_context11.prev = _context11.next) {
3014
3433
  case 0:
@@ -3041,8 +3460,8 @@ var VaultService = /*#__PURE__*/function () {
3041
3460
  _proto.vaultIndexGet =
3042
3461
  /*#__PURE__*/
3043
3462
  function () {
3044
- var _vaultIndexGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee12(indexKeys, identifiers, timestamp) {
3045
- return _regeneratorRuntime().wrap(function _callee12$(_context12) {
3463
+ var _vaultIndexGet = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee12(indexKeys, identifiers, timestamp) {
3464
+ return runtime_1.wrap(function _callee12$(_context12) {
3046
3465
  while (1) {
3047
3466
  switch (_context12.prev = _context12.next) {
3048
3467
  case 0: