react-easy-wall 1.0.21 → 1.0.24
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.
- package/dist/cjs/components/panel/Panel.js +0 -1
- package/dist/cjs/components/panel/Panel.js.map +1 -1
- package/dist/cjs/components/panel/PanelAvatar.js +2 -4
- package/dist/cjs/components/panel/PanelAvatar.js.map +1 -1
- package/dist/cjs/components/panel/PanelButton.js +0 -1
- package/dist/cjs/components/panel/PanelButton.js.map +1 -1
- package/dist/cjs/components/panel/PanelDivider.js +0 -1
- package/dist/cjs/components/panel/PanelDivider.js.map +1 -1
- package/dist/cjs/components/panel/PanelFooter.js +0 -1
- package/dist/cjs/components/panel/PanelFooter.js.map +1 -1
- package/dist/cjs/components/panel/PanelHeader.js +0 -1
- package/dist/cjs/components/panel/PanelHeader.js.map +1 -1
- package/dist/cjs/components/panel/PanelItem.js +0 -1
- package/dist/cjs/components/panel/PanelItem.js.map +1 -1
- package/dist/cjs/components/panel/PanelListItems.js +0 -1
- package/dist/cjs/components/panel/PanelListItems.js.map +1 -1
- package/dist/cjs/components/session/SessionProvider.js +0 -1
- package/dist/cjs/components/session/SessionProvider.js.map +1 -1
- package/dist/cjs/components/session/SessionUserContext.js +0 -1
- package/dist/cjs/components/session/SessionUserContext.js.map +1 -1
- package/dist/cjs/components/session/SessionUserProvider.js +0 -1
- package/dist/cjs/components/session/SessionUserProvider.js.map +1 -1
- package/dist/cjs/node_modules/@apollo/client/errors/CombinedProtocolErrors.js +85 -0
- package/dist/cjs/node_modules/@apollo/client/errors/CombinedProtocolErrors.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/errors/ServerError.js +80 -0
- package/dist/cjs/node_modules/@apollo/client/errors/ServerError.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/errors/ServerParseError.js +77 -0
- package/dist/cjs/node_modules/@apollo/client/errors/ServerParseError.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/errors/index.js +9 -0
- package/dist/cjs/node_modules/@apollo/client/errors/index.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/errors/utils.js +19 -0
- package/dist/cjs/node_modules/@apollo/client/errors/utils.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/client-awareness/ClientAwarenessLink.js +91 -0
- package/dist/cjs/node_modules/@apollo/client/link/client-awareness/ClientAwarenessLink.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/core/ApolloLink.js +262 -0
- package/dist/cjs/node_modules/@apollo/client/link/core/ApolloLink.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/BaseHttpLink.js +155 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/BaseHttpLink.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/HttpLink.js +41 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/HttpLink.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.js +168 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/rewriteURIForGET.js +56 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/rewriteURIForGET.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.js +106 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/selectURI.js +18 -0
- package/dist/cjs/node_modules/@apollo/client/link/http/selectURI.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/utils/createOperation.js +40 -0
- package/dist/cjs/node_modules/@apollo/client/link/utils/createOperation.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/link/utils/filterOperationVariables.js +27 -0
- package/dist/cjs/node_modules/@apollo/client/link/utils/filterOperationVariables.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/caching/sizes.js +31 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/caching/sizes.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/environment/index.production.js +6 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/environment/index.production.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/graphql/operations.js +65 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/graphql/operations.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/graphql/print.js +31 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/graphql/print.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/caches.js +49 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/caches.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/checkDocument.js +62 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/checkDocument.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/compact.js +27 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/compact.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/getOperationDefinition.js +16 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/getOperationDefinition.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/getOperationName.js +13 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/getOperationName.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/globals/global.js +21 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/globals/global.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/globals/maybe.js +11 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/globals/maybe.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/isNonNullObject.js +13 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/isNonNullObject.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/makeUniqueId.js +19 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/makeUniqueId.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/memoize.js +33 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/memoize.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/stringifyForDisplay.js +20 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/internal/stringifyForDisplay.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/invariant/index.js +94 -0
- package/dist/cjs/node_modules/@apollo/client/utilities/invariant/index.js.map +1 -0
- package/dist/cjs/node_modules/@apollo/client/version.js +6 -0
- package/dist/cjs/node_modules/@apollo/client/version.js.map +1 -0
- package/dist/cjs/node_modules/@wry/caches/lib/weak.js +147 -0
- package/dist/cjs/node_modules/@wry/caches/lib/weak.js.map +1 -0
- package/dist/cjs/node_modules/@wry/trie/lib/index.js +86 -0
- package/dist/cjs/node_modules/@wry/trie/lib/index.js.map +1 -0
- package/dist/cjs/node_modules/graphql/error/GraphQLError.js +232 -0
- package/dist/cjs/node_modules/graphql/error/GraphQLError.js.map +1 -0
- package/dist/cjs/node_modules/graphql/error/syntaxError.js +18 -0
- package/dist/cjs/node_modules/graphql/error/syntaxError.js.map +1 -0
- package/dist/cjs/node_modules/graphql/jsutils/devAssert.js +12 -0
- package/dist/cjs/node_modules/graphql/jsutils/devAssert.js.map +1 -0
- package/dist/cjs/node_modules/graphql/jsutils/inspect.js +120 -0
- package/dist/cjs/node_modules/graphql/jsutils/inspect.js.map +1 -0
- package/dist/cjs/node_modules/graphql/jsutils/instanceOf.js +63 -0
- package/dist/cjs/node_modules/graphql/jsutils/instanceOf.js.map +1 -0
- package/dist/cjs/node_modules/graphql/jsutils/invariant.js +14 -0
- package/dist/cjs/node_modules/graphql/jsutils/invariant.js.map +1 -0
- package/dist/cjs/node_modules/graphql/jsutils/isObjectLike.js +12 -0
- package/dist/cjs/node_modules/graphql/jsutils/isObjectLike.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/ast.js +227 -0
- package/dist/cjs/node_modules/graphql/language/ast.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/blockString.js +114 -0
- package/dist/cjs/node_modules/graphql/language/blockString.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/characterClasses.js +73 -0
- package/dist/cjs/node_modules/graphql/language/characterClasses.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/directiveLocation.js +34 -0
- package/dist/cjs/node_modules/graphql/language/directiveLocation.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/kinds.js +63 -0
- package/dist/cjs/node_modules/graphql/language/kinds.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/lexer.js +925 -0
- package/dist/cjs/node_modules/graphql/language/lexer.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/location.js +36 -0
- package/dist/cjs/node_modules/graphql/language/location.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/parser.js +1582 -0
- package/dist/cjs/node_modules/graphql/language/parser.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/printLocation.js +72 -0
- package/dist/cjs/node_modules/graphql/language/printLocation.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/printString.js +181 -0
- package/dist/cjs/node_modules/graphql/language/printString.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/printer.js +374 -0
- package/dist/cjs/node_modules/graphql/language/printer.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/source.js +56 -0
- package/dist/cjs/node_modules/graphql/language/source.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/tokenKind.js +39 -0
- package/dist/cjs/node_modules/graphql/language/tokenKind.js.map +1 -0
- package/dist/cjs/node_modules/graphql/language/visitor.js +274 -0
- package/dist/cjs/node_modules/graphql/language/visitor.js.map +1 -0
- package/dist/cjs/node_modules/graphql-tag/lib/index.js +129 -0
- package/dist/cjs/node_modules/graphql-tag/lib/index.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/Observable.js +106 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/Observable.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/Subscriber.js +158 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/Subscriber.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/Subscription.js +148 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/Subscription.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/config.js +7 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/config.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/observable/empty.js +8 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/observable/empty.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js +20 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/symbol/observable.js +6 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/symbol/observable.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js +17 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js +11 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/arrRemove.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js +15 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/errorContext.js +10 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/errorContext.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/identity.js +8 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/identity.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/isFunction.js +8 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/isFunction.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/noop.js +6 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/noop.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/pipe.js +18 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/pipe.js.map +1 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js +14 -0
- package/dist/cjs/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.js.map +1 -0
- package/dist/cjs/node_modules/tslib/tslib.es6.js +93 -0
- package/dist/cjs/node_modules/tslib/tslib.es6.js.map +1 -0
- package/dist/cjs/shared/apollo/apollo.client.js +2 -2
- package/dist/cjs/shared/apollo/apollo.client.js.map +1 -1
- package/dist/cjs/shared/types/generated.js +2 -2
- package/dist/cjs/shared/types/generated.js.map +1 -1
- package/dist/esm/_virtual/_commonjsHelpers.js +1 -30
- package/dist/esm/_virtual/_commonjsHelpers.js.map +1 -1
- package/dist/esm/components/panel/Panel.js +0 -1
- package/dist/esm/components/panel/Panel.js.map +1 -1
- package/dist/esm/components/panel/PanelAvatar.js +2 -4
- package/dist/esm/components/panel/PanelAvatar.js.map +1 -1
- package/dist/esm/components/panel/PanelButton.js +0 -1
- package/dist/esm/components/panel/PanelButton.js.map +1 -1
- package/dist/esm/components/panel/PanelDivider.js +0 -1
- package/dist/esm/components/panel/PanelDivider.js.map +1 -1
- package/dist/esm/components/panel/PanelFooter.js +0 -1
- package/dist/esm/components/panel/PanelFooter.js.map +1 -1
- package/dist/esm/components/panel/PanelHeader.js +0 -1
- package/dist/esm/components/panel/PanelHeader.js.map +1 -1
- package/dist/esm/components/panel/PanelItem.js +0 -1
- package/dist/esm/components/panel/PanelItem.js.map +1 -1
- package/dist/esm/components/panel/PanelListItems.js +0 -1
- package/dist/esm/components/panel/PanelListItems.js.map +1 -1
- package/dist/esm/components/session/SessionProvider.js +0 -1
- package/dist/esm/components/session/SessionProvider.js.map +1 -1
- package/dist/esm/components/session/SessionUserContext.js +0 -1
- package/dist/esm/components/session/SessionUserContext.js.map +1 -1
- package/dist/esm/components/session/SessionUserProvider.js +0 -1
- package/dist/esm/components/session/SessionUserProvider.js.map +1 -1
- package/dist/esm/node_modules/@cobuildlab/react-simple-state/lib/hooks.js +2 -2
- package/dist/esm/node_modules/@cobuildlab/react-simple-state/lib/hooks.js.map +1 -1
- package/dist/esm/node_modules/@cobuildlab/react-simple-state/lib/store-hooks.js +2 -2
- package/dist/esm/node_modules/@cobuildlab/react-simple-state/lib/store-hooks.js.map +1 -1
- package/dist/esm/node_modules/@cobuildlab/react-simple-state/lib/views.js +2 -2
- package/dist/esm/node_modules/@cobuildlab/react-simple-state/lib/views.js.map +1 -1
- package/dist/esm/node_modules/@mui/material-nextjs/esm/nextCompatRouter.js +1 -1
- package/dist/esm/node_modules/@mui/material-nextjs/esm/v13-appRouter/nextNavigation.js +1 -1
- package/dist/esm/shared/apollo/apollo.client.js +1 -1
- package/dist/esm/shared/types/generated.js +1 -1
- package/dist/esm/types/components/panel/PanelAvatar.d.ts +3 -1
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/******************************************************************************
|
|
4
|
+
Copyright (c) Microsoft Corporation.
|
|
5
|
+
|
|
6
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
7
|
+
purpose with or without fee is hereby granted.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
10
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
11
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
12
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
13
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
14
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
15
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
16
|
+
***************************************************************************** */
|
|
17
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
18
|
+
|
|
19
|
+
var extendStatics = function(d, b) {
|
|
20
|
+
extendStatics = Object.setPrototypeOf ||
|
|
21
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
22
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
23
|
+
return extendStatics(d, b);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
function __extends(d, b) {
|
|
27
|
+
if (typeof b !== "function" && b !== null)
|
|
28
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
29
|
+
extendStatics(d, b);
|
|
30
|
+
function __() { this.constructor = d; }
|
|
31
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
exports.__assign = function() {
|
|
35
|
+
exports.__assign = Object.assign || function __assign(t) {
|
|
36
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
37
|
+
s = arguments[i];
|
|
38
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
39
|
+
}
|
|
40
|
+
return t;
|
|
41
|
+
};
|
|
42
|
+
return exports.__assign.apply(this, arguments);
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
function __values(o) {
|
|
46
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
47
|
+
if (m) return m.call(o);
|
|
48
|
+
if (o && typeof o.length === "number") return {
|
|
49
|
+
next: function () {
|
|
50
|
+
if (o && i >= o.length) o = void 0;
|
|
51
|
+
return { value: o && o[i++], done: !o };
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function __read(o, n) {
|
|
58
|
+
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
59
|
+
if (!m) return o;
|
|
60
|
+
var i = m.call(o), r, ar = [], e;
|
|
61
|
+
try {
|
|
62
|
+
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
63
|
+
}
|
|
64
|
+
catch (error) { e = { error: error }; }
|
|
65
|
+
finally {
|
|
66
|
+
try {
|
|
67
|
+
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
68
|
+
}
|
|
69
|
+
finally { if (e) throw e.error; }
|
|
70
|
+
}
|
|
71
|
+
return ar;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
function __spreadArray(to, from, pack) {
|
|
75
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
76
|
+
if (ar || !(i in from)) {
|
|
77
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
78
|
+
ar[i] = from[i];
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
85
|
+
var e = new Error(message);
|
|
86
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
exports.__extends = __extends;
|
|
90
|
+
exports.__read = __read;
|
|
91
|
+
exports.__spreadArray = __spreadArray;
|
|
92
|
+
exports.__values = __values;
|
|
93
|
+
//# sourceMappingURL=tslib.es6.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tslib.es6.js","sources":["../../../../node_modules/tslib/tslib.es6.js"],"sourcesContent":["/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nexport function __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nexport function __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nexport function __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\r\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n 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) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\r\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n 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; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nvar ownKeys = function(o) {\r\n ownKeys = Object.getOwnPropertyNames || function (o) {\r\n var ar = [];\r\n for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;\r\n return ar;\r\n };\r\n return ownKeys(o);\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== \"default\") __createBinding(result, mod, k[i]);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nexport function __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose, inner;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n if (async) inner = dispose;\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nexport function __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n var r, s = 0;\r\n function next() {\r\n while (r = env.stack.pop()) {\r\n try {\r\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\r\n if (r.dispose) {\r\n var result = r.dispose.call(r.value);\r\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n else s |= 1;\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\nexport function __rewriteRelativeImportExtension(path, preserveJsx) {\r\n if (typeof path === \"string\" && /^\\.\\.?\\//.test(path)) {\r\n return path.replace(/\\.(tsx)$|((?:\\.d)?)((?:\\.[^./]+?)?)\\.([cm]?)ts$/i, function (m, tsx, d, ext, cm) {\r\n return tsx ? preserveJsx ? \".jsx\" : \".js\" : d && (!ext || !cm) ? m : (d + ext + \".\" + cm.toLowerCase() + \"js\");\r\n });\r\n }\r\n return path;\r\n}\r\n\r\nexport default {\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __esDecorate: __esDecorate,\r\n __runInitializers: __runInitializers,\r\n __propKey: __propKey,\r\n __setFunctionName: __setFunctionName,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n __rewriteRelativeImportExtension: __rewriteRelativeImportExtension,\r\n};\r\n"],"names":["__assign"],"mappings":"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","x_google_ignoreList":[0]}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var Apollo = require('@apollo/client');
|
|
4
3
|
var clientIntegrationNextjs = require('@apollo/client-integration-nextjs');
|
|
4
|
+
var HttpLink = require('../../node_modules/@apollo/client/link/http/HttpLink.js');
|
|
5
5
|
|
|
6
6
|
const apolloClient = (config) => {
|
|
7
7
|
const { uri } = config;
|
|
8
8
|
return clientIntegrationNextjs.registerApolloClient(() => {
|
|
9
9
|
return new clientIntegrationNextjs.ApolloClient({
|
|
10
10
|
cache: new clientIntegrationNextjs.InMemoryCache(),
|
|
11
|
-
link: new
|
|
11
|
+
link: new HttpLink.HttpLink({
|
|
12
12
|
uri,
|
|
13
13
|
}),
|
|
14
14
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apollo.client.js","sources":["../../../../src/shared/apollo/apollo.client.ts"],"sourcesContent":["import { HttpLink } from '@apollo/client';\nimport {\n registerApolloClient,\n ApolloClient,\n InMemoryCache,\n} from '@apollo/client-integration-nextjs';\nimport { Config } from '../../config/config.types';\n\nexport const apolloClient = (config: Config) => {\n const { uri } = config;\n return registerApolloClient(() => {\n return new ApolloClient({\n cache: new InMemoryCache(),\n link: new HttpLink({\n uri,\n }),\n });\n });\n};\n"],"names":["registerApolloClient","ApolloClient","InMemoryCache","HttpLink"],"mappings":";;;;;AAQO,MAAM,YAAY,GAAG,CAAC,MAAc,KAAI;AAC7C,IAAA,MAAM,EAAE,GAAG,EAAE,GAAG,MAAM;IACtB,OAAOA,4CAAoB,CAAC,MAAK;QAC/B,OAAO,IAAIC,oCAAY,CAAC;YACtB,KAAK,EAAE,IAAIC,qCAAa,EAAE;YAC1B,IAAI,EAAE,IAAIC,
|
|
1
|
+
{"version":3,"file":"apollo.client.js","sources":["../../../../src/shared/apollo/apollo.client.ts"],"sourcesContent":["import { HttpLink } from '@apollo/client';\nimport {\n registerApolloClient,\n ApolloClient,\n InMemoryCache,\n} from '@apollo/client-integration-nextjs';\nimport { Config } from '../../config/config.types';\n\nexport const apolloClient = (config: Config) => {\n const { uri } = config;\n return registerApolloClient(() => {\n return new ApolloClient({\n cache: new InMemoryCache(),\n link: new HttpLink({\n uri,\n }),\n });\n });\n};\n"],"names":["registerApolloClient","ApolloClient","InMemoryCache","HttpLink"],"mappings":";;;;;AAQO,MAAM,YAAY,GAAG,CAAC,MAAc,KAAI;AAC7C,IAAA,MAAM,EAAE,GAAG,EAAE,GAAG,MAAM;IACtB,OAAOA,4CAAoB,CAAC,MAAK;QAC/B,OAAO,IAAIC,oCAAY,CAAC;YACtB,KAAK,EAAE,IAAIC,qCAAa,EAAE;YAC1B,IAAI,EAAE,IAAIC,iBAAQ,CAAC;gBACjB,GAAG;aACJ,CAAC;AACH,SAAA,CAAC;AACJ,IAAA,CAAC,CAAC;AACJ;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var index = require('../../node_modules/graphql-tag/lib/index.js');
|
|
4
4
|
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
exports.CartDescoutBy = void 0;
|
|
@@ -165,7 +165,7 @@ exports.UserStatus = void 0;
|
|
|
165
165
|
UserStatus["Active"] = "ACTIVE";
|
|
166
166
|
UserStatus["Inactive"] = "INACTIVE";
|
|
167
167
|
})(exports.UserStatus || (exports.UserStatus = {}));
|
|
168
|
-
const CurrentUserDocument =
|
|
168
|
+
const CurrentUserDocument = index.gql `
|
|
169
169
|
query CurrentUser {
|
|
170
170
|
currentUser {
|
|
171
171
|
id
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generated.js","sources":["../../../../src/shared/types/generated.ts"],"sourcesContent":["/* eslint-disable */\nimport { gql } from '@apollo/client';\nimport * as Apollo from '@apollo/client';\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\nconst defaultOptions = {} as const;\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n DateTime: { input: string; output: string; }\n Upload: { input: any; output: any; }\n};\n\nexport type AdminDisableUserInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type AllCetificationsResponse = {\n __typename?: 'AllCetificationsResponse';\n certifications?: Maybe<Array<Maybe<Plan>>>;\n};\n\nexport type AuthPayload = {\n __typename?: 'AuthPayload';\n token?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type CancelSubscriptionInput = {\n subscription_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CancelSubscriptionResponse = {\n __typename?: 'CancelSubscriptionResponse';\n end_date?: Maybe<Scalars['String']['output']>;\n subscription?: Maybe<Subscription>;\n};\n\nexport type CancelledSubscriptionMetric = {\n __typename?: 'CancelledSubscriptionMetric';\n count: Scalars['Int']['output'];\n date: Scalars['String']['output'];\n previousCount: Scalars['Int']['output'];\n previousDate: Scalars['String']['output'];\n};\n\nexport type Card = {\n __typename?: 'Card';\n bank_code?: Maybe<Scalars['String']['output']>;\n bank_name?: Maybe<Scalars['String']['output']>;\n brand?: Maybe<Scalars['String']['output']>;\n card_number?: Maybe<Scalars['String']['output']>;\n customer_card_id?: Maybe<Scalars['String']['output']>;\n expiration_month?: Maybe<Scalars['String']['output']>;\n expiration_year?: Maybe<Scalars['String']['output']>;\n holder_name?: Maybe<Scalars['String']['output']>;\n type?: Maybe<Scalars['String']['output']>;\n};\n\nexport type Cart = {\n __typename?: 'Cart';\n id?: Maybe<Scalars['Int']['output']>;\n plan?: Maybe<Plan>;\n plan_id?: Maybe<Scalars['Int']['output']>;\n slug?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport enum CartDescoutBy {\n LoggedIn = 'LOGGED_IN',\n ProPlan = 'PRO_PLAN',\n StandardPlan = 'STANDARD_PLAN',\n StudentPlan = 'STUDENT_PLAN'\n}\n\nexport type CetificationsAvailableResponse = {\n __typename?: 'CetificationsAvailableResponse';\n certifications?: Maybe<Array<Maybe<Plan>>>;\n subscription?: Maybe<Subscription>;\n};\n\nexport type ClaimCodeResponse = {\n __typename?: 'ClaimCodeResponse';\n convoy?: Maybe<ConvoyCode>;\n};\n\nexport type Comment = {\n __typename?: 'Comment';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n post_id?: Maybe<Scalars['Int']['output']>;\n replies?: Maybe<Array<Maybe<ReplyComment>>>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type CommentsResponse = {\n __typename?: 'CommentsResponse';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<Comment>>>;\n};\n\nexport type CommentsWhere = {\n post_id?: InputMaybe<Scalars['Int']['input']>;\n site?: InputMaybe<Site>;\n};\n\nexport type ConnectResponse = {\n __typename?: 'ConnectResponse';\n token?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type ConnectUserAppleInput = {\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ConnectUserFacebookInput = {\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ConnectUserGoogleInput = {\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ConvoyCode = {\n __typename?: 'ConvoyCode';\n code?: Maybe<Scalars['String']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n status?: Maybe<ConvoyCodeStatuses>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum ConvoyCodeStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport enum CouponRequestType {\n Assigned = 'ASSIGNED',\n Available = 'AVAILABLE',\n Used = 'USED'\n}\n\nexport enum CouponStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport enum CouponTypes {\n DiscountAmount = 'DISCOUNT_AMOUNT',\n DiscountAmountAndDuration = 'DISCOUNT_AMOUNT_AND_DURATION',\n DiscountAmountAndDurationAndVolume = 'DISCOUNT_AMOUNT_AND_DURATION_AND_VOLUME',\n DiscountAmountAndDurationAndVolumeWithMonths = 'DISCOUNT_AMOUNT_AND_DURATION_AND_VOLUME_WITH_MONTHS',\n DiscountAmountAndDurationWithMonths = 'DISCOUNT_AMOUNT_AND_DURATION_WITH_MONTHS',\n DiscountAmountAndVolume = 'DISCOUNT_AMOUNT_AND_VOLUME',\n DiscountAmountAndVolumeWithMonths = 'DISCOUNT_AMOUNT_AND_VOLUME_WITH_MONTHS',\n DiscountAmountWithMonths = 'DISCOUNT_AMOUNT_WITH_MONTHS',\n DiscountPercent = 'DISCOUNT_PERCENT',\n DiscountPercentAndDuration = 'DISCOUNT_PERCENT_AND_DURATION',\n DiscountPercentAndDurationAndVolume = 'DISCOUNT_PERCENT_AND_DURATION_AND_VOLUME',\n DiscountPercentAndDurationAndVolumeWithMonths = 'DISCOUNT_PERCENT_AND_DURATION_AND_VOLUME_WITH_MONTHS',\n DiscountPercentAndDurationWithMonths = 'DISCOUNT_PERCENT_AND_DURATION_WITH_MONTHS',\n DiscountPercentAndVolume = 'DISCOUNT_PERCENT_AND_VOLUME',\n DiscountPercentAndVolumeWithMonths = 'DISCOUNT_PERCENT_AND_VOLUME_WITH_MONTHS',\n DiscountPercentWithMonths = 'DISCOUNT_PERCENT_WITH_MONTHS'\n}\n\nexport type CreateCartItemInput = {\n plan_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CreateCommentInput = {\n message?: InputMaybe<Scalars['String']['input']>;\n post_id?: InputMaybe<Scalars['Int']['input']>;\n site?: InputMaybe<Site>;\n};\n\nexport type CreateCustomSubscriptionInput = {\n notes?: InputMaybe<Scalars['String']['input']>;\n payment_method: PaymentMethod;\n period_end_date: Scalars['String']['input'];\n period_start_date: Scalars['String']['input'];\n plan_id: Scalars['Int']['input'];\n transaction_id: Scalars['String']['input'];\n user_id: Scalars['Int']['input'];\n};\n\nexport type CreateCustomSubscriptionResponse = {\n __typename?: 'CreateCustomSubscriptionResponse';\n subscription?: Maybe<Subscription>;\n};\n\nexport type CreateOpenPayChargeInput = {\n billingInfo?: InputMaybe<SubscriptionBillingInput>;\n deviceDataId?: InputMaybe<Scalars['String']['input']>;\n planId?: InputMaybe<Scalars['Int']['input']>;\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateOpenPayChargeResponse = {\n __typename?: 'CreateOpenPayChargeResponse';\n redirect_url?: Maybe<Scalars['String']['output']>;\n};\n\nexport type CreateOpenPaySubscriptionInput = {\n billingInfo?: InputMaybe<SubscriptionBillingInput>;\n deviceDataId?: InputMaybe<Scalars['String']['input']>;\n planId?: InputMaybe<Scalars['Int']['input']>;\n subscriptionUrl?: InputMaybe<Scalars['String']['input']>;\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateOpenPaySubscriptionResponse = {\n __typename?: 'CreateOpenPaySubscriptionResponse';\n subscription?: Maybe<Subscription>;\n};\n\nexport type CreatePaypalSubscriptionInput = {\n billingInfo?: InputMaybe<SubscriptionBillingInput>;\n coupon?: InputMaybe<Scalars['String']['input']>;\n orderId?: InputMaybe<Scalars['String']['input']>;\n planId?: InputMaybe<Scalars['Int']['input']>;\n subscriptionId?: InputMaybe<Scalars['String']['input']>;\n subscriptionUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreatePaypalSubscriptionResponse = {\n __typename?: 'CreatePaypalSubscriptionResponse';\n subscription?: Maybe<Subscription>;\n};\n\nexport type CreateReplyCommentInput = {\n comment_id?: InputMaybe<Scalars['Int']['input']>;\n message?: InputMaybe<Scalars['String']['input']>;\n post_id?: InputMaybe<Scalars['Int']['input']>;\n site?: InputMaybe<Site>;\n};\n\nexport type CreateSharedCouponResponse = {\n __typename?: 'CreateSharedCouponResponse';\n message?: Maybe<Scalars['String']['output']>;\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type CreateStripePaymentMethodInput = {\n customer_id?: InputMaybe<Scalars['String']['input']>;\n payment_method_id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateStripePaymentMethodResponse = {\n __typename?: 'CreateStripePaymentMethodResponse';\n card?: Maybe<Card>;\n};\n\nexport type CreateSubscriptionBillingInput = {\n address?: InputMaybe<Scalars['String']['input']>;\n address1?: InputMaybe<Scalars['String']['input']>;\n aditional_name?: InputMaybe<Scalars['String']['input']>;\n city?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n external_number?: InputMaybe<Scalars['String']['input']>;\n internal_number?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n phone1?: InputMaybe<Scalars['String']['input']>;\n postal_code?: InputMaybe<Scalars['String']['input']>;\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateSubscriptionBillingResponse = {\n __typename?: 'CreateSubscriptionBillingResponse';\n subscriptionBilling?: Maybe<SubscriptionBilling>;\n};\n\nexport type CreateUserInvitationInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n role?: InputMaybe<UserRoles>;\n};\n\nexport type CreateUserSavedPostInput = {\n post_id?: InputMaybe<Scalars['Int']['input']>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CreatedAtInput = {\n gte?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type DateTimeNullableFilter = {\n equals?: InputMaybe<Scalars['DateTime']['input']>;\n gt?: InputMaybe<Scalars['DateTime']['input']>;\n gte?: InputMaybe<Scalars['DateTime']['input']>;\n in?: InputMaybe<Array<Scalars['DateTime']['input']>>;\n lt?: InputMaybe<Scalars['DateTime']['input']>;\n lte?: InputMaybe<Scalars['DateTime']['input']>;\n not?: InputMaybe<DateTimeNullableFilter>;\n notIn?: InputMaybe<Array<Scalars['DateTime']['input']>>;\n};\n\nexport type DeleteUserSavedPostInput = {\n id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type DisableUserInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n password?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type DisconnectResponse = {\n __typename?: 'DisconnectResponse';\n message?: Maybe<Scalars['String']['output']>;\n};\n\nexport type DisconnectUserProviderInput = {\n provider?: InputMaybe<SocialProviders>;\n};\n\nexport type File = {\n encoding: Scalars['String']['input'];\n filename: Scalars['String']['input'];\n mimetype: Scalars['String']['input'];\n};\n\nexport enum FilterSocialProviders {\n All = 'ALL',\n Apple = 'APPLE',\n Facebook = 'FACEBOOK',\n Google = 'GOOGLE',\n System = 'SYSTEM'\n}\n\nexport type ForgotPasswordPayload = {\n __typename?: 'ForgotPasswordPayload';\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport enum Gender {\n Female = 'FEMALE',\n Male = 'MALE',\n NoApply = 'NO_APPLY'\n}\n\nexport type IdFilter = {\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<IdFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport enum InterestsEnum {\n AnimalGourmet = 'ANIMAL_GOURMET',\n AnimalMx = 'ANIMAL_MX',\n AnimalPolitico = 'ANIMAL_POLITICO',\n ElSabueso = 'EL_SABUESO',\n Newsweek = 'NEWSWEEK'\n}\n\nexport type Invoice = {\n __typename?: 'Invoice';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n plan?: Maybe<Plan>;\n status?: Maybe<InvoiceStatuses>;\n transaction_id?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum InvoiceStatuses {\n Cancelled = 'CANCELLED',\n Paid = 'PAID',\n PaymentPending = 'PAYMENT_PENDING',\n Refunded = 'REFUNDED',\n Unpaid = 'UNPAID'\n}\n\nexport type MailchimpAddSubscriptionInput = {\n audience?: InputMaybe<Scalars['String']['input']>;\n email?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type MailchimpAddSubscriptionResponse = {\n __typename?: 'MailchimpAddSubscriptionResponse';\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type MailchimpAudience = {\n __typename?: 'MailchimpAudience';\n audience?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n is_subscribed?: Maybe<Scalars['Boolean']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n};\n\nexport type MailchimpAudienceResponse = {\n __typename?: 'MailchimpAudienceResponse';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<MailchimpAudience>>>;\n};\n\nexport type MailchimpSubscription = {\n __typename?: 'MailchimpSubscription';\n audience?: Maybe<Scalars['String']['output']>;\n status?: Maybe<Scalars['String']['output']>;\n unique_email_id?: Maybe<Scalars['String']['output']>;\n};\n\nexport type MailchimpSubscriptionResponse = {\n __typename?: 'MailchimpSubscriptionResponse';\n subscriptions?: Maybe<Array<Maybe<MailchimpSubscription>>>;\n};\n\nexport type MailchimpSubscriptionWhere = {\n email?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Mutation = {\n __typename?: 'Mutation';\n addUserBroadcastData?: Maybe<AddUserBroadcastDataResponse>;\n addUserInterests?: Maybe<UserInterestsResponse>;\n addUserPreferencesData?: Maybe<AddUserPreferencesDataResponse>;\n adminDisableAccount?: Maybe<DisableAccountResponse>;\n appleSignup?: Maybe<AuthPayload>;\n cancelSubscription?: Maybe<CancelSubscriptionResponse>;\n cancelSubscriptionNow?: Maybe<CancelSubscriptionResponse>;\n changePassword?: Maybe<AuthPayload>;\n claimCode?: Maybe<ClaimCodeResponse>;\n connectUserApple?: Maybe<ConnectResponse>;\n connectUserFacebook?: Maybe<ConnectResponse>;\n connectUserGoogle?: Maybe<ConnectResponse>;\n createCartItem?: Maybe<Cart>;\n createComment?: Maybe<Comment>;\n createCustomSubscription?: Maybe<CreateCustomSubscriptionResponse>;\n createOpenPayCharge?: Maybe<CreateOpenPayChargeResponse>;\n createOpenPaySubscription?: Maybe<CreateOpenPaySubscriptionResponse>;\n createPaypalSubscription?: Maybe<CreatePaypalSubscriptionResponse>;\n createReplyComment?: Maybe<ReplyComment>;\n createSharedCoupon?: Maybe<CreateSharedCouponResponse>;\n createStripePaymentMethod?: Maybe<CreateStripePaymentMethodResponse>;\n createStudentCredential?: Maybe<StudentCredential>;\n createSubscriptionBilling?: Maybe<CreateSubscriptionBillingResponse>;\n createUserInvitation?: Maybe<UserInvitation>;\n createUserSavedPost?: Maybe<UserSavedPost>;\n deleteUserSavedPost?: Maybe<UserSavedPost>;\n disableAccount?: Maybe<DisableAccountResponse>;\n disconnectUserProvider?: Maybe<DisconnectResponse>;\n facebookSignup?: Maybe<AuthPayload>;\n forgotPassword?: Maybe<ForgotPasswordPayload>;\n googleSignIn?: Maybe<AuthPayload>;\n googleSignup?: Maybe<AuthPayload>;\n login?: Maybe<AuthPayload>;\n mailchimpAddSubscription?: Maybe<MailchimpAddSubscriptionResponse>;\n reactivateSubscription?: Maybe<Subscription>;\n recaptcha?: Maybe<RecaptchaResponse>;\n removeCartItem?: Maybe<Cart>;\n removeUserInvitation?: Maybe<RemoveUserInvitationPayload>;\n resendUserInvitation?: Maybe<UserInvitation>;\n signup?: Maybe<AuthPayload>;\n subscriptionsNextExpireReport?: Maybe<Report>;\n toggleAdministratorUserRole?: Maybe<User>;\n updateCard?: Maybe<UpdateCardResponse>;\n updateCartDiscount?: Maybe<Array<Maybe<Cart>>>;\n updateCustomSubscription?: Maybe<UpdateCustomSubscriptionResponse>;\n updateSubscription?: Maybe<Subscription>;\n updateSubscriptionBilling?: Maybe<UpdateSubscriptionBillingResponse>;\n updateUser?: Maybe<User>;\n updateUserEmail?: Maybe<UpdateUserEmailResponse>;\n updateUserInvitation?: Maybe<UserInvitation>;\n updateUserandRoles?: Maybe<User>;\n};\n\n\nexport type MutationAddUserBroadcastDataArgs = {\n data?: InputMaybe<AddUserBroadcastDataInput>;\n};\n\n\nexport type MutationAddUserInterestsArgs = {\n data?: InputMaybe<AddInterestsToUserInput>;\n};\n\n\nexport type MutationAddUserPreferencesDataArgs = {\n data?: InputMaybe<AddUserPreferencesInput>;\n};\n\n\nexport type MutationAdminDisableAccountArgs = {\n data?: InputMaybe<AdminDisableUserInput>;\n};\n\n\nexport type MutationAppleSignupArgs = {\n site: Site;\n token: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationCancelSubscriptionArgs = {\n data?: InputMaybe<CancelSubscriptionInput>;\n};\n\n\nexport type MutationCancelSubscriptionNowArgs = {\n data?: InputMaybe<CancelSubscriptionInput>;\n};\n\n\nexport type MutationChangePasswordArgs = {\n email: Scalars['String']['input'];\n password: Scalars['String']['input'];\n token: Scalars['String']['input'];\n};\n\n\nexport type MutationConnectUserAppleArgs = {\n data: ConnectUserAppleInput;\n};\n\n\nexport type MutationConnectUserFacebookArgs = {\n data: ConnectUserFacebookInput;\n};\n\n\nexport type MutationConnectUserGoogleArgs = {\n data: ConnectUserGoogleInput;\n};\n\n\nexport type MutationCreateCartItemArgs = {\n data?: InputMaybe<CreateCartItemInput>;\n};\n\n\nexport type MutationCreateCommentArgs = {\n data?: InputMaybe<CreateCommentInput>;\n};\n\n\nexport type MutationCreateCustomSubscriptionArgs = {\n data?: InputMaybe<CreateCustomSubscriptionInput>;\n};\n\n\nexport type MutationCreateOpenPayChargeArgs = {\n data?: InputMaybe<CreateOpenPayChargeInput>;\n};\n\n\nexport type MutationCreateOpenPaySubscriptionArgs = {\n data?: InputMaybe<CreateOpenPaySubscriptionInput>;\n};\n\n\nexport type MutationCreatePaypalSubscriptionArgs = {\n data?: InputMaybe<CreatePaypalSubscriptionInput>;\n};\n\n\nexport type MutationCreateReplyCommentArgs = {\n data?: InputMaybe<CreateReplyCommentInput>;\n};\n\n\nexport type MutationCreateSharedCouponArgs = {\n coupon_id: Scalars['Int']['input'];\n emails?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n\nexport type MutationCreateStripePaymentMethodArgs = {\n data?: InputMaybe<CreateStripePaymentMethodInput>;\n};\n\n\nexport type MutationCreateStudentCredentialArgs = {\n data?: InputMaybe<StudentCredentialInput>;\n};\n\n\nexport type MutationCreateSubscriptionBillingArgs = {\n data?: InputMaybe<CreateSubscriptionBillingInput>;\n};\n\n\nexport type MutationCreateUserInvitationArgs = {\n data?: InputMaybe<CreateUserInvitationInput>;\n};\n\n\nexport type MutationCreateUserSavedPostArgs = {\n data?: InputMaybe<CreateUserSavedPostInput>;\n};\n\n\nexport type MutationDeleteUserSavedPostArgs = {\n data?: InputMaybe<DeleteUserSavedPostInput>;\n};\n\n\nexport type MutationDisableAccountArgs = {\n data?: InputMaybe<DisableUserInput>;\n};\n\n\nexport type MutationDisconnectUserProviderArgs = {\n data: DisconnectUserProviderInput;\n};\n\n\nexport type MutationFacebookSignupArgs = {\n site: Site;\n token: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationForgotPasswordArgs = {\n email: Scalars['String']['input'];\n form: Scalars['String']['input'];\n redirectUrl: Scalars['String']['input'];\n};\n\n\nexport type MutationGoogleSignInArgs = {\n site: Site;\n token: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationGoogleSignupArgs = {\n site: Site;\n token: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationLoginArgs = {\n email: Scalars['String']['input'];\n password: Scalars['String']['input'];\n};\n\n\nexport type MutationMailchimpAddSubscriptionArgs = {\n data?: InputMaybe<MailchimpAddSubscriptionInput>;\n};\n\n\nexport type MutationReactivateSubscriptionArgs = {\n data?: InputMaybe<ReactivateSubscriptionInput>;\n};\n\n\nexport type MutationRecaptchaArgs = {\n email: Scalars['String']['input'];\n site?: InputMaybe<Scalars['String']['input']>;\n token: Scalars['String']['input'];\n};\n\n\nexport type MutationRemoveCartItemArgs = {\n data?: InputMaybe<RemoveCartItemInput>;\n};\n\n\nexport type MutationRemoveUserInvitationArgs = {\n id: Scalars['String']['input'];\n};\n\n\nexport type MutationResendUserInvitationArgs = {\n id: Scalars['String']['input'];\n};\n\n\nexport type MutationSignupArgs = {\n email: Scalars['String']['input'];\n name: Scalars['String']['input'];\n password: Scalars['String']['input'];\n site: Site;\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationSubscriptionsNextExpireReportArgs = {\n data?: InputMaybe<SubscriptionsNextExpireReportInput>;\n};\n\n\nexport type MutationToggleAdministratorUserRoleArgs = {\n data?: InputMaybe<ToggleAdministratorUserRoleInput>;\n};\n\n\nexport type MutationUpdateCardArgs = {\n data?: InputMaybe<UpdateCardInput>;\n};\n\n\nexport type MutationUpdateCartDiscountArgs = {\n data?: InputMaybe<UpdateCartDiscountInput>;\n};\n\n\nexport type MutationUpdateCustomSubscriptionArgs = {\n data?: InputMaybe<UpdateCustomSubscriptionInput>;\n};\n\n\nexport type MutationUpdateSubscriptionArgs = {\n data?: InputMaybe<UpdateSubscriptionInput>;\n};\n\n\nexport type MutationUpdateSubscriptionBillingArgs = {\n data?: InputMaybe<UpdateSubscriptionBillingInput>;\n};\n\n\nexport type MutationUpdateUserArgs = {\n data?: InputMaybe<UpdateUserInput>;\n};\n\n\nexport type MutationUpdateUserEmailArgs = {\n data?: InputMaybe<UpdateUserEmailInput>;\n};\n\n\nexport type MutationUpdateUserInvitationArgs = {\n data?: InputMaybe<UpdateUserInvitationInput>;\n};\n\n\nexport type MutationUpdateUserandRolesArgs = {\n data?: InputMaybe<UpdateUserWithRolesInput>;\n};\n\nexport type NestedStringFilter = {\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n not?: InputMaybe<NestedStringFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Notification = {\n __typename?: 'Notification';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type NotificationResponse = {\n __typename?: 'NotificationResponse';\n count?: Maybe<Scalars['Int']['output']>;\n notifications?: Maybe<Array<Maybe<Notification>>>;\n};\n\nexport type OpenPay = {\n __typename?: 'OpenPay';\n first_payment_price?: Maybe<Scalars['Int']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n open_pay_id?: Maybe<Scalars['String']['output']>;\n plan_id?: Maybe<Scalars['Int']['output']>;\n status?: Maybe<OpenPayStatuses>;\n};\n\nexport enum OpenPayStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport enum PaymentMethod {\n Custom = 'CUSTOM',\n Openpay = 'OPENPAY',\n Paypal = 'PAYPAL',\n StripeCard = 'STRIPE_CARD'\n}\n\nexport type Paypal = {\n __typename?: 'Paypal';\n id?: Maybe<Scalars['Int']['output']>;\n paypal_id?: Maybe<Scalars['String']['output']>;\n plan_id?: Maybe<Scalars['Int']['output']>;\n status?: Maybe<PaypalStatuses>;\n};\n\nexport enum PaypalStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport type Plan = {\n __typename?: 'Plan';\n description?: Maybe<Scalars['String']['output']>;\n frequency?: Maybe<PlanFrequency>;\n helper_text?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n is_premium?: Maybe<Scalars['Boolean']['output']>;\n open_pay?: Maybe<OpenPay>;\n paypal?: Maybe<Paypal>;\n price?: Maybe<Scalars['String']['output']>;\n promo_subsidiary?: Maybe<Array<Maybe<Promo_Subsidiary_Type>>>;\n slug?: Maybe<Scalars['String']['output']>;\n status?: Maybe<PlanStatuses>;\n stripe?: Maybe<Stripe>;\n sub_title?: Maybe<Scalars['String']['output']>;\n subscription_billing_is_required?: Maybe<Scalars['Boolean']['output']>;\n subscription_student_credential_is_required?: Maybe<Scalars['Boolean']['output']>;\n title?: Maybe<Scalars['String']['output']>;\n title_front?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum PlanFrequency {\n Day = 'DAY',\n Month = 'MONTH',\n Week = 'WEEK',\n Year = 'YEAR'\n}\n\nexport type PlanResponse = {\n __typename?: 'PlanResponse';\n items?: Maybe<Array<Maybe<Plan>>>;\n};\n\nexport enum PlanStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport type PlanWhereInput = {\n status?: InputMaybe<PaypalStatuses>;\n};\n\nexport type PlansWhereInput = {\n is_premium?: InputMaybe<Scalars['Boolean']['input']>;\n status?: InputMaybe<PaypalStatuses>;\n};\n\nexport type Promo_Subsidiary_Type = {\n __typename?: 'Promo_subsidiary_type';\n description_first_line?: Maybe<Scalars['String']['output']>;\n description_second_line?: Maybe<Scalars['String']['output']>;\n header_subsidiary?: Maybe<Scalars['String']['output']>;\n identity_color?: Maybe<Scalars['String']['output']>;\n image?: Maybe<Scalars['String']['output']>;\n text_color?: Maybe<Scalars['String']['output']>;\n title?: Maybe<Scalars['String']['output']>;\n};\n\nexport type Query = {\n __typename?: 'Query';\n allCertifications?: Maybe<AllCetificationsResponse>;\n cancelledSubscriptionsMetrics?: Maybe<Array<CancelledSubscriptionMetric>>;\n certificationsAvailable?: Maybe<CetificationsAvailableResponse>;\n comments?: Maybe<CommentsResponse>;\n currentUser?: Maybe<User>;\n easyDataUsers?: Maybe<UsersPayload>;\n fetchCoupon?: Maybe<StripeCoupon>;\n getUserCart?: Maybe<Array<Maybe<Cart>>>;\n mailchimpAudiences?: Maybe<MailchimpAudienceResponse>;\n mailchimpSubscriptions?: Maybe<MailchimpSubscriptionResponse>;\n notificationList?: Maybe<NotificationResponse>;\n plan?: Maybe<Plan>;\n plans?: Maybe<PlanResponse>;\n stripeCouponList?: Maybe<StripeCouponListResponse>;\n subscriptionCancelledByFilter?: Maybe<SubscriptionCancelledByFilter>;\n user?: Maybe<User>;\n userInvitations?: Maybe<UserInvitationsResponse>;\n userProviders?: Maybe<UserSocialProvidersResponse>;\n userSavedPosts?: Maybe<UserSavedPostsResponse>;\n userSubscriberEvents?: Maybe<UsersSubscriberEventsPayload>;\n users?: Maybe<UsersPayload>;\n validateCoupon?: Maybe<StripeCoupon>;\n};\n\n\nexport type QueryCancelledSubscriptionsMetricsArgs = {\n where: SubscriptionCancelWhereInput;\n};\n\n\nexport type QueryCommentsArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<CommentsWhere>;\n};\n\n\nexport type QueryEasyDataUsersArgs = {\n orderBy?: InputMaybe<Array<InputMaybe<UserOrderInput>>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UsersWhere>;\n};\n\n\nexport type QueryFetchCouponArgs = {\n couponCode: Scalars['String']['input'];\n plan_id: Scalars['Int']['input'];\n};\n\n\nexport type QueryMailchimpSubscriptionsArgs = {\n where?: InputMaybe<MailchimpSubscriptionWhere>;\n};\n\n\nexport type QueryNotificationListArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<NotificationsWhere>;\n};\n\n\nexport type QueryPlanArgs = {\n id?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryPlansArgs = {\n where?: InputMaybe<PlansWhereInput>;\n};\n\n\nexport type QueryStripeCouponListArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<StripeCouponListWhere>;\n};\n\n\nexport type QuerySubscriptionCancelledByFilterArgs = {\n where: SubscriptionCancelledByFilterInput;\n};\n\n\nexport type QueryUserArgs = {\n id: Scalars['Int']['input'];\n};\n\n\nexport type QueryUserInvitationsArgs = {\n data?: InputMaybe<UserInvitationsInput>;\n};\n\n\nexport type QueryUserProvidersArgs = {\n orderBy?: InputMaybe<Array<InputMaybe<UserSocialProvidersOrderInput>>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UserSocialProvidersWhereInput>;\n};\n\n\nexport type QueryUserSavedPostsArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UserSavedPostsWhere>;\n};\n\n\nexport type QueryUserSubscriberEventsArgs = {\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UsersSubscriberEventsWhere>;\n};\n\n\nexport type QueryUsersArgs = {\n orderBy?: InputMaybe<Array<InputMaybe<UserOrderInput>>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UsersWhere>;\n};\n\n\nexport type QueryValidateCouponArgs = {\n couponCode: Scalars['String']['input'];\n plan_id: Scalars['Int']['input'];\n};\n\nexport type ReactivateSubscriptionInput = {\n subscription_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type RecaptchaResponse = {\n __typename?: 'RecaptchaResponse';\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type RemoveCartItemInput = {\n id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type RemoveUserInvitationPayload = {\n __typename?: 'RemoveUserInvitationPayload';\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type ReplyComment = {\n __typename?: 'ReplyComment';\n comment_id?: Maybe<Scalars['Int']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n post_id?: Maybe<Scalars['Int']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type Report = {\n __typename?: 'Report';\n count_files?: Maybe<Scalars['Int']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n files?: Maybe<Array<Maybe<ReportFile>>>;\n from_date?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n requested_by?: Maybe<Scalars['String']['output']>;\n site?: Maybe<Site>;\n status?: Maybe<StatusReport>;\n status_message?: Maybe<Scalars['String']['output']>;\n to_date?: Maybe<Scalars['String']['output']>;\n type?: Maybe<ReportTypes>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ReportFile = {\n __typename?: 'ReportFile';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n path?: Maybe<Scalars['String']['output']>;\n report?: Maybe<Report>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum ReportTypes {\n SubscriptionNextExpireReport = 'SUBSCRIPTION_NEXT_EXPIRE_REPORT',\n SubscriptionReport = 'SUBSCRIPTION_REPORT',\n UserReport = 'USER_REPORT',\n WinnerNotesReport = 'WINNER_NOTES_REPORT'\n}\n\nexport type RolesOnUsers = {\n __typename?: 'RolesOnUsers';\n role?: Maybe<UserRole>;\n role_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport enum Site {\n AnimalPolitico = 'ANIMAL_POLITICO',\n CriterioHidalgo = 'CRITERIO_HIDALGO'\n}\n\nexport enum SocialProviders {\n Apple = 'APPLE',\n Facebook = 'FACEBOOK',\n Google = 'GOOGLE',\n System = 'SYSTEM'\n}\n\nexport enum SortOrder {\n Asc = 'asc',\n Desc = 'desc'\n}\n\nexport type SortTableInput = {\n field?: InputMaybe<Scalars['String']['input']>;\n order?: InputMaybe<SortOrder>;\n};\n\nexport enum StatusReport {\n Error = 'ERROR',\n InProgress = 'IN_PROGRESS',\n Pending = 'PENDING',\n Success = 'SUCCESS'\n}\n\nexport type StringFilter = {\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n not?: InputMaybe<NestedStringFilter>;\n notIn?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Stripe = {\n __typename?: 'Stripe';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n plan_id?: Maybe<Scalars['Int']['output']>;\n price_id?: Maybe<Scalars['String']['output']>;\n product_id?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type StripeCoupon = {\n __typename?: 'StripeCoupon';\n assigned_to_share?: Maybe<Scalars['Boolean']['output']>;\n coupon?: Maybe<Scalars['String']['output']>;\n coupon_type?: Maybe<CouponTypes>;\n created_at?: Maybe<Scalars['String']['output']>;\n discount_amount?: Maybe<Scalars['Int']['output']>;\n discount_percent?: Maybe<Scalars['Int']['output']>;\n duration_in_months?: Maybe<Scalars['Int']['output']>;\n end_date?: Maybe<Scalars['String']['output']>;\n id: Scalars['Int']['output'];\n is_for_sharing?: Maybe<Scalars['Boolean']['output']>;\n is_public?: Maybe<Scalars['Boolean']['output']>;\n max_redemptions?: Maybe<Scalars['Int']['output']>;\n paypal_coupon_plan?: Maybe<Scalars['String']['output']>;\n plan?: Maybe<Plan>;\n plan_names?: Maybe<Scalars['String']['output']>;\n start_date?: Maybe<Scalars['String']['output']>;\n status?: Maybe<CouponStatuses>;\n stripe_id?: Maybe<Scalars['Int']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n used_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type StripeCouponListResponse = {\n __typename?: 'StripeCouponListResponse';\n count?: Maybe<Scalars['Int']['output']>;\n coupons?: Maybe<Array<Maybe<StripeCoupon>>>;\n};\n\nexport type StudentCredential = {\n __typename?: 'StudentCredential';\n created_at?: Maybe<Scalars['String']['output']>;\n expiration_date?: Maybe<Scalars['String']['output']>;\n id: Scalars['Int']['output'];\n school?: Maybe<Scalars['String']['output']>;\n school_contact_number?: Maybe<Scalars['String']['output']>;\n start_date?: Maybe<Scalars['String']['output']>;\n student_card?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type StudentCredentialDataInput = {\n expiration_date?: InputMaybe<Scalars['String']['input']>;\n school?: InputMaybe<Scalars['String']['input']>;\n school_contact_number?: InputMaybe<Scalars['String']['input']>;\n start_date?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type StudentCredentialInput = {\n file?: InputMaybe<Scalars['Upload']['input']>;\n};\n\nexport type SubscriberEvent = {\n __typename?: 'SubscriberEvent';\n description?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n};\n\nexport type Subscription = {\n __typename?: 'Subscription';\n cancel_date?: Maybe<Scalars['String']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n customer_id?: Maybe<Scalars['String']['output']>;\n has_change_plan?: Maybe<Scalars['Boolean']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n is_cancel?: Maybe<Scalars['Boolean']['output']>;\n notes?: Maybe<Scalars['String']['output']>;\n payment_method?: Maybe<PaymentMethod>;\n period_end_date?: Maybe<Scalars['String']['output']>;\n period_start_date?: Maybe<Scalars['String']['output']>;\n plan?: Maybe<Plan>;\n status?: Maybe<SubscriptionStatuses>;\n transaction_id?: Maybe<Scalars['String']['output']>;\n type?: Maybe<SubscriptionType>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type SubscriptionBilling = {\n __typename?: 'SubscriptionBilling';\n address?: Maybe<Scalars['String']['output']>;\n address1?: Maybe<Scalars['String']['output']>;\n aditional_name?: Maybe<Scalars['String']['output']>;\n city?: Maybe<Scalars['String']['output']>;\n country?: Maybe<Scalars['String']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n external_number?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n internal_number?: Maybe<Scalars['String']['output']>;\n phone?: Maybe<Scalars['String']['output']>;\n phone1?: Maybe<Scalars['String']['output']>;\n postal_code?: Maybe<Scalars['String']['output']>;\n state?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SubscriptionBillingInput = {\n address?: InputMaybe<Scalars['String']['input']>;\n address1?: InputMaybe<Scalars['String']['input']>;\n aditional_name?: InputMaybe<Scalars['String']['input']>;\n city?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n external_number?: InputMaybe<Scalars['String']['input']>;\n internal_number?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n phone1?: InputMaybe<Scalars['String']['input']>;\n postal_code?: InputMaybe<Scalars['String']['input']>;\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SubscriptionCancelWhereInput = {\n from: Scalars['String']['input'];\n to: Scalars['String']['input'];\n};\n\nexport type SubscriptionCancelledByFilter = {\n __typename?: 'SubscriptionCancelledByFilter';\n items: Array<Subscription>;\n total: Scalars['Int']['output'];\n};\n\nexport type SubscriptionCancelledByFilterInput = {\n from: Scalars['String']['input'];\n page: Scalars['Int']['input'];\n pageSize: Scalars['Int']['input'];\n to: Scalars['String']['input'];\n};\n\nexport enum SubscriptionStatuses {\n Active = 'ACTIVE',\n Cancelled = 'CANCELLED',\n Inactive = 'INACTIVE',\n Updated = 'UPDATED'\n}\n\nexport enum SubscriptionType {\n Payment = 'PAYMENT',\n RecurrentPayment = 'RECURRENT_PAYMENT'\n}\n\nexport type SubscriptionsNextExpireReportInput = {\n monthExpire: Scalars['String']['input'];\n payment_method?: InputMaybe<Scalars['String']['input']>;\n requested_by: Scalars['String']['input'];\n status?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateCardInput = {\n card_number?: InputMaybe<Scalars['String']['input']>;\n cvv2?: InputMaybe<Scalars['String']['input']>;\n device_session_id?: InputMaybe<Scalars['String']['input']>;\n expiration_month?: InputMaybe<Scalars['String']['input']>;\n expiration_year?: InputMaybe<Scalars['String']['input']>;\n holder_name?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateCardResponse = {\n __typename?: 'UpdateCardResponse';\n card?: Maybe<Card>;\n};\n\nexport type UpdateCartDiscountInput = {\n discount?: InputMaybe<CartDescoutBy>;\n};\n\nexport type UpdateCustomSubscriptionInput = {\n notes?: InputMaybe<Scalars['String']['input']>;\n payment_method?: InputMaybe<PaymentMethod>;\n period_end_date?: InputMaybe<Scalars['String']['input']>;\n period_start_date?: InputMaybe<Scalars['String']['input']>;\n plan_id?: InputMaybe<Scalars['Int']['input']>;\n status?: InputMaybe<SubscriptionStatuses>;\n subscription_id: Scalars['Int']['input'];\n transaction_id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateCustomSubscriptionResponse = {\n __typename?: 'UpdateCustomSubscriptionResponse';\n subscription?: Maybe<Subscription>;\n};\n\nexport type UpdateSubscriptionBillingInput = {\n address?: InputMaybe<Scalars['String']['input']>;\n address1?: InputMaybe<Scalars['String']['input']>;\n aditional_name?: InputMaybe<Scalars['String']['input']>;\n city?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n external_number?: InputMaybe<Scalars['String']['input']>;\n id?: InputMaybe<Scalars['Int']['input']>;\n internal_number?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n phone1?: InputMaybe<Scalars['String']['input']>;\n postal_code?: InputMaybe<Scalars['String']['input']>;\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateSubscriptionBillingResponse = {\n __typename?: 'UpdateSubscriptionBillingResponse';\n subscriptionBilling?: Maybe<SubscriptionBilling>;\n};\n\nexport type UpdateSubscriptionInput = {\n id?: InputMaybe<Scalars['Int']['input']>;\n payment_method_type?: InputMaybe<PaymentMethod>;\n plan_id?: InputMaybe<Scalars['Int']['input']>;\n subscriptionBilling?: InputMaybe<SubscriptionBillingInput>;\n subscription_id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateUserEmailInput = {\n new_email?: InputMaybe<Scalars['String']['input']>;\n password?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateUserEmailResponse = {\n __typename?: 'UpdateUserEmailResponse';\n message?: Maybe<Scalars['String']['output']>;\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type UpdateUserInput = {\n file?: InputMaybe<Scalars['Upload']['input']>;\n user?: InputMaybe<UserInput>;\n};\n\nexport type UpdateUserInvitationInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<UserInvitationStatuses>;\n};\n\nexport type UpdateUserWithRolesInput = {\n file?: InputMaybe<Scalars['Upload']['input']>;\n newRoles?: InputMaybe<Array<InputMaybe<UserRoles>>>;\n user?: InputMaybe<UserInput>;\n};\n\nexport type User = {\n __typename?: 'User';\n avatar?: Maybe<Scalars['String']['output']>;\n birthday?: Maybe<Scalars['String']['output']>;\n broadcast_user_data?: Maybe<UserBroadcastData>;\n card?: Maybe<Card>;\n convoy_code?: Maybe<ConvoyCode>;\n created_at?: Maybe<Scalars['String']['output']>;\n email: Scalars['String']['output'];\n gender?: Maybe<Gender>;\n id: Scalars['Int']['output'];\n interests?: Maybe<Array<Maybe<UserInterests>>>;\n invoices?: Maybe<Array<Maybe<Invoice>>>;\n name: Scalars['String']['output'];\n password?: Maybe<Scalars['String']['output']>;\n post_saved?: Maybe<Array<Maybe<UserSavedPost>>>;\n roles_on_users?: Maybe<Array<Maybe<RolesOnUsers>>>;\n site?: Maybe<Site>;\n social_providers?: Maybe<Array<Maybe<UserSocialProviders>>>;\n student_credential?: Maybe<StudentCredential>;\n subscription_billing?: Maybe<SubscriptionBilling>;\n subscriptions?: Maybe<Array<Maybe<Subscription>>>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user_status?: Maybe<UserStatus>;\n};\n\nexport type UserInput = {\n avatar?: InputMaybe<Scalars['String']['input']>;\n birthday?: InputMaybe<Scalars['String']['input']>;\n created_at?: InputMaybe<Scalars['String']['input']>;\n gender?: InputMaybe<Gender>;\n id: Scalars['Int']['input'];\n name: Scalars['String']['input'];\n password?: InputMaybe<Scalars['String']['input']>;\n remember_token?: InputMaybe<Scalars['String']['input']>;\n site?: InputMaybe<Site>;\n updated_at?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UserInvitation = {\n __typename?: 'UserInvitation';\n created_at?: Maybe<Scalars['String']['output']>;\n email?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n role?: Maybe<UserRoles>;\n status?: Maybe<UserInvitationStatuses>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum UserInvitationStatuses {\n Accepted = 'ACCEPTED',\n Pending = 'PENDING',\n Rejected = 'REJECTED'\n}\n\nexport type UserInvitationWhereInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n role?: InputMaybe<UserRoles>;\n status?: InputMaybe<UserInvitationStatuses>;\n};\n\nexport type UserInvitationsResponse = {\n __typename?: 'UserInvitationsResponse';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<UserInvitation>>>;\n};\n\nexport type UserOrderInput = {\n created_at?: InputMaybe<SortOrder>;\n email?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n user_status?: InputMaybe<SortOrder>;\n};\n\nexport type UserProviderPayload = {\n __typename?: 'UserProviderPayload';\n count?: Maybe<Scalars['Int']['output']>;\n userProviders?: Maybe<Array<Maybe<UserSocialProviders>>>;\n};\n\nexport type UserProvidersWhere = {\n created_at?: InputMaybe<CreatedAtInput>;\n provider?: InputMaybe<SocialProviders>;\n};\n\nexport type UserRole = {\n __typename?: 'UserRole';\n id?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<UserRoles>;\n};\n\nexport enum UserRoles {\n Administrator = 'ADMINISTRATOR',\n Editor = 'EDITOR',\n Suscriptor = 'SUSCRIPTOR',\n User = 'USER'\n}\n\nexport type UserSavedPost = {\n __typename?: 'UserSavedPost';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n post_id?: Maybe<Scalars['Int']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type UserSavedPostRestApi = {\n __typename?: 'UserSavedPostRestApi';\n id?: Maybe<Scalars['Int']['output']>;\n post_content?: Maybe<Scalars['String']['output']>;\n post_date?: Maybe<Scalars['String']['output']>;\n post_id?: Maybe<Scalars['Int']['output']>;\n post_image?: Maybe<Scalars['String']['output']>;\n post_name?: Maybe<Scalars['String']['output']>;\n post_terms?: Maybe<Array<Maybe<Scalars['String']['output']>>>;\n post_title?: Maybe<Scalars['String']['output']>;\n post_type?: Maybe<Scalars['String']['output']>;\n post_uri?: Maybe<Scalars['String']['output']>;\n post_url?: Maybe<Scalars['String']['output']>;\n sub_post_type?: Maybe<Scalars['String']['output']>;\n};\n\nexport type UserSavedPostsResponse = {\n __typename?: 'UserSavedPostsResponse';\n count?: Maybe<Scalars['Int']['output']>;\n posts?: Maybe<Array<Maybe<UserSavedPostRestApi>>>;\n};\n\nexport type UserSavedPostsWhere = {\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type UserSocialProviders = {\n __typename?: 'UserSocialProviders';\n created_at?: Maybe<Scalars['String']['output']>;\n id: Scalars['Int']['output'];\n primary?: Maybe<Scalars['Boolean']['output']>;\n provider?: Maybe<SocialProviders>;\n provider_id?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n url_register?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n users?: Maybe<User>;\n};\n\nexport type UserSocialProvidersListRelationFilter = {\n every?: InputMaybe<UserSocialProvidersWhereInput>;\n none?: InputMaybe<UserSocialProvidersWhereInput>;\n some?: InputMaybe<UserSocialProvidersWhereInput>;\n};\n\nexport type UserSocialProvidersOrderInput = {\n created_at?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n};\n\nexport type UserSocialProvidersResponse = {\n __typename?: 'UserSocialProvidersResponse';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<UserSocialProviders>>>;\n};\n\nexport type UserSocialProvidersWhereInput = {\n created_at?: InputMaybe<DateTimeNullableFilter>;\n id?: InputMaybe<IdFilter>;\n primary?: InputMaybe<Scalars['Boolean']['input']>;\n provider?: InputMaybe<SocialProviders>;\n};\n\nexport enum UserStatus {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport type UserSubscriberEvent = {\n __typename?: 'UserSubscriberEvent';\n created_at?: Maybe<Scalars['String']['output']>;\n event?: Maybe<SubscriberEvent>;\n event_id?: Maybe<Scalars['Int']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n user?: Maybe<User>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type UsersPayload = {\n __typename?: 'UsersPayload';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<User>>>;\n};\n\nexport type UsersSubscriberEventsPayload = {\n __typename?: 'UsersSubscriberEventsPayload';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<UserSubscriberEvent>>>;\n};\n\nexport type UsersSubscriberEventsWhere = {\n created_at?: InputMaybe<CreatedAtInput>;\n search?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UsersWhere = {\n OR?: InputMaybe<Array<InputMaybe<UsersWhere>>>;\n created_at?: InputMaybe<CreatedAtInput>;\n email?: InputMaybe<StringFilter>;\n name?: InputMaybe<StringFilter>;\n onlySubscribers?: InputMaybe<Scalars['Boolean']['input']>;\n provider?: InputMaybe<FilterSocialProviders>;\n site?: InputMaybe<Site>;\n};\n\nexport type AddInterestsToUserInput = {\n interests?: InputMaybe<Array<InputMaybe<InterestsEnum>>>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type AddUserBroadcastDataInput = {\n must_send?: InputMaybe<Scalars['Boolean']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type AddUserBroadcastDataResponse = {\n __typename?: 'addUserBroadcastDataResponse';\n data?: Maybe<UserBroadcastData>;\n};\n\nexport type AddUserPreferencesDataResponse = {\n __typename?: 'addUserPreferencesDataResponse';\n data?: Maybe<AddUserPreferencesDataType>;\n};\n\nexport type AddUserPreferencesDataType = {\n __typename?: 'addUserPreferencesDataType';\n broadcast?: Maybe<UserBroadcastData>;\n interests?: Maybe<Array<Maybe<UserInterests>>>;\n};\n\nexport type AddUserPreferencesInput = {\n interests?: InputMaybe<Array<InputMaybe<InterestsEnum>>>;\n must_send?: InputMaybe<Scalars['Boolean']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type DisableAccountResponse = {\n __typename?: 'disableAccountResponse';\n message?: Maybe<Scalars['String']['output']>;\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type NotificationsWhere = {\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type StripeCouponListWhere = {\n requestType?: InputMaybe<CouponRequestType>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type ToggleAdministratorUserRoleInput = {\n user_id: Scalars['Int']['input'];\n};\n\nexport type UserBroadcastData = {\n __typename?: 'userBroadcastData';\n id?: Maybe<Scalars['Int']['output']>;\n must_send?: Maybe<Scalars['Boolean']['output']>;\n phone?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type UserInterests = {\n __typename?: 'userInterests';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n interest?: Maybe<InterestsEnum>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type UserInterestsResponse = {\n __typename?: 'userInterestsResponse';\n data?: Maybe<Array<Maybe<UserInterests>>>;\n};\n\nexport type UserInvitationsInput = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n sort?: InputMaybe<SortTableInput>;\n where?: InputMaybe<UserInvitationWhereInput>;\n};\n\nexport type CurrentUserQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type CurrentUserQuery = { __typename?: 'Query', currentUser: { __typename?: 'User', id: number, name: string, email: string, avatar: string | null, gender: Gender | null, birthday: string | null, site: Site | null, social_providers: Array<{ __typename?: 'UserSocialProviders', id: number, provider: SocialProviders | null, provider_id: string | null, primary: boolean | null } | null> | null, roles_on_users: Array<{ __typename?: 'RolesOnUsers', role_id: number | null, role: { __typename?: 'UserRole', id: number | null, name: UserRoles | null } | null } | null> | null, subscriptions: Array<{ __typename?: 'Subscription', cancel_date: string | null, status: SubscriptionStatuses | null, payment_method: PaymentMethod | null, period_end_date: string | null, period_start_date: string | null, is_cancel: boolean | null, id: number | null, plan: { __typename?: 'Plan', title: string | null, description: string | null, sub_title: string | null, price: string | null, title_front: string | null } | null } | null> | null, post_saved: Array<{ __typename?: 'UserSavedPost', id: number | null, post_id: number | null } | null> | null } | null };\n\n\nexport const CurrentUserDocument = gql`\n query CurrentUser {\n currentUser {\n id\n name\n email\n avatar\n gender\n birthday\n site\n social_providers {\n id\n provider\n provider_id\n primary\n }\n roles_on_users {\n role_id\n role {\n id\n name\n }\n }\n subscriptions {\n plan {\n title\n description\n sub_title\n price\n title_front\n }\n cancel_date\n status\n payment_method\n period_end_date\n period_start_date\n is_cancel\n id\n }\n post_saved {\n id\n post_id\n }\n }\n}\n `;\n\n/**\n * __useCurrentUserQuery__\n *\n * To run a query within a React component, call `useCurrentUserQuery` and pass it any options that fit your needs.\n * When your component renders, `useCurrentUserQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useCurrentUserQuery({\n * variables: {\n * },\n * });\n */\nexport function useCurrentUserQuery(baseOptions?: Apollo.QueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return Apollo.useQuery<CurrentUserQuery, CurrentUserQueryVariables>(CurrentUserDocument, options);\n }\nexport function useCurrentUserLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return Apollo.useLazyQuery<CurrentUserQuery, CurrentUserQueryVariables>(CurrentUserDocument, options);\n }\n// @ts-ignore\nexport function useCurrentUserSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>): Apollo.UseSuspenseQueryResult<CurrentUserQuery, CurrentUserQueryVariables>;\nexport function useCurrentUserSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>): Apollo.UseSuspenseQueryResult<CurrentUserQuery | undefined, CurrentUserQueryVariables>;\nexport function useCurrentUserSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>) {\n const options = baseOptions === Apollo.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return Apollo.useSuspenseQuery<CurrentUserQuery, CurrentUserQueryVariables>(CurrentUserDocument, options);\n }\nexport type CurrentUserQueryHookResult = ReturnType<typeof useCurrentUserQuery>;\nexport type CurrentUserLazyQueryHookResult = ReturnType<typeof useCurrentUserLazyQuery>;\nexport type CurrentUserSuspenseQueryHookResult = ReturnType<typeof useCurrentUserSuspenseQuery>;\nexport type CurrentUserQueryResult = Apollo.QueryResult<CurrentUserQuery, CurrentUserQueryVariables>;"],"names":["CartDescoutBy","ConvoyCodeStatuses","CouponRequestType","CouponStatuses","CouponTypes","FilterSocialProviders","Gender","InterestsEnum","InvoiceStatuses","OpenPayStatuses","PaymentMethod","PaypalStatuses","PlanFrequency","PlanStatuses","ReportTypes","Site","SocialProviders","SortOrder","StatusReport","SubscriptionStatuses","SubscriptionType","UserInvitationStatuses","UserRoles","UserStatus","gql"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"generated.js","sources":["../../../../src/shared/types/generated.ts"],"sourcesContent":["/* eslint-disable */\nimport { gql } from '@apollo/client';\nimport * as Apollo from '@apollo/client';\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\nconst defaultOptions = {} as const;\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n DateTime: { input: string; output: string; }\n Upload: { input: any; output: any; }\n};\n\nexport type AdminDisableUserInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type AllCetificationsResponse = {\n __typename?: 'AllCetificationsResponse';\n certifications?: Maybe<Array<Maybe<Plan>>>;\n};\n\nexport type AuthPayload = {\n __typename?: 'AuthPayload';\n token?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type CancelSubscriptionInput = {\n subscription_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CancelSubscriptionResponse = {\n __typename?: 'CancelSubscriptionResponse';\n end_date?: Maybe<Scalars['String']['output']>;\n subscription?: Maybe<Subscription>;\n};\n\nexport type CancelledSubscriptionMetric = {\n __typename?: 'CancelledSubscriptionMetric';\n count: Scalars['Int']['output'];\n date: Scalars['String']['output'];\n previousCount: Scalars['Int']['output'];\n previousDate: Scalars['String']['output'];\n};\n\nexport type Card = {\n __typename?: 'Card';\n bank_code?: Maybe<Scalars['String']['output']>;\n bank_name?: Maybe<Scalars['String']['output']>;\n brand?: Maybe<Scalars['String']['output']>;\n card_number?: Maybe<Scalars['String']['output']>;\n customer_card_id?: Maybe<Scalars['String']['output']>;\n expiration_month?: Maybe<Scalars['String']['output']>;\n expiration_year?: Maybe<Scalars['String']['output']>;\n holder_name?: Maybe<Scalars['String']['output']>;\n type?: Maybe<Scalars['String']['output']>;\n};\n\nexport type Cart = {\n __typename?: 'Cart';\n id?: Maybe<Scalars['Int']['output']>;\n plan?: Maybe<Plan>;\n plan_id?: Maybe<Scalars['Int']['output']>;\n slug?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport enum CartDescoutBy {\n LoggedIn = 'LOGGED_IN',\n ProPlan = 'PRO_PLAN',\n StandardPlan = 'STANDARD_PLAN',\n StudentPlan = 'STUDENT_PLAN'\n}\n\nexport type CetificationsAvailableResponse = {\n __typename?: 'CetificationsAvailableResponse';\n certifications?: Maybe<Array<Maybe<Plan>>>;\n subscription?: Maybe<Subscription>;\n};\n\nexport type ClaimCodeResponse = {\n __typename?: 'ClaimCodeResponse';\n convoy?: Maybe<ConvoyCode>;\n};\n\nexport type Comment = {\n __typename?: 'Comment';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n post_id?: Maybe<Scalars['Int']['output']>;\n replies?: Maybe<Array<Maybe<ReplyComment>>>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type CommentsResponse = {\n __typename?: 'CommentsResponse';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<Comment>>>;\n};\n\nexport type CommentsWhere = {\n post_id?: InputMaybe<Scalars['Int']['input']>;\n site?: InputMaybe<Site>;\n};\n\nexport type ConnectResponse = {\n __typename?: 'ConnectResponse';\n token?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type ConnectUserAppleInput = {\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ConnectUserFacebookInput = {\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ConnectUserGoogleInput = {\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ConvoyCode = {\n __typename?: 'ConvoyCode';\n code?: Maybe<Scalars['String']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n status?: Maybe<ConvoyCodeStatuses>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum ConvoyCodeStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport enum CouponRequestType {\n Assigned = 'ASSIGNED',\n Available = 'AVAILABLE',\n Used = 'USED'\n}\n\nexport enum CouponStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport enum CouponTypes {\n DiscountAmount = 'DISCOUNT_AMOUNT',\n DiscountAmountAndDuration = 'DISCOUNT_AMOUNT_AND_DURATION',\n DiscountAmountAndDurationAndVolume = 'DISCOUNT_AMOUNT_AND_DURATION_AND_VOLUME',\n DiscountAmountAndDurationAndVolumeWithMonths = 'DISCOUNT_AMOUNT_AND_DURATION_AND_VOLUME_WITH_MONTHS',\n DiscountAmountAndDurationWithMonths = 'DISCOUNT_AMOUNT_AND_DURATION_WITH_MONTHS',\n DiscountAmountAndVolume = 'DISCOUNT_AMOUNT_AND_VOLUME',\n DiscountAmountAndVolumeWithMonths = 'DISCOUNT_AMOUNT_AND_VOLUME_WITH_MONTHS',\n DiscountAmountWithMonths = 'DISCOUNT_AMOUNT_WITH_MONTHS',\n DiscountPercent = 'DISCOUNT_PERCENT',\n DiscountPercentAndDuration = 'DISCOUNT_PERCENT_AND_DURATION',\n DiscountPercentAndDurationAndVolume = 'DISCOUNT_PERCENT_AND_DURATION_AND_VOLUME',\n DiscountPercentAndDurationAndVolumeWithMonths = 'DISCOUNT_PERCENT_AND_DURATION_AND_VOLUME_WITH_MONTHS',\n DiscountPercentAndDurationWithMonths = 'DISCOUNT_PERCENT_AND_DURATION_WITH_MONTHS',\n DiscountPercentAndVolume = 'DISCOUNT_PERCENT_AND_VOLUME',\n DiscountPercentAndVolumeWithMonths = 'DISCOUNT_PERCENT_AND_VOLUME_WITH_MONTHS',\n DiscountPercentWithMonths = 'DISCOUNT_PERCENT_WITH_MONTHS'\n}\n\nexport type CreateCartItemInput = {\n plan_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CreateCommentInput = {\n message?: InputMaybe<Scalars['String']['input']>;\n post_id?: InputMaybe<Scalars['Int']['input']>;\n site?: InputMaybe<Site>;\n};\n\nexport type CreateCustomSubscriptionInput = {\n notes?: InputMaybe<Scalars['String']['input']>;\n payment_method: PaymentMethod;\n period_end_date: Scalars['String']['input'];\n period_start_date: Scalars['String']['input'];\n plan_id: Scalars['Int']['input'];\n transaction_id: Scalars['String']['input'];\n user_id: Scalars['Int']['input'];\n};\n\nexport type CreateCustomSubscriptionResponse = {\n __typename?: 'CreateCustomSubscriptionResponse';\n subscription?: Maybe<Subscription>;\n};\n\nexport type CreateOpenPayChargeInput = {\n billingInfo?: InputMaybe<SubscriptionBillingInput>;\n deviceDataId?: InputMaybe<Scalars['String']['input']>;\n planId?: InputMaybe<Scalars['Int']['input']>;\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateOpenPayChargeResponse = {\n __typename?: 'CreateOpenPayChargeResponse';\n redirect_url?: Maybe<Scalars['String']['output']>;\n};\n\nexport type CreateOpenPaySubscriptionInput = {\n billingInfo?: InputMaybe<SubscriptionBillingInput>;\n deviceDataId?: InputMaybe<Scalars['String']['input']>;\n planId?: InputMaybe<Scalars['Int']['input']>;\n subscriptionUrl?: InputMaybe<Scalars['String']['input']>;\n token?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateOpenPaySubscriptionResponse = {\n __typename?: 'CreateOpenPaySubscriptionResponse';\n subscription?: Maybe<Subscription>;\n};\n\nexport type CreatePaypalSubscriptionInput = {\n billingInfo?: InputMaybe<SubscriptionBillingInput>;\n coupon?: InputMaybe<Scalars['String']['input']>;\n orderId?: InputMaybe<Scalars['String']['input']>;\n planId?: InputMaybe<Scalars['Int']['input']>;\n subscriptionId?: InputMaybe<Scalars['String']['input']>;\n subscriptionUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreatePaypalSubscriptionResponse = {\n __typename?: 'CreatePaypalSubscriptionResponse';\n subscription?: Maybe<Subscription>;\n};\n\nexport type CreateReplyCommentInput = {\n comment_id?: InputMaybe<Scalars['Int']['input']>;\n message?: InputMaybe<Scalars['String']['input']>;\n post_id?: InputMaybe<Scalars['Int']['input']>;\n site?: InputMaybe<Site>;\n};\n\nexport type CreateSharedCouponResponse = {\n __typename?: 'CreateSharedCouponResponse';\n message?: Maybe<Scalars['String']['output']>;\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type CreateStripePaymentMethodInput = {\n customer_id?: InputMaybe<Scalars['String']['input']>;\n payment_method_id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateStripePaymentMethodResponse = {\n __typename?: 'CreateStripePaymentMethodResponse';\n card?: Maybe<Card>;\n};\n\nexport type CreateSubscriptionBillingInput = {\n address?: InputMaybe<Scalars['String']['input']>;\n address1?: InputMaybe<Scalars['String']['input']>;\n aditional_name?: InputMaybe<Scalars['String']['input']>;\n city?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n external_number?: InputMaybe<Scalars['String']['input']>;\n internal_number?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n phone1?: InputMaybe<Scalars['String']['input']>;\n postal_code?: InputMaybe<Scalars['String']['input']>;\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateSubscriptionBillingResponse = {\n __typename?: 'CreateSubscriptionBillingResponse';\n subscriptionBilling?: Maybe<SubscriptionBilling>;\n};\n\nexport type CreateUserInvitationInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n role?: InputMaybe<UserRoles>;\n};\n\nexport type CreateUserSavedPostInput = {\n post_id?: InputMaybe<Scalars['Int']['input']>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CreatedAtInput = {\n gte?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type DateTimeNullableFilter = {\n equals?: InputMaybe<Scalars['DateTime']['input']>;\n gt?: InputMaybe<Scalars['DateTime']['input']>;\n gte?: InputMaybe<Scalars['DateTime']['input']>;\n in?: InputMaybe<Array<Scalars['DateTime']['input']>>;\n lt?: InputMaybe<Scalars['DateTime']['input']>;\n lte?: InputMaybe<Scalars['DateTime']['input']>;\n not?: InputMaybe<DateTimeNullableFilter>;\n notIn?: InputMaybe<Array<Scalars['DateTime']['input']>>;\n};\n\nexport type DeleteUserSavedPostInput = {\n id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type DisableUserInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n password?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type DisconnectResponse = {\n __typename?: 'DisconnectResponse';\n message?: Maybe<Scalars['String']['output']>;\n};\n\nexport type DisconnectUserProviderInput = {\n provider?: InputMaybe<SocialProviders>;\n};\n\nexport type File = {\n encoding: Scalars['String']['input'];\n filename: Scalars['String']['input'];\n mimetype: Scalars['String']['input'];\n};\n\nexport enum FilterSocialProviders {\n All = 'ALL',\n Apple = 'APPLE',\n Facebook = 'FACEBOOK',\n Google = 'GOOGLE',\n System = 'SYSTEM'\n}\n\nexport type ForgotPasswordPayload = {\n __typename?: 'ForgotPasswordPayload';\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport enum Gender {\n Female = 'FEMALE',\n Male = 'MALE',\n NoApply = 'NO_APPLY'\n}\n\nexport type IdFilter = {\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<IdFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport enum InterestsEnum {\n AnimalGourmet = 'ANIMAL_GOURMET',\n AnimalMx = 'ANIMAL_MX',\n AnimalPolitico = 'ANIMAL_POLITICO',\n ElSabueso = 'EL_SABUESO',\n Newsweek = 'NEWSWEEK'\n}\n\nexport type Invoice = {\n __typename?: 'Invoice';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n plan?: Maybe<Plan>;\n status?: Maybe<InvoiceStatuses>;\n transaction_id?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum InvoiceStatuses {\n Cancelled = 'CANCELLED',\n Paid = 'PAID',\n PaymentPending = 'PAYMENT_PENDING',\n Refunded = 'REFUNDED',\n Unpaid = 'UNPAID'\n}\n\nexport type MailchimpAddSubscriptionInput = {\n audience?: InputMaybe<Scalars['String']['input']>;\n email?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type MailchimpAddSubscriptionResponse = {\n __typename?: 'MailchimpAddSubscriptionResponse';\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type MailchimpAudience = {\n __typename?: 'MailchimpAudience';\n audience?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n is_subscribed?: Maybe<Scalars['Boolean']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n};\n\nexport type MailchimpAudienceResponse = {\n __typename?: 'MailchimpAudienceResponse';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<MailchimpAudience>>>;\n};\n\nexport type MailchimpSubscription = {\n __typename?: 'MailchimpSubscription';\n audience?: Maybe<Scalars['String']['output']>;\n status?: Maybe<Scalars['String']['output']>;\n unique_email_id?: Maybe<Scalars['String']['output']>;\n};\n\nexport type MailchimpSubscriptionResponse = {\n __typename?: 'MailchimpSubscriptionResponse';\n subscriptions?: Maybe<Array<Maybe<MailchimpSubscription>>>;\n};\n\nexport type MailchimpSubscriptionWhere = {\n email?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Mutation = {\n __typename?: 'Mutation';\n addUserBroadcastData?: Maybe<AddUserBroadcastDataResponse>;\n addUserInterests?: Maybe<UserInterestsResponse>;\n addUserPreferencesData?: Maybe<AddUserPreferencesDataResponse>;\n adminDisableAccount?: Maybe<DisableAccountResponse>;\n appleSignup?: Maybe<AuthPayload>;\n cancelSubscription?: Maybe<CancelSubscriptionResponse>;\n cancelSubscriptionNow?: Maybe<CancelSubscriptionResponse>;\n changePassword?: Maybe<AuthPayload>;\n claimCode?: Maybe<ClaimCodeResponse>;\n connectUserApple?: Maybe<ConnectResponse>;\n connectUserFacebook?: Maybe<ConnectResponse>;\n connectUserGoogle?: Maybe<ConnectResponse>;\n createCartItem?: Maybe<Cart>;\n createComment?: Maybe<Comment>;\n createCustomSubscription?: Maybe<CreateCustomSubscriptionResponse>;\n createOpenPayCharge?: Maybe<CreateOpenPayChargeResponse>;\n createOpenPaySubscription?: Maybe<CreateOpenPaySubscriptionResponse>;\n createPaypalSubscription?: Maybe<CreatePaypalSubscriptionResponse>;\n createReplyComment?: Maybe<ReplyComment>;\n createSharedCoupon?: Maybe<CreateSharedCouponResponse>;\n createStripePaymentMethod?: Maybe<CreateStripePaymentMethodResponse>;\n createStudentCredential?: Maybe<StudentCredential>;\n createSubscriptionBilling?: Maybe<CreateSubscriptionBillingResponse>;\n createUserInvitation?: Maybe<UserInvitation>;\n createUserSavedPost?: Maybe<UserSavedPost>;\n deleteUserSavedPost?: Maybe<UserSavedPost>;\n disableAccount?: Maybe<DisableAccountResponse>;\n disconnectUserProvider?: Maybe<DisconnectResponse>;\n facebookSignup?: Maybe<AuthPayload>;\n forgotPassword?: Maybe<ForgotPasswordPayload>;\n googleSignIn?: Maybe<AuthPayload>;\n googleSignup?: Maybe<AuthPayload>;\n login?: Maybe<AuthPayload>;\n mailchimpAddSubscription?: Maybe<MailchimpAddSubscriptionResponse>;\n reactivateSubscription?: Maybe<Subscription>;\n recaptcha?: Maybe<RecaptchaResponse>;\n removeCartItem?: Maybe<Cart>;\n removeUserInvitation?: Maybe<RemoveUserInvitationPayload>;\n resendUserInvitation?: Maybe<UserInvitation>;\n signup?: Maybe<AuthPayload>;\n subscriptionsNextExpireReport?: Maybe<Report>;\n toggleAdministratorUserRole?: Maybe<User>;\n updateCard?: Maybe<UpdateCardResponse>;\n updateCartDiscount?: Maybe<Array<Maybe<Cart>>>;\n updateCustomSubscription?: Maybe<UpdateCustomSubscriptionResponse>;\n updateSubscription?: Maybe<Subscription>;\n updateSubscriptionBilling?: Maybe<UpdateSubscriptionBillingResponse>;\n updateUser?: Maybe<User>;\n updateUserEmail?: Maybe<UpdateUserEmailResponse>;\n updateUserInvitation?: Maybe<UserInvitation>;\n updateUserandRoles?: Maybe<User>;\n};\n\n\nexport type MutationAddUserBroadcastDataArgs = {\n data?: InputMaybe<AddUserBroadcastDataInput>;\n};\n\n\nexport type MutationAddUserInterestsArgs = {\n data?: InputMaybe<AddInterestsToUserInput>;\n};\n\n\nexport type MutationAddUserPreferencesDataArgs = {\n data?: InputMaybe<AddUserPreferencesInput>;\n};\n\n\nexport type MutationAdminDisableAccountArgs = {\n data?: InputMaybe<AdminDisableUserInput>;\n};\n\n\nexport type MutationAppleSignupArgs = {\n site: Site;\n token: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationCancelSubscriptionArgs = {\n data?: InputMaybe<CancelSubscriptionInput>;\n};\n\n\nexport type MutationCancelSubscriptionNowArgs = {\n data?: InputMaybe<CancelSubscriptionInput>;\n};\n\n\nexport type MutationChangePasswordArgs = {\n email: Scalars['String']['input'];\n password: Scalars['String']['input'];\n token: Scalars['String']['input'];\n};\n\n\nexport type MutationConnectUserAppleArgs = {\n data: ConnectUserAppleInput;\n};\n\n\nexport type MutationConnectUserFacebookArgs = {\n data: ConnectUserFacebookInput;\n};\n\n\nexport type MutationConnectUserGoogleArgs = {\n data: ConnectUserGoogleInput;\n};\n\n\nexport type MutationCreateCartItemArgs = {\n data?: InputMaybe<CreateCartItemInput>;\n};\n\n\nexport type MutationCreateCommentArgs = {\n data?: InputMaybe<CreateCommentInput>;\n};\n\n\nexport type MutationCreateCustomSubscriptionArgs = {\n data?: InputMaybe<CreateCustomSubscriptionInput>;\n};\n\n\nexport type MutationCreateOpenPayChargeArgs = {\n data?: InputMaybe<CreateOpenPayChargeInput>;\n};\n\n\nexport type MutationCreateOpenPaySubscriptionArgs = {\n data?: InputMaybe<CreateOpenPaySubscriptionInput>;\n};\n\n\nexport type MutationCreatePaypalSubscriptionArgs = {\n data?: InputMaybe<CreatePaypalSubscriptionInput>;\n};\n\n\nexport type MutationCreateReplyCommentArgs = {\n data?: InputMaybe<CreateReplyCommentInput>;\n};\n\n\nexport type MutationCreateSharedCouponArgs = {\n coupon_id: Scalars['Int']['input'];\n emails?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n\nexport type MutationCreateStripePaymentMethodArgs = {\n data?: InputMaybe<CreateStripePaymentMethodInput>;\n};\n\n\nexport type MutationCreateStudentCredentialArgs = {\n data?: InputMaybe<StudentCredentialInput>;\n};\n\n\nexport type MutationCreateSubscriptionBillingArgs = {\n data?: InputMaybe<CreateSubscriptionBillingInput>;\n};\n\n\nexport type MutationCreateUserInvitationArgs = {\n data?: InputMaybe<CreateUserInvitationInput>;\n};\n\n\nexport type MutationCreateUserSavedPostArgs = {\n data?: InputMaybe<CreateUserSavedPostInput>;\n};\n\n\nexport type MutationDeleteUserSavedPostArgs = {\n data?: InputMaybe<DeleteUserSavedPostInput>;\n};\n\n\nexport type MutationDisableAccountArgs = {\n data?: InputMaybe<DisableUserInput>;\n};\n\n\nexport type MutationDisconnectUserProviderArgs = {\n data: DisconnectUserProviderInput;\n};\n\n\nexport type MutationFacebookSignupArgs = {\n site: Site;\n token: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationForgotPasswordArgs = {\n email: Scalars['String']['input'];\n form: Scalars['String']['input'];\n redirectUrl: Scalars['String']['input'];\n};\n\n\nexport type MutationGoogleSignInArgs = {\n site: Site;\n token: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationGoogleSignupArgs = {\n site: Site;\n token: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationLoginArgs = {\n email: Scalars['String']['input'];\n password: Scalars['String']['input'];\n};\n\n\nexport type MutationMailchimpAddSubscriptionArgs = {\n data?: InputMaybe<MailchimpAddSubscriptionInput>;\n};\n\n\nexport type MutationReactivateSubscriptionArgs = {\n data?: InputMaybe<ReactivateSubscriptionInput>;\n};\n\n\nexport type MutationRecaptchaArgs = {\n email: Scalars['String']['input'];\n site?: InputMaybe<Scalars['String']['input']>;\n token: Scalars['String']['input'];\n};\n\n\nexport type MutationRemoveCartItemArgs = {\n data?: InputMaybe<RemoveCartItemInput>;\n};\n\n\nexport type MutationRemoveUserInvitationArgs = {\n id: Scalars['String']['input'];\n};\n\n\nexport type MutationResendUserInvitationArgs = {\n id: Scalars['String']['input'];\n};\n\n\nexport type MutationSignupArgs = {\n email: Scalars['String']['input'];\n name: Scalars['String']['input'];\n password: Scalars['String']['input'];\n site: Site;\n url: Scalars['String']['input'];\n};\n\n\nexport type MutationSubscriptionsNextExpireReportArgs = {\n data?: InputMaybe<SubscriptionsNextExpireReportInput>;\n};\n\n\nexport type MutationToggleAdministratorUserRoleArgs = {\n data?: InputMaybe<ToggleAdministratorUserRoleInput>;\n};\n\n\nexport type MutationUpdateCardArgs = {\n data?: InputMaybe<UpdateCardInput>;\n};\n\n\nexport type MutationUpdateCartDiscountArgs = {\n data?: InputMaybe<UpdateCartDiscountInput>;\n};\n\n\nexport type MutationUpdateCustomSubscriptionArgs = {\n data?: InputMaybe<UpdateCustomSubscriptionInput>;\n};\n\n\nexport type MutationUpdateSubscriptionArgs = {\n data?: InputMaybe<UpdateSubscriptionInput>;\n};\n\n\nexport type MutationUpdateSubscriptionBillingArgs = {\n data?: InputMaybe<UpdateSubscriptionBillingInput>;\n};\n\n\nexport type MutationUpdateUserArgs = {\n data?: InputMaybe<UpdateUserInput>;\n};\n\n\nexport type MutationUpdateUserEmailArgs = {\n data?: InputMaybe<UpdateUserEmailInput>;\n};\n\n\nexport type MutationUpdateUserInvitationArgs = {\n data?: InputMaybe<UpdateUserInvitationInput>;\n};\n\n\nexport type MutationUpdateUserandRolesArgs = {\n data?: InputMaybe<UpdateUserWithRolesInput>;\n};\n\nexport type NestedStringFilter = {\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n not?: InputMaybe<NestedStringFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Notification = {\n __typename?: 'Notification';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type NotificationResponse = {\n __typename?: 'NotificationResponse';\n count?: Maybe<Scalars['Int']['output']>;\n notifications?: Maybe<Array<Maybe<Notification>>>;\n};\n\nexport type OpenPay = {\n __typename?: 'OpenPay';\n first_payment_price?: Maybe<Scalars['Int']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n open_pay_id?: Maybe<Scalars['String']['output']>;\n plan_id?: Maybe<Scalars['Int']['output']>;\n status?: Maybe<OpenPayStatuses>;\n};\n\nexport enum OpenPayStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport enum PaymentMethod {\n Custom = 'CUSTOM',\n Openpay = 'OPENPAY',\n Paypal = 'PAYPAL',\n StripeCard = 'STRIPE_CARD'\n}\n\nexport type Paypal = {\n __typename?: 'Paypal';\n id?: Maybe<Scalars['Int']['output']>;\n paypal_id?: Maybe<Scalars['String']['output']>;\n plan_id?: Maybe<Scalars['Int']['output']>;\n status?: Maybe<PaypalStatuses>;\n};\n\nexport enum PaypalStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport type Plan = {\n __typename?: 'Plan';\n description?: Maybe<Scalars['String']['output']>;\n frequency?: Maybe<PlanFrequency>;\n helper_text?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n is_premium?: Maybe<Scalars['Boolean']['output']>;\n open_pay?: Maybe<OpenPay>;\n paypal?: Maybe<Paypal>;\n price?: Maybe<Scalars['String']['output']>;\n promo_subsidiary?: Maybe<Array<Maybe<Promo_Subsidiary_Type>>>;\n slug?: Maybe<Scalars['String']['output']>;\n status?: Maybe<PlanStatuses>;\n stripe?: Maybe<Stripe>;\n sub_title?: Maybe<Scalars['String']['output']>;\n subscription_billing_is_required?: Maybe<Scalars['Boolean']['output']>;\n subscription_student_credential_is_required?: Maybe<Scalars['Boolean']['output']>;\n title?: Maybe<Scalars['String']['output']>;\n title_front?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum PlanFrequency {\n Day = 'DAY',\n Month = 'MONTH',\n Week = 'WEEK',\n Year = 'YEAR'\n}\n\nexport type PlanResponse = {\n __typename?: 'PlanResponse';\n items?: Maybe<Array<Maybe<Plan>>>;\n};\n\nexport enum PlanStatuses {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport type PlanWhereInput = {\n status?: InputMaybe<PaypalStatuses>;\n};\n\nexport type PlansWhereInput = {\n is_premium?: InputMaybe<Scalars['Boolean']['input']>;\n status?: InputMaybe<PaypalStatuses>;\n};\n\nexport type Promo_Subsidiary_Type = {\n __typename?: 'Promo_subsidiary_type';\n description_first_line?: Maybe<Scalars['String']['output']>;\n description_second_line?: Maybe<Scalars['String']['output']>;\n header_subsidiary?: Maybe<Scalars['String']['output']>;\n identity_color?: Maybe<Scalars['String']['output']>;\n image?: Maybe<Scalars['String']['output']>;\n text_color?: Maybe<Scalars['String']['output']>;\n title?: Maybe<Scalars['String']['output']>;\n};\n\nexport type Query = {\n __typename?: 'Query';\n allCertifications?: Maybe<AllCetificationsResponse>;\n cancelledSubscriptionsMetrics?: Maybe<Array<CancelledSubscriptionMetric>>;\n certificationsAvailable?: Maybe<CetificationsAvailableResponse>;\n comments?: Maybe<CommentsResponse>;\n currentUser?: Maybe<User>;\n easyDataUsers?: Maybe<UsersPayload>;\n fetchCoupon?: Maybe<StripeCoupon>;\n getUserCart?: Maybe<Array<Maybe<Cart>>>;\n mailchimpAudiences?: Maybe<MailchimpAudienceResponse>;\n mailchimpSubscriptions?: Maybe<MailchimpSubscriptionResponse>;\n notificationList?: Maybe<NotificationResponse>;\n plan?: Maybe<Plan>;\n plans?: Maybe<PlanResponse>;\n stripeCouponList?: Maybe<StripeCouponListResponse>;\n subscriptionCancelledByFilter?: Maybe<SubscriptionCancelledByFilter>;\n user?: Maybe<User>;\n userInvitations?: Maybe<UserInvitationsResponse>;\n userProviders?: Maybe<UserSocialProvidersResponse>;\n userSavedPosts?: Maybe<UserSavedPostsResponse>;\n userSubscriberEvents?: Maybe<UsersSubscriberEventsPayload>;\n users?: Maybe<UsersPayload>;\n validateCoupon?: Maybe<StripeCoupon>;\n};\n\n\nexport type QueryCancelledSubscriptionsMetricsArgs = {\n where: SubscriptionCancelWhereInput;\n};\n\n\nexport type QueryCommentsArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<CommentsWhere>;\n};\n\n\nexport type QueryEasyDataUsersArgs = {\n orderBy?: InputMaybe<Array<InputMaybe<UserOrderInput>>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UsersWhere>;\n};\n\n\nexport type QueryFetchCouponArgs = {\n couponCode: Scalars['String']['input'];\n plan_id: Scalars['Int']['input'];\n};\n\n\nexport type QueryMailchimpSubscriptionsArgs = {\n where?: InputMaybe<MailchimpSubscriptionWhere>;\n};\n\n\nexport type QueryNotificationListArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<NotificationsWhere>;\n};\n\n\nexport type QueryPlanArgs = {\n id?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryPlansArgs = {\n where?: InputMaybe<PlansWhereInput>;\n};\n\n\nexport type QueryStripeCouponListArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<StripeCouponListWhere>;\n};\n\n\nexport type QuerySubscriptionCancelledByFilterArgs = {\n where: SubscriptionCancelledByFilterInput;\n};\n\n\nexport type QueryUserArgs = {\n id: Scalars['Int']['input'];\n};\n\n\nexport type QueryUserInvitationsArgs = {\n data?: InputMaybe<UserInvitationsInput>;\n};\n\n\nexport type QueryUserProvidersArgs = {\n orderBy?: InputMaybe<Array<InputMaybe<UserSocialProvidersOrderInput>>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UserSocialProvidersWhereInput>;\n};\n\n\nexport type QueryUserSavedPostsArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UserSavedPostsWhere>;\n};\n\n\nexport type QueryUserSubscriberEventsArgs = {\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UsersSubscriberEventsWhere>;\n};\n\n\nexport type QueryUsersArgs = {\n orderBy?: InputMaybe<Array<InputMaybe<UserOrderInput>>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<UsersWhere>;\n};\n\n\nexport type QueryValidateCouponArgs = {\n couponCode: Scalars['String']['input'];\n plan_id: Scalars['Int']['input'];\n};\n\nexport type ReactivateSubscriptionInput = {\n subscription_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type RecaptchaResponse = {\n __typename?: 'RecaptchaResponse';\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type RemoveCartItemInput = {\n id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type RemoveUserInvitationPayload = {\n __typename?: 'RemoveUserInvitationPayload';\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type ReplyComment = {\n __typename?: 'ReplyComment';\n comment_id?: Maybe<Scalars['Int']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n post_id?: Maybe<Scalars['Int']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type Report = {\n __typename?: 'Report';\n count_files?: Maybe<Scalars['Int']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n files?: Maybe<Array<Maybe<ReportFile>>>;\n from_date?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n requested_by?: Maybe<Scalars['String']['output']>;\n site?: Maybe<Site>;\n status?: Maybe<StatusReport>;\n status_message?: Maybe<Scalars['String']['output']>;\n to_date?: Maybe<Scalars['String']['output']>;\n type?: Maybe<ReportTypes>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ReportFile = {\n __typename?: 'ReportFile';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n path?: Maybe<Scalars['String']['output']>;\n report?: Maybe<Report>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum ReportTypes {\n SubscriptionNextExpireReport = 'SUBSCRIPTION_NEXT_EXPIRE_REPORT',\n SubscriptionReport = 'SUBSCRIPTION_REPORT',\n UserReport = 'USER_REPORT',\n WinnerNotesReport = 'WINNER_NOTES_REPORT'\n}\n\nexport type RolesOnUsers = {\n __typename?: 'RolesOnUsers';\n role?: Maybe<UserRole>;\n role_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport enum Site {\n AnimalPolitico = 'ANIMAL_POLITICO',\n CriterioHidalgo = 'CRITERIO_HIDALGO'\n}\n\nexport enum SocialProviders {\n Apple = 'APPLE',\n Facebook = 'FACEBOOK',\n Google = 'GOOGLE',\n System = 'SYSTEM'\n}\n\nexport enum SortOrder {\n Asc = 'asc',\n Desc = 'desc'\n}\n\nexport type SortTableInput = {\n field?: InputMaybe<Scalars['String']['input']>;\n order?: InputMaybe<SortOrder>;\n};\n\nexport enum StatusReport {\n Error = 'ERROR',\n InProgress = 'IN_PROGRESS',\n Pending = 'PENDING',\n Success = 'SUCCESS'\n}\n\nexport type StringFilter = {\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n not?: InputMaybe<NestedStringFilter>;\n notIn?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Stripe = {\n __typename?: 'Stripe';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n plan_id?: Maybe<Scalars['Int']['output']>;\n price_id?: Maybe<Scalars['String']['output']>;\n product_id?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type StripeCoupon = {\n __typename?: 'StripeCoupon';\n assigned_to_share?: Maybe<Scalars['Boolean']['output']>;\n coupon?: Maybe<Scalars['String']['output']>;\n coupon_type?: Maybe<CouponTypes>;\n created_at?: Maybe<Scalars['String']['output']>;\n discount_amount?: Maybe<Scalars['Int']['output']>;\n discount_percent?: Maybe<Scalars['Int']['output']>;\n duration_in_months?: Maybe<Scalars['Int']['output']>;\n end_date?: Maybe<Scalars['String']['output']>;\n id: Scalars['Int']['output'];\n is_for_sharing?: Maybe<Scalars['Boolean']['output']>;\n is_public?: Maybe<Scalars['Boolean']['output']>;\n max_redemptions?: Maybe<Scalars['Int']['output']>;\n paypal_coupon_plan?: Maybe<Scalars['String']['output']>;\n plan?: Maybe<Plan>;\n plan_names?: Maybe<Scalars['String']['output']>;\n start_date?: Maybe<Scalars['String']['output']>;\n status?: Maybe<CouponStatuses>;\n stripe_id?: Maybe<Scalars['Int']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n used_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type StripeCouponListResponse = {\n __typename?: 'StripeCouponListResponse';\n count?: Maybe<Scalars['Int']['output']>;\n coupons?: Maybe<Array<Maybe<StripeCoupon>>>;\n};\n\nexport type StudentCredential = {\n __typename?: 'StudentCredential';\n created_at?: Maybe<Scalars['String']['output']>;\n expiration_date?: Maybe<Scalars['String']['output']>;\n id: Scalars['Int']['output'];\n school?: Maybe<Scalars['String']['output']>;\n school_contact_number?: Maybe<Scalars['String']['output']>;\n start_date?: Maybe<Scalars['String']['output']>;\n student_card?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type StudentCredentialDataInput = {\n expiration_date?: InputMaybe<Scalars['String']['input']>;\n school?: InputMaybe<Scalars['String']['input']>;\n school_contact_number?: InputMaybe<Scalars['String']['input']>;\n start_date?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type StudentCredentialInput = {\n file?: InputMaybe<Scalars['Upload']['input']>;\n};\n\nexport type SubscriberEvent = {\n __typename?: 'SubscriberEvent';\n description?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n};\n\nexport type Subscription = {\n __typename?: 'Subscription';\n cancel_date?: Maybe<Scalars['String']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n customer_id?: Maybe<Scalars['String']['output']>;\n has_change_plan?: Maybe<Scalars['Boolean']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n is_cancel?: Maybe<Scalars['Boolean']['output']>;\n notes?: Maybe<Scalars['String']['output']>;\n payment_method?: Maybe<PaymentMethod>;\n period_end_date?: Maybe<Scalars['String']['output']>;\n period_start_date?: Maybe<Scalars['String']['output']>;\n plan?: Maybe<Plan>;\n status?: Maybe<SubscriptionStatuses>;\n transaction_id?: Maybe<Scalars['String']['output']>;\n type?: Maybe<SubscriptionType>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type SubscriptionBilling = {\n __typename?: 'SubscriptionBilling';\n address?: Maybe<Scalars['String']['output']>;\n address1?: Maybe<Scalars['String']['output']>;\n aditional_name?: Maybe<Scalars['String']['output']>;\n city?: Maybe<Scalars['String']['output']>;\n country?: Maybe<Scalars['String']['output']>;\n created_at?: Maybe<Scalars['String']['output']>;\n external_number?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n internal_number?: Maybe<Scalars['String']['output']>;\n phone?: Maybe<Scalars['String']['output']>;\n phone1?: Maybe<Scalars['String']['output']>;\n postal_code?: Maybe<Scalars['String']['output']>;\n state?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SubscriptionBillingInput = {\n address?: InputMaybe<Scalars['String']['input']>;\n address1?: InputMaybe<Scalars['String']['input']>;\n aditional_name?: InputMaybe<Scalars['String']['input']>;\n city?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n external_number?: InputMaybe<Scalars['String']['input']>;\n internal_number?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n phone1?: InputMaybe<Scalars['String']['input']>;\n postal_code?: InputMaybe<Scalars['String']['input']>;\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SubscriptionCancelWhereInput = {\n from: Scalars['String']['input'];\n to: Scalars['String']['input'];\n};\n\nexport type SubscriptionCancelledByFilter = {\n __typename?: 'SubscriptionCancelledByFilter';\n items: Array<Subscription>;\n total: Scalars['Int']['output'];\n};\n\nexport type SubscriptionCancelledByFilterInput = {\n from: Scalars['String']['input'];\n page: Scalars['Int']['input'];\n pageSize: Scalars['Int']['input'];\n to: Scalars['String']['input'];\n};\n\nexport enum SubscriptionStatuses {\n Active = 'ACTIVE',\n Cancelled = 'CANCELLED',\n Inactive = 'INACTIVE',\n Updated = 'UPDATED'\n}\n\nexport enum SubscriptionType {\n Payment = 'PAYMENT',\n RecurrentPayment = 'RECURRENT_PAYMENT'\n}\n\nexport type SubscriptionsNextExpireReportInput = {\n monthExpire: Scalars['String']['input'];\n payment_method?: InputMaybe<Scalars['String']['input']>;\n requested_by: Scalars['String']['input'];\n status?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateCardInput = {\n card_number?: InputMaybe<Scalars['String']['input']>;\n cvv2?: InputMaybe<Scalars['String']['input']>;\n device_session_id?: InputMaybe<Scalars['String']['input']>;\n expiration_month?: InputMaybe<Scalars['String']['input']>;\n expiration_year?: InputMaybe<Scalars['String']['input']>;\n holder_name?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateCardResponse = {\n __typename?: 'UpdateCardResponse';\n card?: Maybe<Card>;\n};\n\nexport type UpdateCartDiscountInput = {\n discount?: InputMaybe<CartDescoutBy>;\n};\n\nexport type UpdateCustomSubscriptionInput = {\n notes?: InputMaybe<Scalars['String']['input']>;\n payment_method?: InputMaybe<PaymentMethod>;\n period_end_date?: InputMaybe<Scalars['String']['input']>;\n period_start_date?: InputMaybe<Scalars['String']['input']>;\n plan_id?: InputMaybe<Scalars['Int']['input']>;\n status?: InputMaybe<SubscriptionStatuses>;\n subscription_id: Scalars['Int']['input'];\n transaction_id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateCustomSubscriptionResponse = {\n __typename?: 'UpdateCustomSubscriptionResponse';\n subscription?: Maybe<Subscription>;\n};\n\nexport type UpdateSubscriptionBillingInput = {\n address?: InputMaybe<Scalars['String']['input']>;\n address1?: InputMaybe<Scalars['String']['input']>;\n aditional_name?: InputMaybe<Scalars['String']['input']>;\n city?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n external_number?: InputMaybe<Scalars['String']['input']>;\n id?: InputMaybe<Scalars['Int']['input']>;\n internal_number?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n phone1?: InputMaybe<Scalars['String']['input']>;\n postal_code?: InputMaybe<Scalars['String']['input']>;\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateSubscriptionBillingResponse = {\n __typename?: 'UpdateSubscriptionBillingResponse';\n subscriptionBilling?: Maybe<SubscriptionBilling>;\n};\n\nexport type UpdateSubscriptionInput = {\n id?: InputMaybe<Scalars['Int']['input']>;\n payment_method_type?: InputMaybe<PaymentMethod>;\n plan_id?: InputMaybe<Scalars['Int']['input']>;\n subscriptionBilling?: InputMaybe<SubscriptionBillingInput>;\n subscription_id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateUserEmailInput = {\n new_email?: InputMaybe<Scalars['String']['input']>;\n password?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateUserEmailResponse = {\n __typename?: 'UpdateUserEmailResponse';\n message?: Maybe<Scalars['String']['output']>;\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type UpdateUserInput = {\n file?: InputMaybe<Scalars['Upload']['input']>;\n user?: InputMaybe<UserInput>;\n};\n\nexport type UpdateUserInvitationInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<UserInvitationStatuses>;\n};\n\nexport type UpdateUserWithRolesInput = {\n file?: InputMaybe<Scalars['Upload']['input']>;\n newRoles?: InputMaybe<Array<InputMaybe<UserRoles>>>;\n user?: InputMaybe<UserInput>;\n};\n\nexport type User = {\n __typename?: 'User';\n avatar?: Maybe<Scalars['String']['output']>;\n birthday?: Maybe<Scalars['String']['output']>;\n broadcast_user_data?: Maybe<UserBroadcastData>;\n card?: Maybe<Card>;\n convoy_code?: Maybe<ConvoyCode>;\n created_at?: Maybe<Scalars['String']['output']>;\n email: Scalars['String']['output'];\n gender?: Maybe<Gender>;\n id: Scalars['Int']['output'];\n interests?: Maybe<Array<Maybe<UserInterests>>>;\n invoices?: Maybe<Array<Maybe<Invoice>>>;\n name: Scalars['String']['output'];\n password?: Maybe<Scalars['String']['output']>;\n post_saved?: Maybe<Array<Maybe<UserSavedPost>>>;\n roles_on_users?: Maybe<Array<Maybe<RolesOnUsers>>>;\n site?: Maybe<Site>;\n social_providers?: Maybe<Array<Maybe<UserSocialProviders>>>;\n student_credential?: Maybe<StudentCredential>;\n subscription_billing?: Maybe<SubscriptionBilling>;\n subscriptions?: Maybe<Array<Maybe<Subscription>>>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user_status?: Maybe<UserStatus>;\n};\n\nexport type UserInput = {\n avatar?: InputMaybe<Scalars['String']['input']>;\n birthday?: InputMaybe<Scalars['String']['input']>;\n created_at?: InputMaybe<Scalars['String']['input']>;\n gender?: InputMaybe<Gender>;\n id: Scalars['Int']['input'];\n name: Scalars['String']['input'];\n password?: InputMaybe<Scalars['String']['input']>;\n remember_token?: InputMaybe<Scalars['String']['input']>;\n site?: InputMaybe<Site>;\n updated_at?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UserInvitation = {\n __typename?: 'UserInvitation';\n created_at?: Maybe<Scalars['String']['output']>;\n email?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n role?: Maybe<UserRoles>;\n status?: Maybe<UserInvitationStatuses>;\n updated_at?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum UserInvitationStatuses {\n Accepted = 'ACCEPTED',\n Pending = 'PENDING',\n Rejected = 'REJECTED'\n}\n\nexport type UserInvitationWhereInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n role?: InputMaybe<UserRoles>;\n status?: InputMaybe<UserInvitationStatuses>;\n};\n\nexport type UserInvitationsResponse = {\n __typename?: 'UserInvitationsResponse';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<UserInvitation>>>;\n};\n\nexport type UserOrderInput = {\n created_at?: InputMaybe<SortOrder>;\n email?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n user_status?: InputMaybe<SortOrder>;\n};\n\nexport type UserProviderPayload = {\n __typename?: 'UserProviderPayload';\n count?: Maybe<Scalars['Int']['output']>;\n userProviders?: Maybe<Array<Maybe<UserSocialProviders>>>;\n};\n\nexport type UserProvidersWhere = {\n created_at?: InputMaybe<CreatedAtInput>;\n provider?: InputMaybe<SocialProviders>;\n};\n\nexport type UserRole = {\n __typename?: 'UserRole';\n id?: Maybe<Scalars['Int']['output']>;\n name?: Maybe<UserRoles>;\n};\n\nexport enum UserRoles {\n Administrator = 'ADMINISTRATOR',\n Editor = 'EDITOR',\n Suscriptor = 'SUSCRIPTOR',\n User = 'USER'\n}\n\nexport type UserSavedPost = {\n __typename?: 'UserSavedPost';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n post_id?: Maybe<Scalars['Int']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type UserSavedPostRestApi = {\n __typename?: 'UserSavedPostRestApi';\n id?: Maybe<Scalars['Int']['output']>;\n post_content?: Maybe<Scalars['String']['output']>;\n post_date?: Maybe<Scalars['String']['output']>;\n post_id?: Maybe<Scalars['Int']['output']>;\n post_image?: Maybe<Scalars['String']['output']>;\n post_name?: Maybe<Scalars['String']['output']>;\n post_terms?: Maybe<Array<Maybe<Scalars['String']['output']>>>;\n post_title?: Maybe<Scalars['String']['output']>;\n post_type?: Maybe<Scalars['String']['output']>;\n post_uri?: Maybe<Scalars['String']['output']>;\n post_url?: Maybe<Scalars['String']['output']>;\n sub_post_type?: Maybe<Scalars['String']['output']>;\n};\n\nexport type UserSavedPostsResponse = {\n __typename?: 'UserSavedPostsResponse';\n count?: Maybe<Scalars['Int']['output']>;\n posts?: Maybe<Array<Maybe<UserSavedPostRestApi>>>;\n};\n\nexport type UserSavedPostsWhere = {\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type UserSocialProviders = {\n __typename?: 'UserSocialProviders';\n created_at?: Maybe<Scalars['String']['output']>;\n id: Scalars['Int']['output'];\n primary?: Maybe<Scalars['Boolean']['output']>;\n provider?: Maybe<SocialProviders>;\n provider_id?: Maybe<Scalars['String']['output']>;\n updated_at?: Maybe<Scalars['String']['output']>;\n url_register?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n users?: Maybe<User>;\n};\n\nexport type UserSocialProvidersListRelationFilter = {\n every?: InputMaybe<UserSocialProvidersWhereInput>;\n none?: InputMaybe<UserSocialProvidersWhereInput>;\n some?: InputMaybe<UserSocialProvidersWhereInput>;\n};\n\nexport type UserSocialProvidersOrderInput = {\n created_at?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n};\n\nexport type UserSocialProvidersResponse = {\n __typename?: 'UserSocialProvidersResponse';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<UserSocialProviders>>>;\n};\n\nexport type UserSocialProvidersWhereInput = {\n created_at?: InputMaybe<DateTimeNullableFilter>;\n id?: InputMaybe<IdFilter>;\n primary?: InputMaybe<Scalars['Boolean']['input']>;\n provider?: InputMaybe<SocialProviders>;\n};\n\nexport enum UserStatus {\n Active = 'ACTIVE',\n Inactive = 'INACTIVE'\n}\n\nexport type UserSubscriberEvent = {\n __typename?: 'UserSubscriberEvent';\n created_at?: Maybe<Scalars['String']['output']>;\n event?: Maybe<SubscriberEvent>;\n event_id?: Maybe<Scalars['Int']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n user?: Maybe<User>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type UsersPayload = {\n __typename?: 'UsersPayload';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<User>>>;\n};\n\nexport type UsersSubscriberEventsPayload = {\n __typename?: 'UsersSubscriberEventsPayload';\n count?: Maybe<Scalars['Int']['output']>;\n items?: Maybe<Array<Maybe<UserSubscriberEvent>>>;\n};\n\nexport type UsersSubscriberEventsWhere = {\n created_at?: InputMaybe<CreatedAtInput>;\n search?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UsersWhere = {\n OR?: InputMaybe<Array<InputMaybe<UsersWhere>>>;\n created_at?: InputMaybe<CreatedAtInput>;\n email?: InputMaybe<StringFilter>;\n name?: InputMaybe<StringFilter>;\n onlySubscribers?: InputMaybe<Scalars['Boolean']['input']>;\n provider?: InputMaybe<FilterSocialProviders>;\n site?: InputMaybe<Site>;\n};\n\nexport type AddInterestsToUserInput = {\n interests?: InputMaybe<Array<InputMaybe<InterestsEnum>>>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type AddUserBroadcastDataInput = {\n must_send?: InputMaybe<Scalars['Boolean']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type AddUserBroadcastDataResponse = {\n __typename?: 'addUserBroadcastDataResponse';\n data?: Maybe<UserBroadcastData>;\n};\n\nexport type AddUserPreferencesDataResponse = {\n __typename?: 'addUserPreferencesDataResponse';\n data?: Maybe<AddUserPreferencesDataType>;\n};\n\nexport type AddUserPreferencesDataType = {\n __typename?: 'addUserPreferencesDataType';\n broadcast?: Maybe<UserBroadcastData>;\n interests?: Maybe<Array<Maybe<UserInterests>>>;\n};\n\nexport type AddUserPreferencesInput = {\n interests?: InputMaybe<Array<InputMaybe<InterestsEnum>>>;\n must_send?: InputMaybe<Scalars['Boolean']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type DisableAccountResponse = {\n __typename?: 'disableAccountResponse';\n message?: Maybe<Scalars['String']['output']>;\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type NotificationsWhere = {\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type StripeCouponListWhere = {\n requestType?: InputMaybe<CouponRequestType>;\n user_id?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type ToggleAdministratorUserRoleInput = {\n user_id: Scalars['Int']['input'];\n};\n\nexport type UserBroadcastData = {\n __typename?: 'userBroadcastData';\n id?: Maybe<Scalars['Int']['output']>;\n must_send?: Maybe<Scalars['Boolean']['output']>;\n phone?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type UserInterests = {\n __typename?: 'userInterests';\n created_at?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['Int']['output']>;\n interest?: Maybe<InterestsEnum>;\n updated_at?: Maybe<Scalars['String']['output']>;\n user_id?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type UserInterestsResponse = {\n __typename?: 'userInterestsResponse';\n data?: Maybe<Array<Maybe<UserInterests>>>;\n};\n\nexport type UserInvitationsInput = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n sort?: InputMaybe<SortTableInput>;\n where?: InputMaybe<UserInvitationWhereInput>;\n};\n\nexport type CurrentUserQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type CurrentUserQuery = { __typename?: 'Query', currentUser: { __typename?: 'User', id: number, name: string, email: string, avatar: string | null, gender: Gender | null, birthday: string | null, site: Site | null, social_providers: Array<{ __typename?: 'UserSocialProviders', id: number, provider: SocialProviders | null, provider_id: string | null, primary: boolean | null } | null> | null, roles_on_users: Array<{ __typename?: 'RolesOnUsers', role_id: number | null, role: { __typename?: 'UserRole', id: number | null, name: UserRoles | null } | null } | null> | null, subscriptions: Array<{ __typename?: 'Subscription', cancel_date: string | null, status: SubscriptionStatuses | null, payment_method: PaymentMethod | null, period_end_date: string | null, period_start_date: string | null, is_cancel: boolean | null, id: number | null, plan: { __typename?: 'Plan', title: string | null, description: string | null, sub_title: string | null, price: string | null, title_front: string | null } | null } | null> | null, post_saved: Array<{ __typename?: 'UserSavedPost', id: number | null, post_id: number | null } | null> | null } | null };\n\n\nexport const CurrentUserDocument = gql`\n query CurrentUser {\n currentUser {\n id\n name\n email\n avatar\n gender\n birthday\n site\n social_providers {\n id\n provider\n provider_id\n primary\n }\n roles_on_users {\n role_id\n role {\n id\n name\n }\n }\n subscriptions {\n plan {\n title\n description\n sub_title\n price\n title_front\n }\n cancel_date\n status\n payment_method\n period_end_date\n period_start_date\n is_cancel\n id\n }\n post_saved {\n id\n post_id\n }\n }\n}\n `;\n\n/**\n * __useCurrentUserQuery__\n *\n * To run a query within a React component, call `useCurrentUserQuery` and pass it any options that fit your needs.\n * When your component renders, `useCurrentUserQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useCurrentUserQuery({\n * variables: {\n * },\n * });\n */\nexport function useCurrentUserQuery(baseOptions?: Apollo.QueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return Apollo.useQuery<CurrentUserQuery, CurrentUserQueryVariables>(CurrentUserDocument, options);\n }\nexport function useCurrentUserLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return Apollo.useLazyQuery<CurrentUserQuery, CurrentUserQueryVariables>(CurrentUserDocument, options);\n }\n// @ts-ignore\nexport function useCurrentUserSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>): Apollo.UseSuspenseQueryResult<CurrentUserQuery, CurrentUserQueryVariables>;\nexport function useCurrentUserSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>): Apollo.UseSuspenseQueryResult<CurrentUserQuery | undefined, CurrentUserQueryVariables>;\nexport function useCurrentUserSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CurrentUserQuery, CurrentUserQueryVariables>) {\n const options = baseOptions === Apollo.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return Apollo.useSuspenseQuery<CurrentUserQuery, CurrentUserQueryVariables>(CurrentUserDocument, options);\n }\nexport type CurrentUserQueryHookResult = ReturnType<typeof useCurrentUserQuery>;\nexport type CurrentUserLazyQueryHookResult = ReturnType<typeof useCurrentUserLazyQuery>;\nexport type CurrentUserSuspenseQueryHookResult = ReturnType<typeof useCurrentUserSuspenseQuery>;\nexport type CurrentUserQueryResult = Apollo.QueryResult<CurrentUserQuery, CurrentUserQueryVariables>;"],"names":["CartDescoutBy","ConvoyCodeStatuses","CouponRequestType","CouponStatuses","CouponTypes","FilterSocialProviders","Gender","InterestsEnum","InvoiceStatuses","OpenPayStatuses","PaymentMethod","PaypalStatuses","PlanFrequency","PlanStatuses","ReportTypes","Site","SocialProviders","SortOrder","StatusReport","SubscriptionStatuses","SubscriptionType","UserInvitationStatuses","UserRoles","UserStatus","gql"],"mappings":";;;;AAAA;AA6EYA;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB,IAAA,aAAA,CAAA,UAAA,CAAA,GAAA,WAAsB;AACtB,IAAA,aAAA,CAAA,SAAA,CAAA,GAAA,UAAoB;AACpB,IAAA,aAAA,CAAA,cAAA,CAAA,GAAA,eAA8B;AAC9B,IAAA,aAAA,CAAA,aAAA,CAAA,GAAA,cAA4B;AAC9B,CAAC,EALWA,qBAAa,KAAbA,qBAAa,GAAA,EAAA,CAAA,CAAA;AAmEbC;AAAZ,CAAA,UAAY,kBAAkB,EAAA;AAC5B,IAAA,kBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,kBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACvB,CAAC,EAHWA,0BAAkB,KAAlBA,0BAAkB,GAAA,EAAA,CAAA,CAAA;AAKlBC;AAAZ,CAAA,UAAY,iBAAiB,EAAA;AAC3B,IAAA,iBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,iBAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AACvB,IAAA,iBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACf,CAAC,EAJWA,yBAAiB,KAAjBA,yBAAiB,GAAA,EAAA,CAAA,CAAA;AAMjBC;AAAZ,CAAA,UAAY,cAAc,EAAA;AACxB,IAAA,cAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,cAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACvB,CAAC,EAHWA,sBAAc,KAAdA,sBAAc,GAAA,EAAA,CAAA,CAAA;AAKdC;AAAZ,CAAA,UAAY,WAAW,EAAA;AACrB,IAAA,WAAA,CAAA,gBAAA,CAAA,GAAA,iBAAkC;AAClC,IAAA,WAAA,CAAA,2BAAA,CAAA,GAAA,8BAA0D;AAC1D,IAAA,WAAA,CAAA,oCAAA,CAAA,GAAA,yCAA8E;AAC9E,IAAA,WAAA,CAAA,8CAAA,CAAA,GAAA,qDAAoG;AACpG,IAAA,WAAA,CAAA,qCAAA,CAAA,GAAA,0CAAgF;AAChF,IAAA,WAAA,CAAA,yBAAA,CAAA,GAAA,4BAAsD;AACtD,IAAA,WAAA,CAAA,mCAAA,CAAA,GAAA,wCAA4E;AAC5E,IAAA,WAAA,CAAA,0BAAA,CAAA,GAAA,6BAAwD;AACxD,IAAA,WAAA,CAAA,iBAAA,CAAA,GAAA,kBAAoC;AACpC,IAAA,WAAA,CAAA,4BAAA,CAAA,GAAA,+BAA4D;AAC5D,IAAA,WAAA,CAAA,qCAAA,CAAA,GAAA,0CAAgF;AAChF,IAAA,WAAA,CAAA,+CAAA,CAAA,GAAA,sDAAsG;AACtG,IAAA,WAAA,CAAA,sCAAA,CAAA,GAAA,2CAAkF;AAClF,IAAA,WAAA,CAAA,0BAAA,CAAA,GAAA,6BAAwD;AACxD,IAAA,WAAA,CAAA,oCAAA,CAAA,GAAA,yCAA8E;AAC9E,IAAA,WAAA,CAAA,2BAAA,CAAA,GAAA,8BAA0D;AAC5D,CAAC,EAjBWA,mBAAW,KAAXA,mBAAW,GAAA,EAAA,CAAA,CAAA;AA+KXC;AAAZ,CAAA,UAAY,qBAAqB,EAAA;AAC/B,IAAA,qBAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,qBAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,qBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,qBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,qBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACnB,CAAC,EANWA,6BAAqB,KAArBA,6BAAqB,GAAA,EAAA,CAAA,CAAA;AAarBC;AAAZ,CAAA,UAAY,MAAM,EAAA;AAChB,IAAA,MAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,MAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,MAAA,CAAA,SAAA,CAAA,GAAA,UAAoB;AACtB,CAAC,EAJWA,cAAM,KAANA,cAAM,GAAA,EAAA,CAAA,CAAA;AAiBNC;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB,IAAA,aAAA,CAAA,eAAA,CAAA,GAAA,gBAAgC;AAChC,IAAA,aAAA,CAAA,UAAA,CAAA,GAAA,WAAsB;AACtB,IAAA,aAAA,CAAA,gBAAA,CAAA,GAAA,iBAAkC;AAClC,IAAA,aAAA,CAAA,WAAA,CAAA,GAAA,YAAwB;AACxB,IAAA,aAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACvB,CAAC,EANWA,qBAAa,KAAbA,qBAAa,GAAA,EAAA,CAAA,CAAA;AAkBbC;AAAZ,CAAA,UAAY,eAAe,EAAA;AACzB,IAAA,eAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AACvB,IAAA,eAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,eAAA,CAAA,gBAAA,CAAA,GAAA,iBAAkC;AAClC,IAAA,eAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,eAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACnB,CAAC,EANWA,uBAAe,KAAfA,uBAAe,GAAA,EAAA,CAAA,CAAA;AA4ZfC;AAAZ,CAAA,UAAY,eAAe,EAAA;AACzB,IAAA,eAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,eAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACvB,CAAC,EAHWA,uBAAe,KAAfA,uBAAe,GAAA,EAAA,CAAA,CAAA;AAKfC;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB,IAAA,aAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,aAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,aAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,aAAA,CAAA,YAAA,CAAA,GAAA,aAA0B;AAC5B,CAAC,EALWA,qBAAa,KAAbA,qBAAa,GAAA,EAAA,CAAA,CAAA;AAebC;AAAZ,CAAA,UAAY,cAAc,EAAA;AACxB,IAAA,cAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,cAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACvB,CAAC,EAHWA,sBAAc,KAAdA,sBAAc,GAAA,EAAA,CAAA,CAAA;AA0BdC;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB,IAAA,aAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,aAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,aAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,aAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACf,CAAC,EALWA,qBAAa,KAAbA,qBAAa,GAAA,EAAA,CAAA,CAAA;AAYbC;AAAZ,CAAA,UAAY,YAAY,EAAA;AACtB,IAAA,YAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,YAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACvB,CAAC,EAHWA,oBAAY,KAAZA,oBAAY,GAAA,EAAA,CAAA,CAAA;AAqNZC;AAAZ,CAAA,UAAY,WAAW,EAAA;AACrB,IAAA,WAAA,CAAA,8BAAA,CAAA,GAAA,iCAAgE;AAChE,IAAA,WAAA,CAAA,oBAAA,CAAA,GAAA,qBAA0C;AAC1C,IAAA,WAAA,CAAA,YAAA,CAAA,GAAA,aAA0B;AAC1B,IAAA,WAAA,CAAA,mBAAA,CAAA,GAAA,qBAAyC;AAC3C,CAAC,EALWA,mBAAW,KAAXA,mBAAW,GAAA,EAAA,CAAA,CAAA;AAaXC;AAAZ,CAAA,UAAY,IAAI,EAAA;AACd,IAAA,IAAA,CAAA,gBAAA,CAAA,GAAA,iBAAkC;AAClC,IAAA,IAAA,CAAA,iBAAA,CAAA,GAAA,kBAAoC;AACtC,CAAC,EAHWA,YAAI,KAAJA,YAAI,GAAA,EAAA,CAAA,CAAA;AAKJC;AAAZ,CAAA,UAAY,eAAe,EAAA;AACzB,IAAA,eAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,eAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,eAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,eAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACnB,CAAC,EALWA,uBAAe,KAAfA,uBAAe,GAAA,EAAA,CAAA,CAAA;AAOfC;AAAZ,CAAA,UAAY,SAAS,EAAA;AACnB,IAAA,SAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,SAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACf,CAAC,EAHWA,iBAAS,KAATA,iBAAS,GAAA,EAAA,CAAA,CAAA;AAUTC;AAAZ,CAAA,UAAY,YAAY,EAAA;AACtB,IAAA,YAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,YAAA,CAAA,YAAA,CAAA,GAAA,aAA0B;AAC1B,IAAA,YAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,YAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACrB,CAAC,EALWA,oBAAY,KAAZA,oBAAY,GAAA,EAAA,CAAA,CAAA;AAmKZC;AAAZ,CAAA,UAAY,oBAAoB,EAAA;AAC9B,IAAA,oBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,oBAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AACvB,IAAA,oBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,oBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACrB,CAAC,EALWA,4BAAoB,KAApBA,4BAAoB,GAAA,EAAA,CAAA,CAAA;AAOpBC;AAAZ,CAAA,UAAY,gBAAgB,EAAA;AAC1B,IAAA,gBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,gBAAA,CAAA,kBAAA,CAAA,GAAA,mBAAsC;AACxC,CAAC,EAHWA,wBAAgB,KAAhBA,wBAAgB,GAAA,EAAA,CAAA,CAAA;AAsJhBC;AAAZ,CAAA,UAAY,sBAAsB,EAAA;AAChC,IAAA,sBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,sBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,sBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACvB,CAAC,EAJWA,8BAAsB,KAAtBA,8BAAsB,GAAA,EAAA,CAAA,CAAA;AA2CtBC;AAAZ,CAAA,UAAY,SAAS,EAAA;AACnB,IAAA,SAAA,CAAA,eAAA,CAAA,GAAA,eAA+B;AAC/B,IAAA,SAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,SAAA,CAAA,YAAA,CAAA,GAAA,YAAyB;AACzB,IAAA,SAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACf,CAAC,EALWA,iBAAS,KAATA,iBAAS,GAAA,EAAA,CAAA,CAAA;AA+ETC;AAAZ,CAAA,UAAY,UAAU,EAAA;AACpB,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACvB,CAAC,EAHWA,kBAAU,KAAVA,kBAAU,GAAA,EAAA,CAAA,CAAA;AAkIf,MAAM,mBAAmB,GAAGC,SAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -2,34 +2,5 @@ function getDefaultExportFromCjs (x) {
|
|
|
2
2
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
if (Object.prototype.hasOwnProperty.call(n, '__esModule')) return n;
|
|
7
|
-
var f = n.default;
|
|
8
|
-
if (typeof f == "function") {
|
|
9
|
-
var a = function a () {
|
|
10
|
-
var isInstance = false;
|
|
11
|
-
try {
|
|
12
|
-
isInstance = this instanceof a;
|
|
13
|
-
} catch {}
|
|
14
|
-
if (isInstance) {
|
|
15
|
-
return Reflect.construct(f, arguments, this.constructor);
|
|
16
|
-
}
|
|
17
|
-
return f.apply(this, arguments);
|
|
18
|
-
};
|
|
19
|
-
a.prototype = f.prototype;
|
|
20
|
-
} else a = {};
|
|
21
|
-
Object.defineProperty(a, '__esModule', {value: true});
|
|
22
|
-
Object.keys(n).forEach(function (k) {
|
|
23
|
-
var d = Object.getOwnPropertyDescriptor(n, k);
|
|
24
|
-
Object.defineProperty(a, k, d.get ? d : {
|
|
25
|
-
enumerable: true,
|
|
26
|
-
get: function () {
|
|
27
|
-
return n[k];
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
});
|
|
31
|
-
return a;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export { getAugmentedNamespace, getDefaultExportFromCjs };
|
|
5
|
+
export { getDefaultExportFromCjs };
|
|
35
6
|
//# sourceMappingURL=_commonjsHelpers.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_commonjsHelpers.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"_commonjsHelpers.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|