@dereekb/zoho 12.7.0 → 13.0.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.
Files changed (51) hide show
  1. package/LICENSE +1 -1
  2. package/index.cjs.js +22 -2157
  3. package/index.esm.js +23 -2153
  4. package/nestjs/index.cjs.js +598 -0
  5. package/nestjs/index.esm.js +582 -0
  6. package/nestjs/package.json +19 -3
  7. package/nestjs/src/lib/crm/crm.api.d.ts +2 -1
  8. package/nestjs/src/lib/recruit/recruit.api.d.ts +3 -3
  9. package/package.json +14 -7
  10. package/src/lib/accounts/accounts.error.api.d.ts +2 -2
  11. package/src/lib/crm/crm.api.tags.d.ts +24 -0
  12. package/src/lib/crm/crm.criteria.d.ts +1 -1
  13. package/src/lib/crm/crm.error.api.d.ts +2 -2
  14. package/src/lib/recruit/recruit.api.candidates.d.ts +2 -26
  15. package/src/lib/recruit/recruit.error.api.d.ts +2 -2
  16. package/src/lib/zoho.error.api.d.ts +2 -2
  17. package/src/lib/zoho.type.d.ts +1 -18
  18. package/nestjs/CHANGELOG.md +0 -468
  19. package/nestjs/README.md +0 -11
  20. package/nestjs/src/index.js +0 -5
  21. package/nestjs/src/index.js.map +0 -1
  22. package/nestjs/src/lib/accounts/accounts.api.js +0 -38
  23. package/nestjs/src/lib/accounts/accounts.api.js.map +0 -1
  24. package/nestjs/src/lib/accounts/accounts.config.js +0 -75
  25. package/nestjs/src/lib/accounts/accounts.config.js.map +0 -1
  26. package/nestjs/src/lib/accounts/accounts.service.js +0 -240
  27. package/nestjs/src/lib/accounts/accounts.service.js.map +0 -1
  28. package/nestjs/src/lib/accounts/index.js +0 -7
  29. package/nestjs/src/lib/accounts/index.js.map +0 -1
  30. package/nestjs/src/lib/crm/crm.api.js +0 -115
  31. package/nestjs/src/lib/crm/crm.api.js.map +0 -1
  32. package/nestjs/src/lib/crm/crm.config.js +0 -16
  33. package/nestjs/src/lib/crm/crm.config.js.map +0 -1
  34. package/nestjs/src/lib/crm/crm.module.js +0 -61
  35. package/nestjs/src/lib/crm/crm.module.js.map +0 -1
  36. package/nestjs/src/lib/crm/index.js +0 -7
  37. package/nestjs/src/lib/crm/index.js.map +0 -1
  38. package/nestjs/src/lib/index.js +0 -7
  39. package/nestjs/src/lib/index.js.map +0 -1
  40. package/nestjs/src/lib/recruit/index.js +0 -7
  41. package/nestjs/src/lib/recruit/index.js.map +0 -1
  42. package/nestjs/src/lib/recruit/recruit.api.js +0 -130
  43. package/nestjs/src/lib/recruit/recruit.api.js.map +0 -1
  44. package/nestjs/src/lib/recruit/recruit.config.js +0 -16
  45. package/nestjs/src/lib/recruit/recruit.config.js.map +0 -1
  46. package/nestjs/src/lib/recruit/recruit.module.js +0 -61
  47. package/nestjs/src/lib/recruit/recruit.module.js.map +0 -1
  48. package/nestjs/src/lib/zoho.config.js +0 -52
  49. package/nestjs/src/lib/zoho.config.js.map +0 -1
  50. /package/{index.cjs.d.ts → index.d.ts} +0 -0
  51. /package/{index.esm.d.ts → nestjs/index.d.ts} +0 -0
package/index.esm.js CHANGED
@@ -1,1657 +1,14 @@
1
+ import 'core-js/modules/es.iterator.constructor.js';
2
+ import 'core-js/modules/es.iterator.filter.js';
3
+ import 'core-js/modules/es.iterator.for-each.js';
1
4
  import { getNextPageNumber, isStandardInternetAccessibleWebsiteUrl, escapeStringCharactersFunction, filterMaybeArrayValues, asArray, MS_IN_MINUTE, joinStringsWithCommas, separateValues, resetPeriodPromiseRateLimiter, MS_IN_SECOND } from '@dereekb/util';
2
- import { fetchPageFactory, FetchResponseError, makeUrlSearchParams, parseFetchFileResponse, FetchRequestFactoryError, rateLimitedFetchHandler, fetchJsonFunction, returnNullHandleFetchJsonParseErrorFunction, fetchApiFetchService } from '@dereekb/util/fetch';
5
+ import { fetchPageFactory, FetchResponseError, makeUrlSearchParams, parseFetchFileResponse, FetchRequestFactoryError, rateLimitedFetchHandler, fetchApiFetchService, fetchJsonFunction, returnNullHandleFetchJsonParseErrorFunction } from '@dereekb/util/fetch';
6
+ import 'core-js/modules/es.iterator.flat-map.js';
7
+ import 'core-js/modules/es.iterator.map.js';
3
8
  import { BaseError } from 'make-error';
4
-
5
- var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
6
-
7
- var check = function (it) {
8
- return it && it.Math === Math && it;
9
- };
10
-
11
- // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
12
- var global$b =
13
- // eslint-disable-next-line es/no-global-this -- safe
14
- check(typeof globalThis == 'object' && globalThis) ||
15
- check(typeof window == 'object' && window) ||
16
- // eslint-disable-next-line no-restricted-globals -- safe
17
- check(typeof self == 'object' && self) ||
18
- check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
19
- check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
20
- // eslint-disable-next-line no-new-func -- fallback
21
- (function () { return this; })() || Function('return this')();
22
-
23
- var objectGetOwnPropertyDescriptor = {};
24
-
25
- var fails$c = function (exec) {
26
- try {
27
- return !!exec();
28
- } catch (error) {
29
- return true;
30
- }
31
- };
32
-
33
- var fails$b = fails$c;
34
-
35
- // Detect IE8's incomplete defineProperty implementation
36
- var descriptors = !fails$b(function () {
37
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
38
- return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
39
- });
40
-
41
- var fails$a = fails$c;
42
-
43
- var functionBindNative = !fails$a(function () {
44
- // eslint-disable-next-line es/no-function-prototype-bind -- safe
45
- var test = (function () { /* empty */ }).bind();
46
- // eslint-disable-next-line no-prototype-builtins -- safe
47
- return typeof test != 'function' || test.hasOwnProperty('prototype');
48
- });
49
-
50
- var NATIVE_BIND$2 = functionBindNative;
51
-
52
- var call$e = Function.prototype.call;
53
-
54
- var functionCall = NATIVE_BIND$2 ? call$e.bind(call$e) : function () {
55
- return call$e.apply(call$e, arguments);
56
- };
57
-
58
- var objectPropertyIsEnumerable = {};
59
-
60
- var $propertyIsEnumerable = {}.propertyIsEnumerable;
61
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
62
- var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
63
-
64
- // Nashorn ~ JDK8 bug
65
- var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
66
-
67
- // `Object.prototype.propertyIsEnumerable` method implementation
68
- // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
69
- objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
70
- var descriptor = getOwnPropertyDescriptor$1(this, V);
71
- return !!descriptor && descriptor.enumerable;
72
- } : $propertyIsEnumerable;
73
-
74
- var createPropertyDescriptor$3 = function (bitmap, value) {
75
- return {
76
- enumerable: !(bitmap & 1),
77
- configurable: !(bitmap & 2),
78
- writable: !(bitmap & 4),
79
- value: value
80
- };
81
- };
82
-
83
- var NATIVE_BIND$1 = functionBindNative;
84
-
85
- var FunctionPrototype$1 = Function.prototype;
86
- var call$d = FunctionPrototype$1.call;
87
- var uncurryThisWithBind = NATIVE_BIND$1 && FunctionPrototype$1.bind.bind(call$d, call$d);
88
-
89
- var functionUncurryThis = NATIVE_BIND$1 ? uncurryThisWithBind : function (fn) {
90
- return function () {
91
- return call$d.apply(fn, arguments);
92
- };
93
- };
94
-
95
- var uncurryThis$d = functionUncurryThis;
96
-
97
- var toString$1 = uncurryThis$d({}.toString);
98
- var stringSlice$1 = uncurryThis$d(''.slice);
99
-
100
- var classofRaw$2 = function (it) {
101
- return stringSlice$1(toString$1(it), 8, -1);
102
- };
103
-
104
- var uncurryThis$c = functionUncurryThis;
105
- var fails$9 = fails$c;
106
- var classof$2 = classofRaw$2;
107
-
108
- var $Object$4 = Object;
109
- var split = uncurryThis$c(''.split);
110
-
111
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
112
- var indexedObject = fails$9(function () {
113
- // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
114
- // eslint-disable-next-line no-prototype-builtins -- safe
115
- return !$Object$4('z').propertyIsEnumerable(0);
116
- }) ? function (it) {
117
- return classof$2(it) === 'String' ? split(it, '') : $Object$4(it);
118
- } : $Object$4;
119
-
120
- // we can't use just `it == null` since of `document.all` special case
121
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
122
- var isNullOrUndefined$3 = function (it) {
123
- return it === null || it === undefined;
124
- };
125
-
126
- var isNullOrUndefined$2 = isNullOrUndefined$3;
127
-
128
- var $TypeError$a = TypeError;
129
-
130
- // `RequireObjectCoercible` abstract operation
131
- // https://tc39.es/ecma262/#sec-requireobjectcoercible
132
- var requireObjectCoercible$2 = function (it) {
133
- if (isNullOrUndefined$2(it)) throw new $TypeError$a("Can't call method on " + it);
134
- return it;
135
- };
136
-
137
- // toObject with fallback for non-array-like ES3 strings
138
- var IndexedObject = indexedObject;
139
- var requireObjectCoercible$1 = requireObjectCoercible$2;
140
-
141
- var toIndexedObject$4 = function (it) {
142
- return IndexedObject(requireObjectCoercible$1(it));
143
- };
144
-
145
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
146
- var documentAll = typeof document == 'object' && document.all;
147
-
148
- // `IsCallable` abstract operation
149
- // https://tc39.es/ecma262/#sec-iscallable
150
- // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
151
- var isCallable$e = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
152
- return typeof argument == 'function' || argument === documentAll;
153
- } : function (argument) {
154
- return typeof argument == 'function';
155
- };
156
-
157
- var isCallable$d = isCallable$e;
158
-
159
- var isObject$6 = function (it) {
160
- return typeof it == 'object' ? it !== null : isCallable$d(it);
161
- };
162
-
163
- var global$a = global$b;
164
- var isCallable$c = isCallable$e;
165
-
166
- var aFunction = function (argument) {
167
- return isCallable$c(argument) ? argument : undefined;
168
- };
169
-
170
- var getBuiltIn$4 = function (namespace, method) {
171
- return arguments.length < 2 ? aFunction(global$a[namespace]) : global$a[namespace] && global$a[namespace][method];
172
- };
173
-
174
- var uncurryThis$b = functionUncurryThis;
175
-
176
- var objectIsPrototypeOf = uncurryThis$b({}.isPrototypeOf);
177
-
178
- var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
179
-
180
- var global$9 = global$b;
181
- var userAgent = engineUserAgent;
182
-
183
- var process = global$9.process;
184
- var Deno = global$9.Deno;
185
- var versions = process && process.versions || Deno && Deno.version;
186
- var v8 = versions && versions.v8;
187
- var match, version;
188
-
189
- if (v8) {
190
- match = v8.split('.');
191
- // in old Chrome, versions of V8 isn't V8 = Chrome / 10
192
- // but their correct versions are not interesting for us
193
- version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
194
- }
195
-
196
- // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
197
- // so check `userAgent` even if `.v8` exists, but 0
198
- if (!version && userAgent) {
199
- match = userAgent.match(/Edge\/(\d+)/);
200
- if (!match || match[1] >= 74) {
201
- match = userAgent.match(/Chrome\/(\d+)/);
202
- if (match) version = +match[1];
203
- }
204
- }
205
-
206
- var engineV8Version = version;
207
-
208
- /* eslint-disable es/no-symbol -- required for testing */
209
- var V8_VERSION = engineV8Version;
210
- var fails$8 = fails$c;
211
- var global$8 = global$b;
212
-
213
- var $String$3 = global$8.String;
214
-
215
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
216
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
217
- var symbol = Symbol('symbol detection');
218
- // Chrome 38 Symbol has incorrect toString conversion
219
- // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
220
- // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
221
- // of course, fail.
222
- return !$String$3(symbol) || !(Object(symbol) instanceof Symbol) ||
223
- // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
224
- !Symbol.sham && V8_VERSION && V8_VERSION < 41;
225
- });
226
-
227
- /* eslint-disable es/no-symbol -- required for testing */
228
- var NATIVE_SYMBOL$1 = symbolConstructorDetection;
229
-
230
- var useSymbolAsUid = NATIVE_SYMBOL$1
231
- && !Symbol.sham
232
- && typeof Symbol.iterator == 'symbol';
233
-
234
- var getBuiltIn$3 = getBuiltIn$4;
235
- var isCallable$b = isCallable$e;
236
- var isPrototypeOf$2 = objectIsPrototypeOf;
237
- var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
238
-
239
- var $Object$3 = Object;
240
-
241
- var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
242
- return typeof it == 'symbol';
243
- } : function (it) {
244
- var $Symbol = getBuiltIn$3('Symbol');
245
- return isCallable$b($Symbol) && isPrototypeOf$2($Symbol.prototype, $Object$3(it));
246
- };
247
-
248
- var $String$2 = String;
249
-
250
- var tryToString$3 = function (argument) {
251
- try {
252
- return $String$2(argument);
253
- } catch (error) {
254
- return 'Object';
255
- }
256
- };
257
-
258
- var isCallable$a = isCallable$e;
259
- var tryToString$2 = tryToString$3;
260
-
261
- var $TypeError$9 = TypeError;
262
-
263
- // `Assert: IsCallable(argument) is true`
264
- var aCallable$9 = function (argument) {
265
- if (isCallable$a(argument)) return argument;
266
- throw new $TypeError$9(tryToString$2(argument) + ' is not a function');
267
- };
268
-
269
- var aCallable$8 = aCallable$9;
270
- var isNullOrUndefined$1 = isNullOrUndefined$3;
271
-
272
- // `GetMethod` abstract operation
273
- // https://tc39.es/ecma262/#sec-getmethod
274
- var getMethod$4 = function (V, P) {
275
- var func = V[P];
276
- return isNullOrUndefined$1(func) ? undefined : aCallable$8(func);
277
- };
278
-
279
- var call$c = functionCall;
280
- var isCallable$9 = isCallable$e;
281
- var isObject$5 = isObject$6;
282
-
283
- var $TypeError$8 = TypeError;
284
-
285
- // `OrdinaryToPrimitive` abstract operation
286
- // https://tc39.es/ecma262/#sec-ordinarytoprimitive
287
- var ordinaryToPrimitive$1 = function (input, pref) {
288
- var fn, val;
289
- if (pref === 'string' && isCallable$9(fn = input.toString) && !isObject$5(val = call$c(fn, input))) return val;
290
- if (isCallable$9(fn = input.valueOf) && !isObject$5(val = call$c(fn, input))) return val;
291
- if (pref !== 'string' && isCallable$9(fn = input.toString) && !isObject$5(val = call$c(fn, input))) return val;
292
- throw new $TypeError$8("Can't convert object to primitive value");
293
- };
294
-
295
- var sharedStore = {exports: {}};
296
-
297
- var isPure = false;
298
-
299
- var global$7 = global$b;
300
-
301
- // eslint-disable-next-line es/no-object-defineproperty -- safe
302
- var defineProperty$2 = Object.defineProperty;
303
-
304
- var defineGlobalProperty$3 = function (key, value) {
305
- try {
306
- defineProperty$2(global$7, key, { value: value, configurable: true, writable: true });
307
- } catch (error) {
308
- global$7[key] = value;
309
- } return value;
310
- };
311
-
312
- var globalThis$1 = global$b;
313
- var defineGlobalProperty$2 = defineGlobalProperty$3;
314
-
315
- var SHARED = '__core-js_shared__';
316
- var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
317
-
318
- (store$3.versions || (store$3.versions = [])).push({
319
- version: '3.36.1',
320
- mode: 'global',
321
- copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
322
- license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
323
- source: 'https://github.com/zloirock/core-js'
324
- });
325
-
326
- var sharedStoreExports = sharedStore.exports;
327
-
328
- var store$2 = sharedStoreExports;
329
-
330
- var shared$3 = function (key, value) {
331
- return store$2[key] || (store$2[key] = value || {});
332
- };
333
-
334
- var requireObjectCoercible = requireObjectCoercible$2;
335
-
336
- var $Object$2 = Object;
337
-
338
- // `ToObject` abstract operation
339
- // https://tc39.es/ecma262/#sec-toobject
340
- var toObject$2 = function (argument) {
341
- return $Object$2(requireObjectCoercible(argument));
342
- };
343
-
344
- var uncurryThis$a = functionUncurryThis;
345
- var toObject$1 = toObject$2;
346
-
347
- var hasOwnProperty = uncurryThis$a({}.hasOwnProperty);
348
-
349
- // `HasOwnProperty` abstract operation
350
- // https://tc39.es/ecma262/#sec-hasownproperty
351
- // eslint-disable-next-line es/no-object-hasown -- safe
352
- var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
353
- return hasOwnProperty(toObject$1(it), key);
354
- };
355
-
356
- var uncurryThis$9 = functionUncurryThis;
357
-
358
- var id = 0;
359
- var postfix = Math.random();
360
- var toString = uncurryThis$9(1.0.toString);
361
-
362
- var uid$2 = function (key) {
363
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
364
- };
365
-
366
- var global$6 = global$b;
367
- var shared$2 = shared$3;
368
- var hasOwn$8 = hasOwnProperty_1;
369
- var uid$1 = uid$2;
370
- var NATIVE_SYMBOL = symbolConstructorDetection;
371
- var USE_SYMBOL_AS_UID = useSymbolAsUid;
372
-
373
- var Symbol$1 = global$6.Symbol;
374
- var WellKnownSymbolsStore = shared$2('wks');
375
- var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
376
-
377
- var wellKnownSymbol$8 = function (name) {
378
- if (!hasOwn$8(WellKnownSymbolsStore, name)) {
379
- WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$8(Symbol$1, name)
380
- ? Symbol$1[name]
381
- : createWellKnownSymbol('Symbol.' + name);
382
- } return WellKnownSymbolsStore[name];
383
- };
384
-
385
- var call$b = functionCall;
386
- var isObject$4 = isObject$6;
387
- var isSymbol$1 = isSymbol$2;
388
- var getMethod$3 = getMethod$4;
389
- var ordinaryToPrimitive = ordinaryToPrimitive$1;
390
- var wellKnownSymbol$7 = wellKnownSymbol$8;
391
-
392
- var $TypeError$7 = TypeError;
393
- var TO_PRIMITIVE = wellKnownSymbol$7('toPrimitive');
394
-
395
- // `ToPrimitive` abstract operation
396
- // https://tc39.es/ecma262/#sec-toprimitive
397
- var toPrimitive$1 = function (input, pref) {
398
- if (!isObject$4(input) || isSymbol$1(input)) return input;
399
- var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
400
- var result;
401
- if (exoticToPrim) {
402
- if (pref === undefined) pref = 'default';
403
- result = call$b(exoticToPrim, input, pref);
404
- if (!isObject$4(result) || isSymbol$1(result)) return result;
405
- throw new $TypeError$7("Can't convert object to primitive value");
406
- }
407
- if (pref === undefined) pref = 'number';
408
- return ordinaryToPrimitive(input, pref);
409
- };
410
-
411
- var toPrimitive = toPrimitive$1;
412
- var isSymbol = isSymbol$2;
413
-
414
- // `ToPropertyKey` abstract operation
415
- // https://tc39.es/ecma262/#sec-topropertykey
416
- var toPropertyKey$2 = function (argument) {
417
- var key = toPrimitive(argument, 'string');
418
- return isSymbol(key) ? key : key + '';
419
- };
420
-
421
- var global$5 = global$b;
422
- var isObject$3 = isObject$6;
423
-
424
- var document$1 = global$5.document;
425
- // typeof document.createElement is 'object' in old IE
426
- var EXISTS$1 = isObject$3(document$1) && isObject$3(document$1.createElement);
427
-
428
- var documentCreateElement$1 = function (it) {
429
- return EXISTS$1 ? document$1.createElement(it) : {};
430
- };
431
-
432
- var DESCRIPTORS$9 = descriptors;
433
- var fails$7 = fails$c;
434
- var createElement = documentCreateElement$1;
435
-
436
- // Thanks to IE8 for its funny defineProperty
437
- var ie8DomDefine = !DESCRIPTORS$9 && !fails$7(function () {
438
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
439
- return Object.defineProperty(createElement('div'), 'a', {
440
- get: function () { return 7; }
441
- }).a !== 7;
442
- });
443
-
444
- var DESCRIPTORS$8 = descriptors;
445
- var call$a = functionCall;
446
- var propertyIsEnumerableModule = objectPropertyIsEnumerable;
447
- var createPropertyDescriptor$2 = createPropertyDescriptor$3;
448
- var toIndexedObject$3 = toIndexedObject$4;
449
- var toPropertyKey$1 = toPropertyKey$2;
450
- var hasOwn$7 = hasOwnProperty_1;
451
- var IE8_DOM_DEFINE$1 = ie8DomDefine;
452
-
453
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
454
- var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
455
-
456
- // `Object.getOwnPropertyDescriptor` method
457
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
458
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$8 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
459
- O = toIndexedObject$3(O);
460
- P = toPropertyKey$1(P);
461
- if (IE8_DOM_DEFINE$1) try {
462
- return $getOwnPropertyDescriptor$1(O, P);
463
- } catch (error) { /* empty */ }
464
- if (hasOwn$7(O, P)) return createPropertyDescriptor$2(!call$a(propertyIsEnumerableModule.f, O, P), O[P]);
465
- };
466
-
467
- var objectDefineProperty = {};
468
-
469
- var DESCRIPTORS$7 = descriptors;
470
- var fails$6 = fails$c;
471
-
472
- // V8 ~ Chrome 36-
473
- // https://bugs.chromium.org/p/v8/issues/detail?id=3334
474
- var v8PrototypeDefineBug = DESCRIPTORS$7 && fails$6(function () {
475
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
476
- return Object.defineProperty(function () { /* empty */ }, 'prototype', {
477
- value: 42,
478
- writable: false
479
- }).prototype !== 42;
480
- });
481
-
482
- var isObject$2 = isObject$6;
483
-
484
- var $String$1 = String;
485
- var $TypeError$6 = TypeError;
486
-
487
- // `Assert: Type(argument) is Object`
488
- var anObject$f = function (argument) {
489
- if (isObject$2(argument)) return argument;
490
- throw new $TypeError$6($String$1(argument) + ' is not an object');
491
- };
492
-
493
- var DESCRIPTORS$6 = descriptors;
494
- var IE8_DOM_DEFINE = ie8DomDefine;
495
- var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
496
- var anObject$e = anObject$f;
497
- var toPropertyKey = toPropertyKey$2;
498
-
499
- var $TypeError$5 = TypeError;
500
- // eslint-disable-next-line es/no-object-defineproperty -- safe
501
- var $defineProperty = Object.defineProperty;
502
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
503
- var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
504
- var ENUMERABLE = 'enumerable';
505
- var CONFIGURABLE$1 = 'configurable';
506
- var WRITABLE = 'writable';
507
-
508
- // `Object.defineProperty` method
509
- // https://tc39.es/ecma262/#sec-object.defineproperty
510
- objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
511
- anObject$e(O);
512
- P = toPropertyKey(P);
513
- anObject$e(Attributes);
514
- if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
515
- var current = $getOwnPropertyDescriptor(O, P);
516
- if (current && current[WRITABLE]) {
517
- O[P] = Attributes.value;
518
- Attributes = {
519
- configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
520
- enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
521
- writable: false
522
- };
523
- }
524
- } return $defineProperty(O, P, Attributes);
525
- } : $defineProperty : function defineProperty(O, P, Attributes) {
526
- anObject$e(O);
527
- P = toPropertyKey(P);
528
- anObject$e(Attributes);
529
- if (IE8_DOM_DEFINE) try {
530
- return $defineProperty(O, P, Attributes);
531
- } catch (error) { /* empty */ }
532
- if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$5('Accessors not supported');
533
- if ('value' in Attributes) O[P] = Attributes.value;
534
- return O;
535
- };
536
-
537
- var DESCRIPTORS$5 = descriptors;
538
- var definePropertyModule$4 = objectDefineProperty;
539
- var createPropertyDescriptor$1 = createPropertyDescriptor$3;
540
-
541
- var createNonEnumerableProperty$3 = DESCRIPTORS$5 ? function (object, key, value) {
542
- return definePropertyModule$4.f(object, key, createPropertyDescriptor$1(1, value));
543
- } : function (object, key, value) {
544
- object[key] = value;
545
- return object;
546
- };
547
-
548
- var makeBuiltIn$3 = {exports: {}};
549
-
550
- var DESCRIPTORS$4 = descriptors;
551
- var hasOwn$6 = hasOwnProperty_1;
552
-
553
- var FunctionPrototype = Function.prototype;
554
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
555
- var getDescriptor = DESCRIPTORS$4 && Object.getOwnPropertyDescriptor;
556
-
557
- var EXISTS = hasOwn$6(FunctionPrototype, 'name');
558
- // additional protection from minified / mangled / dropped function names
559
- var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
560
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$4 || (DESCRIPTORS$4 && getDescriptor(FunctionPrototype, 'name').configurable));
561
-
562
- var functionName = {
563
- EXISTS: EXISTS,
564
- PROPER: PROPER,
565
- CONFIGURABLE: CONFIGURABLE
566
- };
567
-
568
- var uncurryThis$8 = functionUncurryThis;
569
- var isCallable$8 = isCallable$e;
570
- var store$1 = sharedStoreExports;
571
-
572
- var functionToString = uncurryThis$8(Function.toString);
573
-
574
- // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
575
- if (!isCallable$8(store$1.inspectSource)) {
576
- store$1.inspectSource = function (it) {
577
- return functionToString(it);
578
- };
579
- }
580
-
581
- var inspectSource$1 = store$1.inspectSource;
582
-
583
- var global$4 = global$b;
584
- var isCallable$7 = isCallable$e;
585
-
586
- var WeakMap$1 = global$4.WeakMap;
587
-
588
- var weakMapBasicDetection = isCallable$7(WeakMap$1) && /native code/.test(String(WeakMap$1));
589
-
590
- var shared$1 = shared$3;
591
- var uid = uid$2;
592
-
593
- var keys$1 = shared$1('keys');
594
-
595
- var sharedKey$3 = function (key) {
596
- return keys$1[key] || (keys$1[key] = uid(key));
597
- };
598
-
599
- var hiddenKeys$4 = {};
600
-
601
- var NATIVE_WEAK_MAP = weakMapBasicDetection;
602
- var global$3 = global$b;
603
- var isObject$1 = isObject$6;
604
- var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
605
- var hasOwn$5 = hasOwnProperty_1;
606
- var shared = sharedStoreExports;
607
- var sharedKey$2 = sharedKey$3;
608
- var hiddenKeys$3 = hiddenKeys$4;
609
-
610
- var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
611
- var TypeError$1 = global$3.TypeError;
612
- var WeakMap = global$3.WeakMap;
613
- var set, get, has$6;
614
-
615
- var enforce = function (it) {
616
- return has$6(it) ? get(it) : set(it, {});
617
- };
618
-
619
- var getterFor = function (TYPE) {
620
- return function (it) {
621
- var state;
622
- if (!isObject$1(it) || (state = get(it)).type !== TYPE) {
623
- throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
624
- } return state;
625
- };
626
- };
627
-
628
- if (NATIVE_WEAK_MAP || shared.state) {
629
- var store = shared.state || (shared.state = new WeakMap());
630
- /* eslint-disable no-self-assign -- prototype methods protection */
631
- store.get = store.get;
632
- store.has = store.has;
633
- store.set = store.set;
634
- /* eslint-enable no-self-assign -- prototype methods protection */
635
- set = function (it, metadata) {
636
- if (store.has(it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
637
- metadata.facade = it;
638
- store.set(it, metadata);
639
- return metadata;
640
- };
641
- get = function (it) {
642
- return store.get(it) || {};
643
- };
644
- has$6 = function (it) {
645
- return store.has(it);
646
- };
647
- } else {
648
- var STATE = sharedKey$2('state');
649
- hiddenKeys$3[STATE] = true;
650
- set = function (it, metadata) {
651
- if (hasOwn$5(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
652
- metadata.facade = it;
653
- createNonEnumerableProperty$2(it, STATE, metadata);
654
- return metadata;
655
- };
656
- get = function (it) {
657
- return hasOwn$5(it, STATE) ? it[STATE] : {};
658
- };
659
- has$6 = function (it) {
660
- return hasOwn$5(it, STATE);
661
- };
662
- }
663
-
664
- var internalState = {
665
- set: set,
666
- get: get,
667
- has: has$6,
668
- enforce: enforce,
669
- getterFor: getterFor
670
- };
671
-
672
- var uncurryThis$7 = functionUncurryThis;
673
- var fails$5 = fails$c;
674
- var isCallable$6 = isCallable$e;
675
- var hasOwn$4 = hasOwnProperty_1;
676
- var DESCRIPTORS$3 = descriptors;
677
- var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
678
- var inspectSource = inspectSource$1;
679
- var InternalStateModule$1 = internalState;
680
-
681
- var enforceInternalState = InternalStateModule$1.enforce;
682
- var getInternalState = InternalStateModule$1.get;
683
- var $String = String;
684
- // eslint-disable-next-line es/no-object-defineproperty -- safe
685
- var defineProperty$1 = Object.defineProperty;
686
- var stringSlice = uncurryThis$7(''.slice);
687
- var replace = uncurryThis$7(''.replace);
688
- var join = uncurryThis$7([].join);
689
-
690
- var CONFIGURABLE_LENGTH = DESCRIPTORS$3 && !fails$5(function () {
691
- return defineProperty$1(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
692
- });
693
-
694
- var TEMPLATE = String(String).split('String');
695
-
696
- var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
697
- if (stringSlice($String(name), 0, 7) === 'Symbol(') {
698
- name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
699
- }
700
- if (options && options.getter) name = 'get ' + name;
701
- if (options && options.setter) name = 'set ' + name;
702
- if (!hasOwn$4(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
703
- if (DESCRIPTORS$3) defineProperty$1(value, 'name', { value: name, configurable: true });
704
- else value.name = name;
705
- }
706
- if (CONFIGURABLE_LENGTH && options && hasOwn$4(options, 'arity') && value.length !== options.arity) {
707
- defineProperty$1(value, 'length', { value: options.arity });
708
- }
709
- try {
710
- if (options && hasOwn$4(options, 'constructor') && options.constructor) {
711
- if (DESCRIPTORS$3) defineProperty$1(value, 'prototype', { writable: false });
712
- // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
713
- } else if (value.prototype) value.prototype = undefined;
714
- } catch (error) { /* empty */ }
715
- var state = enforceInternalState(value);
716
- if (!hasOwn$4(state, 'source')) {
717
- state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
718
- } return value;
719
- };
720
-
721
- // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
722
- // eslint-disable-next-line no-extend-native -- required
723
- Function.prototype.toString = makeBuiltIn$2(function toString() {
724
- return isCallable$6(this) && getInternalState(this).source || inspectSource(this);
725
- }, 'toString');
726
-
727
- var makeBuiltInExports = makeBuiltIn$3.exports;
728
-
729
- var isCallable$5 = isCallable$e;
730
- var definePropertyModule$3 = objectDefineProperty;
731
- var makeBuiltIn$1 = makeBuiltInExports;
732
- var defineGlobalProperty$1 = defineGlobalProperty$3;
733
-
734
- var defineBuiltIn$3 = function (O, key, value, options) {
735
- if (!options) options = {};
736
- var simple = options.enumerable;
737
- var name = options.name !== undefined ? options.name : key;
738
- if (isCallable$5(value)) makeBuiltIn$1(value, name, options);
739
- if (options.global) {
740
- if (simple) O[key] = value;
741
- else defineGlobalProperty$1(key, value);
742
- } else {
743
- try {
744
- if (!options.unsafe) delete O[key];
745
- else if (O[key]) simple = true;
746
- } catch (error) { /* empty */ }
747
- if (simple) O[key] = value;
748
- else definePropertyModule$3.f(O, key, {
749
- value: value,
750
- enumerable: false,
751
- configurable: !options.nonConfigurable,
752
- writable: !options.nonWritable
753
- });
754
- } return O;
755
- };
756
-
757
- var objectGetOwnPropertyNames = {};
758
-
759
- var ceil = Math.ceil;
760
- var floor = Math.floor;
761
-
762
- // `Math.trunc` method
763
- // https://tc39.es/ecma262/#sec-math.trunc
764
- // eslint-disable-next-line es/no-math-trunc -- safe
765
- var mathTrunc = Math.trunc || function trunc(x) {
766
- var n = +x;
767
- return (n > 0 ? floor : ceil)(n);
768
- };
769
-
770
- var trunc = mathTrunc;
771
-
772
- // `ToIntegerOrInfinity` abstract operation
773
- // https://tc39.es/ecma262/#sec-tointegerorinfinity
774
- var toIntegerOrInfinity$3 = function (argument) {
775
- var number = +argument;
776
- // eslint-disable-next-line no-self-compare -- NaN check
777
- return number !== number || number === 0 ? 0 : trunc(number);
778
- };
779
-
780
- var toIntegerOrInfinity$2 = toIntegerOrInfinity$3;
781
-
782
- var max$1 = Math.max;
783
- var min$1 = Math.min;
784
-
785
- // Helper for a popular repeating case of the spec:
786
- // Let integer be ? ToInteger(index).
787
- // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
788
- var toAbsoluteIndex$1 = function (index, length) {
789
- var integer = toIntegerOrInfinity$2(index);
790
- return integer < 0 ? max$1(integer + length, 0) : min$1(integer, length);
791
- };
792
-
793
- var toIntegerOrInfinity$1 = toIntegerOrInfinity$3;
794
-
795
- var min = Math.min;
796
-
797
- // `ToLength` abstract operation
798
- // https://tc39.es/ecma262/#sec-tolength
799
- var toLength$1 = function (argument) {
800
- var len = toIntegerOrInfinity$1(argument);
801
- return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
802
- };
803
-
804
- var toLength = toLength$1;
805
-
806
- // `LengthOfArrayLike` abstract operation
807
- // https://tc39.es/ecma262/#sec-lengthofarraylike
808
- var lengthOfArrayLike$2 = function (obj) {
809
- return toLength(obj.length);
810
- };
811
-
812
- var toIndexedObject$2 = toIndexedObject$4;
813
- var toAbsoluteIndex = toAbsoluteIndex$1;
814
- var lengthOfArrayLike$1 = lengthOfArrayLike$2;
815
-
816
- // `Array.prototype.{ indexOf, includes }` methods implementation
817
- var createMethod = function (IS_INCLUDES) {
818
- return function ($this, el, fromIndex) {
819
- var O = toIndexedObject$2($this);
820
- var length = lengthOfArrayLike$1(O);
821
- if (length === 0) return !IS_INCLUDES && -1;
822
- var index = toAbsoluteIndex(fromIndex, length);
823
- var value;
824
- // Array#includes uses SameValueZero equality algorithm
825
- // eslint-disable-next-line no-self-compare -- NaN check
826
- if (IS_INCLUDES && el !== el) while (length > index) {
827
- value = O[index++];
828
- // eslint-disable-next-line no-self-compare -- NaN check
829
- if (value !== value) return true;
830
- // Array#indexOf ignores holes, Array#includes - not
831
- } else for (;length > index; index++) {
832
- if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
833
- } return !IS_INCLUDES && -1;
834
- };
835
- };
836
-
837
- var arrayIncludes = {
838
- // `Array.prototype.includes` method
839
- // https://tc39.es/ecma262/#sec-array.prototype.includes
840
- includes: createMethod(true),
841
- // `Array.prototype.indexOf` method
842
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
843
- indexOf: createMethod(false)
844
- };
845
-
846
- var uncurryThis$6 = functionUncurryThis;
847
- var hasOwn$3 = hasOwnProperty_1;
848
- var toIndexedObject$1 = toIndexedObject$4;
849
- var indexOf = arrayIncludes.indexOf;
850
- var hiddenKeys$2 = hiddenKeys$4;
851
-
852
- var push = uncurryThis$6([].push);
853
-
854
- var objectKeysInternal = function (object, names) {
855
- var O = toIndexedObject$1(object);
856
- var i = 0;
857
- var result = [];
858
- var key;
859
- for (key in O) !hasOwn$3(hiddenKeys$2, key) && hasOwn$3(O, key) && push(result, key);
860
- // Don't enum bug & hidden keys
861
- while (names.length > i) if (hasOwn$3(O, key = names[i++])) {
862
- ~indexOf(result, key) || push(result, key);
863
- }
864
- return result;
865
- };
866
-
867
- // IE8- don't enum bug keys
868
- var enumBugKeys$3 = [
869
- 'constructor',
870
- 'hasOwnProperty',
871
- 'isPrototypeOf',
872
- 'propertyIsEnumerable',
873
- 'toLocaleString',
874
- 'toString',
875
- 'valueOf'
876
- ];
877
-
878
- var internalObjectKeys$1 = objectKeysInternal;
879
- var enumBugKeys$2 = enumBugKeys$3;
880
-
881
- var hiddenKeys$1 = enumBugKeys$2.concat('length', 'prototype');
882
-
883
- // `Object.getOwnPropertyNames` method
884
- // https://tc39.es/ecma262/#sec-object.getownpropertynames
885
- // eslint-disable-next-line es/no-object-getownpropertynames -- safe
886
- objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
887
- return internalObjectKeys$1(O, hiddenKeys$1);
888
- };
889
-
890
- var objectGetOwnPropertySymbols = {};
891
-
892
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
893
- objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
894
-
895
- var getBuiltIn$2 = getBuiltIn$4;
896
- var uncurryThis$5 = functionUncurryThis;
897
- var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
898
- var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
899
- var anObject$d = anObject$f;
900
-
901
- var concat = uncurryThis$5([].concat);
902
-
903
- // all object keys, includes non-enumerable and symbols
904
- var ownKeys$1 = getBuiltIn$2('Reflect', 'ownKeys') || function ownKeys(it) {
905
- var keys = getOwnPropertyNamesModule.f(anObject$d(it));
906
- var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
907
- return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
908
- };
909
-
910
- var hasOwn$2 = hasOwnProperty_1;
911
- var ownKeys = ownKeys$1;
912
- var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
913
- var definePropertyModule$2 = objectDefineProperty;
914
-
915
- var copyConstructorProperties$1 = function (target, source, exceptions) {
916
- var keys = ownKeys(source);
917
- var defineProperty = definePropertyModule$2.f;
918
- var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
919
- for (var i = 0; i < keys.length; i++) {
920
- var key = keys[i];
921
- if (!hasOwn$2(target, key) && !(exceptions && hasOwn$2(exceptions, key))) {
922
- defineProperty(target, key, getOwnPropertyDescriptor(source, key));
923
- }
924
- }
925
- };
926
-
927
- var fails$4 = fails$c;
928
- var isCallable$4 = isCallable$e;
929
-
930
- var replacement = /#|\.prototype\./;
931
-
932
- var isForced$1 = function (feature, detection) {
933
- var value = data[normalize(feature)];
934
- return value === POLYFILL ? true
935
- : value === NATIVE ? false
936
- : isCallable$4(detection) ? fails$4(detection)
937
- : !!detection;
938
- };
939
-
940
- var normalize = isForced$1.normalize = function (string) {
941
- return String(string).replace(replacement, '.').toLowerCase();
942
- };
943
-
944
- var data = isForced$1.data = {};
945
- var NATIVE = isForced$1.NATIVE = 'N';
946
- var POLYFILL = isForced$1.POLYFILL = 'P';
947
-
948
- var isForced_1 = isForced$1;
949
-
950
- var global$2 = global$b;
951
- var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
952
- var createNonEnumerableProperty$1 = createNonEnumerableProperty$3;
953
- var defineBuiltIn$2 = defineBuiltIn$3;
954
- var defineGlobalProperty = defineGlobalProperty$3;
955
- var copyConstructorProperties = copyConstructorProperties$1;
956
- var isForced = isForced_1;
957
-
958
- /*
959
- options.target - name of the target object
960
- options.global - target is the global object
961
- options.stat - export as static methods of target
962
- options.proto - export as prototype methods of target
963
- options.real - real prototype method for the `pure` version
964
- options.forced - export even if the native feature is available
965
- options.bind - bind methods to the target, required for the `pure` version
966
- options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
967
- options.unsafe - use the simple assignment of property instead of delete + defineProperty
968
- options.sham - add a flag to not completely full polyfills
969
- options.enumerable - export as enumerable property
970
- options.dontCallGetSet - prevent calling a getter on target
971
- options.name - the .name of the function if it does not match the key
972
- */
973
- var _export = function (options, source) {
974
- var TARGET = options.target;
975
- var GLOBAL = options.global;
976
- var STATIC = options.stat;
977
- var FORCED, target, key, targetProperty, sourceProperty, descriptor;
978
- if (GLOBAL) {
979
- target = global$2;
980
- } else if (STATIC) {
981
- target = global$2[TARGET] || defineGlobalProperty(TARGET, {});
982
- } else {
983
- target = global$2[TARGET] && global$2[TARGET].prototype;
984
- }
985
- if (target) for (key in source) {
986
- sourceProperty = source[key];
987
- if (options.dontCallGetSet) {
988
- descriptor = getOwnPropertyDescriptor(target, key);
989
- targetProperty = descriptor && descriptor.value;
990
- } else targetProperty = target[key];
991
- FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
992
- // contained in target
993
- if (!FORCED && targetProperty !== undefined) {
994
- if (typeof sourceProperty == typeof targetProperty) continue;
995
- copyConstructorProperties(sourceProperty, targetProperty);
996
- }
997
- // add a flag to not completely full polyfills
998
- if (options.sham || (targetProperty && targetProperty.sham)) {
999
- createNonEnumerableProperty$1(sourceProperty, 'sham', true);
1000
- }
1001
- defineBuiltIn$2(target, key, sourceProperty, options);
1002
- }
1003
- };
1004
-
1005
- var isPrototypeOf$1 = objectIsPrototypeOf;
1006
-
1007
- var $TypeError$4 = TypeError;
1008
-
1009
- var anInstance$1 = function (it, Prototype) {
1010
- if (isPrototypeOf$1(Prototype, it)) return it;
1011
- throw new $TypeError$4('Incorrect invocation');
1012
- };
1013
-
1014
- var fails$3 = fails$c;
1015
-
1016
- var correctPrototypeGetter = !fails$3(function () {
1017
- function F() { /* empty */ }
1018
- F.prototype.constructor = null;
1019
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1020
- return Object.getPrototypeOf(new F()) !== F.prototype;
1021
- });
1022
-
1023
- var hasOwn$1 = hasOwnProperty_1;
1024
- var isCallable$3 = isCallable$e;
1025
- var toObject = toObject$2;
1026
- var sharedKey$1 = sharedKey$3;
1027
- var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1028
-
1029
- var IE_PROTO$1 = sharedKey$1('IE_PROTO');
1030
- var $Object$1 = Object;
1031
- var ObjectPrototype = $Object$1.prototype;
1032
-
1033
- // `Object.getPrototypeOf` method
1034
- // https://tc39.es/ecma262/#sec-object.getprototypeof
1035
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
1036
- var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
1037
- var object = toObject(O);
1038
- if (hasOwn$1(object, IE_PROTO$1)) return object[IE_PROTO$1];
1039
- var constructor = object.constructor;
1040
- if (isCallable$3(constructor) && object instanceof constructor) {
1041
- return constructor.prototype;
1042
- } return object instanceof $Object$1 ? ObjectPrototype : null;
1043
- };
1044
-
1045
- var makeBuiltIn = makeBuiltInExports;
1046
- var defineProperty = objectDefineProperty;
1047
-
1048
- var defineBuiltInAccessor$1 = function (target, name, descriptor) {
1049
- if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
1050
- if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
1051
- return defineProperty.f(target, name, descriptor);
1052
- };
1053
-
1054
- var DESCRIPTORS$2 = descriptors;
1055
- var definePropertyModule$1 = objectDefineProperty;
1056
- var createPropertyDescriptor = createPropertyDescriptor$3;
1057
-
1058
- var createProperty$1 = function (object, key, value) {
1059
- if (DESCRIPTORS$2) definePropertyModule$1.f(object, key, createPropertyDescriptor(0, value));
1060
- else object[key] = value;
1061
- };
1062
-
1063
- var objectDefineProperties = {};
1064
-
1065
- var internalObjectKeys = objectKeysInternal;
1066
- var enumBugKeys$1 = enumBugKeys$3;
1067
-
1068
- // `Object.keys` method
1069
- // https://tc39.es/ecma262/#sec-object.keys
1070
- // eslint-disable-next-line es/no-object-keys -- safe
1071
- var objectKeys$1 = Object.keys || function keys(O) {
1072
- return internalObjectKeys(O, enumBugKeys$1);
1073
- };
1074
-
1075
- var DESCRIPTORS$1 = descriptors;
1076
- var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
1077
- var definePropertyModule = objectDefineProperty;
1078
- var anObject$c = anObject$f;
1079
- var toIndexedObject = toIndexedObject$4;
1080
- var objectKeys = objectKeys$1;
1081
-
1082
- // `Object.defineProperties` method
1083
- // https://tc39.es/ecma262/#sec-object.defineproperties
1084
- // eslint-disable-next-line es/no-object-defineproperties -- safe
1085
- objectDefineProperties.f = DESCRIPTORS$1 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1086
- anObject$c(O);
1087
- var props = toIndexedObject(Properties);
1088
- var keys = objectKeys(Properties);
1089
- var length = keys.length;
1090
- var index = 0;
1091
- var key;
1092
- while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1093
- return O;
1094
- };
1095
-
1096
- var getBuiltIn$1 = getBuiltIn$4;
1097
-
1098
- var html$1 = getBuiltIn$1('document', 'documentElement');
1099
-
1100
- /* global ActiveXObject -- old IE, WSH */
1101
- var anObject$b = anObject$f;
1102
- var definePropertiesModule = objectDefineProperties;
1103
- var enumBugKeys = enumBugKeys$3;
1104
- var hiddenKeys = hiddenKeys$4;
1105
- var html = html$1;
1106
- var documentCreateElement = documentCreateElement$1;
1107
- var sharedKey = sharedKey$3;
1108
-
1109
- var GT = '>';
1110
- var LT = '<';
1111
- var PROTOTYPE = 'prototype';
1112
- var SCRIPT = 'script';
1113
- var IE_PROTO = sharedKey('IE_PROTO');
1114
-
1115
- var EmptyConstructor = function () { /* empty */ };
1116
-
1117
- var scriptTag = function (content) {
1118
- return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
1119
- };
1120
-
1121
- // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
1122
- var NullProtoObjectViaActiveX = function (activeXDocument) {
1123
- activeXDocument.write(scriptTag(''));
1124
- activeXDocument.close();
1125
- var temp = activeXDocument.parentWindow.Object;
1126
- activeXDocument = null; // avoid memory leak
1127
- return temp;
1128
- };
1129
-
1130
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
1131
- var NullProtoObjectViaIFrame = function () {
1132
- // Thrash, waste and sodomy: IE GC bug
1133
- var iframe = documentCreateElement('iframe');
1134
- var JS = 'java' + SCRIPT + ':';
1135
- var iframeDocument;
1136
- iframe.style.display = 'none';
1137
- html.appendChild(iframe);
1138
- // https://github.com/zloirock/core-js/issues/475
1139
- iframe.src = String(JS);
1140
- iframeDocument = iframe.contentWindow.document;
1141
- iframeDocument.open();
1142
- iframeDocument.write(scriptTag('document.F=Object'));
1143
- iframeDocument.close();
1144
- return iframeDocument.F;
1145
- };
1146
-
1147
- // Check for document.domain and active x support
1148
- // No need to use active x approach when document.domain is not set
1149
- // see https://github.com/es-shims/es5-shim/issues/150
1150
- // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
1151
- // avoid IE GC bug
1152
- var activeXDocument;
1153
- var NullProtoObject = function () {
1154
- try {
1155
- activeXDocument = new ActiveXObject('htmlfile');
1156
- } catch (error) { /* ignore */ }
1157
- NullProtoObject = typeof document != 'undefined'
1158
- ? document.domain && activeXDocument
1159
- ? NullProtoObjectViaActiveX(activeXDocument) // old IE
1160
- : NullProtoObjectViaIFrame()
1161
- : NullProtoObjectViaActiveX(activeXDocument); // WSH
1162
- var length = enumBugKeys.length;
1163
- while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1164
- return NullProtoObject();
1165
- };
1166
-
1167
- hiddenKeys[IE_PROTO] = true;
1168
-
1169
- // `Object.create` method
1170
- // https://tc39.es/ecma262/#sec-object.create
1171
- // eslint-disable-next-line es/no-object-create -- safe
1172
- var objectCreate = Object.create || function create(O, Properties) {
1173
- var result;
1174
- if (O !== null) {
1175
- EmptyConstructor[PROTOTYPE] = anObject$b(O);
1176
- result = new EmptyConstructor();
1177
- EmptyConstructor[PROTOTYPE] = null;
1178
- // add "__proto__" for Object.getPrototypeOf polyfill
1179
- result[IE_PROTO] = O;
1180
- } else result = NullProtoObject();
1181
- return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
1182
- };
1183
-
1184
- var fails$2 = fails$c;
1185
- var isCallable$2 = isCallable$e;
1186
- var isObject = isObject$6;
1187
- var getPrototypeOf$1 = objectGetPrototypeOf;
1188
- var defineBuiltIn$1 = defineBuiltIn$3;
1189
- var wellKnownSymbol$6 = wellKnownSymbol$8;
1190
-
1191
- var ITERATOR$3 = wellKnownSymbol$6('iterator');
1192
- var BUGGY_SAFARI_ITERATORS = false;
1193
-
1194
- // `%IteratorPrototype%` object
1195
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1196
- var IteratorPrototype$2, PrototypeOfArrayIteratorPrototype, arrayIterator;
1197
-
1198
- /* eslint-disable es/no-array-prototype-keys -- safe */
1199
- if ([].keys) {
1200
- arrayIterator = [].keys();
1201
- // Safari 8 has buggy iterators w/o `next`
1202
- if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
1203
- else {
1204
- PrototypeOfArrayIteratorPrototype = getPrototypeOf$1(getPrototypeOf$1(arrayIterator));
1205
- if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype$2 = PrototypeOfArrayIteratorPrototype;
1206
- }
1207
- }
1208
-
1209
- var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype$2) || fails$2(function () {
1210
- var test = {};
1211
- // FF44- legacy iterators case
1212
- return IteratorPrototype$2[ITERATOR$3].call(test) !== test;
1213
- });
1214
-
1215
- if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1216
-
1217
- // `%IteratorPrototype%[@@iterator]()` method
1218
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1219
- if (!isCallable$2(IteratorPrototype$2[ITERATOR$3])) {
1220
- defineBuiltIn$1(IteratorPrototype$2, ITERATOR$3, function () {
1221
- return this;
1222
- });
1223
- }
1224
-
1225
- var iteratorsCore = {
1226
- IteratorPrototype: IteratorPrototype$2,
1227
- BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
1228
- };
1229
-
1230
- var $$b = _export;
1231
- var global$1 = global$b;
1232
- var anInstance = anInstance$1;
1233
- var anObject$a = anObject$f;
1234
- var isCallable$1 = isCallable$e;
1235
- var getPrototypeOf = objectGetPrototypeOf;
1236
- var defineBuiltInAccessor = defineBuiltInAccessor$1;
1237
- var createProperty = createProperty$1;
1238
- var fails$1 = fails$c;
1239
- var hasOwn = hasOwnProperty_1;
1240
- var wellKnownSymbol$5 = wellKnownSymbol$8;
1241
- var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
1242
- var DESCRIPTORS = descriptors;
1243
-
1244
- var CONSTRUCTOR = 'constructor';
1245
- var ITERATOR$2 = 'Iterator';
1246
- var TO_STRING_TAG$3 = wellKnownSymbol$5('toStringTag');
1247
-
1248
- var $TypeError$3 = TypeError;
1249
- var NativeIterator = global$1[ITERATOR$2];
1250
-
1251
- // FF56- have non-standard global helper `Iterator`
1252
- var FORCED = !isCallable$1(NativeIterator)
1253
- || NativeIterator.prototype !== IteratorPrototype$1
1254
- // FF44- non-standard `Iterator` passes previous tests
1255
- || !fails$1(function () { NativeIterator({}); });
1256
-
1257
- var IteratorConstructor = function Iterator() {
1258
- anInstance(this, IteratorPrototype$1);
1259
- if (getPrototypeOf(this) === IteratorPrototype$1) throw new $TypeError$3('Abstract class Iterator not directly constructable');
1260
- };
1261
-
1262
- var defineIteratorPrototypeAccessor = function (key, value) {
1263
- if (DESCRIPTORS) {
1264
- defineBuiltInAccessor(IteratorPrototype$1, key, {
1265
- configurable: true,
1266
- get: function () {
1267
- return value;
1268
- },
1269
- set: function (replacement) {
1270
- anObject$a(this);
1271
- if (this === IteratorPrototype$1) throw new $TypeError$3("You can't redefine this property");
1272
- if (hasOwn(this, key)) this[key] = replacement;
1273
- else createProperty(this, key, replacement);
1274
- }
1275
- });
1276
- } else IteratorPrototype$1[key] = value;
1277
- };
1278
-
1279
- if (!hasOwn(IteratorPrototype$1, TO_STRING_TAG$3)) defineIteratorPrototypeAccessor(TO_STRING_TAG$3, ITERATOR$2);
1280
-
1281
- if (FORCED || !hasOwn(IteratorPrototype$1, CONSTRUCTOR) || IteratorPrototype$1[CONSTRUCTOR] === Object) {
1282
- defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
1283
- }
1284
-
1285
- IteratorConstructor.prototype = IteratorPrototype$1;
1286
-
1287
- // `Iterator` constructor
1288
- // https://github.com/tc39/proposal-iterator-helpers
1289
- $$b({ global: true, constructor: true, forced: FORCED }, {
1290
- Iterator: IteratorConstructor
1291
- });
1292
-
1293
- // `GetIteratorDirect(obj)` abstract operation
1294
- // https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect
1295
- var getIteratorDirect$6 = function (obj) {
1296
- return {
1297
- iterator: obj,
1298
- next: obj.next,
1299
- done: false
1300
- };
1301
- };
1302
-
1303
- var defineBuiltIn = defineBuiltIn$3;
1304
-
1305
- var defineBuiltIns$1 = function (target, src, options) {
1306
- for (var key in src) defineBuiltIn(target, key, src[key], options);
1307
- return target;
1308
- };
1309
-
1310
- // `CreateIterResultObject` abstract operation
1311
- // https://tc39.es/ecma262/#sec-createiterresultobject
1312
- var createIterResultObject$1 = function (value, done) {
1313
- return { value: value, done: done };
1314
- };
1315
-
1316
- var call$9 = functionCall;
1317
- var anObject$9 = anObject$f;
1318
- var getMethod$2 = getMethod$4;
1319
-
1320
- var iteratorClose$6 = function (iterator, kind, value) {
1321
- var innerResult, innerError;
1322
- anObject$9(iterator);
1323
- try {
1324
- innerResult = getMethod$2(iterator, 'return');
1325
- if (!innerResult) {
1326
- if (kind === 'throw') throw value;
1327
- return value;
1328
- }
1329
- innerResult = call$9(innerResult, iterator);
1330
- } catch (error) {
1331
- innerError = true;
1332
- innerResult = error;
1333
- }
1334
- if (kind === 'throw') throw value;
1335
- if (innerError) throw innerResult;
1336
- anObject$9(innerResult);
1337
- return value;
1338
- };
1339
-
1340
- var call$8 = functionCall;
1341
- var create = objectCreate;
1342
- var createNonEnumerableProperty = createNonEnumerableProperty$3;
1343
- var defineBuiltIns = defineBuiltIns$1;
1344
- var wellKnownSymbol$4 = wellKnownSymbol$8;
1345
- var InternalStateModule = internalState;
1346
- var getMethod$1 = getMethod$4;
1347
- var IteratorPrototype = iteratorsCore.IteratorPrototype;
1348
- var createIterResultObject = createIterResultObject$1;
1349
- var iteratorClose$5 = iteratorClose$6;
1350
-
1351
- var TO_STRING_TAG$2 = wellKnownSymbol$4('toStringTag');
1352
- var ITERATOR_HELPER = 'IteratorHelper';
1353
- var WRAP_FOR_VALID_ITERATOR = 'WrapForValidIterator';
1354
- var setInternalState = InternalStateModule.set;
1355
-
1356
- var createIteratorProxyPrototype = function (IS_ITERATOR) {
1357
- var getInternalState = InternalStateModule.getterFor(IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER);
1358
-
1359
- return defineBuiltIns(create(IteratorPrototype), {
1360
- next: function next() {
1361
- var state = getInternalState(this);
1362
- // for simplification:
1363
- // for `%WrapForValidIteratorPrototype%.next` our `nextHandler` returns `IterResultObject`
1364
- // for `%IteratorHelperPrototype%.next` - just a value
1365
- if (IS_ITERATOR) return state.nextHandler();
1366
- try {
1367
- var result = state.done ? undefined : state.nextHandler();
1368
- return createIterResultObject(result, state.done);
1369
- } catch (error) {
1370
- state.done = true;
1371
- throw error;
1372
- }
1373
- },
1374
- 'return': function () {
1375
- var state = getInternalState(this);
1376
- var iterator = state.iterator;
1377
- state.done = true;
1378
- if (IS_ITERATOR) {
1379
- var returnMethod = getMethod$1(iterator, 'return');
1380
- return returnMethod ? call$8(returnMethod, iterator) : createIterResultObject(undefined, true);
1381
- }
1382
- if (state.inner) try {
1383
- iteratorClose$5(state.inner.iterator, 'normal');
1384
- } catch (error) {
1385
- return iteratorClose$5(iterator, 'throw', error);
1386
- }
1387
- iteratorClose$5(iterator, 'normal');
1388
- return createIterResultObject(undefined, true);
1389
- }
1390
- });
1391
- };
1392
-
1393
- var WrapForValidIteratorPrototype = createIteratorProxyPrototype(true);
1394
- var IteratorHelperPrototype = createIteratorProxyPrototype(false);
1395
-
1396
- createNonEnumerableProperty(IteratorHelperPrototype, TO_STRING_TAG$2, 'Iterator Helper');
1397
-
1398
- var iteratorCreateProxy = function (nextHandler, IS_ITERATOR) {
1399
- var IteratorProxy = function Iterator(record, state) {
1400
- if (state) {
1401
- state.iterator = record.iterator;
1402
- state.next = record.next;
1403
- } else state = record;
1404
- state.type = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER;
1405
- state.nextHandler = nextHandler;
1406
- state.counter = 0;
1407
- state.done = false;
1408
- setInternalState(this, state);
1409
- };
1410
-
1411
- IteratorProxy.prototype = IS_ITERATOR ? WrapForValidIteratorPrototype : IteratorHelperPrototype;
1412
-
1413
- return IteratorProxy;
1414
- };
1415
-
1416
- var anObject$8 = anObject$f;
1417
- var iteratorClose$4 = iteratorClose$6;
1418
-
1419
- // call something on iterator step with safe closing on error
1420
- var callWithSafeIterationClosing$2 = function (iterator, fn, value, ENTRIES) {
1421
- try {
1422
- return ENTRIES ? fn(anObject$8(value)[0], value[1]) : fn(value);
1423
- } catch (error) {
1424
- iteratorClose$4(iterator, 'throw', error);
1425
- }
1426
- };
1427
-
1428
- var $$a = _export;
1429
- var call$7 = functionCall;
1430
- var aCallable$7 = aCallable$9;
1431
- var anObject$7 = anObject$f;
1432
- var getIteratorDirect$5 = getIteratorDirect$6;
1433
- var createIteratorProxy$2 = iteratorCreateProxy;
1434
- var callWithSafeIterationClosing$1 = callWithSafeIterationClosing$2;
1435
- var IS_PURE$2 = isPure;
1436
-
1437
- var IteratorProxy$2 = createIteratorProxy$2(function () {
1438
- var iterator = this.iterator;
1439
- var predicate = this.predicate;
1440
- var next = this.next;
1441
- var result, done, value;
1442
- while (true) {
1443
- result = anObject$7(call$7(next, iterator));
1444
- done = this.done = !!result.done;
1445
- if (done) return;
1446
- value = result.value;
1447
- if (callWithSafeIterationClosing$1(iterator, predicate, [value, this.counter++], true)) return value;
1448
- }
1449
- });
1450
-
1451
- // `Iterator.prototype.filter` method
1452
- // https://github.com/tc39/proposal-iterator-helpers
1453
- $$a({ target: 'Iterator', proto: true, real: true, forced: IS_PURE$2 }, {
1454
- filter: function filter(predicate) {
1455
- anObject$7(this);
1456
- aCallable$7(predicate);
1457
- return new IteratorProxy$2(getIteratorDirect$5(this), {
1458
- predicate: predicate
1459
- });
1460
- }
1461
- });
1462
-
1463
- var classofRaw$1 = classofRaw$2;
1464
- var uncurryThis$4 = functionUncurryThis;
1465
-
1466
- var functionUncurryThisClause = function (fn) {
1467
- // Nashorn bug:
1468
- // https://github.com/zloirock/core-js/issues/1128
1469
- // https://github.com/zloirock/core-js/issues/1130
1470
- if (classofRaw$1(fn) === 'Function') return uncurryThis$4(fn);
1471
- };
1472
-
1473
- var uncurryThis$3 = functionUncurryThisClause;
1474
- var aCallable$6 = aCallable$9;
1475
- var NATIVE_BIND = functionBindNative;
1476
-
1477
- var bind$1 = uncurryThis$3(uncurryThis$3.bind);
1478
-
1479
- // optional / simple context binding
1480
- var functionBindContext = function (fn, that) {
1481
- aCallable$6(fn);
1482
- return that === undefined ? fn : NATIVE_BIND ? bind$1(fn, that) : function (/* ...args */) {
1483
- return fn.apply(that, arguments);
1484
- };
1485
- };
1486
-
1487
- var iterators = {};
1488
-
1489
- var wellKnownSymbol$3 = wellKnownSymbol$8;
1490
- var Iterators$1 = iterators;
1491
-
1492
- var ITERATOR$1 = wellKnownSymbol$3('iterator');
1493
- var ArrayPrototype = Array.prototype;
1494
-
1495
- // check on default Array iterator
1496
- var isArrayIteratorMethod$1 = function (it) {
1497
- return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$1] === it);
1498
- };
1499
-
1500
- var wellKnownSymbol$2 = wellKnownSymbol$8;
1501
-
1502
- var TO_STRING_TAG$1 = wellKnownSymbol$2('toStringTag');
1503
- var test = {};
1504
-
1505
- test[TO_STRING_TAG$1] = 'z';
1506
-
1507
- var toStringTagSupport = String(test) === '[object z]';
1508
-
1509
- var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1510
- var isCallable = isCallable$e;
1511
- var classofRaw = classofRaw$2;
1512
- var wellKnownSymbol$1 = wellKnownSymbol$8;
1513
-
1514
- var TO_STRING_TAG = wellKnownSymbol$1('toStringTag');
1515
- var $Object = Object;
1516
-
1517
- // ES3 wrong here
1518
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1519
-
1520
- // fallback for IE11 Script Access Denied error
1521
- var tryGet = function (it, key) {
1522
- try {
1523
- return it[key];
1524
- } catch (error) { /* empty */ }
1525
- };
1526
-
1527
- // getting tag from ES6+ `Object.prototype.toString`
1528
- var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1529
- var O, tag, result;
1530
- return it === undefined ? 'Undefined' : it === null ? 'Null'
1531
- // @@toStringTag case
1532
- : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1533
- // builtinTag case
1534
- : CORRECT_ARGUMENTS ? classofRaw(O)
1535
- // ES3 arguments fallback
1536
- : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1537
- };
1538
-
1539
- var classof = classof$1;
1540
- var getMethod = getMethod$4;
1541
- var isNullOrUndefined = isNullOrUndefined$3;
1542
- var Iterators = iterators;
1543
- var wellKnownSymbol = wellKnownSymbol$8;
1544
-
1545
- var ITERATOR = wellKnownSymbol('iterator');
1546
-
1547
- var getIteratorMethod$3 = function (it) {
1548
- if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
1549
- || getMethod(it, '@@iterator')
1550
- || Iterators[classof(it)];
1551
- };
1552
-
1553
- var call$6 = functionCall;
1554
- var aCallable$5 = aCallable$9;
1555
- var anObject$6 = anObject$f;
1556
- var tryToString$1 = tryToString$3;
1557
- var getIteratorMethod$2 = getIteratorMethod$3;
1558
-
1559
- var $TypeError$2 = TypeError;
1560
-
1561
- var getIterator$1 = function (argument, usingIterator) {
1562
- var iteratorMethod = arguments.length < 2 ? getIteratorMethod$2(argument) : usingIterator;
1563
- if (aCallable$5(iteratorMethod)) return anObject$6(call$6(iteratorMethod, argument));
1564
- throw new $TypeError$2(tryToString$1(argument) + ' is not iterable');
1565
- };
1566
-
1567
- var bind = functionBindContext;
1568
- var call$5 = functionCall;
1569
- var anObject$5 = anObject$f;
1570
- var tryToString = tryToString$3;
1571
- var isArrayIteratorMethod = isArrayIteratorMethod$1;
1572
- var lengthOfArrayLike = lengthOfArrayLike$2;
1573
- var isPrototypeOf = objectIsPrototypeOf;
1574
- var getIterator = getIterator$1;
1575
- var getIteratorMethod$1 = getIteratorMethod$3;
1576
- var iteratorClose$3 = iteratorClose$6;
1577
-
1578
- var $TypeError$1 = TypeError;
1579
-
1580
- var Result = function (stopped, result) {
1581
- this.stopped = stopped;
1582
- this.result = result;
1583
- };
1584
-
1585
- var ResultPrototype = Result.prototype;
1586
-
1587
- var iterate$3 = function (iterable, unboundFunction, options) {
1588
- var that = options && options.that;
1589
- var AS_ENTRIES = !!(options && options.AS_ENTRIES);
1590
- var IS_RECORD = !!(options && options.IS_RECORD);
1591
- var IS_ITERATOR = !!(options && options.IS_ITERATOR);
1592
- var INTERRUPTED = !!(options && options.INTERRUPTED);
1593
- var fn = bind(unboundFunction, that);
1594
- var iterator, iterFn, index, length, result, next, step;
1595
-
1596
- var stop = function (condition) {
1597
- if (iterator) iteratorClose$3(iterator, 'normal', condition);
1598
- return new Result(true, condition);
1599
- };
1600
-
1601
- var callFn = function (value) {
1602
- if (AS_ENTRIES) {
1603
- anObject$5(value);
1604
- return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
1605
- } return INTERRUPTED ? fn(value, stop) : fn(value);
1606
- };
1607
-
1608
- if (IS_RECORD) {
1609
- iterator = iterable.iterator;
1610
- } else if (IS_ITERATOR) {
1611
- iterator = iterable;
1612
- } else {
1613
- iterFn = getIteratorMethod$1(iterable);
1614
- if (!iterFn) throw new $TypeError$1(tryToString(iterable) + ' is not iterable');
1615
- // optimisation for array iterators
1616
- if (isArrayIteratorMethod(iterFn)) {
1617
- for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
1618
- result = callFn(iterable[index]);
1619
- if (result && isPrototypeOf(ResultPrototype, result)) return result;
1620
- } return new Result(false);
1621
- }
1622
- iterator = getIterator(iterable, iterFn);
1623
- }
1624
-
1625
- next = IS_RECORD ? iterable.next : iterator.next;
1626
- while (!(step = call$5(next, iterator)).done) {
1627
- try {
1628
- result = callFn(step.value);
1629
- } catch (error) {
1630
- iteratorClose$3(iterator, 'throw', error);
1631
- }
1632
- if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
1633
- } return new Result(false);
1634
- };
1635
-
1636
- var $$9 = _export;
1637
- var iterate$2 = iterate$3;
1638
- var aCallable$4 = aCallable$9;
1639
- var anObject$4 = anObject$f;
1640
- var getIteratorDirect$4 = getIteratorDirect$6;
1641
-
1642
- // `Iterator.prototype.forEach` method
1643
- // https://github.com/tc39/proposal-iterator-helpers
1644
- $$9({ target: 'Iterator', proto: true, real: true }, {
1645
- forEach: function forEach(fn) {
1646
- anObject$4(this);
1647
- aCallable$4(fn);
1648
- var record = getIteratorDirect$4(this);
1649
- var counter = 0;
1650
- iterate$2(record, function (value) {
1651
- fn(value, counter++);
1652
- }, { IS_RECORD: true });
1653
- }
1654
- });
9
+ import 'core-js/modules/es.set.difference.v2.js';
10
+ import 'core-js/modules/es.set.symmetric-difference.v2.js';
11
+ import 'core-js/modules/es.set.union.v2.js';
1655
12
 
1656
13
  /**
1657
14
  * Returns an empty ZohoPageResult that is typed to R and has no more records/results.
@@ -1732,96 +89,6 @@ const ZOHO_RECRUIT_ATTACHMENTS_MODULE = 'Attachments';
1732
89
  const isZohoRecruitValidUrl = isStandardInternetAccessibleWebsiteUrl;
1733
90
  const ZOHO_RECRUIT_RECORD_ATTACHMENT_METADATA_ATTACH_TYPE_RESUME = 'Resume';
1734
91
 
1735
- var call$4 = functionCall;
1736
- var anObject$3 = anObject$f;
1737
- var getIteratorDirect$3 = getIteratorDirect$6;
1738
- var getIteratorMethod = getIteratorMethod$3;
1739
-
1740
- var getIteratorFlattenable$1 = function (obj, stringHandling) {
1741
- if (!stringHandling || typeof obj !== 'string') anObject$3(obj);
1742
- var method = getIteratorMethod(obj);
1743
- return getIteratorDirect$3(anObject$3(method !== undefined ? call$4(method, obj) : obj));
1744
- };
1745
-
1746
- var $$8 = _export;
1747
- var call$3 = functionCall;
1748
- var aCallable$3 = aCallable$9;
1749
- var anObject$2 = anObject$f;
1750
- var getIteratorDirect$2 = getIteratorDirect$6;
1751
- var getIteratorFlattenable = getIteratorFlattenable$1;
1752
- var createIteratorProxy$1 = iteratorCreateProxy;
1753
- var iteratorClose$2 = iteratorClose$6;
1754
- var IS_PURE$1 = isPure;
1755
-
1756
- var IteratorProxy$1 = createIteratorProxy$1(function () {
1757
- var iterator = this.iterator;
1758
- var mapper = this.mapper;
1759
- var result, inner;
1760
-
1761
- while (true) {
1762
- if (inner = this.inner) try {
1763
- result = anObject$2(call$3(inner.next, inner.iterator));
1764
- if (!result.done) return result.value;
1765
- this.inner = null;
1766
- } catch (error) { iteratorClose$2(iterator, 'throw', error); }
1767
-
1768
- result = anObject$2(call$3(this.next, iterator));
1769
-
1770
- if (this.done = !!result.done) return;
1771
-
1772
- try {
1773
- this.inner = getIteratorFlattenable(mapper(result.value, this.counter++), false);
1774
- } catch (error) { iteratorClose$2(iterator, 'throw', error); }
1775
- }
1776
- });
1777
-
1778
- // `Iterator.prototype.flatMap` method
1779
- // https://github.com/tc39/proposal-iterator-helpers
1780
- $$8({ target: 'Iterator', proto: true, real: true, forced: IS_PURE$1 }, {
1781
- flatMap: function flatMap(mapper) {
1782
- anObject$2(this);
1783
- aCallable$3(mapper);
1784
- return new IteratorProxy$1(getIteratorDirect$2(this), {
1785
- mapper: mapper,
1786
- inner: null
1787
- });
1788
- }
1789
- });
1790
-
1791
- var call$2 = functionCall;
1792
- var aCallable$2 = aCallable$9;
1793
- var anObject$1 = anObject$f;
1794
- var getIteratorDirect$1 = getIteratorDirect$6;
1795
- var createIteratorProxy = iteratorCreateProxy;
1796
- var callWithSafeIterationClosing = callWithSafeIterationClosing$2;
1797
-
1798
- var IteratorProxy = createIteratorProxy(function () {
1799
- var iterator = this.iterator;
1800
- var result = anObject$1(call$2(this.next, iterator));
1801
- var done = this.done = !!result.done;
1802
- if (!done) return callWithSafeIterationClosing(iterator, this.mapper, [result.value, this.counter++], true);
1803
- });
1804
-
1805
- // `Iterator.prototype.map` method
1806
- // https://github.com/tc39/proposal-iterator-helpers
1807
- var iteratorMap = function map(mapper) {
1808
- anObject$1(this);
1809
- aCallable$2(mapper);
1810
- return new IteratorProxy(getIteratorDirect$1(this), {
1811
- mapper: mapper
1812
- });
1813
- };
1814
-
1815
- var $$7 = _export;
1816
- var map = iteratorMap;
1817
- var IS_PURE = isPure;
1818
-
1819
- // `Iterator.prototype.map` method
1820
- // https://github.com/tc39/proposal-iterator-helpers
1821
- $$7({ target: 'Iterator', proto: true, real: true, forced: IS_PURE }, {
1822
- map: map
1823
- });
1824
-
1825
92
  /**
1826
93
  * Can search up to 10 criteria at a time.
1827
94
  *
@@ -2808,31 +1075,6 @@ function zohoRecruitSearchJobOpeningAssociatedCandidateRecords(context, jobOpeni
2808
1075
  function zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory(context) {
2809
1076
  return zohoFetchPageFactory(zohoRecruitSearchJobOpeningAssociatedCandidateRecords(context));
2810
1077
  }
2811
- // MARK: Compat
2812
- /**
2813
- * @deprecated Use zohoRecruitAssociateCandidateRecordsWithJobOpenings instead.
2814
- */
2815
- const associateCandidateRecordsWithJobOpenings = zohoRecruitAssociateCandidateRecordsWithJobOpenings;
2816
- /**
2817
- * @deprecated Use zohoRecruitSearchAssociatedRecords instead.
2818
- */
2819
- const searchAssociatedRecords = zohoRecruitSearchAssociatedRecords;
2820
- /**
2821
- * @deprecated Use zohoRecruitSearchCandidateAssociatedJobOpeningRecords instead.
2822
- */
2823
- const searchCandidateAssociatedJobOpeningRecords = zohoRecruitSearchCandidateAssociatedJobOpeningRecords;
2824
- /**
2825
- * @deprecated Use zohoRecruitSearchCandidateAssociatedJobOpeningRecordsPageFactory instead.
2826
- */
2827
- const searchCandidateAssociatedJobOpeningRecordsPageFactory = zohoRecruitSearchCandidateAssociatedJobOpeningRecordsPageFactory;
2828
- /**
2829
- * @deprecated Use zohoRecruitSearchJobOpeningAssociatedCandidateRecords instead.
2830
- */
2831
- const searchJobOpeningAssociatedCandidateRecords = zohoRecruitSearchJobOpeningAssociatedCandidateRecords;
2832
- /**
2833
- * @deprecated Use zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory instead.
2834
- */
2835
- const searchJobOpeningAssociatedCandidateRecordsPageFactory = zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory;
2836
1078
 
2837
1079
  function zohoRecruitCreateNotes(context) {
2838
1080
  return input => context.fetchJson(`/v2/${ZOHO_RECRUIT_NOTES_MODULE}`, zohoRecruitApiFetchJsonInput('POST', {
@@ -3793,391 +2035,6 @@ function zohoCrmCreateNotesForRecord(context) {
3793
2035
  };
3794
2036
  }
3795
2037
 
3796
- var uncurryThis$2 = functionUncurryThis;
3797
-
3798
- // eslint-disable-next-line es/no-set -- safe
3799
- var SetPrototype$1 = Set.prototype;
3800
-
3801
- var setHelpers = {
3802
- // eslint-disable-next-line es/no-set -- safe
3803
- Set: Set,
3804
- add: uncurryThis$2(SetPrototype$1.add),
3805
- has: uncurryThis$2(SetPrototype$1.has),
3806
- remove: uncurryThis$2(SetPrototype$1['delete']),
3807
- proto: SetPrototype$1
3808
- };
3809
-
3810
- var has$5 = setHelpers.has;
3811
-
3812
- // Perform ? RequireInternalSlot(M, [[SetData]])
3813
- var aSet$7 = function (it) {
3814
- has$5(it);
3815
- return it;
3816
- };
3817
-
3818
- var call$1 = functionCall;
3819
-
3820
- var iterateSimple$7 = function (record, fn, ITERATOR_INSTEAD_OF_RECORD) {
3821
- var iterator = ITERATOR_INSTEAD_OF_RECORD ? record : record.iterator;
3822
- var next = record.next;
3823
- var step, result;
3824
- while (!(step = call$1(next, iterator)).done) {
3825
- result = fn(step.value);
3826
- if (result !== undefined) return result;
3827
- }
3828
- };
3829
-
3830
- var uncurryThis$1 = functionUncurryThis;
3831
- var iterateSimple$6 = iterateSimple$7;
3832
- var SetHelpers$5 = setHelpers;
3833
-
3834
- var Set$3 = SetHelpers$5.Set;
3835
- var SetPrototype = SetHelpers$5.proto;
3836
- var forEach = uncurryThis$1(SetPrototype.forEach);
3837
- var keys = uncurryThis$1(SetPrototype.keys);
3838
- var next = keys(new Set$3()).next;
3839
-
3840
- var setIterate = function (set, fn, interruptible) {
3841
- return interruptible ? iterateSimple$6({ iterator: keys(set), next: next }, fn) : forEach(set, fn);
3842
- };
3843
-
3844
- var SetHelpers$4 = setHelpers;
3845
- var iterate$1 = setIterate;
3846
-
3847
- var Set$2 = SetHelpers$4.Set;
3848
- var add$3 = SetHelpers$4.add;
3849
-
3850
- var setClone = function (set) {
3851
- var result = new Set$2();
3852
- iterate$1(set, function (it) {
3853
- add$3(result, it);
3854
- });
3855
- return result;
3856
- };
3857
-
3858
- var uncurryThis = functionUncurryThis;
3859
- var aCallable$1 = aCallable$9;
3860
-
3861
- var functionUncurryThisAccessor = function (object, key, method) {
3862
- try {
3863
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3864
- return uncurryThis(aCallable$1(Object.getOwnPropertyDescriptor(object, key)[method]));
3865
- } catch (error) { /* empty */ }
3866
- };
3867
-
3868
- var uncurryThisAccessor = functionUncurryThisAccessor;
3869
- var SetHelpers$3 = setHelpers;
3870
-
3871
- var setSize = uncurryThisAccessor(SetHelpers$3.proto, 'size', 'get') || function (set) {
3872
- return set.size;
3873
- };
3874
-
3875
- var aCallable = aCallable$9;
3876
- var anObject = anObject$f;
3877
- var call = functionCall;
3878
- var toIntegerOrInfinity = toIntegerOrInfinity$3;
3879
- var getIteratorDirect = getIteratorDirect$6;
3880
-
3881
- var INVALID_SIZE = 'Invalid size';
3882
- var $RangeError = RangeError;
3883
- var $TypeError = TypeError;
3884
- var max = Math.max;
3885
-
3886
- var SetRecord = function (set, intSize) {
3887
- this.set = set;
3888
- this.size = max(intSize, 0);
3889
- this.has = aCallable(set.has);
3890
- this.keys = aCallable(set.keys);
3891
- };
3892
-
3893
- SetRecord.prototype = {
3894
- getIterator: function () {
3895
- return getIteratorDirect(anObject(call(this.keys, this.set)));
3896
- },
3897
- includes: function (it) {
3898
- return call(this.has, this.set, it);
3899
- }
3900
- };
3901
-
3902
- // `GetSetRecord` abstract operation
3903
- // https://tc39.es/proposal-set-methods/#sec-getsetrecord
3904
- var getSetRecord$7 = function (obj) {
3905
- anObject(obj);
3906
- var numSize = +obj.size;
3907
- // NOTE: If size is undefined, then numSize will be NaN
3908
- // eslint-disable-next-line no-self-compare -- NaN check
3909
- if (numSize !== numSize) throw new $TypeError(INVALID_SIZE);
3910
- var intSize = toIntegerOrInfinity(numSize);
3911
- if (intSize < 0) throw new $RangeError(INVALID_SIZE);
3912
- return new SetRecord(obj, intSize);
3913
- };
3914
-
3915
- var aSet$6 = aSet$7;
3916
- var SetHelpers$2 = setHelpers;
3917
- var clone$2 = setClone;
3918
- var size$4 = setSize;
3919
- var getSetRecord$6 = getSetRecord$7;
3920
- var iterateSet$2 = setIterate;
3921
- var iterateSimple$5 = iterateSimple$7;
3922
-
3923
- var has$4 = SetHelpers$2.has;
3924
- var remove$1 = SetHelpers$2.remove;
3925
-
3926
- // `Set.prototype.difference` method
3927
- // https://github.com/tc39/proposal-set-methods
3928
- var setDifference = function difference(other) {
3929
- var O = aSet$6(this);
3930
- var otherRec = getSetRecord$6(other);
3931
- var result = clone$2(O);
3932
- if (size$4(O) <= otherRec.size) iterateSet$2(O, function (e) {
3933
- if (otherRec.includes(e)) remove$1(result, e);
3934
- });
3935
- else iterateSimple$5(otherRec.getIterator(), function (e) {
3936
- if (has$4(O, e)) remove$1(result, e);
3937
- });
3938
- return result;
3939
- };
3940
-
3941
- var getBuiltIn = getBuiltIn$4;
3942
-
3943
- var createSetLike = function (size) {
3944
- return {
3945
- size: size,
3946
- has: function () {
3947
- return false;
3948
- },
3949
- keys: function () {
3950
- return {
3951
- next: function () {
3952
- return { done: true };
3953
- }
3954
- };
3955
- }
3956
- };
3957
- };
3958
-
3959
- var setMethodAcceptSetLike$7 = function (name) {
3960
- var Set = getBuiltIn('Set');
3961
- try {
3962
- new Set()[name](createSetLike(0));
3963
- try {
3964
- // late spec change, early WebKit ~ Safari 17.0 beta implementation does not pass it
3965
- // https://github.com/tc39/proposal-set-methods/pull/88
3966
- new Set()[name](createSetLike(-1));
3967
- return false;
3968
- } catch (error2) {
3969
- return true;
3970
- }
3971
- } catch (error) {
3972
- return false;
3973
- }
3974
- };
3975
-
3976
- var $$6 = _export;
3977
- var difference = setDifference;
3978
- var setMethodAcceptSetLike$6 = setMethodAcceptSetLike$7;
3979
-
3980
- // `Set.prototype.difference` method
3981
- // https://github.com/tc39/proposal-set-methods
3982
- $$6({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$6('difference') }, {
3983
- difference: difference
3984
- });
3985
-
3986
- var aSet$5 = aSet$7;
3987
- var SetHelpers$1 = setHelpers;
3988
- var size$3 = setSize;
3989
- var getSetRecord$5 = getSetRecord$7;
3990
- var iterateSet$1 = setIterate;
3991
- var iterateSimple$4 = iterateSimple$7;
3992
-
3993
- var Set$1 = SetHelpers$1.Set;
3994
- var add$2 = SetHelpers$1.add;
3995
- var has$3 = SetHelpers$1.has;
3996
-
3997
- // `Set.prototype.intersection` method
3998
- // https://github.com/tc39/proposal-set-methods
3999
- var setIntersection = function intersection(other) {
4000
- var O = aSet$5(this);
4001
- var otherRec = getSetRecord$5(other);
4002
- var result = new Set$1();
4003
-
4004
- if (size$3(O) > otherRec.size) {
4005
- iterateSimple$4(otherRec.getIterator(), function (e) {
4006
- if (has$3(O, e)) add$2(result, e);
4007
- });
4008
- } else {
4009
- iterateSet$1(O, function (e) {
4010
- if (otherRec.includes(e)) add$2(result, e);
4011
- });
4012
- }
4013
-
4014
- return result;
4015
- };
4016
-
4017
- var $$5 = _export;
4018
- var fails = fails$c;
4019
- var intersection = setIntersection;
4020
- var setMethodAcceptSetLike$5 = setMethodAcceptSetLike$7;
4021
-
4022
- var INCORRECT = !setMethodAcceptSetLike$5('intersection') || fails(function () {
4023
- // eslint-disable-next-line es/no-array-from, es/no-set -- testing
4024
- return String(Array.from(new Set([1, 2, 3]).intersection(new Set([3, 2])))) !== '3,2';
4025
- });
4026
-
4027
- // `Set.prototype.intersection` method
4028
- // https://github.com/tc39/proposal-set-methods
4029
- $$5({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
4030
- intersection: intersection
4031
- });
4032
-
4033
- var aSet$4 = aSet$7;
4034
- var has$2 = setHelpers.has;
4035
- var size$2 = setSize;
4036
- var getSetRecord$4 = getSetRecord$7;
4037
- var iterateSet = setIterate;
4038
- var iterateSimple$3 = iterateSimple$7;
4039
- var iteratorClose$1 = iteratorClose$6;
4040
-
4041
- // `Set.prototype.isDisjointFrom` method
4042
- // https://tc39.github.io/proposal-set-methods/#Set.prototype.isDisjointFrom
4043
- var setIsDisjointFrom = function isDisjointFrom(other) {
4044
- var O = aSet$4(this);
4045
- var otherRec = getSetRecord$4(other);
4046
- if (size$2(O) <= otherRec.size) return iterateSet(O, function (e) {
4047
- if (otherRec.includes(e)) return false;
4048
- }, true) !== false;
4049
- var iterator = otherRec.getIterator();
4050
- return iterateSimple$3(iterator, function (e) {
4051
- if (has$2(O, e)) return iteratorClose$1(iterator, 'normal', false);
4052
- }) !== false;
4053
- };
4054
-
4055
- var $$4 = _export;
4056
- var isDisjointFrom = setIsDisjointFrom;
4057
- var setMethodAcceptSetLike$4 = setMethodAcceptSetLike$7;
4058
-
4059
- // `Set.prototype.isDisjointFrom` method
4060
- // https://github.com/tc39/proposal-set-methods
4061
- $$4({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$4('isDisjointFrom') }, {
4062
- isDisjointFrom: isDisjointFrom
4063
- });
4064
-
4065
- var aSet$3 = aSet$7;
4066
- var size$1 = setSize;
4067
- var iterate = setIterate;
4068
- var getSetRecord$3 = getSetRecord$7;
4069
-
4070
- // `Set.prototype.isSubsetOf` method
4071
- // https://tc39.github.io/proposal-set-methods/#Set.prototype.isSubsetOf
4072
- var setIsSubsetOf = function isSubsetOf(other) {
4073
- var O = aSet$3(this);
4074
- var otherRec = getSetRecord$3(other);
4075
- if (size$1(O) > otherRec.size) return false;
4076
- return iterate(O, function (e) {
4077
- if (!otherRec.includes(e)) return false;
4078
- }, true) !== false;
4079
- };
4080
-
4081
- var $$3 = _export;
4082
- var isSubsetOf = setIsSubsetOf;
4083
- var setMethodAcceptSetLike$3 = setMethodAcceptSetLike$7;
4084
-
4085
- // `Set.prototype.isSubsetOf` method
4086
- // https://github.com/tc39/proposal-set-methods
4087
- $$3({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$3('isSubsetOf') }, {
4088
- isSubsetOf: isSubsetOf
4089
- });
4090
-
4091
- var aSet$2 = aSet$7;
4092
- var has$1 = setHelpers.has;
4093
- var size = setSize;
4094
- var getSetRecord$2 = getSetRecord$7;
4095
- var iterateSimple$2 = iterateSimple$7;
4096
- var iteratorClose = iteratorClose$6;
4097
-
4098
- // `Set.prototype.isSupersetOf` method
4099
- // https://tc39.github.io/proposal-set-methods/#Set.prototype.isSupersetOf
4100
- var setIsSupersetOf = function isSupersetOf(other) {
4101
- var O = aSet$2(this);
4102
- var otherRec = getSetRecord$2(other);
4103
- if (size(O) < otherRec.size) return false;
4104
- var iterator = otherRec.getIterator();
4105
- return iterateSimple$2(iterator, function (e) {
4106
- if (!has$1(O, e)) return iteratorClose(iterator, 'normal', false);
4107
- }) !== false;
4108
- };
4109
-
4110
- var $$2 = _export;
4111
- var isSupersetOf = setIsSupersetOf;
4112
- var setMethodAcceptSetLike$2 = setMethodAcceptSetLike$7;
4113
-
4114
- // `Set.prototype.isSupersetOf` method
4115
- // https://github.com/tc39/proposal-set-methods
4116
- $$2({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$2('isSupersetOf') }, {
4117
- isSupersetOf: isSupersetOf
4118
- });
4119
-
4120
- var aSet$1 = aSet$7;
4121
- var SetHelpers = setHelpers;
4122
- var clone$1 = setClone;
4123
- var getSetRecord$1 = getSetRecord$7;
4124
- var iterateSimple$1 = iterateSimple$7;
4125
-
4126
- var add$1 = SetHelpers.add;
4127
- var has = SetHelpers.has;
4128
- var remove = SetHelpers.remove;
4129
-
4130
- // `Set.prototype.symmetricDifference` method
4131
- // https://github.com/tc39/proposal-set-methods
4132
- var setSymmetricDifference = function symmetricDifference(other) {
4133
- var O = aSet$1(this);
4134
- var keysIter = getSetRecord$1(other).getIterator();
4135
- var result = clone$1(O);
4136
- iterateSimple$1(keysIter, function (e) {
4137
- if (has(O, e)) remove(result, e);
4138
- else add$1(result, e);
4139
- });
4140
- return result;
4141
- };
4142
-
4143
- var $$1 = _export;
4144
- var symmetricDifference = setSymmetricDifference;
4145
- var setMethodAcceptSetLike$1 = setMethodAcceptSetLike$7;
4146
-
4147
- // `Set.prototype.symmetricDifference` method
4148
- // https://github.com/tc39/proposal-set-methods
4149
- $$1({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike$1('symmetricDifference') }, {
4150
- symmetricDifference: symmetricDifference
4151
- });
4152
-
4153
- var aSet = aSet$7;
4154
- var add = setHelpers.add;
4155
- var clone = setClone;
4156
- var getSetRecord = getSetRecord$7;
4157
- var iterateSimple = iterateSimple$7;
4158
-
4159
- // `Set.prototype.union` method
4160
- // https://github.com/tc39/proposal-set-methods
4161
- var setUnion = function union(other) {
4162
- var O = aSet(this);
4163
- var keysIter = getSetRecord(other).getIterator();
4164
- var result = clone(O);
4165
- iterateSimple(keysIter, function (it) {
4166
- add(result, it);
4167
- });
4168
- return result;
4169
- };
4170
-
4171
- var $ = _export;
4172
- var union = setUnion;
4173
- var setMethodAcceptSetLike = setMethodAcceptSetLike$7;
4174
-
4175
- // `Set.prototype.union` method
4176
- // https://github.com/tc39/proposal-set-methods
4177
- $({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('union') }, {
4178
- union: union
4179
- });
4180
-
4181
2038
  function zohoCrmCreateTagsForModule(context) {
4182
2039
  return input => context.fetchJson(`/v8/settings/tags?${makeUrlSearchParams({
4183
2040
  module: input.module
@@ -4213,6 +2070,19 @@ function zohoCrmCreateTagsForModule(context) {
4213
2070
  };
4214
2071
  });
4215
2072
  }
2073
+ /**
2074
+ * Deletes a single tag by ID.
2075
+ *
2076
+ * Note: A tag cannot be deleted if it is associated with any configuration (e.g. Workflow Rules).
2077
+ *
2078
+ * https://www.zoho.com/crm/developer/docs/api/v8/delete-tag.html
2079
+ *
2080
+ * @param context
2081
+ * @returns
2082
+ */
2083
+ function zohoCrmDeleteTag(context) {
2084
+ return input => context.fetchJson(`/v8/settings/tags/${input.id}`, zohoCrmApiFetchJsonInput('DELETE')).then(x => x.tags);
2085
+ }
4216
2086
  /**
4217
2087
  * Returns the list of tags within a module.
4218
2088
  *
@@ -4554,4 +2424,4 @@ function zohoDateTimeString(date) {
4554
2424
  return isoDate.substring(0, isoDate.length - 5) + 'Z';
4555
2425
  }
4556
2426
 
4557
- export { DEFAULT_ZOHO_API_RATE_LIMIT, DEFAULT_ZOHO_API_RATE_LIMIT_RESET_PERIOD, DEFAULT_ZOHO_RATE_LIMITED_TOO_MANY_REQUETS_LOG_FUNCTION, MAX_ZOHO_CRM_SEARCH_MODULE_RECORDS_CRITERIA, MAX_ZOHO_RECRUIT_SEARCH_MODULE_RECORDS_CRITERIA, ZOHO_ACCOUNTS_INVALID_CLIENT_ERROR_CODE, ZOHO_ACCOUNTS_INVALID_CODE_ERROR_CODE, ZOHO_ACCOUNTS_US_API_URL, ZOHO_CRM_ADD_TAGS_TO_RECORDS_MAX_IDS_ALLOWED, ZOHO_CRM_ALREADY_ASSOCIATED_ERROR_CODE, ZOHO_CRM_ATTACHMENTS_MODULE, ZOHO_CRM_ATTACHMENT_MAX_SIZE, ZOHO_CRM_CONTACTS_MODULE, ZOHO_CRM_CRUD_FUNCTION_MAX_RECORDS_LIMIT, ZOHO_CRM_EMAILS_MODULE, ZOHO_CRM_LEADS_MODULE, ZOHO_CRM_NOTES_MODULE, ZOHO_CRM_RECORD_ATTACHMENT_METADATA_ATTACH_TYPE_RESUME, ZOHO_CRM_REMOVE_TAGS_FROM_RECORDS_MAX_IDS_ALLOWED, ZOHO_CRM_SERVICE_NAME, ZOHO_CRM_TAG_NAME_MAX_LENGTH, ZOHO_CRM_TASKS_MODULE, ZOHO_DATA_ARRAY_BLANK_ERROR_CODE, ZOHO_DUPLICATE_DATA_ERROR_CODE, ZOHO_ERROR_STATUS, ZOHO_FAILURE_ERROR_CODE, ZOHO_INTERNAL_ERROR_CODE, ZOHO_INVALID_AUTHORIZATION_ERROR_CODE, ZOHO_INVALID_DATA_ERROR_CODE, ZOHO_INVALID_QUERY_ERROR_CODE, ZOHO_INVALID_TOKEN_ERROR_CODE, ZOHO_MANDATORY_NOT_FOUND_ERROR_CODE, ZOHO_RATE_LIMIT_LIMIT_HEADER, ZOHO_RATE_LIMIT_REMAINING_HEADER, ZOHO_RATE_LIMIT_RESET_HEADER, ZOHO_RECRUIT_ADD_TAGS_TO_RECORDS_MAX_IDS_ALLOWED, ZOHO_RECRUIT_ALREADY_ASSOCIATED_ERROR_CODE, ZOHO_RECRUIT_ATTACHMENTS_MODULE, ZOHO_RECRUIT_ATTACHMENT_MAX_SIZE, ZOHO_RECRUIT_CANDIDATES_MODULE, ZOHO_RECRUIT_CRUD_FUNCTION_MAX_RECORDS_LIMIT, ZOHO_RECRUIT_EMAILS_MODULE, ZOHO_RECRUIT_JOB_OPENINGS_MODULE, ZOHO_RECRUIT_NOTES_MODULE, ZOHO_RECRUIT_RECORD_ATTACHMENT_METADATA_ATTACH_TYPE_RESUME, ZOHO_RECRUIT_REMOVE_TAGS_FROM_RECORDS_MAX_IDS_ALLOWED, ZOHO_RECRUIT_SERVICE_NAME, ZOHO_RECRUIT_TAG_NAME_MAX_LENGTH, ZOHO_SUCCESS_CODE, ZOHO_SUCCESS_STATUS, ZOHO_TOO_MANY_REQUESTS_ERROR_CODE, ZOHO_TOO_MANY_REQUESTS_HTTP_STATUS_CODE, ZohoAccountsAccessTokenError, ZohoAccountsAuthFailureError, ZohoCrmExecuteRestApiFunctionError, ZohoCrmRecordCrudDuplicateDataError, ZohoCrmRecordCrudError, ZohoCrmRecordCrudInvalidDataError, ZohoCrmRecordCrudMandatoryFieldNotFoundError, ZohoCrmRecordCrudNoMatchingRecordError, ZohoCrmRecordNoContentError, ZohoInternalError, ZohoInvalidAuthorizationError, ZohoInvalidQueryError, ZohoInvalidTokenError, ZohoRecruitExecuteRestApiFunctionError, ZohoRecruitRecordCrudDuplicateDataError, ZohoRecruitRecordCrudError, ZohoRecruitRecordCrudInvalidDataError, ZohoRecruitRecordCrudMandatoryFieldNotFoundError, ZohoRecruitRecordCrudNoMatchingRecordError, ZohoRecruitRecordNoContentError, ZohoServerError, ZohoServerFetchResponseDataArrayError, ZohoServerFetchResponseError, ZohoTooManyRequestsError, addTagsToRecords, assertRecordDataArrayResultHasContent, assertZohoCrmRecordDataArrayResultHasContent, assertZohoRecruitRecordDataArrayResultHasContent, associateCandidateRecordsWithJobOpenings, createNotes, createNotesForRecord, createTagsForModule, deleteAttachmentFromRecord, deleteNotes, deleteRecord, downloadAttachmentForRecord, emptyZohoPageResult, escapeZohoCrmFieldValueForCriteriaString, executeRestApiFunction, getAttachmentsForRecord, getAttachmentsForRecordPageFactory, getEmailsForRecord, getEmailsForRecordPageFactory, getNotesForRecord, getNotesForRecordPageFactory, getRecordById, getRecords, getRelatedRecordsFunctionFactory, getTagsForModule, getTagsForModulePageFactory, handleZohoAccountsErrorFetch, handleZohoCrmErrorFetch, handleZohoErrorFetchFactory, handleZohoRecruitErrorFetch, insertRecord, interceptZohoAccounts200StatusWithErrorResponse, interceptZohoCrm200StatusWithErrorResponse, interceptZohoErrorResponseFactory, interceptZohoRecruit200StatusWithErrorResponse, isZohoCrmValidUrl, isZohoRecruitValidUrl, isZohoServerErrorResponseDataArrayRef, logZohoAccountsErrorToConsole, logZohoCrmErrorToConsole, logZohoRecruitErrorToConsole, logZohoServerErrorFunction, parseZohoAccountsError, parseZohoAccountsServerErrorResponseData, parseZohoCrmError, parseZohoCrmServerErrorResponseData, parseZohoRecruitError, parseZohoRecruitServerErrorResponseData, parseZohoServerErrorResponseData, removeTagsFromRecords, safeZohoDateTimeString, searchAssociatedRecords, searchCandidateAssociatedJobOpeningRecords, searchCandidateAssociatedJobOpeningRecordsPageFactory, searchJobOpeningAssociatedCandidateRecords, searchJobOpeningAssociatedCandidateRecordsPageFactory, searchRecords, searchRecordsPageFactory, tryFindZohoServerErrorData, updateRecord, uploadAttachmentForRecord, upsertRecord, zohoAccessTokenStringFactory, zohoAccountsAccessToken, zohoAccountsApiFetchJsonInput, zohoAccountsConfigApiUrl, zohoAccountsFactory, zohoAccountsZohoAccessTokenFactory, zohoCrmAddTagsToRecords, zohoCrmAddTagsToRecordsRequestBody, zohoCrmApiFetchJsonInput, zohoCrmCatchZohoCrmChangeObjectLikeResponseError, zohoCrmChangeObjectLikeResponseSuccessAndErrorPairs, zohoCrmConfigApiUrl, zohoCrmCreateNotes, zohoCrmCreateNotesForRecord, zohoCrmCreateTagsForModule, zohoCrmDeleteAttachmentFromRecord, zohoCrmDeleteNotes, zohoCrmDeleteRecord, zohoCrmDownloadAttachmentForRecord, zohoCrmExecuteRestApiFunction, zohoCrmFactory, zohoCrmGetAttachmentsForRecord, zohoCrmGetAttachmentsForRecordPageFactory, zohoCrmGetEmailsForRecord, zohoCrmGetEmailsForRecordPageFactory, zohoCrmGetNotesForRecord, zohoCrmGetNotesForRecordPageFactory, zohoCrmGetRecordById, zohoCrmGetRecords, zohoCrmGetRelatedRecordsFunctionFactory, zohoCrmGetTagsForModule, zohoCrmGetTagsForModulePageFactory, zohoCrmInsertRecord, zohoCrmMultiRecordResult, zohoCrmRecordCrudError, zohoCrmRemoveTagsFromRecords, zohoCrmSearchRecords, zohoCrmSearchRecordsCriteriaEntryToCriteriaString, zohoCrmSearchRecordsCriteriaString, zohoCrmSearchRecordsCriteriaStringForTree, zohoCrmSearchRecordsPageFactory, zohoCrmUpdateRecord, zohoCrmUploadAttachmentForRecord, zohoCrmUpsertRecord, zohoCrmUrlSearchParams, zohoCrmUrlSearchParamsMinusIdAndModule, zohoCrmUrlSearchParamsMinusModule, zohoDateTimeString, zohoFetchPageFactory, zohoRateLimitHeaderDetails, zohoRateLimitedFetchHandler, zohoRecruitAddTagsToRecords, zohoRecruitApiFetchJsonInput, zohoRecruitAssociateCandidateRecordsWithJobOpenings, zohoRecruitChangeObjectLikeResponseSuccessAndErrorPairs, zohoRecruitConfigApiUrl, zohoRecruitCreateNotes, zohoRecruitCreateNotesForRecord, zohoRecruitCreateTagsForModule, zohoRecruitDeleteAttachmentFromRecord, zohoRecruitDeleteNotes, zohoRecruitDeleteRecord, zohoRecruitDownloadAttachmentForRecord, zohoRecruitExecuteRestApiFunction, zohoRecruitFactory, zohoRecruitGetAttachmentsForRecord, zohoRecruitGetAttachmentsForRecordPageFactory, zohoRecruitGetEmailsForRecord, zohoRecruitGetEmailsForRecordPageFactory, zohoRecruitGetNotesForRecord, zohoRecruitGetNotesForRecordPageFactory, zohoRecruitGetRecordById, zohoRecruitGetRecords, zohoRecruitGetRelatedRecordsFunctionFactory, zohoRecruitGetTagsForModule, zohoRecruitGetTagsForModulePageFactory, zohoRecruitInsertRecord, zohoRecruitMultiRecordResult, zohoRecruitRecordCrudError, zohoRecruitRemoveTagsFromRecords, zohoRecruitSearchAssociatedRecords, zohoRecruitSearchCandidateAssociatedJobOpeningRecords, zohoRecruitSearchCandidateAssociatedJobOpeningRecordsPageFactory, zohoRecruitSearchJobOpeningAssociatedCandidateRecords, zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory, zohoRecruitSearchRecords, zohoRecruitSearchRecordsCriteriaEntryToCriteriaString, zohoRecruitSearchRecordsCriteriaString, zohoRecruitSearchRecordsCriteriaStringForTree, zohoRecruitSearchRecordsPageFactory, zohoRecruitUpdateRecord, zohoRecruitUploadAttachmentForRecord, zohoRecruitUpsertRecord, zohoRecruitUrlSearchParams, zohoRecruitUrlSearchParamsMinusIdAndModule, zohoRecruitUrlSearchParamsMinusModule, zohoServerErrorData };
2427
+ export { DEFAULT_ZOHO_API_RATE_LIMIT, DEFAULT_ZOHO_API_RATE_LIMIT_RESET_PERIOD, DEFAULT_ZOHO_RATE_LIMITED_TOO_MANY_REQUETS_LOG_FUNCTION, MAX_ZOHO_CRM_SEARCH_MODULE_RECORDS_CRITERIA, MAX_ZOHO_RECRUIT_SEARCH_MODULE_RECORDS_CRITERIA, ZOHO_ACCOUNTS_INVALID_CLIENT_ERROR_CODE, ZOHO_ACCOUNTS_INVALID_CODE_ERROR_CODE, ZOHO_ACCOUNTS_US_API_URL, ZOHO_CRM_ADD_TAGS_TO_RECORDS_MAX_IDS_ALLOWED, ZOHO_CRM_ALREADY_ASSOCIATED_ERROR_CODE, ZOHO_CRM_ATTACHMENTS_MODULE, ZOHO_CRM_ATTACHMENT_MAX_SIZE, ZOHO_CRM_CONTACTS_MODULE, ZOHO_CRM_CRUD_FUNCTION_MAX_RECORDS_LIMIT, ZOHO_CRM_EMAILS_MODULE, ZOHO_CRM_LEADS_MODULE, ZOHO_CRM_NOTES_MODULE, ZOHO_CRM_RECORD_ATTACHMENT_METADATA_ATTACH_TYPE_RESUME, ZOHO_CRM_REMOVE_TAGS_FROM_RECORDS_MAX_IDS_ALLOWED, ZOHO_CRM_SERVICE_NAME, ZOHO_CRM_TAG_NAME_MAX_LENGTH, ZOHO_CRM_TASKS_MODULE, ZOHO_DATA_ARRAY_BLANK_ERROR_CODE, ZOHO_DUPLICATE_DATA_ERROR_CODE, ZOHO_ERROR_STATUS, ZOHO_FAILURE_ERROR_CODE, ZOHO_INTERNAL_ERROR_CODE, ZOHO_INVALID_AUTHORIZATION_ERROR_CODE, ZOHO_INVALID_DATA_ERROR_CODE, ZOHO_INVALID_QUERY_ERROR_CODE, ZOHO_INVALID_TOKEN_ERROR_CODE, ZOHO_MANDATORY_NOT_FOUND_ERROR_CODE, ZOHO_RATE_LIMIT_LIMIT_HEADER, ZOHO_RATE_LIMIT_REMAINING_HEADER, ZOHO_RATE_LIMIT_RESET_HEADER, ZOHO_RECRUIT_ADD_TAGS_TO_RECORDS_MAX_IDS_ALLOWED, ZOHO_RECRUIT_ALREADY_ASSOCIATED_ERROR_CODE, ZOHO_RECRUIT_ATTACHMENTS_MODULE, ZOHO_RECRUIT_ATTACHMENT_MAX_SIZE, ZOHO_RECRUIT_CANDIDATES_MODULE, ZOHO_RECRUIT_CRUD_FUNCTION_MAX_RECORDS_LIMIT, ZOHO_RECRUIT_EMAILS_MODULE, ZOHO_RECRUIT_JOB_OPENINGS_MODULE, ZOHO_RECRUIT_NOTES_MODULE, ZOHO_RECRUIT_RECORD_ATTACHMENT_METADATA_ATTACH_TYPE_RESUME, ZOHO_RECRUIT_REMOVE_TAGS_FROM_RECORDS_MAX_IDS_ALLOWED, ZOHO_RECRUIT_SERVICE_NAME, ZOHO_RECRUIT_TAG_NAME_MAX_LENGTH, ZOHO_SUCCESS_CODE, ZOHO_SUCCESS_STATUS, ZOHO_TOO_MANY_REQUESTS_ERROR_CODE, ZOHO_TOO_MANY_REQUESTS_HTTP_STATUS_CODE, ZohoAccountsAccessTokenError, ZohoAccountsAuthFailureError, ZohoCrmExecuteRestApiFunctionError, ZohoCrmRecordCrudDuplicateDataError, ZohoCrmRecordCrudError, ZohoCrmRecordCrudInvalidDataError, ZohoCrmRecordCrudMandatoryFieldNotFoundError, ZohoCrmRecordCrudNoMatchingRecordError, ZohoCrmRecordNoContentError, ZohoInternalError, ZohoInvalidAuthorizationError, ZohoInvalidQueryError, ZohoInvalidTokenError, ZohoRecruitExecuteRestApiFunctionError, ZohoRecruitRecordCrudDuplicateDataError, ZohoRecruitRecordCrudError, ZohoRecruitRecordCrudInvalidDataError, ZohoRecruitRecordCrudMandatoryFieldNotFoundError, ZohoRecruitRecordCrudNoMatchingRecordError, ZohoRecruitRecordNoContentError, ZohoServerError, ZohoServerFetchResponseDataArrayError, ZohoServerFetchResponseError, ZohoTooManyRequestsError, addTagsToRecords, assertRecordDataArrayResultHasContent, assertZohoCrmRecordDataArrayResultHasContent, assertZohoRecruitRecordDataArrayResultHasContent, createNotes, createNotesForRecord, createTagsForModule, deleteAttachmentFromRecord, deleteNotes, deleteRecord, downloadAttachmentForRecord, emptyZohoPageResult, escapeZohoCrmFieldValueForCriteriaString, executeRestApiFunction, getAttachmentsForRecord, getAttachmentsForRecordPageFactory, getEmailsForRecord, getEmailsForRecordPageFactory, getNotesForRecord, getNotesForRecordPageFactory, getRecordById, getRecords, getRelatedRecordsFunctionFactory, getTagsForModule, getTagsForModulePageFactory, handleZohoAccountsErrorFetch, handleZohoCrmErrorFetch, handleZohoErrorFetchFactory, handleZohoRecruitErrorFetch, insertRecord, interceptZohoAccounts200StatusWithErrorResponse, interceptZohoCrm200StatusWithErrorResponse, interceptZohoErrorResponseFactory, interceptZohoRecruit200StatusWithErrorResponse, isZohoCrmValidUrl, isZohoRecruitValidUrl, isZohoServerErrorResponseDataArrayRef, logZohoAccountsErrorToConsole, logZohoCrmErrorToConsole, logZohoRecruitErrorToConsole, logZohoServerErrorFunction, parseZohoAccountsError, parseZohoAccountsServerErrorResponseData, parseZohoCrmError, parseZohoCrmServerErrorResponseData, parseZohoRecruitError, parseZohoRecruitServerErrorResponseData, parseZohoServerErrorResponseData, removeTagsFromRecords, safeZohoDateTimeString, searchRecords, searchRecordsPageFactory, tryFindZohoServerErrorData, updateRecord, uploadAttachmentForRecord, upsertRecord, zohoAccessTokenStringFactory, zohoAccountsAccessToken, zohoAccountsApiFetchJsonInput, zohoAccountsConfigApiUrl, zohoAccountsFactory, zohoAccountsZohoAccessTokenFactory, zohoCrmAddTagsToRecords, zohoCrmAddTagsToRecordsRequestBody, zohoCrmApiFetchJsonInput, zohoCrmCatchZohoCrmChangeObjectLikeResponseError, zohoCrmChangeObjectLikeResponseSuccessAndErrorPairs, zohoCrmConfigApiUrl, zohoCrmCreateNotes, zohoCrmCreateNotesForRecord, zohoCrmCreateTagsForModule, zohoCrmDeleteAttachmentFromRecord, zohoCrmDeleteNotes, zohoCrmDeleteRecord, zohoCrmDeleteTag, zohoCrmDownloadAttachmentForRecord, zohoCrmExecuteRestApiFunction, zohoCrmFactory, zohoCrmGetAttachmentsForRecord, zohoCrmGetAttachmentsForRecordPageFactory, zohoCrmGetEmailsForRecord, zohoCrmGetEmailsForRecordPageFactory, zohoCrmGetNotesForRecord, zohoCrmGetNotesForRecordPageFactory, zohoCrmGetRecordById, zohoCrmGetRecords, zohoCrmGetRelatedRecordsFunctionFactory, zohoCrmGetTagsForModule, zohoCrmGetTagsForModulePageFactory, zohoCrmInsertRecord, zohoCrmMultiRecordResult, zohoCrmRecordCrudError, zohoCrmRemoveTagsFromRecords, zohoCrmSearchRecords, zohoCrmSearchRecordsCriteriaEntryToCriteriaString, zohoCrmSearchRecordsCriteriaString, zohoCrmSearchRecordsCriteriaStringForTree, zohoCrmSearchRecordsPageFactory, zohoCrmUpdateRecord, zohoCrmUploadAttachmentForRecord, zohoCrmUpsertRecord, zohoCrmUrlSearchParams, zohoCrmUrlSearchParamsMinusIdAndModule, zohoCrmUrlSearchParamsMinusModule, zohoDateTimeString, zohoFetchPageFactory, zohoRateLimitHeaderDetails, zohoRateLimitedFetchHandler, zohoRecruitAddTagsToRecords, zohoRecruitApiFetchJsonInput, zohoRecruitAssociateCandidateRecordsWithJobOpenings, zohoRecruitChangeObjectLikeResponseSuccessAndErrorPairs, zohoRecruitConfigApiUrl, zohoRecruitCreateNotes, zohoRecruitCreateNotesForRecord, zohoRecruitCreateTagsForModule, zohoRecruitDeleteAttachmentFromRecord, zohoRecruitDeleteNotes, zohoRecruitDeleteRecord, zohoRecruitDownloadAttachmentForRecord, zohoRecruitExecuteRestApiFunction, zohoRecruitFactory, zohoRecruitGetAttachmentsForRecord, zohoRecruitGetAttachmentsForRecordPageFactory, zohoRecruitGetEmailsForRecord, zohoRecruitGetEmailsForRecordPageFactory, zohoRecruitGetNotesForRecord, zohoRecruitGetNotesForRecordPageFactory, zohoRecruitGetRecordById, zohoRecruitGetRecords, zohoRecruitGetRelatedRecordsFunctionFactory, zohoRecruitGetTagsForModule, zohoRecruitGetTagsForModulePageFactory, zohoRecruitInsertRecord, zohoRecruitMultiRecordResult, zohoRecruitRecordCrudError, zohoRecruitRemoveTagsFromRecords, zohoRecruitSearchAssociatedRecords, zohoRecruitSearchCandidateAssociatedJobOpeningRecords, zohoRecruitSearchCandidateAssociatedJobOpeningRecordsPageFactory, zohoRecruitSearchJobOpeningAssociatedCandidateRecords, zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory, zohoRecruitSearchRecords, zohoRecruitSearchRecordsCriteriaEntryToCriteriaString, zohoRecruitSearchRecordsCriteriaString, zohoRecruitSearchRecordsCriteriaStringForTree, zohoRecruitSearchRecordsPageFactory, zohoRecruitUpdateRecord, zohoRecruitUploadAttachmentForRecord, zohoRecruitUpsertRecord, zohoRecruitUrlSearchParams, zohoRecruitUrlSearchParamsMinusIdAndModule, zohoRecruitUrlSearchParamsMinusModule, zohoServerErrorData };