asap-feed-beta 12.3.4 → 12.3.6

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.
@@ -71,6 +71,51 @@
71
71
  return function (target, key) { decorator(target, key, paramIndex); }
72
72
  }
73
73
 
74
+ function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
75
+ function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
76
+ var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
77
+ var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
78
+ var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
79
+ var _, done = false;
80
+ for (var i = decorators.length - 1; i >= 0; i--) {
81
+ var context = {};
82
+ for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
83
+ for (var p in contextIn.access) context.access[p] = contextIn.access[p];
84
+ context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
85
+ var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
86
+ if (kind === "accessor") {
87
+ if (result === void 0) continue;
88
+ if (result === null || typeof result !== "object") throw new TypeError("Object expected");
89
+ if (_ = accept(result.get)) descriptor.get = _;
90
+ if (_ = accept(result.set)) descriptor.set = _;
91
+ if (_ = accept(result.init)) initializers.push(_);
92
+ }
93
+ else if (_ = accept(result)) {
94
+ if (kind === "field") initializers.push(_);
95
+ else descriptor[key] = _;
96
+ }
97
+ }
98
+ if (target) Object.defineProperty(target, contextIn.name, descriptor);
99
+ done = true;
100
+ };
101
+
102
+ function __runInitializers(thisArg, initializers, value) {
103
+ var useValue = arguments.length > 2;
104
+ for (var i = 0; i < initializers.length; i++) {
105
+ value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
106
+ }
107
+ return useValue ? value : void 0;
108
+ };
109
+
110
+ function __propKey(x) {
111
+ return typeof x === "symbol" ? x : "".concat(x);
112
+ };
113
+
114
+ function __setFunctionName(f, name, prefix) {
115
+ if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
116
+ return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
117
+ };
118
+
74
119
  function __metadata(metadataKey, metadataValue) {
75
120
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
76
121
  }
@@ -203,7 +248,7 @@
203
248
  function __asyncDelegator(o) {
204
249
  var i, p;
205
250
  return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
206
- function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
251
+ function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }
207
252
  }
208
253
 
209
254
  function __asyncValues(o) {
@@ -1290,6 +1335,8 @@
1290
1335
  /** @type {?} */
1291
1336
  FeedModel.prototype.selected_users;
1292
1337
  /** @type {?} */
1338
+ FeedModel.prototype.selected_users_data;
1339
+ /** @type {?} */
1293
1340
  FeedModel.prototype.newfeed;
1294
1341
  }
1295
1342
 
@@ -5603,6 +5650,12 @@
5603
5650
  for (var id in this.selectedUsers) {
5604
5651
  if (this.selectedUsers[id]) {
5605
5652
  data.selected_users.push(id);
5653
+ data.selected_users_data.push({
5654
+ id: id,
5655
+ name: this.selectedUsers[id].name,
5656
+ picture: this.selectedUsers[id].picture,
5657
+ email: this.selectedUsers[id].email
5658
+ });
5606
5659
  }
5607
5660
  }
5608
5661
  if (this.tmpFileArray || this.tmpFileArray.length > 0) {