@contentstack/marketplace-sdk 1.2.8 → 1.3.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 (27) hide show
  1. package/CHANGELOG.md +11 -2
  2. package/dist/es-modules/entity.js +78 -74
  3. package/dist/es-modules/marketplace/app/hosting/deployment.js +71 -70
  4. package/dist/es-modules/marketplace/app/hosting/index.js +85 -84
  5. package/dist/es-modules/marketplace/app/index.js +84 -84
  6. package/dist/es-modules/marketplace/app/oauth/index.js +43 -42
  7. package/dist/es-modules/marketplace/apprequest/index.js +43 -42
  8. package/dist/es-modules/marketplace/authorization/index.js +43 -42
  9. package/dist/es-modules/marketplace/index.js +91 -22
  10. package/dist/es-modules/marketplace/installation/index.js +129 -126
  11. package/dist/es-modules/marketplace/installation/webhooks/index.js +42 -42
  12. package/dist/es5/entity.js +78 -74
  13. package/dist/es5/marketplace/app/hosting/deployment.js +71 -70
  14. package/dist/es5/marketplace/app/hosting/index.js +85 -84
  15. package/dist/es5/marketplace/app/index.js +84 -84
  16. package/dist/es5/marketplace/app/oauth/index.js +43 -42
  17. package/dist/es5/marketplace/apprequest/index.js +43 -42
  18. package/dist/es5/marketplace/authorization/index.js +43 -42
  19. package/dist/es5/marketplace/index.js +91 -22
  20. package/dist/es5/marketplace/installation/index.js +129 -126
  21. package/dist/es5/marketplace/installation/webhooks/index.js +42 -42
  22. package/dist/nativescript/contentstack-marketplace.js +1 -1
  23. package/dist/node/contentstack-marketplace.js +1 -1
  24. package/dist/react-native/contentstack-marketplace.js +1 -1
  25. package/dist/web/contentstack-marketplace.js +1 -1
  26. package/package.json +14 -13
  27. package/types/marketplace/index.d.ts +1 -0
@@ -26,8 +26,8 @@ var create = exports.create = function create(_ref) {
26
26
  params = _ref.params;
27
27
  return /*#__PURE__*/function () {
28
28
  var _ref2 = (0, _asyncToGenerator3["default"])(/*#__PURE__*/_regenerator2["default"].mark(function _callee(data, param) {
29
- var headers, response;
30
- return _regenerator2["default"].wrap(function _callee$(_context) {
29
+ var headers, response, _t;
30
+ return _regenerator2["default"].wrap(function (_context) {
31
31
  while (1) switch (_context.prev = _context.next) {
32
32
  case 0:
33
33
  headers = {
@@ -35,29 +35,29 @@ var create = exports.create = function create(_ref) {
35
35
  params: _objectSpread({}, (0, _cloneDeep2["default"])(param))
36
36
  } || {};
37
37
  _context.prev = 1;
38
- _context.next = 4;
38
+ _context.next = 2;
39
39
  return http.post(this.urlPath, data, headers);
40
- case 4:
40
+ case 2:
41
41
  response = _context.sent;
42
42
  if (!response.data) {
43
- _context.next = 9;
43
+ _context.next = 3;
44
44
  break;
45
45
  }
46
46
  return _context.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid)));
47
- case 9:
47
+ case 3:
48
48
  throw (0, _contentstackError2["default"])(response);
49
- case 10:
50
- _context.next = 15;
49
+ case 4:
50
+ _context.next = 6;
51
51
  break;
52
- case 12:
53
- _context.prev = 12;
54
- _context.t0 = _context["catch"](1);
55
- throw (0, _contentstackError2["default"])(_context.t0);
56
- case 15:
52
+ case 5:
53
+ _context.prev = 5;
54
+ _t = _context["catch"](1);
55
+ throw (0, _contentstackError2["default"])(_t);
56
+ case 6:
57
57
  case "end":
58
58
  return _context.stop();
59
59
  }
60
- }, _callee, this, [[1, 12]]);
60
+ }, _callee, this, [[1, 5]]);
61
61
  }));
62
62
  return function (_x, _x2) {
63
63
  return _ref2.apply(this, arguments);
@@ -71,8 +71,9 @@ var update = exports.update = function update(http, type) {
71
71
  updateData,
72
72
  json,
73
73
  response,
74
- _args2 = arguments;
75
- return _regenerator2["default"].wrap(function _callee2$(_context2) {
74
+ _args2 = arguments,
75
+ _t2;
76
+ return _regenerator2["default"].wrap(function (_context2) {
76
77
  while (1) switch (_context2.prev = _context2.next) {
77
78
  case 0:
78
79
  param = _args2.length > 0 && _args2[0] !== undefined ? _args2[0] : {};
@@ -94,33 +95,33 @@ var update = exports.update = function update(http, type) {
94
95
  } else {
95
96
  updateData = json;
96
97
  }
97
- _context2.prev = 15;
98
- _context2.next = 18;
98
+ _context2.prev = 1;
99
+ _context2.next = 2;
99
100
  return http.put(this.urlPath, updateData, {
100
101
  headers: _objectSpread(_objectSpread({}, (0, _cloneDeep2["default"])(this.stackHeaders)), (0, _cloneDeep2["default"])(params)),
101
102
  params: _objectSpread({}, (0, _cloneDeep2["default"])(param))
102
103
  });
103
- case 18:
104
+ case 2:
104
105
  response = _context2.sent;
105
106
  if (!response.data) {
106
- _context2.next = 23;
107
+ _context2.next = 3;
107
108
  break;
108
109
  }
109
110
  return _context2.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid)));
110
- case 23:
111
+ case 3:
111
112
  throw (0, _contentstackError2["default"])(response);
112
- case 24:
113
- _context2.next = 29;
113
+ case 4:
114
+ _context2.next = 6;
114
115
  break;
115
- case 26:
116
- _context2.prev = 26;
117
- _context2.t0 = _context2["catch"](15);
118
- throw (0, _contentstackError2["default"])(_context2.t0);
119
- case 29:
116
+ case 5:
117
+ _context2.prev = 5;
118
+ _t2 = _context2["catch"](1);
119
+ throw (0, _contentstackError2["default"])(_t2);
120
+ case 6:
120
121
  case "end":
121
122
  return _context2.stop();
122
123
  }
123
- }, _callee2, this, [[15, 26]]);
124
+ }, _callee2, this, [[1, 5]]);
124
125
  }));
125
126
  };
126
127
  var deleteEntity = exports.deleteEntity = function deleteEntity(http) {
@@ -130,8 +131,9 @@ var deleteEntity = exports.deleteEntity = function deleteEntity(http) {
130
131
  var param,
131
132
  headers,
132
133
  response,
133
- _args3 = arguments;
134
- return _regenerator2["default"].wrap(function _callee3$(_context3) {
134
+ _args3 = arguments,
135
+ _t3;
136
+ return _regenerator2["default"].wrap(function (_context3) {
135
137
  while (1) switch (_context3.prev = _context3.next) {
136
138
  case 0:
137
139
  param = _args3.length > 0 && _args3[0] !== undefined ? _args3[0] : {};
@@ -143,38 +145,38 @@ var deleteEntity = exports.deleteEntity = function deleteEntity(http) {
143
145
  if (force === true) {
144
146
  headers.params.force = true;
145
147
  }
146
- _context3.next = 6;
148
+ _context3.next = 2;
147
149
  return http["delete"](this.urlPath, headers);
148
- case 6:
150
+ case 2:
149
151
  response = _context3.sent;
150
152
  if (!response.data) {
151
- _context3.next = 11;
153
+ _context3.next = 3;
152
154
  break;
153
155
  }
154
156
  return _context3.abrupt("return", response.data);
155
- case 11:
157
+ case 3:
156
158
  if (!(response.status >= 200 && response.status < 300)) {
157
- _context3.next = 15;
159
+ _context3.next = 4;
158
160
  break;
159
161
  }
160
162
  return _context3.abrupt("return", {
161
163
  status: response.status,
162
164
  statusText: response.statusText
163
165
  });
164
- case 15:
166
+ case 4:
165
167
  throw (0, _contentstackError2["default"])(response);
166
- case 16:
167
- _context3.next = 21;
168
+ case 5:
169
+ _context3.next = 7;
168
170
  break;
169
- case 18:
170
- _context3.prev = 18;
171
- _context3.t0 = _context3["catch"](1);
172
- throw (0, _contentstackError2["default"])(_context3.t0);
173
- case 21:
171
+ case 6:
172
+ _context3.prev = 6;
173
+ _t3 = _context3["catch"](1);
174
+ throw (0, _contentstackError2["default"])(_t3);
175
+ case 7:
174
176
  case "end":
175
177
  return _context3.stop();
176
178
  }
177
- }, _callee3, this, [[1, 18]]);
179
+ }, _callee3, this, [[1, 6]]);
178
180
  }));
179
181
  };
180
182
  var fetch = exports.fetch = function fetch(http, type) {
@@ -183,8 +185,9 @@ var fetch = exports.fetch = function fetch(http, type) {
183
185
  var param,
184
186
  headers,
185
187
  response,
186
- _args4 = arguments;
187
- return _regenerator2["default"].wrap(function _callee4$(_context4) {
188
+ _args4 = arguments,
189
+ _t4;
190
+ return _regenerator2["default"].wrap(function (_context4) {
188
191
  while (1) switch (_context4.prev = _context4.next) {
189
192
  case 0:
190
193
  param = _args4.length > 0 && _args4[0] !== undefined ? _args4[0] : {};
@@ -196,12 +199,12 @@ var fetch = exports.fetch = function fetch(http, type) {
196
199
  if (this.organization_uid) {
197
200
  headers.headers.organization_uid = this.organization_uid;
198
201
  }
199
- _context4.next = 6;
202
+ _context4.next = 2;
200
203
  return http.get(this.urlPath, headers);
201
- case 6:
204
+ case 2:
202
205
  response = _context4.sent;
203
206
  if (!response.data) {
204
- _context4.next = 12;
207
+ _context4.next = 3;
205
208
  break;
206
209
  }
207
210
  if (type === 'entry') {
@@ -209,20 +212,20 @@ var fetch = exports.fetch = function fetch(http, type) {
209
212
  response.data[type]['schema'] = response.data['schema'];
210
213
  }
211
214
  return _context4.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid)));
212
- case 12:
215
+ case 3:
213
216
  throw (0, _contentstackError2["default"])(response);
214
- case 13:
215
- _context4.next = 18;
217
+ case 4:
218
+ _context4.next = 6;
216
219
  break;
217
- case 15:
218
- _context4.prev = 15;
219
- _context4.t0 = _context4["catch"](1);
220
- throw (0, _contentstackError2["default"])(_context4.t0);
221
- case 18:
220
+ case 5:
221
+ _context4.prev = 5;
222
+ _t4 = _context4["catch"](1);
223
+ throw (0, _contentstackError2["default"])(_t4);
224
+ case 6:
222
225
  case "end":
223
226
  return _context4.stop();
224
227
  }
225
- }, _callee4, this, [[1, 15]]);
228
+ }, _callee4, this, [[1, 5]]);
226
229
  }));
227
230
  };
228
231
  var fetchAll = exports.fetchAll = function fetchAll(http, wrapperCollection) {
@@ -231,8 +234,9 @@ var fetchAll = exports.fetchAll = function fetchAll(http, wrapperCollection) {
231
234
  var param,
232
235
  headers,
233
236
  response,
234
- _args5 = arguments;
235
- return _regenerator2["default"].wrap(function _callee5$(_context5) {
237
+ _args5 = arguments,
238
+ _t5;
239
+ return _regenerator2["default"].wrap(function (_context5) {
236
240
  while (1) switch (_context5.prev = _context5.next) {
237
241
  case 0:
238
242
  param = _args5.length > 0 && _args5[0] !== undefined ? _args5[0] : {};
@@ -240,30 +244,30 @@ var fetchAll = exports.fetchAll = function fetchAll(http, wrapperCollection) {
240
244
  headers: _objectSpread(_objectSpread({}, (0, _cloneDeep2["default"])(this.stackHeaders)), (0, _cloneDeep2["default"])(params)),
241
245
  params: _objectSpread({}, (0, _cloneDeep2["default"])(param))
242
246
  } || {};
243
- _context5.prev = 2;
244
- _context5.next = 5;
247
+ _context5.prev = 1;
248
+ _context5.next = 2;
245
249
  return http.get(this.urlPath, headers);
246
- case 5:
250
+ case 2:
247
251
  response = _context5.sent;
248
252
  if (!response.data) {
249
- _context5.next = 10;
253
+ _context5.next = 3;
250
254
  break;
251
255
  }
252
256
  return _context5.abrupt("return", new _contentstackCollection2["default"](response, http, this.stackHeaders, wrapperCollection));
253
- case 10:
257
+ case 3:
254
258
  throw (0, _contentstackError2["default"])(response);
255
- case 11:
256
- _context5.next = 16;
259
+ case 4:
260
+ _context5.next = 6;
257
261
  break;
258
- case 13:
259
- _context5.prev = 13;
260
- _context5.t0 = _context5["catch"](2);
261
- throw (0, _contentstackError2["default"])(_context5.t0);
262
- case 16:
262
+ case 5:
263
+ _context5.prev = 5;
264
+ _t5 = _context5["catch"](1);
265
+ throw (0, _contentstackError2["default"])(_t5);
266
+ case 6:
263
267
  case "end":
264
268
  return _context5.stop();
265
269
  }
266
- }, _callee5, this, [[2, 13]]);
270
+ }, _callee5, this, [[1, 5]]);
267
271
  }));
268
272
  };
269
273
  function parseData(response, stackHeaders, contentTypeUID) {
@@ -59,20 +59,20 @@ function Deployment(http, data, params) {
59
59
  * .then((data) => {})
60
60
  */
61
61
  this.fetch = /*#__PURE__*/(0, _asyncToGenerator3["default"])(/*#__PURE__*/_regenerator2["default"].mark(function _callee() {
62
- var headers, response, content;
63
- return _regenerator2["default"].wrap(function _callee$(_context) {
62
+ var headers, response, content, _t;
63
+ return _regenerator2["default"].wrap(function (_context) {
64
64
  while (1) switch (_context.prev = _context.next) {
65
65
  case 0:
66
66
  _context.prev = 0;
67
67
  headers = {
68
68
  headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.params))
69
69
  };
70
- _context.next = 4;
70
+ _context.next = 1;
71
71
  return http.get("".concat(_this.urlPath), headers);
72
- case 4:
72
+ case 1:
73
73
  response = _context.sent;
74
74
  if (!response.data) {
75
- _context.next = 10;
75
+ _context.next = 2;
76
76
  break;
77
77
  }
78
78
  content = response.data.data;
@@ -80,20 +80,20 @@ function Deployment(http, data, params) {
80
80
  data: content,
81
81
  app_uid: data.app_uid
82
82
  }, _this.params));
83
- case 10:
83
+ case 2:
84
84
  throw (0, _contentstackError2["default"])(response);
85
- case 11:
86
- _context.next = 16;
85
+ case 3:
86
+ _context.next = 5;
87
87
  break;
88
- case 13:
89
- _context.prev = 13;
90
- _context.t0 = _context["catch"](0);
91
- throw (0, _contentstackError2["default"])(_context.t0);
92
- case 16:
88
+ case 4:
89
+ _context.prev = 4;
90
+ _t = _context["catch"](0);
91
+ throw (0, _contentstackError2["default"])(_t);
92
+ case 5:
93
93
  case "end":
94
94
  return _context.stop();
95
95
  }
96
- }, _callee, null, [[0, 13]]);
96
+ }, _callee, null, [[0, 4]]);
97
97
  }));
98
98
 
99
99
  /**
@@ -109,37 +109,37 @@ function Deployment(http, data, params) {
109
109
  * .then((data) => {})
110
110
  */
111
111
  this.logs = /*#__PURE__*/(0, _asyncToGenerator3["default"])(/*#__PURE__*/_regenerator2["default"].mark(function _callee2() {
112
- var headers, response;
113
- return _regenerator2["default"].wrap(function _callee2$(_context2) {
112
+ var headers, response, _t2;
113
+ return _regenerator2["default"].wrap(function (_context2) {
114
114
  while (1) switch (_context2.prev = _context2.next) {
115
115
  case 0:
116
116
  _context2.prev = 0;
117
117
  headers = {
118
118
  headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.params))
119
119
  };
120
- _context2.next = 4;
120
+ _context2.next = 1;
121
121
  return http.get("".concat(_this.urlPath, "/logs"), headers);
122
- case 4:
122
+ case 1:
123
123
  response = _context2.sent;
124
124
  if (!response.data) {
125
- _context2.next = 9;
125
+ _context2.next = 2;
126
126
  break;
127
127
  }
128
128
  return _context2.abrupt("return", response.data.data);
129
- case 9:
129
+ case 2:
130
130
  throw (0, _contentstackError2["default"])(response);
131
- case 10:
132
- _context2.next = 15;
131
+ case 3:
132
+ _context2.next = 5;
133
133
  break;
134
- case 12:
135
- _context2.prev = 12;
136
- _context2.t0 = _context2["catch"](0);
137
- throw (0, _contentstackError2["default"])(_context2.t0);
138
- case 15:
134
+ case 4:
135
+ _context2.prev = 4;
136
+ _t2 = _context2["catch"](0);
137
+ throw (0, _contentstackError2["default"])(_t2);
138
+ case 5:
139
139
  case "end":
140
140
  return _context2.stop();
141
141
  }
142
- }, _callee2, null, [[0, 12]]);
142
+ }, _callee2, null, [[0, 4]]);
143
143
  }));
144
144
 
145
145
  /**
@@ -155,37 +155,37 @@ function Deployment(http, data, params) {
155
155
  * .then((data) => {})
156
156
  */
157
157
  this.signedDownloadUrl = /*#__PURE__*/(0, _asyncToGenerator3["default"])(/*#__PURE__*/_regenerator2["default"].mark(function _callee3() {
158
- var headers, response;
159
- return _regenerator2["default"].wrap(function _callee3$(_context3) {
158
+ var headers, response, _t3;
159
+ return _regenerator2["default"].wrap(function (_context3) {
160
160
  while (1) switch (_context3.prev = _context3.next) {
161
161
  case 0:
162
162
  _context3.prev = 0;
163
163
  headers = {
164
164
  headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.params))
165
165
  };
166
- _context3.next = 4;
166
+ _context3.next = 1;
167
167
  return http.post("".concat(_this.urlPath, "/signedDownloadUrl"), {}, headers);
168
- case 4:
168
+ case 1:
169
169
  response = _context3.sent;
170
170
  if (!response.data) {
171
- _context3.next = 9;
171
+ _context3.next = 2;
172
172
  break;
173
173
  }
174
174
  return _context3.abrupt("return", response.data.data);
175
- case 9:
175
+ case 2:
176
176
  throw (0, _contentstackError2["default"])(response);
177
- case 10:
178
- _context3.next = 15;
177
+ case 3:
178
+ _context3.next = 5;
179
179
  break;
180
- case 12:
181
- _context3.prev = 12;
182
- _context3.t0 = _context3["catch"](0);
183
- throw (0, _contentstackError2["default"])(_context3.t0);
184
- case 15:
180
+ case 4:
181
+ _context3.prev = 4;
182
+ _t3 = _context3["catch"](0);
183
+ throw (0, _contentstackError2["default"])(_t3);
184
+ case 5:
185
185
  case "end":
186
186
  return _context3.stop();
187
187
  }
188
- }, _callee3, null, [[0, 12]]);
188
+ }, _callee3, null, [[0, 4]]);
189
189
  }));
190
190
  } else {
191
191
  /**
@@ -202,8 +202,8 @@ function Deployment(http, data, params) {
202
202
  */
203
203
  this.create = /*#__PURE__*/function () {
204
204
  var _ref5 = (0, _asyncToGenerator3["default"])(/*#__PURE__*/_regenerator2["default"].mark(function _callee4(_ref4) {
205
- var uploadUid, fileType, withAdvancedOptions, headers, response, content;
206
- return _regenerator2["default"].wrap(function _callee4$(_context4) {
205
+ var uploadUid, fileType, withAdvancedOptions, headers, response, content, _t4;
206
+ return _regenerator2["default"].wrap(function (_context4) {
207
207
  while (1) switch (_context4.prev = _context4.next) {
208
208
  case 0:
209
209
  uploadUid = _ref4.uploadUid, fileType = _ref4.fileType, withAdvancedOptions = _ref4.withAdvancedOptions;
@@ -216,15 +216,15 @@ function Deployment(http, data, params) {
216
216
  with_advanced_options: withAdvancedOptions
217
217
  };
218
218
  }
219
- _context4.next = 6;
219
+ _context4.next = 2;
220
220
  return http.post("".concat(_this.urlPath), {
221
221
  upload_uid: uploadUid,
222
222
  file_type: fileType
223
223
  }, headers);
224
- case 6:
224
+ case 2:
225
225
  response = _context4.sent;
226
226
  if (!response.data) {
227
- _context4.next = 12;
227
+ _context4.next = 3;
228
228
  break;
229
229
  }
230
230
  content = response.data.data;
@@ -232,20 +232,20 @@ function Deployment(http, data, params) {
232
232
  data: content,
233
233
  app_uid: data.app_uid
234
234
  }, _this.params));
235
- case 12:
235
+ case 3:
236
236
  throw (0, _contentstackError2["default"])(response);
237
- case 13:
238
- _context4.next = 18;
237
+ case 4:
238
+ _context4.next = 6;
239
239
  break;
240
- case 15:
241
- _context4.prev = 15;
242
- _context4.t0 = _context4["catch"](1);
243
- throw (0, _contentstackError2["default"])(_context4.t0);
244
- case 18:
240
+ case 5:
241
+ _context4.prev = 5;
242
+ _t4 = _context4["catch"](1);
243
+ throw (0, _contentstackError2["default"])(_t4);
244
+ case 6:
245
245
  case "end":
246
246
  return _context4.stop();
247
247
  }
248
- }, _callee4, null, [[1, 15]]);
248
+ }, _callee4, null, [[1, 5]]);
249
249
  }));
250
250
  return function (_x) {
251
251
  return _ref5.apply(this, arguments);
@@ -270,8 +270,9 @@ function Deployment(http, data, params) {
270
270
  response,
271
271
  content,
272
272
  collection,
273
- _args5 = arguments;
274
- return _regenerator2["default"].wrap(function _callee5$(_context5) {
273
+ _args5 = arguments,
274
+ _t5;
275
+ return _regenerator2["default"].wrap(function (_context5) {
275
276
  while (1) switch (_context5.prev = _context5.next) {
276
277
  case 0:
277
278
  param = _args5.length > 0 && _args5[0] !== undefined ? _args5[0] : {};
@@ -280,32 +281,32 @@ function Deployment(http, data, params) {
280
281
  headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.params)),
281
282
  params: _objectSpread({}, (0, _cloneDeep2["default"])(param))
282
283
  };
283
- _context5.next = 5;
284
+ _context5.next = 2;
284
285
  return http.get("".concat(_this.urlPath), headers);
285
- case 5:
286
+ case 2:
286
287
  response = _context5.sent;
287
288
  if (!response.data) {
288
- _context5.next = 13;
289
+ _context5.next = 3;
289
290
  break;
290
291
  }
291
292
  content = response.data;
292
293
  collection = new _contentstackCollection2["default"](response, http);
293
294
  collection.items = DeploymentCollection(http, content, data.app_uid, _this.params);
294
295
  return _context5.abrupt("return", collection);
295
- case 13:
296
+ case 3:
296
297
  throw (0, _contentstackError2["default"])(response);
297
- case 14:
298
- _context5.next = 19;
298
+ case 4:
299
+ _context5.next = 6;
299
300
  break;
300
- case 16:
301
- _context5.prev = 16;
302
- _context5.t0 = _context5["catch"](1);
303
- throw (0, _contentstackError2["default"])(_context5.t0);
304
- case 19:
301
+ case 5:
302
+ _context5.prev = 5;
303
+ _t5 = _context5["catch"](1);
304
+ throw (0, _contentstackError2["default"])(_t5);
305
+ case 6:
305
306
  case "end":
306
307
  return _context5.stop();
307
308
  }
308
- }, _callee5, null, [[1, 16]]);
309
+ }, _callee5, null, [[1, 5]]);
309
310
  }));
310
311
  }
311
312
  }