react-easy-wall 1.0.4 → 1.0.5
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.map +1 -1
- package/dist/cjs/components/panel/PanelAvatar.js.map +1 -1
- package/dist/cjs/components/panel/PanelDivider.js.map +1 -1
- package/dist/cjs/components/panel/PanelHeader.js.map +1 -1
- package/dist/cjs/components/panel/PanelItem.js.map +1 -1
- package/dist/cjs/components/panel/PanelListItems.js.map +1 -1
- package/dist/cjs/components/panel/panel.actions.js.map +1 -1
- package/dist/cjs/components/panel/panel.store.js.map +1 -1
- package/dist/cjs/components/session/SessionProvider.js.map +1 -1
- package/dist/cjs/components/session/SessionUserContext.js.map +1 -1
- package/dist/cjs/components/session/SessionUserProvider.js.map +1 -1
- package/dist/cjs/components/session/session.constants.js.map +1 -1
- package/dist/cjs/components/session/session.hooks.js.map +1 -1
- package/dist/cjs/shared/apollo/apollo.client.js.map +1 -1
- package/dist/cjs/shared/mui/theme.js.map +1 -1
- package/dist/cjs/shared/types/generated.js.map +1 -1
- package/dist/esm/components/panel/Panel.js.map +1 -1
- package/dist/esm/components/panel/PanelAvatar.js.map +1 -1
- package/dist/esm/components/panel/PanelDivider.js.map +1 -1
- package/dist/esm/components/panel/PanelHeader.js.map +1 -1
- package/dist/esm/components/panel/PanelItem.js.map +1 -1
- package/dist/esm/components/panel/PanelListItems.js.map +1 -1
- package/dist/esm/components/panel/panel.actions.js.map +1 -1
- package/dist/esm/components/panel/panel.store.js.map +1 -1
- package/dist/esm/components/session/SessionProvider.js.map +1 -1
- package/dist/esm/components/session/SessionUserContext.js.map +1 -1
- package/dist/esm/components/session/SessionUserProvider.js.map +1 -1
- package/dist/esm/components/session/session.constants.js.map +1 -1
- package/dist/esm/components/session/session.hooks.js.map +1 -1
- package/dist/esm/shared/apollo/apollo.client.js.map +1 -1
- package/dist/esm/shared/mui/theme.js.map +1 -1
- package/dist/esm/shared/types/generated.js.map +1 -1
- package/package.json +4 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Panel.js","sources":["
|
|
1
|
+
{"version":3,"file":"Panel.js","sources":["../../../../src/components/panel/Panel.tsx"],"sourcesContent":["'use client';\nimport { Box, Drawer, DrawerProps } from '@mui/material';\nimport React from 'react';\nimport { useStore } from '@cobuildlab/react-simple-state';\nimport { panelStore } from './panel.store';\nimport { handlePanelClick } from './panel.actions';\n\nexport interface PanelProps extends DrawerProps {\n children?: React.ReactNode;\n size?: number;\n}\n\nexport const Panel: React.FC<PanelProps> = ({ children, size = 300, ...rest }) => {\n const { isOpen } = useStore(panelStore);\n\n return (\n <Drawer open={isOpen} onClose={() => handlePanelClick(false)} {...rest}>\n <Box\n sx={{ width: size }}\n display=\"flex\"\n flexDirection=\"column\"\n justifyContent=\"space-between\"\n height=\"100%\">\n {children}\n </Box>\n </Drawer>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;AAYO;;;AAeP;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelAvatar.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelAvatar.js","sources":["../../../../src/components/panel/PanelAvatar.tsx"],"sourcesContent":["'use client';\nimport React from 'react';\nimport { Box, Avatar, Link, AvatarProps } from '@mui/material';\nimport { useSession } from '../session/session.hooks';\n\nexport interface PanelAvatarProps {\n avatarProps?: AvatarProps;\n textLink?: string;\n}\n\nexport const PanelAvatar: React.FC<PanelAvatarProps> = ({\n avatarProps,\n textLink = 'Admin Account',\n}) => {\n const { user, config } = useSession();\n\n return (\n <Box px={1.5} py={1} display=\"flex\" alignItems=\"center\">\n <Box mr={1}>\n <Avatar\n sx={{ width: 40, height: 40, ...avatarProps?.sx }}\n src={user?.avatar as string}\n {...avatarProps}\n />\n </Box>\n <Box>\n <Box mb={0}>{decodeURIComponent(user?.name as string)}</Box>\n <Link href={config?.urlPortal}>\n <Box fontSize={12}>{textLink}</Box>\n </Link>\n </Box>\n </Box>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;AAUO;;;AAuBP;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelDivider.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelDivider.js","sources":["../../../../src/components/panel/PanelDivider.tsx"],"sourcesContent":["'use client'\nimport { DividerProps, Divider } from '@mui/material';\nimport React from 'react';\n\nexport interface PanelDividerProps extends DividerProps {}\n\nexport const PanelDivider: React.FC<PanelDividerProps> = ({ sx, ...rest }) => {\n return (\n <Divider\n sx={{\n backgroundColor: '#e7e7e7',\n height: 1.5,\n ...sx,\n }}\n {...rest}\n />\n );\n};\n"],"names":[],"mappings":";;;;;;AAMO;AACL;AAGM;AACA;AACA;;AAKR;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelHeader.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelHeader.js","sources":["../../../../src/components/panel/PanelHeader.tsx"],"sourcesContent":["'use client';\nimport React from 'react';\nimport { BoxProps, Box } from '@mui/material';\n\nexport interface PanelHeaderProps {\n containerProps: BoxProps;\n imageProps?: React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;\n}\n\nexport const PanelHeader: React.FC<PanelHeaderProps> = ({ imageProps, containerProps }) => {\n return (\n <Box {...containerProps}>\n <img {...imageProps} alt={imageProps?.alt} />\n </Box>\n );\n};\n"],"names":[],"mappings":";;;;;;AASO;AACL;AAKF;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelItem.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelItem.js","sources":["../../../../src/components/panel/PanelItem.tsx"],"sourcesContent":["'use client'\nimport React from 'react';\nimport {\n ListItem,\n ListItemButton,\n ListItemText,\n IconButton,\n ListItemProps,\n ListItemTextProps,\n} from '@mui/material';\nimport ArrowForwardIosIcon from '@mui/icons-material/ArrowForwardIos';\nimport { theme } from '../../shared/mui/theme';\n\nexport interface PanelItemProps {\n listItemProps?: ListItemProps & { href: string };\n listItemTextProps?: ListItemTextProps;\n}\n\nexport const PanelItem: React.FC<PanelItemProps> = ({ listItemProps, listItemTextProps }) => {\n return (\n <ListItem\n disablePadding\n component=\"a\"\n secondaryAction={\n <IconButton>\n <ArrowForwardIosIcon fontSize=\"small\" />\n </IconButton>\n }\n {...listItemProps}>\n <ListItemButton sx={{ alignItems: 'center', paddingLeft: theme.spacing(1.5) }}>\n <ListItemText {...listItemTextProps} />\n </ListItemButton>\n </ListItem>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;;AAkBO;;AAgBP;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelListItems.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelListItems.js","sources":["../../../../src/components/panel/PanelListItems.tsx"],"sourcesContent":["'use client';\nimport React from 'react';\nimport {\n ListProps,\n Box,\n Typography,\n DividerProps,\n BoxProps,\n List,\n TypographyProps,\n} from '@mui/material';\nimport { PanelDivider } from './PanelDivider';\nimport { theme } from '../../shared/mui/theme';\nimport { PanelListRoute } from './panel.types';\nimport { PanelItem } from './PanelItem';\n\nexport interface PanelListItems {\n dividerProps?: DividerProps;\n containerProps?: BoxProps;\n listProps?: ListProps;\n routes?: PanelListRoute[];\n titleProps?: TypographyProps;\n title?: string;\n}\n\nexport const PanelListItems: React.FC<PanelListItems> = ({\n dividerProps,\n containerProps,\n listProps,\n titleProps,\n routes = [],\n title = 'Title',\n}) => {\n return (\n <Box {...containerProps}>\n {title ? (\n <>\n <Typography\n px={1.5}\n mb={1}\n lineHeight={1.2}\n fontWeight=\"bold\"\n fontSize={16}\n {...titleProps}>\n {title}\n </Typography>\n <PanelDivider {...dividerProps} />\n </>\n ) : null}\n\n <List disablePadding sx={{ marginBottom: theme.spacing(1) }} {...listProps}>\n {routes.map((route, index) => (\n <PanelItem\n listItemProps={{\n href: route.path,\n }}\n listItemTextProps={{\n primary: route.name,\n primaryTypographyProps: { sx: { fontWeight: 400, fontSize: 16 } },\n }}\n />\n ))}\n </List>\n </Box>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;;;AAiCE;;AAsBW;;AAGC;AACD;AAMb;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"panel.actions.js","sources":["
|
|
1
|
+
{"version":3,"file":"panel.actions.js","sources":["../../../../src/components/panel/panel.actions.ts"],"sourcesContent":["import { createStoreAction } from '@cobuildlab/react-simple-state';\nimport { panelStore } from './panel.store';\nimport { PanelStoreAction } from './panel.types';\n\nexport const panelStoreAction = createStoreAction(panelStore, (prev, data: PanelStoreAction) => ({\n ...prev,\n ...data,\n}));\n\nexport const handlePanelClick = (isOpen: boolean) => {\n return panelStoreAction({ isOpen });\n};\n"],"names":["createStoreAction","panelStore"],"mappings":";;;;;AAIO,MAAM,gBAAgB,GAAGA,kCAAiB,CAACC,sBAAU,EAAE,CAAC,IAAI,EAAE,IAAsB,MAAM;AAC/F,IAAA,GAAG,IAAI;AACP,IAAA,GAAG,IAAI;AACR,CAAA,CAAC;AAEK,MAAM,gBAAgB,GAAG,CAAC,MAAe,KAAI;AAClD,IAAA,OAAO,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;AACrC;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"panel.store.js","sources":["
|
|
1
|
+
{"version":3,"file":"panel.store.js","sources":["../../../../src/components/panel/panel.store.ts"],"sourcesContent":["import {createStore} from \"@cobuildlab/react-simple-state\";\n\nexport const panelStore = createStore({\n initialValue: {\n isOpen: false,\n },\n});"],"names":["createStore"],"mappings":";;;;AAEO,MAAM,UAAU,GAAGA,4BAAW,CAAC;AAClC,IAAA,YAAY,EAAE;AACV,QAAA,MAAM,EAAE,KAAK;AAChB,KAAA;AACJ,CAAA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SessionProvider.js","sources":["
|
|
1
|
+
{"version":3,"file":"SessionProvider.js","sources":["../../../../src/components/session/SessionProvider.tsx"],"sourcesContent":["import React from 'react';\nimport { apolloClient } from '../../shared/apollo/apollo.client';\nimport { Config } from '../../config/config.types';\nimport { CurrentUserDocument, CurrentUserQuery } from '../../shared/types/generated';\nimport { SessionUserProvider } from './SessionUserProvider';\nimport { AppRouterCacheProvider } from '@mui/material-nextjs/v15-appRouter';\n\n\ntype SessionProviderProps = {\n children: React.ReactNode;\n config: Config;\n};\n\nexport const SessionProvider: React.FC<SessionProviderProps> = async ({ children, config }) => {\n const { getClient } = apolloClient(config);\n const { data } = await getClient().query<CurrentUserQuery>({\n query: CurrentUserDocument,\n context: {\n fetchOptions: {\n next: { revalidate: 3600 },\n },\n },\n });\n\n return (\n <AppRouterCacheProvider>\n <SessionUserProvider initial={data?.currentUser} config={config}>\n {children}\n </SessionUserProvider>\n </AppRouterCacheProvider>\n );\n};\n"],"names":["apolloClient","CurrentUserDocument","_jsx","AppRouterCacheProvider","SessionUserProvider"],"mappings":";;;;;;;;AAaO,MAAM,eAAe,GAAmC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAI;IAC5F,MAAM,EAAE,SAAS,EAAE,GAAGA,0BAAY,CAAC,MAAM,CAAC;IAC1C,MAAM,EAAE,IAAI,EAAE,GAAG,MAAM,SAAS,EAAE,CAAC,KAAK,CAAmB;AACzD,QAAA,KAAK,EAAEC,6BAAmB;AAC1B,QAAA,OAAO,EAAE;AACP,YAAA,YAAY,EAAE;AACZ,gBAAA,IAAI,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE;AAC3B,aAAA;AACF,SAAA;AACF,KAAA,CAAC;IAEF,QACEC,eAACC,oBAAsB,EAAA,EAAA,QAAA,EACrBD,eAACE,uCAAmB,EAAA,EAAC,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,YAC5D,QAAQ,EAAA,CACW,EAAA,CACC;AAE7B;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SessionUserContext.js","sources":["
|
|
1
|
+
{"version":3,"file":"SessionUserContext.js","sources":["../../../../src/components/session/SessionUserContext.tsx"],"sourcesContent":["'use client'\nimport { createContext } from 'react';\n\nimport { SessionContextDefaultValues } from './session.types';\nimport { DEFAULT_USER_CONTEXT } from './session.constants';\n\nexport const Context = createContext<SessionContextDefaultValues>(DEFAULT_USER_CONTEXT);\n\nexport const { Provider } = Context;\n"],"names":[],"mappings":";;;;;;;AAQO;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SessionUserProvider.js","sources":["
|
|
1
|
+
{"version":3,"file":"SessionUserProvider.js","sources":["../../../../src/components/session/SessionUserProvider.tsx"],"sourcesContent":["'use client';\nimport React, { useState } from 'react';\nimport { User } from '../../shared/types/generated';\nimport { Provider } from './SessionUserContext';\nimport { SessionContextDefaultValues } from './session.types';\nimport { Config } from '../../config/config.types';\nimport { ThemeProvider } from '@mui/material/styles';\nimport CssBaseline from '@mui/material/CssBaseline';\nimport { theme } from '../../shared/mui/theme';\n\ntype SessionUserProviderProps = {\n children: React.ReactNode;\n initial: User | null | undefined;\n config: Config;\n};\n\nexport const SessionUserProvider: React.FC<SessionUserProviderProps> = ({\n children,\n initial,\n config,\n}) => {\n const [user] = useState<User | null | undefined>(initial);\n\n const values: SessionContextDefaultValues = {\n user,\n config,\n };\n return (\n <Provider value={values}>\n <ThemeProvider theme={theme}>\n <CssBaseline />\n\n {children}\n </ThemeProvider>\n </Provider>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;AAgBO;;AAOL;;;;;AAaF;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session.constants.js","sources":["
|
|
1
|
+
{"version":3,"file":"session.constants.js","sources":["../../../../src/components/session/session.constants.ts"],"sourcesContent":["export const DEFAULT_USER_CONTEXT = {\n user: undefined,\n};"],"names":[],"mappings":";;AAAO,MAAM,oBAAoB,GAAG;AAChC,IAAA,IAAI,EAAE,SAAS;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session.hooks.js","sources":["
|
|
1
|
+
{"version":3,"file":"session.hooks.js","sources":["../../../../src/components/session/session.hooks.ts"],"sourcesContent":["import { useContext } from 'react';\nimport { Context } from './SessionUserContext';\n\nexport const useSession = () => {\n return useContext(Context);\n};\n"],"names":["useContext","Context"],"mappings":";;;;;AAGO,MAAM,UAAU,GAAG,MAAK;AAC7B,IAAA,OAAOA,gBAAU,CAACC,0BAAO,CAAC;AAC5B;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apollo.client.js","sources":["
|
|
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.js","sources":["
|
|
1
|
+
{"version":3,"file":"theme.js","sources":["../../../../src/shared/mui/theme.ts"],"sourcesContent":["import { createTheme } from '@mui/material/styles';\n\nexport const theme = createTheme();\n"],"names":["createTheme"],"mappings":";;;;AAEO,MAAM,KAAK,GAAGA,mBAAW;;;;"}
|
|
@@ -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":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Panel.js","sources":["
|
|
1
|
+
{"version":3,"file":"Panel.js","sources":["../../../../src/components/panel/Panel.tsx"],"sourcesContent":["'use client';\nimport { Box, Drawer, DrawerProps } from '@mui/material';\nimport React from 'react';\nimport { useStore } from '@cobuildlab/react-simple-state';\nimport { panelStore } from './panel.store';\nimport { handlePanelClick } from './panel.actions';\n\nexport interface PanelProps extends DrawerProps {\n children?: React.ReactNode;\n size?: number;\n}\n\nexport const Panel: React.FC<PanelProps> = ({ children, size = 300, ...rest }) => {\n const { isOpen } = useStore(panelStore);\n\n return (\n <Drawer open={isOpen} onClose={() => handlePanelClick(false)} {...rest}>\n <Box\n sx={{ width: size }}\n display=\"flex\"\n flexDirection=\"column\"\n justifyContent=\"space-between\"\n height=\"100%\">\n {children}\n </Box>\n </Drawer>\n );\n};\n"],"names":[],"mappings":";;;;;;;;AAYO;;;AAeP;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelAvatar.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelAvatar.js","sources":["../../../../src/components/panel/PanelAvatar.tsx"],"sourcesContent":["'use client';\nimport React from 'react';\nimport { Box, Avatar, Link, AvatarProps } from '@mui/material';\nimport { useSession } from '../session/session.hooks';\n\nexport interface PanelAvatarProps {\n avatarProps?: AvatarProps;\n textLink?: string;\n}\n\nexport const PanelAvatar: React.FC<PanelAvatarProps> = ({\n avatarProps,\n textLink = 'Admin Account',\n}) => {\n const { user, config } = useSession();\n\n return (\n <Box px={1.5} py={1} display=\"flex\" alignItems=\"center\">\n <Box mr={1}>\n <Avatar\n sx={{ width: 40, height: 40, ...avatarProps?.sx }}\n src={user?.avatar as string}\n {...avatarProps}\n />\n </Box>\n <Box>\n <Box mb={0}>{decodeURIComponent(user?.name as string)}</Box>\n <Link href={config?.urlPortal}>\n <Box fontSize={12}>{textLink}</Box>\n </Link>\n </Box>\n </Box>\n );\n};\n"],"names":[],"mappings":";;;;;;;AAUO;;;AAuBP;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelDivider.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelDivider.js","sources":["../../../../src/components/panel/PanelDivider.tsx"],"sourcesContent":["'use client'\nimport { DividerProps, Divider } from '@mui/material';\nimport React from 'react';\n\nexport interface PanelDividerProps extends DividerProps {}\n\nexport const PanelDivider: React.FC<PanelDividerProps> = ({ sx, ...rest }) => {\n return (\n <Divider\n sx={{\n backgroundColor: '#e7e7e7',\n height: 1.5,\n ...sx,\n }}\n {...rest}\n />\n );\n};\n"],"names":[],"mappings":";;;;AAMO;AACL;AAGM;AACA;AACA;;AAKR;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelHeader.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelHeader.js","sources":["../../../../src/components/panel/PanelHeader.tsx"],"sourcesContent":["'use client';\nimport React from 'react';\nimport { BoxProps, Box } from '@mui/material';\n\nexport interface PanelHeaderProps {\n containerProps: BoxProps;\n imageProps?: React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;\n}\n\nexport const PanelHeader: React.FC<PanelHeaderProps> = ({ imageProps, containerProps }) => {\n return (\n <Box {...containerProps}>\n <img {...imageProps} alt={imageProps?.alt} />\n </Box>\n );\n};\n"],"names":[],"mappings":";;;;AASO;AACL;AAKF;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelItem.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelItem.js","sources":["../../../../src/components/panel/PanelItem.tsx"],"sourcesContent":["'use client'\nimport React from 'react';\nimport {\n ListItem,\n ListItemButton,\n ListItemText,\n IconButton,\n ListItemProps,\n ListItemTextProps,\n} from '@mui/material';\nimport ArrowForwardIosIcon from '@mui/icons-material/ArrowForwardIos';\nimport { theme } from '../../shared/mui/theme';\n\nexport interface PanelItemProps {\n listItemProps?: ListItemProps & { href: string };\n listItemTextProps?: ListItemTextProps;\n}\n\nexport const PanelItem: React.FC<PanelItemProps> = ({ listItemProps, listItemTextProps }) => {\n return (\n <ListItem\n disablePadding\n component=\"a\"\n secondaryAction={\n <IconButton>\n <ArrowForwardIosIcon fontSize=\"small\" />\n </IconButton>\n }\n {...listItemProps}>\n <ListItemButton sx={{ alignItems: 'center', paddingLeft: theme.spacing(1.5) }}>\n <ListItemText {...listItemTextProps} />\n </ListItemButton>\n </ListItem>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;AAkBO;;AAgBP;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PanelListItems.js","sources":["
|
|
1
|
+
{"version":3,"file":"PanelListItems.js","sources":["../../../../src/components/panel/PanelListItems.tsx"],"sourcesContent":["'use client';\nimport React from 'react';\nimport {\n ListProps,\n Box,\n Typography,\n DividerProps,\n BoxProps,\n List,\n TypographyProps,\n} from '@mui/material';\nimport { PanelDivider } from './PanelDivider';\nimport { theme } from '../../shared/mui/theme';\nimport { PanelListRoute } from './panel.types';\nimport { PanelItem } from './PanelItem';\n\nexport interface PanelListItems {\n dividerProps?: DividerProps;\n containerProps?: BoxProps;\n listProps?: ListProps;\n routes?: PanelListRoute[];\n titleProps?: TypographyProps;\n title?: string;\n}\n\nexport const PanelListItems: React.FC<PanelListItems> = ({\n dividerProps,\n containerProps,\n listProps,\n titleProps,\n routes = [],\n title = 'Title',\n}) => {\n return (\n <Box {...containerProps}>\n {title ? (\n <>\n <Typography\n px={1.5}\n mb={1}\n lineHeight={1.2}\n fontWeight=\"bold\"\n fontSize={16}\n {...titleProps}>\n {title}\n </Typography>\n <PanelDivider {...dividerProps} />\n </>\n ) : null}\n\n <List disablePadding sx={{ marginBottom: theme.spacing(1) }} {...listProps}>\n {routes.map((route, index) => (\n <PanelItem\n listItemProps={{\n href: route.path,\n }}\n listItemTextProps={{\n primary: route.name,\n primaryTypographyProps: { sx: { fontWeight: 400, fontSize: 16 } },\n }}\n />\n ))}\n </List>\n </Box>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;AAiCE;;AAsBW;;AAGC;AACD;AAMb;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"panel.actions.js","sources":["
|
|
1
|
+
{"version":3,"file":"panel.actions.js","sources":["../../../../src/components/panel/panel.actions.ts"],"sourcesContent":["import { createStoreAction } from '@cobuildlab/react-simple-state';\nimport { panelStore } from './panel.store';\nimport { PanelStoreAction } from './panel.types';\n\nexport const panelStoreAction = createStoreAction(panelStore, (prev, data: PanelStoreAction) => ({\n ...prev,\n ...data,\n}));\n\nexport const handlePanelClick = (isOpen: boolean) => {\n return panelStoreAction({ isOpen });\n};\n"],"names":["createStoreAction"],"mappings":";;;AAIO,MAAM,gBAAgB,GAAGA,4BAAiB,CAAC,UAAU,EAAE,CAAC,IAAI,EAAE,IAAsB,MAAM;AAC/F,IAAA,GAAG,IAAI;AACP,IAAA,GAAG,IAAI;AACR,CAAA,CAAC;AAEK,MAAM,gBAAgB,GAAG,CAAC,MAAe,KAAI;AAClD,IAAA,OAAO,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;AACrC;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"panel.store.js","sources":["
|
|
1
|
+
{"version":3,"file":"panel.store.js","sources":["../../../../src/components/panel/panel.store.ts"],"sourcesContent":["import {createStore} from \"@cobuildlab/react-simple-state\";\n\nexport const panelStore = createStore({\n initialValue: {\n isOpen: false,\n },\n});"],"names":["createStore"],"mappings":";;AAEO,MAAM,UAAU,GAAGA,sBAAW,CAAC;AAClC,IAAA,YAAY,EAAE;AACV,QAAA,MAAM,EAAE,KAAK;AAChB,KAAA;AACJ,CAAA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SessionProvider.js","sources":["
|
|
1
|
+
{"version":3,"file":"SessionProvider.js","sources":["../../../../src/components/session/SessionProvider.tsx"],"sourcesContent":["import React from 'react';\nimport { apolloClient } from '../../shared/apollo/apollo.client';\nimport { Config } from '../../config/config.types';\nimport { CurrentUserDocument, CurrentUserQuery } from '../../shared/types/generated';\nimport { SessionUserProvider } from './SessionUserProvider';\nimport { AppRouterCacheProvider } from '@mui/material-nextjs/v15-appRouter';\n\n\ntype SessionProviderProps = {\n children: React.ReactNode;\n config: Config;\n};\n\nexport const SessionProvider: React.FC<SessionProviderProps> = async ({ children, config }) => {\n const { getClient } = apolloClient(config);\n const { data } = await getClient().query<CurrentUserQuery>({\n query: CurrentUserDocument,\n context: {\n fetchOptions: {\n next: { revalidate: 3600 },\n },\n },\n });\n\n return (\n <AppRouterCacheProvider>\n <SessionUserProvider initial={data?.currentUser} config={config}>\n {children}\n </SessionUserProvider>\n </AppRouterCacheProvider>\n );\n};\n"],"names":["_jsx"],"mappings":";;;;;;AAaO,MAAM,eAAe,GAAmC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAI;IAC5F,MAAM,EAAE,SAAS,EAAE,GAAG,YAAY,CAAC,MAAM,CAAC;IAC1C,MAAM,EAAE,IAAI,EAAE,GAAG,MAAM,SAAS,EAAE,CAAC,KAAK,CAAmB;AACzD,QAAA,KAAK,EAAE,mBAAmB;AAC1B,QAAA,OAAO,EAAE;AACP,YAAA,YAAY,EAAE;AACZ,gBAAA,IAAI,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE;AAC3B,aAAA;AACF,SAAA;AACF,KAAA,CAAC;IAEF,QACEA,IAAC,sBAAsB,EAAA,EAAA,QAAA,EACrBA,IAAC,mBAAmB,EAAA,EAAC,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,YAC5D,QAAQ,EAAA,CACW,EAAA,CACC;AAE7B;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SessionUserContext.js","sources":["
|
|
1
|
+
{"version":3,"file":"SessionUserContext.js","sources":["../../../../src/components/session/SessionUserContext.tsx"],"sourcesContent":["'use client'\nimport { createContext } from 'react';\n\nimport { SessionContextDefaultValues } from './session.types';\nimport { DEFAULT_USER_CONTEXT } from './session.constants';\n\nexport const Context = createContext<SessionContextDefaultValues>(DEFAULT_USER_CONTEXT);\n\nexport const { Provider } = Context;\n"],"names":[],"mappings":";;;;;AAQO;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SessionUserProvider.js","sources":["
|
|
1
|
+
{"version":3,"file":"SessionUserProvider.js","sources":["../../../../src/components/session/SessionUserProvider.tsx"],"sourcesContent":["'use client';\nimport React, { useState } from 'react';\nimport { User } from '../../shared/types/generated';\nimport { Provider } from './SessionUserContext';\nimport { SessionContextDefaultValues } from './session.types';\nimport { Config } from '../../config/config.types';\nimport { ThemeProvider } from '@mui/material/styles';\nimport CssBaseline from '@mui/material/CssBaseline';\nimport { theme } from '../../shared/mui/theme';\n\ntype SessionUserProviderProps = {\n children: React.ReactNode;\n initial: User | null | undefined;\n config: Config;\n};\n\nexport const SessionUserProvider: React.FC<SessionUserProviderProps> = ({\n children,\n initial,\n config,\n}) => {\n const [user] = useState<User | null | undefined>(initial);\n\n const values: SessionContextDefaultValues = {\n user,\n config,\n };\n return (\n <Provider value={values}>\n <ThemeProvider theme={theme}>\n <CssBaseline />\n\n {children}\n </ThemeProvider>\n </Provider>\n );\n};\n"],"names":[],"mappings":";;;;;;;;AAgBO;;AAOL;;;;;AAaF;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session.constants.js","sources":["
|
|
1
|
+
{"version":3,"file":"session.constants.js","sources":["../../../../src/components/session/session.constants.ts"],"sourcesContent":["export const DEFAULT_USER_CONTEXT = {\n user: undefined,\n};"],"names":[],"mappings":"AAAO,MAAM,oBAAoB,GAAG;AAChC,IAAA,IAAI,EAAE,SAAS;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session.hooks.js","sources":["
|
|
1
|
+
{"version":3,"file":"session.hooks.js","sources":["../../../../src/components/session/session.hooks.ts"],"sourcesContent":["import { useContext } from 'react';\nimport { Context } from './SessionUserContext';\n\nexport const useSession = () => {\n return useContext(Context);\n};\n"],"names":[],"mappings":";;;AAGO,MAAM,UAAU,GAAG,MAAK;AAC7B,IAAA,OAAO,UAAU,CAAC,OAAO,CAAC;AAC5B;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apollo.client.js","sources":["
|
|
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":[],"mappings":";;;AAQO,MAAM,YAAY,GAAG,CAAC,MAAc,KAAI;AAC7C,IAAA,MAAM,EAAE,GAAG,EAAE,GAAG,MAAM;IACtB,OAAO,oBAAoB,CAAC,MAAK;QAC/B,OAAO,IAAI,YAAY,CAAC;YACtB,KAAK,EAAE,IAAI,aAAa,EAAE;YAC1B,IAAI,EAAE,IAAI,QAAQ,CAAC;gBACjB,GAAG;aACJ,CAAC;AACH,SAAA,CAAC;AACJ,IAAA,CAAC,CAAC;AACJ;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.js","sources":["
|
|
1
|
+
{"version":3,"file":"theme.js","sources":["../../../../src/shared/mui/theme.ts"],"sourcesContent":["import { createTheme } from '@mui/material/styles';\n\nexport const theme = createTheme();\n"],"names":[],"mappings":";;AAEO,MAAM,KAAK,GAAG,WAAW;;;;"}
|
|
@@ -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":[],"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":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-easy-wall",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "1.0.5",
|
|
5
4
|
"main": "./dist/cjs/index.js",
|
|
6
5
|
"module": "./dist/esm/index.js",
|
|
7
6
|
"types": "./dist/index.d.ts",
|
|
7
|
+
"sideEffects": [
|
|
8
|
+
"**/*.css"
|
|
9
|
+
],
|
|
8
10
|
"scripts": {
|
|
9
11
|
"build": "rollup -c",
|
|
10
12
|
"watch": "rollup -c -w",
|