ntk-cms-api 1.2.127 → 1.2.129
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.
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
return CmsStore;
|
|
87
87
|
}());
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
/******************************************************************************
|
|
90
90
|
Copyright (c) Microsoft Corporation.
|
|
91
91
|
|
|
92
92
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
function step(op) {
|
|
185
185
|
if (f)
|
|
186
186
|
throw new TypeError("Generator is already executing.");
|
|
187
|
-
while (_)
|
|
187
|
+
while (g && (g = 0, op[0] && (_ = 0)), _)
|
|
188
188
|
try {
|
|
189
189
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
|
|
190
190
|
return t;
|
|
@@ -248,7 +248,11 @@
|
|
|
248
248
|
var __createBinding = Object.create ? (function (o, m, k, k2) {
|
|
249
249
|
if (k2 === undefined)
|
|
250
250
|
k2 = k;
|
|
251
|
-
Object.
|
|
251
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
252
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
253
|
+
desc = { enumerable: true, get: function () { return m[k]; } };
|
|
254
|
+
}
|
|
255
|
+
Object.defineProperty(o, k2, desc);
|
|
252
256
|
}) : (function (o, m, k, k2) {
|
|
253
257
|
if (k2 === undefined)
|
|
254
258
|
k2 = k;
|
|
@@ -312,10 +316,16 @@
|
|
|
312
316
|
r[k] = a[j];
|
|
313
317
|
return r;
|
|
314
318
|
}
|
|
315
|
-
function __spreadArray(to, from) {
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
+
function __spreadArray(to, from, pack) {
|
|
320
|
+
if (pack || arguments.length === 2)
|
|
321
|
+
for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
322
|
+
if (ar || !(i in from)) {
|
|
323
|
+
if (!ar)
|
|
324
|
+
ar = Array.prototype.slice.call(from, 0, i);
|
|
325
|
+
ar[i] = from[i];
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
319
329
|
}
|
|
320
330
|
function __await(v) {
|
|
321
331
|
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
@@ -396,6 +406,11 @@
|
|
|
396
406
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
397
407
|
throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
398
408
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
409
|
+
}
|
|
410
|
+
function __classPrivateFieldIn(state, receiver) {
|
|
411
|
+
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
|
|
412
|
+
throw new TypeError("Cannot use 'in' operator on non-object");
|
|
413
|
+
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
399
414
|
}
|
|
400
415
|
|
|
401
416
|
//@@tag-Version-2201011
|