@aws-amplify/api 4.0.22-unstable.2 → 4.0.22-unstable.7

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.
@@ -1,13 +1,13 @@
1
1
  (function webpackUniversalModuleDefinition(root, factory) {
2
2
  if(typeof exports === 'object' && typeof module === 'object')
3
- module.exports = factory(require("aws_amplify_auth"), require("aws_amplify_cache"), require("aws_amplify_core"), require("graphql"), require("graphql/language/parser"), require("graphql/language/printer"));
3
+ module.exports = factory(require("aws_amplify_auth"), require("aws_amplify_cache"), require("aws_amplify_core"), require("graphql"));
4
4
  else if(typeof define === 'function' && define.amd)
5
- define("aws_amplify_api", ["aws_amplify_auth", "aws_amplify_cache", "aws_amplify_core", "graphql", "graphql/language/parser", "graphql/language/printer"], factory);
5
+ define("aws_amplify_api", ["aws_amplify_auth", "aws_amplify_cache", "aws_amplify_core", "graphql"], factory);
6
6
  else if(typeof exports === 'object')
7
- exports["aws_amplify_api"] = factory(require("aws_amplify_auth"), require("aws_amplify_cache"), require("aws_amplify_core"), require("graphql"), require("graphql/language/parser"), require("graphql/language/printer"));
7
+ exports["aws_amplify_api"] = factory(require("aws_amplify_auth"), require("aws_amplify_cache"), require("aws_amplify_core"), require("graphql"));
8
8
  else
9
- root["aws_amplify_api"] = factory(root["aws_amplify_auth"], root["aws_amplify_cache"], root["aws_amplify_core"], root["graphql"], root["graphql/language/parser"], root["graphql/language/printer"]);
10
- })(this, function(__WEBPACK_EXTERNAL_MODULE__aws_amplify_auth__, __WEBPACK_EXTERNAL_MODULE__aws_amplify_cache__, __WEBPACK_EXTERNAL_MODULE__aws_amplify_core__, __WEBPACK_EXTERNAL_MODULE_graphql__, __WEBPACK_EXTERNAL_MODULE_graphql_language_parser__, __WEBPACK_EXTERNAL_MODULE_graphql_language_printer__) {
9
+ root["aws_amplify_api"] = factory(root["aws_amplify_auth"], root["aws_amplify_cache"], root["aws_amplify_core"], root["graphql"]);
10
+ })(this, function(__WEBPACK_EXTERNAL_MODULE__aws_amplify_auth__, __WEBPACK_EXTERNAL_MODULE__aws_amplify_cache__, __WEBPACK_EXTERNAL_MODULE__aws_amplify_core__, __WEBPACK_EXTERNAL_MODULE_graphql__) {
11
11
  return /******/ (function(modules) { // webpackBootstrap
12
12
  /******/ // The module cache
13
13
  /******/ var installedModules = {};
@@ -4152,371 +4152,6 @@ function isnan (val) {
4152
4152
 
4153
4153
  /***/ }),
4154
4154
 
4155
- /***/ "../../node_modules/graphql/error/GraphQLError.js":
4156
- /*!*******************************************************************!*\
4157
- !*** /root/amplify-js/node_modules/graphql/error/GraphQLError.js ***!
4158
- \*******************************************************************/
4159
- /*! no static exports found */
4160
- /***/ (function(module, exports, __webpack_require__) {
4161
-
4162
- "use strict";
4163
-
4164
-
4165
- Object.defineProperty(exports, "__esModule", {
4166
- value: true
4167
- });
4168
- exports.GraphQLError = GraphQLError;
4169
-
4170
- var _printError = __webpack_require__(/*! ./printError */ "../../node_modules/graphql/error/printError.js");
4171
-
4172
- var _location = __webpack_require__(/*! ../language/location */ "../../node_modules/graphql/language/location.js");
4173
-
4174
- /**
4175
- * Copyright (c) 2015-present, Facebook, Inc.
4176
- *
4177
- * This source code is licensed under the MIT license found in the
4178
- * LICENSE file in the root directory of this source tree.
4179
- *
4180
- * strict
4181
- */
4182
- function GraphQLError( // eslint-disable-line no-redeclare
4183
- message, nodes, source, positions, path, originalError, extensions) {
4184
- // Compute list of blame nodes.
4185
- var _nodes = Array.isArray(nodes) ? nodes.length !== 0 ? nodes : undefined : nodes ? [nodes] : undefined; // Compute locations in the source for the given nodes/positions.
4186
-
4187
-
4188
- var _source = source;
4189
-
4190
- if (!_source && _nodes) {
4191
- var node = _nodes[0];
4192
- _source = node && node.loc && node.loc.source;
4193
- }
4194
-
4195
- var _positions = positions;
4196
-
4197
- if (!_positions && _nodes) {
4198
- _positions = _nodes.reduce(function (list, node) {
4199
- if (node.loc) {
4200
- list.push(node.loc.start);
4201
- }
4202
-
4203
- return list;
4204
- }, []);
4205
- }
4206
-
4207
- if (_positions && _positions.length === 0) {
4208
- _positions = undefined;
4209
- }
4210
-
4211
- var _locations;
4212
-
4213
- if (positions && source) {
4214
- _locations = positions.map(function (pos) {
4215
- return (0, _location.getLocation)(source, pos);
4216
- });
4217
- } else if (_nodes) {
4218
- _locations = _nodes.reduce(function (list, node) {
4219
- if (node.loc) {
4220
- list.push((0, _location.getLocation)(node.loc.source, node.loc.start));
4221
- }
4222
-
4223
- return list;
4224
- }, []);
4225
- }
4226
-
4227
- var _extensions = extensions || originalError && originalError.extensions;
4228
-
4229
- Object.defineProperties(this, {
4230
- message: {
4231
- value: message,
4232
- // By being enumerable, JSON.stringify will include `message` in the
4233
- // resulting output. This ensures that the simplest possible GraphQL
4234
- // service adheres to the spec.
4235
- enumerable: true,
4236
- writable: true
4237
- },
4238
- locations: {
4239
- // Coercing falsey values to undefined ensures they will not be included
4240
- // in JSON.stringify() when not provided.
4241
- value: _locations || undefined,
4242
- // By being enumerable, JSON.stringify will include `locations` in the
4243
- // resulting output. This ensures that the simplest possible GraphQL
4244
- // service adheres to the spec.
4245
- enumerable: Boolean(_locations)
4246
- },
4247
- path: {
4248
- // Coercing falsey values to undefined ensures they will not be included
4249
- // in JSON.stringify() when not provided.
4250
- value: path || undefined,
4251
- // By being enumerable, JSON.stringify will include `path` in the
4252
- // resulting output. This ensures that the simplest possible GraphQL
4253
- // service adheres to the spec.
4254
- enumerable: Boolean(path)
4255
- },
4256
- nodes: {
4257
- value: _nodes || undefined
4258
- },
4259
- source: {
4260
- value: _source || undefined
4261
- },
4262
- positions: {
4263
- value: _positions || undefined
4264
- },
4265
- originalError: {
4266
- value: originalError
4267
- },
4268
- extensions: {
4269
- // Coercing falsey values to undefined ensures they will not be included
4270
- // in JSON.stringify() when not provided.
4271
- value: _extensions || undefined,
4272
- // By being enumerable, JSON.stringify will include `path` in the
4273
- // resulting output. This ensures that the simplest possible GraphQL
4274
- // service adheres to the spec.
4275
- enumerable: Boolean(_extensions)
4276
- }
4277
- }); // Include (non-enumerable) stack trace.
4278
-
4279
- if (originalError && originalError.stack) {
4280
- Object.defineProperty(this, 'stack', {
4281
- value: originalError.stack,
4282
- writable: true,
4283
- configurable: true
4284
- });
4285
- } else if (Error.captureStackTrace) {
4286
- Error.captureStackTrace(this, GraphQLError);
4287
- } else {
4288
- Object.defineProperty(this, 'stack', {
4289
- value: Error().stack,
4290
- writable: true,
4291
- configurable: true
4292
- });
4293
- }
4294
- }
4295
-
4296
- GraphQLError.prototype = Object.create(Error.prototype, {
4297
- constructor: {
4298
- value: GraphQLError
4299
- },
4300
- name: {
4301
- value: 'GraphQLError'
4302
- },
4303
- toString: {
4304
- value: function toString() {
4305
- return (0, _printError.printError)(this);
4306
- }
4307
- }
4308
- });
4309
-
4310
- /***/ }),
4311
-
4312
- /***/ "../../node_modules/graphql/error/printError.js":
4313
- /*!*****************************************************************!*\
4314
- !*** /root/amplify-js/node_modules/graphql/error/printError.js ***!
4315
- \*****************************************************************/
4316
- /*! no static exports found */
4317
- /***/ (function(module, exports, __webpack_require__) {
4318
-
4319
- "use strict";
4320
-
4321
-
4322
- Object.defineProperty(exports, "__esModule", {
4323
- value: true
4324
- });
4325
- exports.printError = printError;
4326
-
4327
- var _location = __webpack_require__(/*! ../language/location */ "../../node_modules/graphql/language/location.js");
4328
-
4329
- /**
4330
- * Copyright (c) 2015-present, Facebook, Inc.
4331
- *
4332
- * This source code is licensed under the MIT license found in the
4333
- * LICENSE file in the root directory of this source tree.
4334
- *
4335
- * strict
4336
- */
4337
-
4338
- /**
4339
- * Prints a GraphQLError to a string, representing useful location information
4340
- * about the error's position in the source.
4341
- */
4342
- function printError(error) {
4343
- var printedLocations = [];
4344
-
4345
- if (error.nodes) {
4346
- var _iteratorNormalCompletion = true;
4347
- var _didIteratorError = false;
4348
- var _iteratorError = undefined;
4349
-
4350
- try {
4351
- for (var _iterator = error.nodes[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
4352
- var node = _step.value;
4353
-
4354
- if (node.loc) {
4355
- printedLocations.push(highlightSourceAtLocation(node.loc.source, (0, _location.getLocation)(node.loc.source, node.loc.start)));
4356
- }
4357
- }
4358
- } catch (err) {
4359
- _didIteratorError = true;
4360
- _iteratorError = err;
4361
- } finally {
4362
- try {
4363
- if (!_iteratorNormalCompletion && _iterator.return != null) {
4364
- _iterator.return();
4365
- }
4366
- } finally {
4367
- if (_didIteratorError) {
4368
- throw _iteratorError;
4369
- }
4370
- }
4371
- }
4372
- } else if (error.source && error.locations) {
4373
- var source = error.source;
4374
- var _iteratorNormalCompletion2 = true;
4375
- var _didIteratorError2 = false;
4376
- var _iteratorError2 = undefined;
4377
-
4378
- try {
4379
- for (var _iterator2 = error.locations[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
4380
- var location = _step2.value;
4381
- printedLocations.push(highlightSourceAtLocation(source, location));
4382
- }
4383
- } catch (err) {
4384
- _didIteratorError2 = true;
4385
- _iteratorError2 = err;
4386
- } finally {
4387
- try {
4388
- if (!_iteratorNormalCompletion2 && _iterator2.return != null) {
4389
- _iterator2.return();
4390
- }
4391
- } finally {
4392
- if (_didIteratorError2) {
4393
- throw _iteratorError2;
4394
- }
4395
- }
4396
- }
4397
- }
4398
-
4399
- return printedLocations.length === 0 ? error.message : [error.message].concat(printedLocations).join('\n\n') + '\n';
4400
- }
4401
- /**
4402
- * Render a helpful description of the location of the error in the GraphQL
4403
- * Source document.
4404
- */
4405
-
4406
-
4407
- function highlightSourceAtLocation(source, location) {
4408
- var firstLineColumnOffset = source.locationOffset.column - 1;
4409
- var body = whitespace(firstLineColumnOffset) + source.body;
4410
- var lineIndex = location.line - 1;
4411
- var lineOffset = source.locationOffset.line - 1;
4412
- var lineNum = location.line + lineOffset;
4413
- var columnOffset = location.line === 1 ? firstLineColumnOffset : 0;
4414
- var columnNum = location.column + columnOffset;
4415
- var lines = body.split(/\r\n|[\n\r]/g);
4416
- return "".concat(source.name, " (").concat(lineNum, ":").concat(columnNum, ")\n") + printPrefixedLines([// Lines specified like this: ["prefix", "string"],
4417
- ["".concat(lineNum - 1, ": "), lines[lineIndex - 1]], ["".concat(lineNum, ": "), lines[lineIndex]], ['', whitespace(columnNum - 1) + '^'], ["".concat(lineNum + 1, ": "), lines[lineIndex + 1]]]);
4418
- }
4419
-
4420
- function printPrefixedLines(lines) {
4421
- var existingLines = lines.filter(function (_ref) {
4422
- var _ = _ref[0],
4423
- line = _ref[1];
4424
- return line !== undefined;
4425
- });
4426
- var padLen = 0;
4427
- var _iteratorNormalCompletion3 = true;
4428
- var _didIteratorError3 = false;
4429
- var _iteratorError3 = undefined;
4430
-
4431
- try {
4432
- for (var _iterator3 = existingLines[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
4433
- var _ref4 = _step3.value;
4434
- var prefix = _ref4[0];
4435
- padLen = Math.max(padLen, prefix.length);
4436
- }
4437
- } catch (err) {
4438
- _didIteratorError3 = true;
4439
- _iteratorError3 = err;
4440
- } finally {
4441
- try {
4442
- if (!_iteratorNormalCompletion3 && _iterator3.return != null) {
4443
- _iterator3.return();
4444
- }
4445
- } finally {
4446
- if (_didIteratorError3) {
4447
- throw _iteratorError3;
4448
- }
4449
- }
4450
- }
4451
-
4452
- return existingLines.map(function (_ref3) {
4453
- var prefix = _ref3[0],
4454
- line = _ref3[1];
4455
- return lpad(padLen, prefix) + line;
4456
- }).join('\n');
4457
- }
4458
-
4459
- function whitespace(len) {
4460
- return Array(len + 1).join(' ');
4461
- }
4462
-
4463
- function lpad(len, str) {
4464
- return whitespace(len - str.length) + str;
4465
- }
4466
-
4467
- /***/ }),
4468
-
4469
- /***/ "../../node_modules/graphql/language/location.js":
4470
- /*!******************************************************************!*\
4471
- !*** /root/amplify-js/node_modules/graphql/language/location.js ***!
4472
- \******************************************************************/
4473
- /*! no static exports found */
4474
- /***/ (function(module, exports, __webpack_require__) {
4475
-
4476
- "use strict";
4477
-
4478
-
4479
- Object.defineProperty(exports, "__esModule", {
4480
- value: true
4481
- });
4482
- exports.getLocation = getLocation;
4483
-
4484
- /**
4485
- * Copyright (c) 2015-present, Facebook, Inc.
4486
- *
4487
- * This source code is licensed under the MIT license found in the
4488
- * LICENSE file in the root directory of this source tree.
4489
- *
4490
- * strict
4491
- */
4492
-
4493
- /**
4494
- * Represents a location in a Source.
4495
- */
4496
-
4497
- /**
4498
- * Takes a Source and a UTF-8 character offset, and returns the corresponding
4499
- * line and column as a SourceLocation.
4500
- */
4501
- function getLocation(source, position) {
4502
- var lineRegexp = /\r\n|[\n\r]/g;
4503
- var line = 1;
4504
- var column = position + 1;
4505
- var match;
4506
-
4507
- while ((match = lineRegexp.exec(source.body)) && match.index < position) {
4508
- line += 1;
4509
- column = position + 1 - (match.index + match[0].length);
4510
- }
4511
-
4512
- return {
4513
- line: line,
4514
- column: column
4515
- };
4516
- }
4517
-
4518
- /***/ }),
4519
-
4520
4155
  /***/ "../../node_modules/ieee754/index.js":
4521
4156
  /*!******************************************************!*\
4522
4157
  !*** /root/amplify-js/node_modules/ieee754/index.js ***!
@@ -9473,21 +9108,17 @@ __webpack_require__.r(__webpack_exports__);
9473
9108
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "graphqlOperation", function() { return graphqlOperation; });
9474
9109
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GraphQLAPIClass", function() { return GraphQLAPIClass; });
9475
9110
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GraphQLAPI", function() { return GraphQLAPI; });
9476
- /* harmony import */ var graphql_error_GraphQLError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! graphql/error/GraphQLError */ "../../node_modules/graphql/error/GraphQLError.js");
9477
- /* harmony import */ var graphql_error_GraphQLError__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(graphql_error_GraphQLError__WEBPACK_IMPORTED_MODULE_0__);
9478
- /* harmony import */ var graphql_language_printer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! graphql/language/printer */ "graphql/language/printer");
9479
- /* harmony import */ var graphql_language_printer__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(graphql_language_printer__WEBPACK_IMPORTED_MODULE_1__);
9480
- /* harmony import */ var graphql_language_parser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! graphql/language/parser */ "graphql/language/parser");
9481
- /* harmony import */ var graphql_language_parser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(graphql_language_parser__WEBPACK_IMPORTED_MODULE_2__);
9482
- /* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/core */ "@aws-amplify/core");
9483
- /* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__);
9484
- /* harmony import */ var _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/pubsub */ "../pubsub/lib-esm/index.js");
9485
- /* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @aws-amplify/auth */ "@aws-amplify/auth");
9486
- /* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_auth__WEBPACK_IMPORTED_MODULE_5__);
9487
- /* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-amplify/cache */ "@aws-amplify/cache");
9488
- /* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_cache__WEBPACK_IMPORTED_MODULE_6__);
9489
- /* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./types */ "../api-graphql/lib-esm/types/index.js");
9490
- /* harmony import */ var _aws_amplify_api_rest__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @aws-amplify/api-rest */ "../api-rest/lib-esm/index.js");
9111
+ /* harmony import */ var graphql__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! graphql */ "graphql");
9112
+ /* harmony import */ var graphql__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(graphql__WEBPACK_IMPORTED_MODULE_0__);
9113
+ /* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ "@aws-amplify/core");
9114
+ /* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__);
9115
+ /* harmony import */ var _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/pubsub */ "../pubsub/lib-esm/index.js");
9116
+ /* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-amplify/auth */ "@aws-amplify/auth");
9117
+ /* harmony import */ var _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_auth__WEBPACK_IMPORTED_MODULE_3__);
9118
+ /* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @aws-amplify/cache */ "@aws-amplify/cache");
9119
+ /* harmony import */ var _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4__);
9120
+ /* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./types */ "../api-graphql/lib-esm/types/index.js");
9121
+ /* harmony import */ var _aws_amplify_api_rest__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @aws-amplify/api-rest */ "../api-rest/lib-esm/index.js");
9491
9122
  var __assign = undefined && undefined.__assign || function () {
9492
9123
  __assign = Object.assign || function (t) {
9493
9124
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -9707,10 +9338,8 @@ var __read = undefined && undefined.__read || function (o, n) {
9707
9338
 
9708
9339
 
9709
9340
 
9710
-
9711
-
9712
9341
  var USER_AGENT_HEADER = 'x-amz-user-agent';
9713
- var logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__["ConsoleLogger"]('GraphQLAPI');
9342
+ var logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["ConsoleLogger"]('GraphQLAPI');
9714
9343
  var graphqlOperation = function graphqlOperation(query, variables, authToken) {
9715
9344
  if (variables === void 0) {
9716
9345
  variables = {};
@@ -9735,9 +9364,9 @@ function () {
9735
9364
  */
9736
9365
  function GraphQLAPIClass(options) {
9737
9366
  this._api = null;
9738
- this.Auth = _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_5___default.a;
9739
- this.Cache = _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_6___default.a;
9740
- this.Credentials = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__["Credentials"];
9367
+ this.Auth = _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_3___default.a;
9368
+ this.Cache = _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4___default.a;
9369
+ this.Credentials = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["Credentials"];
9741
9370
  this._options = options;
9742
9371
  logger.debug('API Options', this._options);
9743
9372
  }
@@ -9790,7 +9419,7 @@ function () {
9790
9419
  logger.debug('create Rest instance');
9791
9420
 
9792
9421
  if (this._options) {
9793
- this._api = new _aws_amplify_api_rest__WEBPACK_IMPORTED_MODULE_8__["RestClient"](this._options); // Share instance Credentials with client for SSR
9422
+ this._api = new _aws_amplify_api_rest__WEBPACK_IMPORTED_MODULE_6__["RestClient"](this._options); // Share instance Credentials with client for SSR
9794
9423
 
9795
9424
  this._api.Credentials = this.Credentials;
9796
9425
  return true;
@@ -9848,7 +9477,7 @@ function () {
9848
9477
 
9849
9478
  case 1:
9850
9479
  if (!apiKey) {
9851
- throw new Error(_types__WEBPACK_IMPORTED_MODULE_7__["GraphQLAuthError"].NO_API_KEY);
9480
+ throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__["GraphQLAuthError"].NO_API_KEY);
9852
9481
  }
9853
9482
 
9854
9483
  headers = {
@@ -9868,7 +9497,7 @@ function () {
9868
9497
  credentialsOK = _c.sent();
9869
9498
 
9870
9499
  if (!credentialsOK) {
9871
- throw new Error(_types__WEBPACK_IMPORTED_MODULE_7__["GraphQLAuthError"].NO_CREDENTIALS);
9500
+ throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__["GraphQLAuthError"].NO_CREDENTIALS);
9872
9501
  }
9873
9502
 
9874
9503
  return [3
@@ -9881,7 +9510,7 @@ function () {
9881
9510
  token = void 0;
9882
9511
  return [4
9883
9512
  /*yield*/
9884
- , _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_6___default.a.getItem('federatedInfo')];
9513
+ , _aws_amplify_cache__WEBPACK_IMPORTED_MODULE_4___default.a.getItem('federatedInfo')];
9885
9514
 
9886
9515
  case 5:
9887
9516
  federatedInfo = _c.sent();
@@ -9896,7 +9525,7 @@ function () {
9896
9525
  case 6:
9897
9526
  return [4
9898
9527
  /*yield*/
9899
- , _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_5___default.a.currentAuthenticatedUser()];
9528
+ , _aws_amplify_auth__WEBPACK_IMPORTED_MODULE_3___default.a.currentAuthenticatedUser()];
9900
9529
 
9901
9530
  case 7:
9902
9531
  currentUser = _c.sent();
@@ -9909,7 +9538,7 @@ function () {
9909
9538
 
9910
9539
  case 8:
9911
9540
  if (!token) {
9912
- throw new Error(_types__WEBPACK_IMPORTED_MODULE_7__["GraphQLAuthError"].NO_FEDERATED_JWT);
9541
+ throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__["GraphQLAuthError"].NO_FEDERATED_JWT);
9913
9542
  }
9914
9543
 
9915
9544
  headers = {
@@ -9921,7 +9550,7 @@ function () {
9921
9550
 
9922
9551
  case 9:
9923
9552
  e_1 = _c.sent();
9924
- throw new Error(_types__WEBPACK_IMPORTED_MODULE_7__["GraphQLAuthError"].NO_CURRENT_USER);
9553
+ throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__["GraphQLAuthError"].NO_CURRENT_USER);
9925
9554
 
9926
9555
  case 10:
9927
9556
  return [3
@@ -9946,7 +9575,7 @@ function () {
9946
9575
 
9947
9576
  case 13:
9948
9577
  e_2 = _c.sent();
9949
- throw new Error(_types__WEBPACK_IMPORTED_MODULE_7__["GraphQLAuthError"].NO_CURRENT_USER);
9578
+ throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__["GraphQLAuthError"].NO_CURRENT_USER);
9950
9579
 
9951
9580
  case 14:
9952
9581
  return [3
@@ -9955,7 +9584,7 @@ function () {
9955
9584
 
9956
9585
  case 15:
9957
9586
  if (!additionalHeaders.Authorization) {
9958
- throw new Error(_types__WEBPACK_IMPORTED_MODULE_7__["GraphQLAuthError"].NO_AUTH_TOKEN);
9587
+ throw new Error(_types__WEBPACK_IMPORTED_MODULE_5__["GraphQLAuthError"].NO_AUTH_TOKEN);
9959
9588
  }
9960
9589
 
9961
9590
  headers = {
@@ -9988,9 +9617,10 @@ function () {
9988
9617
 
9989
9618
 
9990
9619
  GraphQLAPIClass.prototype.getGraphqlOperationType = function (operation) {
9991
- var doc = Object(graphql_language_parser__WEBPACK_IMPORTED_MODULE_2__["parse"])(operation);
9620
+ var doc = Object(graphql__WEBPACK_IMPORTED_MODULE_0__["parse"])(operation);
9621
+ var definitions = doc.definitions;
9992
9622
 
9993
- var _a = __read(doc.definitions, 1),
9623
+ var _a = __read(definitions, 1),
9994
9624
  operationType = _a[0].operation;
9995
9625
 
9996
9626
  return operationType;
@@ -10010,7 +9640,7 @@ function () {
10010
9640
  variables = _b === void 0 ? {} : _b,
10011
9641
  authMode = _a.authMode,
10012
9642
  authToken = _a.authToken;
10013
- var query = typeof paramQuery === 'string' ? Object(graphql_language_parser__WEBPACK_IMPORTED_MODULE_2__["parse"])(paramQuery) : Object(graphql_language_parser__WEBPACK_IMPORTED_MODULE_2__["parse"])(Object(graphql_language_printer__WEBPACK_IMPORTED_MODULE_1__["print"])(paramQuery));
9643
+ var query = typeof paramQuery === 'string' ? Object(graphql__WEBPACK_IMPORTED_MODULE_0__["parse"])(paramQuery) : Object(graphql__WEBPACK_IMPORTED_MODULE_0__["parse"])(Object(graphql__WEBPACK_IMPORTED_MODULE_0__["print"])(paramQuery));
10014
9644
 
10015
9645
  var _c = __read(query.definitions.filter(function (def) {
10016
9646
  return def.kind === 'OperationDefinition';
@@ -10144,9 +9774,9 @@ function () {
10144
9774
  })];
10145
9775
 
10146
9776
  case 9:
10147
- headers = __assign.apply(void 0, [__assign.apply(void 0, [__assign.apply(void 0, _j.concat([_l.sent()])), additionalHeaders]), !customGraphqlEndpoint && (_k = {}, _k[USER_AGENT_HEADER] = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__["Constants"].userAgent, _k)]);
9777
+ headers = __assign.apply(void 0, [__assign.apply(void 0, [__assign.apply(void 0, _j.concat([_l.sent()])), additionalHeaders]), !customGraphqlEndpoint && (_k = {}, _k[USER_AGENT_HEADER] = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["Constants"].userAgent, _k)]);
10148
9778
  body = {
10149
- query: Object(graphql_language_printer__WEBPACK_IMPORTED_MODULE_1__["print"])(query),
9779
+ query: Object(graphql__WEBPACK_IMPORTED_MODULE_0__["print"])(query),
10150
9780
  variables: variables
10151
9781
  };
10152
9782
  init = Object.assign({
@@ -10160,7 +9790,7 @@ function () {
10160
9790
  endpoint = customGraphqlEndpoint || appSyncGraphqlEndpoint;
10161
9791
 
10162
9792
  if (!endpoint) {
10163
- error = new graphql_error_GraphQLError__WEBPACK_IMPORTED_MODULE_0__["GraphQLError"]('No graphql endpoint provided.');
9793
+ error = new graphql__WEBPACK_IMPORTED_MODULE_0__["GraphQLError"]('No graphql endpoint provided.');
10164
9794
  throw {
10165
9795
  data: {},
10166
9796
  errors: [error]
@@ -10193,7 +9823,7 @@ function () {
10193
9823
 
10194
9824
  response = {
10195
9825
  data: {},
10196
- errors: [new graphql_error_GraphQLError__WEBPACK_IMPORTED_MODULE_0__["GraphQLError"](err_1.message, null, null, null, null, err_1)]
9826
+ errors: [new graphql__WEBPACK_IMPORTED_MODULE_0__["GraphQLError"](err_1.message, null, null, null, null, err_1)]
10197
9827
  };
10198
9828
  return [3
10199
9829
  /*break*/
@@ -10255,13 +9885,13 @@ function () {
10255
9885
  } : _c;
10256
9886
  var authenticationType = defaultAuthenticationType || aws_appsync_authenticationType || 'AWS_IAM';
10257
9887
 
10258
- if (_aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_4__["default"] && typeof _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_4__["default"].subscribe === 'function') {
10259
- return _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_4__["default"].subscribe('', {
10260
- provider: _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__["INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER"],
9888
+ if (_aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_2__["default"] && typeof _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_2__["default"].subscribe === 'function') {
9889
+ return _aws_amplify_pubsub__WEBPACK_IMPORTED_MODULE_2__["default"].subscribe('', {
9890
+ provider: _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["INTERNAL_AWS_APPSYNC_REALTIME_PUBSUB_PROVIDER"],
10261
9891
  appSyncGraphqlEndpoint: appSyncGraphqlEndpoint,
10262
9892
  authenticationType: authenticationType,
10263
9893
  apiKey: apiKey,
10264
- query: Object(graphql_language_printer__WEBPACK_IMPORTED_MODULE_1__["print"])(query),
9894
+ query: Object(graphql__WEBPACK_IMPORTED_MODULE_0__["print"])(query),
10265
9895
  region: region,
10266
9896
  variables: variables,
10267
9897
  graphql_headers: graphql_headers,
@@ -10299,7 +9929,7 @@ function () {
10299
9929
 
10300
9930
 
10301
9931
  var GraphQLAPI = new GraphQLAPIClass(null);
10302
- _aws_amplify_core__WEBPACK_IMPORTED_MODULE_3__["Amplify"].register(GraphQLAPI);
9932
+ _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["Amplify"].register(GraphQLAPI);
10303
9933
 
10304
9934
  /***/ }),
10305
9935
 
@@ -16358,28 +15988,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__aws_amplify_core__;
16358
15988
 
16359
15989
  module.exports = __WEBPACK_EXTERNAL_MODULE_graphql__;
16360
15990
 
16361
- /***/ }),
16362
-
16363
- /***/ "graphql/language/parser":
16364
- /*!******************************************!*\
16365
- !*** external "graphql/language/parser" ***!
16366
- \******************************************/
16367
- /*! no static exports found */
16368
- /***/ (function(module, exports) {
16369
-
16370
- module.exports = __WEBPACK_EXTERNAL_MODULE_graphql_language_parser__;
16371
-
16372
- /***/ }),
16373
-
16374
- /***/ "graphql/language/printer":
16375
- /*!*******************************************!*\
16376
- !*** external "graphql/language/printer" ***!
16377
- \*******************************************/
16378
- /*! no static exports found */
16379
- /***/ (function(module, exports) {
16380
-
16381
- module.exports = __WEBPACK_EXTERNAL_MODULE_graphql_language_printer__;
16382
-
16383
15991
  /***/ })
16384
15992
 
16385
15993
  /******/ });