From 89648c4ca96ceec62608d59ecc85994d1eab08f6 Mon Sep 17 00:00:00 2001 From: bigint <69431456+bigint@users.noreply.github.com> Date: Mon, 13 Nov 2023 21:28:28 +0530 Subject: [PATCH] feat: cleanup unused resolvers and map to v2 one --- .github/CODEOWNERS | 1 - apps/web/.gitignore | 1 - apps/web/.prettierignore | 1 - .../Publication/FullPublication.tsx | 6 +- .../web/src/components/Publication/Source.tsx | 8 +- apps/web/src/i18n.ts | 9 - .../AnyPublicationMetadataFields.graphql | 18 - .../fragments/ProfileMetadataFields.graphql | 1 - .../ArticleMetadataV3Fields.graphql | 2 - .../AudioMetadataV3Fields.graphql | 2 - .../EmbedMetadataV3Fields.graphql | 2 - .../ImageMetadataV3Fields.graphql | 9 - .../LinkMetadataV3Fields.graphql | 2 - .../LiveStreamMetadataV3Fields.graphql | 2 - .../MintMetadataV3Fields.graphql | 2 - .../TextOnlyMetadataV3Fields.graphql | 2 - .../VideoMetadataV3Fields.graphql | 2 - ...ublicationMetadataMediaVideoFields.graphql | 1 - .../queries/ApprovedAuthentications.graphql | 1 - packages/lens/generated.ts | 13273 +++------------- 20 files changed, 1945 insertions(+), 11400 deletions(-) delete mode 100644 apps/web/.gitignore delete mode 100644 apps/web/src/i18n.ts diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0a9193cea14b..96a8f5a65877 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1 @@ * @bigint -apps/web/src/locales/ta @bigint diff --git a/apps/web/.gitignore b/apps/web/.gitignore deleted file mode 100644 index a1428aab3025..000000000000 --- a/apps/web/.gitignore +++ /dev/null @@ -1 +0,0 @@ -src/locales/**/*.js diff --git a/apps/web/.prettierignore b/apps/web/.prettierignore index f2bbf70871f6..a680367ef565 100644 --- a/apps/web/.prettierignore +++ b/apps/web/.prettierignore @@ -1,2 +1 @@ .next -src/locales diff --git a/apps/web/src/components/Publication/FullPublication.tsx b/apps/web/src/components/Publication/FullPublication.tsx index 7c7462b366c7..a70787457c96 100644 --- a/apps/web/src/components/Publication/FullPublication.tsx +++ b/apps/web/src/components/Publication/FullPublication.tsx @@ -23,7 +23,7 @@ const FullPublication: FC = ({ publication }) => { ? publication?.mirrorOn : publication; - const { metadata, createdAt } = targetPublication; + const { publishedOn, metadata, createdAt } = targetPublication; useEffectOnce(() => { pushToImpressions(targetPublication.id); @@ -45,8 +45,8 @@ const FullPublication: FC = ({ publication }) => { {formatDate(new Date(createdAt), 'hh:mm A · MMM D, YYYY')} - {metadata.appId ? ( - · Posted via {getAppName(metadata.appId)} + {publishedOn?.id ? ( + · Posted via {getAppName(publishedOn.id)} ) : null} diff --git a/apps/web/src/components/Publication/Source.tsx b/apps/web/src/components/Publication/Source.tsx index df5c03b705ad..4770773b4235 100644 --- a/apps/web/src/components/Publication/Source.tsx +++ b/apps/web/src/components/Publication/Source.tsx @@ -14,20 +14,20 @@ const Source: FC = ({ publication }) => { const targetPublication = isMirrorPublication(publication) ? publication.mirrorOn : publication; - const { appId } = targetPublication.metadata; - const show = apps.includes(appId); + const { publishedOn } = targetPublication; + const show = apps.includes(publishedOn?.id); if (!show) { return null; } - const appName = getAppName(appId); + const appName = getAppName(publishedOn?.id); return ( {appName} diff --git a/apps/web/src/i18n.ts b/apps/web/src/i18n.ts deleted file mode 100644 index 1b0a443a257d..000000000000 --- a/apps/web/src/i18n.ts +++ /dev/null @@ -1,9 +0,0 @@ -export const SUPPORTED_LOCALES: Record = { - en: 'English', - zh: 'Chinese - 中文', - fr: 'French - français', - ru: 'Russian - русский', - ta: 'Tamil - தமிழ்' -}; - -export const DEFAULT_LOCALE = 'en'; diff --git a/packages/lens/documents/fragments/AnyPublicationMetadataFields.graphql b/packages/lens/documents/fragments/AnyPublicationMetadataFields.graphql index fb8fe36a05d1..71351da884b8 100644 --- a/packages/lens/documents/fragments/AnyPublicationMetadataFields.graphql +++ b/packages/lens/documents/fragments/AnyPublicationMetadataFields.graphql @@ -8,15 +8,9 @@ fragment AnyPublicationMetadataFields on PublicationMetadata { ... on AudioMetadataV3 { ...AudioMetadataV3Fields } - ... on CheckingInMetadataV3 { - id - } ... on EmbedMetadataV3 { ...EmbedMetadataV3Fields } - ... on EventMetadataV3 { - id - } ... on ImageMetadataV3 { ...ImageMetadataV3Fields } @@ -29,19 +23,7 @@ fragment AnyPublicationMetadataFields on PublicationMetadata { ... on MintMetadataV3 { ...MintMetadataV3Fields } - ... on SpaceMetadataV3 { - id - } - ... on StoryMetadataV3 { - id - } ... on TextOnlyMetadataV3 { ...TextOnlyMetadataV3Fields } - ... on ThreeDMetadataV3 { - id - } - ... on TransactionMetadataV3 { - id - } } diff --git a/packages/lens/documents/fragments/ProfileMetadataFields.graphql b/packages/lens/documents/fragments/ProfileMetadataFields.graphql index 605f7cfca72d..d2843e7427ee 100644 --- a/packages/lens/documents/fragments/ProfileMetadataFields.graphql +++ b/packages/lens/documents/fragments/ProfileMetadataFields.graphql @@ -2,7 +2,6 @@ fragment ProfileMetadataFields on ProfileMetadata { displayName bio rawURI - appId picture { ... on ImageSet { ...ImageSetFields diff --git a/packages/lens/documents/fragments/publication-metadata/ArticleMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/ArticleMetadataV3Fields.graphql index 5a8d5a573b9d..f9e2ac4345cb 100644 --- a/packages/lens/documents/fragments/publication-metadata/ArticleMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/ArticleMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment ArticleMetadataV3Fields on ArticleMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } diff --git a/packages/lens/documents/fragments/publication-metadata/AudioMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/AudioMetadataV3Fields.graphql index 4e0ea5e8f090..bc08c2f213d1 100644 --- a/packages/lens/documents/fragments/publication-metadata/AudioMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/AudioMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment AudioMetadataV3Fields on AudioMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } diff --git a/packages/lens/documents/fragments/publication-metadata/EmbedMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/EmbedMetadataV3Fields.graphql index a3bdbbff6835..b884ea83dec3 100644 --- a/packages/lens/documents/fragments/publication-metadata/EmbedMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/EmbedMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment EmbedMetadataV3Fields on EmbedMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } diff --git a/packages/lens/documents/fragments/publication-metadata/ImageMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/ImageMetadataV3Fields.graphql index 8dd1e224c8fe..c953ceea1865 100644 --- a/packages/lens/documents/fragments/publication-metadata/ImageMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/ImageMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment ImageMetadataV3Fields on ImageMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -13,13 +11,6 @@ fragment ImageMetadataV3Fields on ImageMetadataV3 { asset { ...PublicationMetadataMediaImageFields } - asset { - image { - optimized { - uri - } - } - } title content } diff --git a/packages/lens/documents/fragments/publication-metadata/LinkMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/LinkMetadataV3Fields.graphql index 9a70e31e9aef..51bc59a2e75e 100644 --- a/packages/lens/documents/fragments/publication-metadata/LinkMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/LinkMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment LinkMetadataV3Fields on LinkMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } diff --git a/packages/lens/documents/fragments/publication-metadata/LiveStreamMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/LiveStreamMetadataV3Fields.graphql index 92f2e2c3c5fc..3596cf7b8433 100644 --- a/packages/lens/documents/fragments/publication-metadata/LiveStreamMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/LiveStreamMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment LiveStreamMetadataV3Fields on LiveStreamMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } diff --git a/packages/lens/documents/fragments/publication-metadata/MintMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/MintMetadataV3Fields.graphql index 397e24ffca74..156cddc255c7 100644 --- a/packages/lens/documents/fragments/publication-metadata/MintMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/MintMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment MintMetadataV3Fields on MintMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } diff --git a/packages/lens/documents/fragments/publication-metadata/TextOnlyMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/TextOnlyMetadataV3Fields.graphql index b6faf59b3a6c..2955ee5c2f9c 100644 --- a/packages/lens/documents/fragments/publication-metadata/TextOnlyMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/TextOnlyMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment TextOnlyMetadataV3Fields on TextOnlyMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } diff --git a/packages/lens/documents/fragments/publication-metadata/VideoMetadataV3Fields.graphql b/packages/lens/documents/fragments/publication-metadata/VideoMetadataV3Fields.graphql index 275745c7cd9d..cd06f9536b0a 100644 --- a/packages/lens/documents/fragments/publication-metadata/VideoMetadataV3Fields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/VideoMetadataV3Fields.graphql @@ -1,9 +1,7 @@ fragment VideoMetadataV3Fields on VideoMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } diff --git a/packages/lens/documents/fragments/publication-metadata/media-fields/PublicationMetadataMediaVideoFields.graphql b/packages/lens/documents/fragments/publication-metadata/media-fields/PublicationMetadataMediaVideoFields.graphql index b7d22842d996..01b309857c04 100644 --- a/packages/lens/documents/fragments/publication-metadata/media-fields/PublicationMetadataMediaVideoFields.graphql +++ b/packages/lens/documents/fragments/publication-metadata/media-fields/PublicationMetadataMediaVideoFields.graphql @@ -9,5 +9,4 @@ fragment PublicationMetadataMediaVideoFields on PublicationMetadataMediaVideo { uri } } - duration } diff --git a/packages/lens/documents/queries/ApprovedAuthentications.graphql b/packages/lens/documents/queries/ApprovedAuthentications.graphql index f69255a2740e..e4c668f9cb42 100644 --- a/packages/lens/documents/queries/ApprovedAuthentications.graphql +++ b/packages/lens/documents/queries/ApprovedAuthentications.graphql @@ -3,7 +3,6 @@ query ApprovedAuthentications($request: ApprovedAuthenticationRequest!) { items { authorizationId browser - device os origin expiresAt diff --git a/packages/lens/generated.ts b/packages/lens/generated.ts index 06696982e597..a7d8d72d25b6 100644 --- a/packages/lens/generated.ts +++ b/packages/lens/generated.ts @@ -5231,9 +5231,7 @@ type AnyPublicationMetadataFields_ArticleMetadataV3_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -5264,7 +5262,6 @@ type AnyPublicationMetadataFields_ArticleMetadataV3_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5281,9 +5278,7 @@ type AnyPublicationMetadataFields_AudioMetadataV3_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -5326,7 +5321,6 @@ type AnyPublicationMetadataFields_AudioMetadataV3_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5341,16 +5335,13 @@ type AnyPublicationMetadataFields_AudioMetadataV3_Fragment = { type AnyPublicationMetadataFields_CheckingInMetadataV3_Fragment = { __typename?: 'CheckingInMetadataV3'; - id: string; }; type AnyPublicationMetadataFields_EmbedMetadataV3_Fragment = { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -5381,7 +5372,6 @@ type AnyPublicationMetadataFields_EmbedMetadataV3_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5396,16 +5386,13 @@ type AnyPublicationMetadataFields_EmbedMetadataV3_Fragment = { type AnyPublicationMetadataFields_EventMetadataV3_Fragment = { __typename?: 'EventMetadataV3'; - id: string; }; type AnyPublicationMetadataFields_ImageMetadataV3_Fragment = { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -5436,7 +5423,6 @@ type AnyPublicationMetadataFields_ImageMetadataV3_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5460,9 +5446,7 @@ type AnyPublicationMetadataFields_LinkMetadataV3_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -5492,7 +5476,6 @@ type AnyPublicationMetadataFields_LinkMetadataV3_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5509,9 +5492,7 @@ type AnyPublicationMetadataFields_LiveStreamMetadataV3_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -5544,7 +5525,6 @@ type AnyPublicationMetadataFields_LiveStreamMetadataV3_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5561,9 +5541,7 @@ type AnyPublicationMetadataFields_MintMetadataV3_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -5594,7 +5572,6 @@ type AnyPublicationMetadataFields_MintMetadataV3_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5609,21 +5586,17 @@ type AnyPublicationMetadataFields_MintMetadataV3_Fragment = { type AnyPublicationMetadataFields_SpaceMetadataV3_Fragment = { __typename?: 'SpaceMetadataV3'; - id: string; }; type AnyPublicationMetadataFields_StoryMetadataV3_Fragment = { __typename?: 'StoryMetadataV3'; - id: string; }; type AnyPublicationMetadataFields_TextOnlyMetadataV3_Fragment = { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -5635,21 +5608,17 @@ type AnyPublicationMetadataFields_TextOnlyMetadataV3_Fragment = { type AnyPublicationMetadataFields_ThreeDMetadataV3_Fragment = { __typename?: 'ThreeDMetadataV3'; - id: string; }; type AnyPublicationMetadataFields_TransactionMetadataV3_Fragment = { __typename?: 'TransactionMetadataV3'; - id: string; }; type AnyPublicationMetadataFields_VideoMetadataV3_Fragment = { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -5660,7 +5629,6 @@ type AnyPublicationMetadataFields_VideoMetadataV3_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5692,7 +5660,6 @@ type AnyPublicationMetadataFields_VideoMetadataV3_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5750,7 +5717,6 @@ export type CommentBaseFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -5802,9 +5768,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -5835,7 +5799,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5851,9 +5814,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -5896,7 +5857,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5908,14 +5868,12 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -5946,7 +5904,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -5958,14 +5915,12 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -5996,7 +5951,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6019,9 +5973,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -6051,7 +6003,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6067,9 +6018,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -6102,7 +6051,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6118,9 +6066,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -6151,7 +6097,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6163,15 +6108,13 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -6180,15 +6123,13 @@ export type CommentBaseFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -6199,7 +6140,6 @@ export type CommentBaseFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6231,7 +6171,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6427,7 +6366,6 @@ export type CommentBaseFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -6479,9 +6417,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -6512,7 +6448,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6528,9 +6463,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -6573,7 +6506,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6585,14 +6517,12 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -6623,7 +6553,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6635,14 +6564,12 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -6673,7 +6600,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6696,9 +6622,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -6728,7 +6652,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6744,9 +6667,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -6779,7 +6700,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6795,9 +6715,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -6828,7 +6746,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6840,15 +6757,13 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -6857,15 +6772,13 @@ export type CommentBaseFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -6876,7 +6789,6 @@ export type CommentBaseFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -6908,7 +6820,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7140,7 +7051,6 @@ export type CommentBaseFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -7192,9 +7102,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -7225,7 +7133,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7241,9 +7148,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -7286,7 +7191,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7298,14 +7202,12 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -7336,7 +7238,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7348,14 +7249,12 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -7386,7 +7285,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7409,9 +7307,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -7441,7 +7337,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7457,9 +7352,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -7492,7 +7385,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7508,9 +7400,7 @@ export type CommentBaseFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -7541,7 +7431,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7553,15 +7442,13 @@ export type CommentBaseFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -7570,15 +7457,13 @@ export type CommentBaseFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -7589,7 +7474,6 @@ export type CommentBaseFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7621,7 +7505,6 @@ export type CommentBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7876,7 +7759,6 @@ export type CommentFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -7928,9 +7810,7 @@ export type CommentFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -7961,7 +7841,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -7977,9 +7856,7 @@ export type CommentFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -8022,7 +7899,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -8034,14 +7910,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -8072,7 +7946,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -8084,14 +7957,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -8122,7 +7993,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -8145,9 +8015,7 @@ export type CommentFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -8177,7 +8045,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -8193,9 +8060,7 @@ export type CommentFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -8228,7 +8093,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -8244,9 +8108,7 @@ export type CommentFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -8277,7 +8139,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -8289,15 +8150,13 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -8306,15 +8165,13 @@ export type CommentFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -8325,7 +8182,6 @@ export type CommentFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -8357,7 +8213,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -8573,7 +8428,6 @@ export type CommentFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -8628,9 +8482,7 @@ export type CommentFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -8670,7 +8522,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -8692,9 +8543,7 @@ export type CommentFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -8746,7 +8595,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -8764,14 +8612,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -8811,7 +8657,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -8829,14 +8674,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -8876,7 +8719,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -8905,9 +8747,7 @@ export type CommentFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -8946,7 +8786,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -8968,9 +8807,7 @@ export type CommentFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -9012,7 +8849,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9034,9 +8870,7 @@ export type CommentFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -9076,7 +8910,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9094,15 +8927,13 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -9111,15 +8942,13 @@ export type CommentFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -9130,7 +8959,6 @@ export type CommentFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -9171,7 +8999,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9409,7 +9236,6 @@ export type CommentFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -9464,9 +9290,7 @@ export type CommentFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -9506,7 +9330,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9528,9 +9351,7 @@ export type CommentFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -9582,7 +9403,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9600,14 +9420,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -9647,7 +9465,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9665,14 +9482,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -9712,7 +9527,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9741,9 +9555,7 @@ export type CommentFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -9782,7 +9594,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9804,9 +9615,7 @@ export type CommentFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -9848,7 +9657,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9870,9 +9678,7 @@ export type CommentFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -9912,7 +9718,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -9930,15 +9735,13 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -9947,15 +9750,13 @@ export type CommentFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -9966,7 +9767,6 @@ export type CommentFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10007,7 +9807,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -10262,7 +10061,6 @@ export type CommentFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -10314,9 +10112,7 @@ export type CommentFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -10347,7 +10143,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10363,9 +10158,7 @@ export type CommentFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -10408,7 +10201,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10420,14 +10212,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -10458,7 +10248,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10470,14 +10259,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -10508,7 +10295,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10531,9 +10317,7 @@ export type CommentFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -10563,7 +10347,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10579,9 +10362,7 @@ export type CommentFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -10614,7 +10395,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10630,9 +10410,7 @@ export type CommentFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -10663,7 +10441,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10675,15 +10452,13 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -10692,15 +10467,13 @@ export type CommentFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -10711,7 +10484,6 @@ export type CommentFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10743,7 +10515,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -10975,7 +10746,6 @@ export type CommentFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -11027,9 +10797,7 @@ export type CommentFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -11060,7 +10828,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11076,9 +10843,7 @@ export type CommentFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -11121,7 +10886,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11133,14 +10897,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -11171,7 +10933,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11183,14 +10944,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -11221,7 +10980,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11244,9 +11002,7 @@ export type CommentFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -11276,7 +11032,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11292,9 +11047,7 @@ export type CommentFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -11327,7 +11080,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11343,9 +11095,7 @@ export type CommentFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -11376,7 +11126,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11388,15 +11137,13 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -11405,15 +11152,13 @@ export type CommentFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -11424,7 +11169,6 @@ export type CommentFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11456,7 +11200,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11674,7 +11417,6 @@ export type CommentFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -11726,9 +11468,7 @@ export type CommentFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -11759,7 +11499,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11775,9 +11514,7 @@ export type CommentFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -11820,7 +11557,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11832,14 +11568,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -11870,7 +11604,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11882,14 +11615,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -11920,7 +11651,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11943,9 +11673,7 @@ export type CommentFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -11975,7 +11703,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -11991,9 +11718,7 @@ export type CommentFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -12026,7 +11751,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12042,9 +11766,7 @@ export type CommentFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -12075,7 +11797,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12087,15 +11808,13 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -12104,15 +11823,13 @@ export type CommentFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -12123,7 +11840,6 @@ export type CommentFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12155,7 +11871,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12351,7 +12066,6 @@ export type CommentFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -12403,9 +12117,7 @@ export type CommentFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -12436,7 +12148,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12452,9 +12163,7 @@ export type CommentFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -12497,7 +12206,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12509,14 +12217,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -12547,7 +12253,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12559,14 +12264,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -12597,7 +12300,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12620,9 +12322,7 @@ export type CommentFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -12652,7 +12352,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12668,9 +12367,7 @@ export type CommentFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -12703,7 +12400,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12719,9 +12415,7 @@ export type CommentFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -12752,7 +12446,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12764,15 +12457,13 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -12781,15 +12472,13 @@ export type CommentFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -12800,7 +12489,6 @@ export type CommentFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -12832,7 +12520,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13064,7 +12751,6 @@ export type CommentFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -13116,9 +12802,7 @@ export type CommentFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -13149,7 +12833,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13165,9 +12848,7 @@ export type CommentFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -13210,7 +12891,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13222,14 +12902,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -13260,7 +12938,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13272,14 +12949,12 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -13310,7 +12985,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13333,9 +13007,7 @@ export type CommentFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -13365,7 +13037,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13381,9 +13052,7 @@ export type CommentFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -13416,7 +13085,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13432,9 +13100,7 @@ export type CommentFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -13465,7 +13131,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13477,15 +13142,13 @@ export type CommentFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -13494,15 +13157,13 @@ export type CommentFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -13513,7 +13174,6 @@ export type CommentFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13545,7 +13205,6 @@ export type CommentFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -13839,7 +13498,6 @@ export type ListProfileFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -13924,7 +13582,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -13994,7 +13651,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -14049,9 +13705,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -14091,7 +13745,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14113,9 +13766,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -14167,7 +13818,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14185,14 +13835,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -14232,7 +13880,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14250,14 +13897,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -14297,7 +13942,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14326,9 +13970,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -14367,7 +14009,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14389,9 +14030,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -14433,7 +14072,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14455,9 +14093,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -14497,7 +14133,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14515,15 +14150,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -14532,15 +14165,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -14551,7 +14182,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -14592,7 +14222,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14814,7 +14443,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -14875,9 +14503,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -14917,7 +14543,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -14939,9 +14564,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -14999,7 +14622,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15017,14 +14639,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -15064,7 +14684,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15082,14 +14701,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -15129,7 +14746,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15161,9 +14777,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -15202,7 +14816,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15224,9 +14837,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -15268,7 +14879,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15290,9 +14900,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -15332,7 +14940,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15350,15 +14957,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -15367,15 +14972,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -15386,7 +14989,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15433,7 +15035,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15671,7 +15272,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -15732,9 +15332,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -15774,7 +15372,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15796,9 +15393,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -15856,7 +15451,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15874,14 +15468,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -15921,7 +15513,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -15939,14 +15530,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -15986,7 +15575,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16018,9 +15606,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -16059,7 +15645,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16081,9 +15666,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -16125,7 +15708,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16147,9 +15729,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -16189,7 +15769,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16207,15 +15786,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -16224,15 +15801,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -16243,7 +15818,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16290,7 +15864,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16545,7 +16118,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -16600,9 +16172,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -16642,7 +16212,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16664,9 +16233,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -16718,7 +16285,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16736,14 +16302,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -16783,7 +16347,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16801,14 +16364,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -16848,7 +16409,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16877,9 +16437,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -16918,7 +16476,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -16940,9 +16497,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -16984,7 +16539,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17006,9 +16560,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -17048,7 +16600,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17066,15 +16617,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -17083,15 +16632,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -17102,7 +16649,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -17143,7 +16689,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17381,7 +16926,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -17436,9 +16980,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -17478,7 +17020,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17500,9 +17041,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -17554,7 +17093,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17572,14 +17110,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -17619,7 +17155,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17637,14 +17172,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -17684,7 +17217,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17713,9 +17245,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -17754,7 +17284,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17776,9 +17305,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -17820,7 +17347,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17842,9 +17368,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -17884,7 +17408,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -17902,15 +17425,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -17919,15 +17440,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -17938,7 +17457,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -17979,7 +17497,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -18210,7 +17727,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -18262,9 +17778,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -18295,7 +17809,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18311,9 +17824,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -18356,7 +17867,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18368,14 +17878,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -18406,7 +17914,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18418,14 +17925,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -18456,7 +17961,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18479,9 +17983,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -18511,7 +18013,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18527,9 +18028,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -18562,7 +18061,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18578,9 +18076,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -18611,7 +18107,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18623,15 +18118,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -18640,15 +18133,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -18659,7 +18150,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18691,7 +18181,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -18907,7 +18396,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -18962,9 +18450,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -19004,7 +18490,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19026,9 +18511,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -19080,7 +18563,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19098,14 +18580,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -19145,7 +18625,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19163,14 +18642,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -19210,7 +18687,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19239,9 +18715,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -19280,7 +18754,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19302,9 +18775,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -19346,7 +18817,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19368,9 +18838,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -19410,7 +18878,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19428,15 +18895,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -19445,15 +18910,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -19464,7 +18927,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -19505,7 +18967,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19743,7 +19204,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -19798,9 +19258,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -19840,7 +19298,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19862,9 +19319,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -19916,7 +19371,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19934,14 +19388,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -19981,7 +19433,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -19999,14 +19450,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -20046,7 +19495,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -20075,9 +19523,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -20116,7 +19562,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -20138,9 +19583,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -20182,7 +19625,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -20204,9 +19646,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -20246,7 +19686,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -20264,15 +19703,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -20281,15 +19718,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -20300,7 +19735,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -20341,7 +19775,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -20596,7 +20029,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -20648,9 +20080,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -20681,7 +20111,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -20697,9 +20126,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -20742,7 +20169,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -20754,14 +20180,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -20792,7 +20216,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -20804,14 +20227,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -20842,7 +20263,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -20865,9 +20285,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -20897,7 +20315,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -20913,9 +20330,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -20948,7 +20363,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -20964,9 +20378,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -20997,7 +20409,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21009,15 +20420,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -21026,15 +20435,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -21045,7 +20452,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21077,7 +20483,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21309,7 +20714,6 @@ export type MirrorFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -21361,9 +20765,7 @@ export type MirrorFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -21394,7 +20796,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21410,9 +20811,7 @@ export type MirrorFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -21455,7 +20854,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21467,14 +20865,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -21505,7 +20901,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21517,14 +20912,12 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -21555,7 +20948,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21578,9 +20970,7 @@ export type MirrorFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -21610,7 +21000,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21626,9 +21015,7 @@ export type MirrorFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -21661,7 +21048,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21677,9 +21063,7 @@ export type MirrorFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -21710,7 +21094,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21722,15 +21105,13 @@ export type MirrorFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -21739,15 +21120,13 @@ export type MirrorFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -21758,7 +21137,6 @@ export type MirrorFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -21790,7 +21168,6 @@ export type MirrorFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22225,7 +21602,6 @@ export type PostFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -22277,9 +21653,7 @@ export type PostFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -22310,7 +21684,6 @@ export type PostFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22326,9 +21699,7 @@ export type PostFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -22371,7 +21742,6 @@ export type PostFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22383,14 +21753,12 @@ export type PostFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -22421,7 +21789,6 @@ export type PostFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22433,14 +21800,12 @@ export type PostFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -22471,7 +21836,6 @@ export type PostFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22494,9 +21858,7 @@ export type PostFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -22526,7 +21888,6 @@ export type PostFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22542,9 +21903,7 @@ export type PostFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -22577,7 +21936,6 @@ export type PostFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22593,9 +21951,7 @@ export type PostFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -22626,7 +21982,6 @@ export type PostFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22638,15 +21993,13 @@ export type PostFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -22655,15 +22008,13 @@ export type PostFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -22674,7 +22025,6 @@ export type PostFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22706,7 +22056,6 @@ export type PostFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -22936,7 +22285,6 @@ export type ProfileFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -22989,7 +22337,6 @@ export type ProfileFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -23045,7 +22392,6 @@ export type ProfileMetadataFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -23121,7 +22467,6 @@ export type PublicationProfileFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -23187,7 +22532,6 @@ export type QuoteBaseFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -23239,9 +22583,7 @@ export type QuoteBaseFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -23272,7 +22614,6 @@ export type QuoteBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23288,9 +22629,7 @@ export type QuoteBaseFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -23333,7 +22672,6 @@ export type QuoteBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23345,14 +22683,12 @@ export type QuoteBaseFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -23383,7 +22719,6 @@ export type QuoteBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23395,14 +22730,12 @@ export type QuoteBaseFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -23433,7 +22766,6 @@ export type QuoteBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23456,9 +22788,7 @@ export type QuoteBaseFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -23488,7 +22818,6 @@ export type QuoteBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23504,9 +22833,7 @@ export type QuoteBaseFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -23539,7 +22866,6 @@ export type QuoteBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23555,9 +22881,7 @@ export type QuoteBaseFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -23588,7 +22912,6 @@ export type QuoteBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23600,15 +22923,13 @@ export type QuoteBaseFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -23617,15 +22938,13 @@ export type QuoteBaseFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -23636,7 +22955,6 @@ export type QuoteBaseFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23668,7 +22986,6 @@ export type QuoteBaseFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23886,7 +23203,6 @@ export type QuoteFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -23938,9 +23254,7 @@ export type QuoteFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -23971,7 +23285,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -23987,9 +23300,7 @@ export type QuoteFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -24032,7 +23343,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -24044,14 +23354,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -24082,7 +23390,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -24094,14 +23401,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -24132,7 +23437,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -24155,9 +23459,7 @@ export type QuoteFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -24187,7 +23489,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -24203,9 +23504,7 @@ export type QuoteFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -24238,7 +23537,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -24254,9 +23552,7 @@ export type QuoteFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -24287,7 +23583,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -24299,15 +23594,13 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -24316,15 +23609,13 @@ export type QuoteFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -24335,7 +23626,6 @@ export type QuoteFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -24367,7 +23657,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -24583,7 +23872,6 @@ export type QuoteFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -24638,9 +23926,7 @@ export type QuoteFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -24680,7 +23966,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -24702,9 +23987,7 @@ export type QuoteFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -24756,7 +24039,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -24774,14 +24056,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -24821,7 +24101,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -24839,14 +24118,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -24886,7 +24163,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -24915,9 +24191,7 @@ export type QuoteFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -24956,7 +24230,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -24978,9 +24251,7 @@ export type QuoteFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -25022,7 +24293,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25044,9 +24314,7 @@ export type QuoteFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -25086,7 +24354,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25104,15 +24371,13 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -25121,15 +24386,13 @@ export type QuoteFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -25140,7 +24403,6 @@ export type QuoteFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -25181,7 +24443,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25419,7 +24680,6 @@ export type QuoteFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -25474,9 +24734,7 @@ export type QuoteFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -25516,7 +24774,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25538,9 +24795,7 @@ export type QuoteFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -25592,7 +24847,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25610,14 +24864,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -25657,7 +24909,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25675,14 +24926,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -25722,7 +24971,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25751,9 +24999,7 @@ export type QuoteFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -25792,7 +25038,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25814,9 +25059,7 @@ export type QuoteFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -25858,7 +25101,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25880,9 +25122,7 @@ export type QuoteFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -25922,7 +25162,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -25940,15 +25179,13 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -25957,15 +25194,13 @@ export type QuoteFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -25976,7 +25211,6 @@ export type QuoteFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26017,7 +25251,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -26272,7 +25505,6 @@ export type QuoteFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -26324,9 +25556,7 @@ export type QuoteFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -26357,7 +25587,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26373,9 +25602,7 @@ export type QuoteFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -26418,7 +25645,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26430,14 +25656,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -26468,7 +25692,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26480,14 +25703,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -26518,7 +25739,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26541,9 +25761,7 @@ export type QuoteFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -26573,7 +25791,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26589,9 +25806,7 @@ export type QuoteFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -26624,7 +25839,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26640,9 +25854,7 @@ export type QuoteFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -26673,7 +25885,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26685,15 +25896,13 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -26702,15 +25911,13 @@ export type QuoteFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -26721,7 +25928,6 @@ export type QuoteFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26753,7 +25959,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -26985,7 +26190,6 @@ export type QuoteFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -27037,9 +26241,7 @@ export type QuoteFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -27070,7 +26272,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27086,9 +26287,7 @@ export type QuoteFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -27131,7 +26330,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27143,14 +26341,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -27181,7 +26377,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27193,14 +26388,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -27231,7 +26424,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27254,9 +26446,7 @@ export type QuoteFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -27286,7 +26476,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27302,9 +26491,7 @@ export type QuoteFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -27337,7 +26524,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27353,9 +26539,7 @@ export type QuoteFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -27386,7 +26570,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27398,15 +26581,13 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -27415,15 +26596,13 @@ export type QuoteFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -27434,7 +26613,6 @@ export type QuoteFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27466,7 +26644,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27684,7 +26861,6 @@ export type QuoteFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -27736,9 +26912,7 @@ export type QuoteFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -27769,7 +26943,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27785,9 +26958,7 @@ export type QuoteFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -27830,7 +27001,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27842,14 +27012,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -27880,7 +27048,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27892,14 +27059,12 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -27930,7 +27095,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -27953,9 +27117,7 @@ export type QuoteFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -27985,7 +27147,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28001,9 +27162,7 @@ export type QuoteFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -28036,7 +27195,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28052,9 +27210,7 @@ export type QuoteFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -28085,7 +27241,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28097,15 +27252,13 @@ export type QuoteFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -28114,15 +27267,13 @@ export type QuoteFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -28133,7 +27284,6 @@ export type QuoteFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28165,7 +27315,6 @@ export type QuoteFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28365,7 +27514,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -28428,7 +27576,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -28480,9 +27627,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -28513,7 +27658,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28529,9 +27673,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -28574,7 +27716,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28586,14 +27727,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -28624,7 +27763,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28636,14 +27774,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -28674,7 +27810,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28697,9 +27832,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -28729,7 +27862,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28745,9 +27877,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -28780,7 +27910,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28796,9 +27925,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -28829,7 +27956,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28841,15 +27967,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -28858,15 +27982,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -28877,7 +27999,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -28909,7 +28030,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -29125,7 +28245,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -29180,9 +28299,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -29222,7 +28339,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -29244,9 +28360,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -29298,7 +28412,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -29316,14 +28429,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -29363,7 +28474,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -29381,14 +28491,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -29428,7 +28536,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -29457,9 +28564,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -29498,7 +28603,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -29520,9 +28624,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -29564,7 +28666,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -29586,9 +28687,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -29628,7 +28727,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -29646,15 +28744,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -29663,15 +28759,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -29682,7 +28776,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -29723,7 +28816,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -29961,7 +29053,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -30016,9 +29107,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -30058,7 +29147,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -30080,9 +29168,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -30134,7 +29220,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -30152,14 +29237,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -30199,7 +29282,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -30217,14 +29299,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -30264,7 +29344,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -30293,9 +29372,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -30334,7 +29411,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -30356,9 +29432,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -30400,7 +29474,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -30422,9 +29495,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -30464,7 +29535,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -30482,15 +29552,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -30499,15 +29567,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -30518,7 +29584,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -30559,7 +29624,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -30813,7 +29877,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -30883,7 +29946,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -30944,9 +30006,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -30986,7 +30046,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31008,9 +30067,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -31068,7 +30125,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31086,14 +30142,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -31133,7 +30187,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31151,14 +30204,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -31198,7 +30249,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31230,9 +30280,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -31271,7 +30319,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31293,9 +30340,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -31337,7 +30382,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31359,9 +30403,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -31401,7 +30443,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31419,15 +30460,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -31436,15 +30475,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -31455,7 +30492,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31502,7 +30538,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31727,7 +30762,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -31791,9 +30825,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -31833,7 +30865,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31855,9 +30886,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -31915,7 +30944,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -31933,17 +30961,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -31983,7 +31006,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32001,14 +31023,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -32048,7 +31068,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32080,9 +31099,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -32121,7 +31138,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32143,9 +31159,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -32187,7 +31201,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32209,9 +31222,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -32251,7 +31262,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32269,15 +31279,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -32286,18 +31294,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -32308,7 +31311,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32355,7 +31357,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32596,7 +31597,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -32660,9 +31660,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -32702,7 +31700,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32724,9 +31721,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -32784,7 +31779,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32802,17 +31796,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -32852,7 +31841,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32870,14 +31858,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -32917,7 +31903,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -32949,9 +31934,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -32990,7 +31973,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33012,9 +31994,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -33056,7 +32036,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33078,9 +32057,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -33120,7 +32097,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33138,15 +32114,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -33155,18 +32129,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -33177,7 +32146,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33224,7 +32192,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33479,7 +32446,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -33540,9 +32506,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -33582,7 +32546,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33604,9 +32567,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -33664,7 +32625,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33682,14 +32642,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -33729,7 +32687,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33747,14 +32704,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -33794,7 +32749,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33826,9 +32780,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -33867,7 +32819,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33889,9 +32840,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -33933,7 +32882,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -33955,9 +32903,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -33997,7 +32943,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34015,15 +32960,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -34032,15 +32975,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -34051,7 +32992,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34098,7 +33038,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34336,7 +33275,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -34397,9 +33335,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -34439,7 +33375,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34461,9 +33396,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -34521,7 +33454,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34539,14 +33471,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -34586,7 +33516,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34604,14 +33533,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -34651,7 +33578,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34683,9 +33609,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -34724,7 +33648,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34746,9 +33669,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -34790,7 +33711,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34812,9 +33732,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -34854,7 +33772,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34872,15 +33789,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -34889,15 +33804,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -34908,7 +33821,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -34955,7 +33867,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -35186,7 +34097,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -35241,9 +34151,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -35283,7 +34191,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -35305,9 +34212,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -35359,7 +34264,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -35377,14 +34281,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -35424,7 +34326,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -35442,14 +34343,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -35489,7 +34388,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -35518,9 +34416,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -35559,7 +34455,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -35581,9 +34476,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -35625,7 +34518,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -35647,9 +34539,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -35689,7 +34579,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -35707,15 +34596,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -35724,15 +34611,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -35743,7 +34628,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -35784,7 +34668,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36006,7 +34889,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -36067,9 +34949,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -36109,7 +34989,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36131,9 +35010,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -36191,7 +35068,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36209,14 +35085,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -36256,7 +35130,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36274,14 +35147,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -36321,7 +35192,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36353,9 +35223,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -36394,7 +35262,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36416,9 +35283,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -36460,7 +35325,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36482,9 +35346,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -36524,7 +35386,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36542,15 +35403,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -36559,15 +35418,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -36578,7 +35435,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36625,7 +35481,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36863,7 +35718,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -36924,9 +35778,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -36966,7 +35818,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -36988,9 +35839,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -37048,7 +35897,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37066,14 +35914,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -37113,7 +35959,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37131,14 +35976,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -37178,7 +36021,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37210,9 +36052,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -37251,7 +36091,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37273,9 +36112,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -37317,7 +36154,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37339,9 +36175,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -37381,7 +36215,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37399,15 +36232,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -37416,15 +36247,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -37435,7 +36264,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37482,7 +36310,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37737,7 +36564,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -37792,9 +36618,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -37834,7 +36658,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37856,9 +36679,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -37910,7 +36731,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37928,14 +36748,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -37975,7 +36793,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -37993,14 +36810,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -38040,7 +36855,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38069,9 +36883,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -38110,7 +36922,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38132,9 +36943,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -38176,7 +36985,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38198,9 +37006,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -38240,7 +37046,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38258,15 +37063,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -38275,15 +37078,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -38294,7 +37095,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -38335,7 +37135,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38573,7 +37372,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -38628,9 +37426,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -38670,7 +37466,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38692,9 +37487,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -38746,7 +37539,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38764,14 +37556,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -38811,7 +37601,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38829,14 +37618,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -38876,7 +37663,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38905,9 +37691,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -38946,7 +37730,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -38968,9 +37751,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -39012,7 +37793,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -39034,9 +37814,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -39076,7 +37854,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -39094,15 +37871,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -39111,15 +37886,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -39130,7 +37903,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39171,7 +37943,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -39410,7 +38181,6 @@ export type ActedNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -39462,9 +38232,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -39495,7 +38263,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39511,9 +38278,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -39556,7 +38321,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39568,14 +38332,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -39606,7 +38368,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39618,14 +38379,12 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -39656,7 +38415,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39679,9 +38437,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -39711,7 +38467,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39727,9 +38482,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -39762,7 +38515,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39778,9 +38530,7 @@ export type ActedNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -39811,7 +38561,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39823,15 +38572,13 @@ export type ActedNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -39840,15 +38587,13 @@ export type ActedNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -39859,7 +38604,6 @@ export type ActedNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -39891,7 +38635,6 @@ export type ActedNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40137,7 +38880,6 @@ export type CommentNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -40189,9 +38931,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -40222,7 +38962,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40238,9 +38977,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -40283,7 +39020,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40295,14 +39031,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -40333,7 +39067,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40345,14 +39078,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -40383,7 +39114,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40406,9 +39136,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -40438,7 +39166,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40454,9 +39181,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -40489,7 +39214,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40505,9 +39229,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -40538,7 +39260,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40550,15 +39271,13 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -40567,15 +39286,13 @@ export type CommentNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -40586,7 +39303,6 @@ export type CommentNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40618,7 +39334,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -40834,7 +39549,6 @@ export type CommentNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -40892,9 +39606,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -40934,7 +39646,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -40956,9 +39667,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -41010,7 +39719,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41028,14 +39736,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -41075,7 +39781,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41093,14 +39798,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -41140,7 +39843,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41169,9 +39871,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -41210,7 +39910,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41232,9 +39931,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -41276,7 +39973,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41298,9 +39994,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -41340,7 +40034,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41358,15 +40051,13 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -41375,15 +40066,13 @@ export type CommentNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -41394,7 +40083,6 @@ export type CommentNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -41435,7 +40123,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41673,7 +40360,6 @@ export type CommentNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -41731,9 +40417,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -41773,7 +40457,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41795,9 +40478,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -41849,7 +40530,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41867,14 +40547,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -41914,7 +40592,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -41932,14 +40609,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -41979,7 +40654,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -42008,9 +40682,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -42049,7 +40721,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -42071,9 +40742,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -42115,7 +40784,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -42137,9 +40805,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -42179,7 +40845,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -42197,15 +40862,13 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -42214,15 +40877,13 @@ export type CommentNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -42233,7 +40894,6 @@ export type CommentNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -42274,7 +40934,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -42529,7 +41188,6 @@ export type CommentNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -42581,9 +41239,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -42614,7 +41270,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -42630,9 +41285,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -42675,7 +41328,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -42687,14 +41339,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -42725,7 +41375,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -42737,14 +41386,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -42775,7 +41422,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -42798,9 +41444,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -42830,7 +41474,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -42846,9 +41489,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -42881,7 +41522,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -42897,9 +41537,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -42930,7 +41568,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -42942,15 +41579,13 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -42959,15 +41594,13 @@ export type CommentNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -42978,7 +41611,6 @@ export type CommentNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43010,7 +41642,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43242,7 +41873,6 @@ export type CommentNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -43294,9 +41924,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -43327,7 +41955,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43343,9 +41970,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -43388,7 +42013,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43400,14 +42024,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -43438,7 +42060,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43450,14 +42071,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -43488,7 +42107,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43511,9 +42129,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -43543,7 +42159,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43559,9 +42174,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -43594,7 +42207,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43610,9 +42222,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -43643,7 +42253,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43655,15 +42264,13 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -43672,15 +42279,13 @@ export type CommentNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -43691,7 +42296,6 @@ export type CommentNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43723,7 +42327,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -43941,7 +42544,6 @@ export type CommentNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -43993,9 +42595,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -44026,7 +42626,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44042,9 +42641,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -44087,7 +42684,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44099,14 +42695,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -44137,7 +42731,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44149,14 +42742,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -44187,7 +42778,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44210,9 +42800,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -44242,7 +42830,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44258,9 +42845,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -44293,7 +42878,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44309,9 +42893,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -44342,7 +42924,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44354,15 +42935,13 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -44371,15 +42950,13 @@ export type CommentNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -44390,7 +42967,6 @@ export type CommentNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44422,7 +42998,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44638,7 +43213,6 @@ export type CommentNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -44690,9 +43264,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -44723,7 +43295,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44739,9 +43310,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -44784,7 +43353,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44796,14 +43364,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -44834,7 +43400,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44846,14 +43411,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -44884,7 +43447,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44907,9 +43469,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -44939,7 +43499,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -44955,9 +43514,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -44990,7 +43547,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45006,9 +43562,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -45039,7 +43593,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45051,15 +43604,13 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -45068,15 +43619,13 @@ export type CommentNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -45087,7 +43636,6 @@ export type CommentNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45119,7 +43667,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45351,7 +43898,6 @@ export type CommentNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -45403,9 +43949,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -45436,7 +43980,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45452,9 +43995,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -45497,7 +44038,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45509,14 +44049,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -45547,7 +44085,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45559,14 +44096,12 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -45597,7 +44132,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45620,9 +44154,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -45652,7 +44184,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45668,9 +44199,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -45703,7 +44232,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45719,9 +44247,7 @@ export type CommentNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -45752,7 +44278,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45764,15 +44289,13 @@ export type CommentNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -45781,15 +44304,13 @@ export type CommentNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -45800,7 +44321,6 @@ export type CommentNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -45832,7 +44352,6 @@ export type CommentNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46067,7 +44586,6 @@ export type FollowNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -46134,7 +44652,6 @@ export type MentionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -46186,9 +44703,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -46219,7 +44734,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46235,9 +44749,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -46280,7 +44792,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46292,14 +44803,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -46330,7 +44839,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46342,14 +44850,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -46380,7 +44886,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46403,9 +44908,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -46435,7 +44938,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46451,9 +44953,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -46486,7 +44986,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46502,9 +45001,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -46535,7 +45032,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46547,15 +45043,13 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -46564,15 +45058,13 @@ export type MentionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -46583,7 +45075,6 @@ export type MentionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46615,7 +45106,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -46831,7 +45321,6 @@ export type MentionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -46886,9 +45375,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -46928,7 +45415,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -46950,9 +45436,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -47004,7 +45488,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47022,14 +45505,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -47069,7 +45550,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47087,14 +45567,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -47134,7 +45612,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47163,9 +45640,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -47204,7 +45679,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47226,9 +45700,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -47270,7 +45742,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47292,9 +45763,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -47334,7 +45803,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47352,15 +45820,13 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -47369,15 +45835,13 @@ export type MentionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -47388,7 +45852,6 @@ export type MentionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -47429,7 +45892,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47667,7 +46129,6 @@ export type MentionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -47722,9 +46183,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -47764,7 +46223,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47786,9 +46244,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -47840,7 +46296,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47858,14 +46313,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -47905,7 +46358,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47923,14 +46375,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -47970,7 +46420,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -47999,9 +46448,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -48040,7 +46487,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -48062,9 +46508,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -48106,7 +46550,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -48128,9 +46571,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -48170,7 +46611,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -48188,15 +46628,13 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -48205,15 +46643,13 @@ export type MentionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -48224,7 +46660,6 @@ export type MentionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -48265,7 +46700,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -48520,7 +46954,6 @@ export type MentionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -48572,9 +47005,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -48605,7 +47036,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -48621,9 +47051,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -48666,7 +47094,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -48678,14 +47105,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -48716,7 +47141,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -48728,14 +47152,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -48766,7 +47188,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -48789,9 +47210,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -48821,7 +47240,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -48837,9 +47255,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -48872,7 +47288,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -48888,9 +47303,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -48921,7 +47334,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -48933,15 +47345,13 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -48950,15 +47360,13 @@ export type MentionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -48969,7 +47377,6 @@ export type MentionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49001,7 +47408,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49233,7 +47639,6 @@ export type MentionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -49285,9 +47690,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -49318,7 +47721,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49334,9 +47736,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -49379,7 +47779,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49391,14 +47790,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -49429,7 +47826,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49441,14 +47837,12 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -49479,7 +47873,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49502,9 +47895,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -49534,7 +47925,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49550,9 +47940,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -49585,7 +47973,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49601,9 +47988,7 @@ export type MentionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -49634,7 +48019,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49646,15 +48030,13 @@ export type MentionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -49663,15 +48045,13 @@ export type MentionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -49682,7 +48062,6 @@ export type MentionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49714,7 +48093,6 @@ export type MentionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -49938,7 +48316,6 @@ export type MirrorNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -50001,7 +48378,6 @@ export type MirrorNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -50053,9 +48429,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -50086,7 +48460,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50102,9 +48475,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -50147,7 +48518,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50159,14 +48529,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -50197,7 +48565,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50209,14 +48576,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -50247,7 +48612,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50270,9 +48634,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -50302,7 +48664,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50318,9 +48679,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -50353,7 +48712,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50369,9 +48727,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -50402,7 +48758,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50414,15 +48769,13 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -50431,15 +48784,13 @@ export type MirrorNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -50450,7 +48801,6 @@ export type MirrorNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50482,7 +48832,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -50698,7 +49047,6 @@ export type MirrorNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -50753,9 +49101,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -50795,7 +49141,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -50817,9 +49162,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -50871,7 +49214,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -50889,14 +49231,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -50936,7 +49276,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -50954,14 +49293,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -51001,7 +49338,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51030,9 +49366,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -51071,7 +49405,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51093,9 +49426,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -51137,7 +49468,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51159,9 +49489,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -51201,7 +49529,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51219,15 +49546,13 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -51236,15 +49561,13 @@ export type MirrorNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -51255,7 +49578,6 @@ export type MirrorNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -51296,7 +49618,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51534,7 +49855,6 @@ export type MirrorNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -51589,9 +49909,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -51631,7 +49949,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51653,9 +49970,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -51707,7 +50022,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51725,14 +50039,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -51772,7 +50084,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51790,14 +50101,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -51837,7 +50146,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51866,9 +50174,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -51907,7 +50213,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51929,9 +50234,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -51973,7 +50276,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -51995,9 +50297,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -52037,7 +50337,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -52055,15 +50354,13 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -52072,15 +50369,13 @@ export type MirrorNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -52091,7 +50386,6 @@ export type MirrorNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52132,7 +50426,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -52387,7 +50680,6 @@ export type MirrorNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -52439,9 +50731,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -52472,7 +50762,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52488,9 +50777,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -52533,7 +50820,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52545,14 +50831,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -52583,7 +50867,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52595,14 +50878,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -52633,7 +50914,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52656,9 +50936,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -52688,7 +50966,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52704,9 +50981,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -52739,7 +51014,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52755,9 +51029,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -52788,7 +51060,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52800,15 +51071,13 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -52817,15 +51086,13 @@ export type MirrorNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -52836,7 +51103,6 @@ export type MirrorNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -52868,7 +51134,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53100,7 +51365,6 @@ export type MirrorNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -53152,9 +51416,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -53185,7 +51447,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53201,9 +51462,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -53246,7 +51505,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53258,14 +51516,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -53296,7 +51552,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53308,14 +51563,12 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -53346,7 +51599,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53369,9 +51621,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -53401,7 +51651,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53417,9 +51666,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -53452,7 +51699,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53468,9 +51714,7 @@ export type MirrorNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -53501,7 +51745,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53513,15 +51756,13 @@ export type MirrorNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -53530,15 +51771,13 @@ export type MirrorNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -53549,7 +51788,6 @@ export type MirrorNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53581,7 +51819,6 @@ export type MirrorNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53805,7 +52042,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -53868,7 +52104,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -53920,9 +52155,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -53953,7 +52186,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -53969,9 +52201,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -54014,7 +52244,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -54026,14 +52255,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -54064,7 +52291,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -54076,14 +52302,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -54114,7 +52338,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -54137,9 +52360,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -54169,7 +52390,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -54185,9 +52405,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -54220,7 +52438,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -54236,9 +52453,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -54269,7 +52484,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -54281,15 +52495,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -54298,15 +52510,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -54317,7 +52527,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -54349,7 +52558,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -54565,7 +52773,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -54620,9 +52827,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -54662,7 +52867,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -54684,9 +52888,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -54738,7 +52940,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -54756,14 +52957,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -54803,7 +53002,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -54821,14 +53019,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -54868,7 +53064,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -54897,9 +53092,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -54938,7 +53131,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -54960,9 +53152,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -55004,7 +53194,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55026,9 +53215,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -55068,7 +53255,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55086,15 +53272,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -55103,15 +53287,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -55122,7 +53304,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -55163,7 +53344,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55401,7 +53581,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -55456,9 +53635,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -55498,7 +53675,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55520,9 +53696,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -55574,7 +53748,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55592,14 +53765,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -55639,7 +53810,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55657,14 +53827,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -55704,7 +53872,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55733,9 +53900,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -55774,7 +53939,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55796,9 +53960,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -55840,7 +54002,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55862,9 +54023,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -55904,7 +54063,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -55922,15 +54080,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -55939,15 +54095,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -55958,7 +54112,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -55999,7 +54152,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56253,7 +54405,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -56323,7 +54474,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -56384,9 +54534,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -56426,7 +54574,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56448,9 +54595,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -56508,7 +54653,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56526,14 +54670,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -56573,7 +54715,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56591,14 +54732,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -56638,7 +54777,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56670,9 +54808,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -56711,7 +54847,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56733,9 +54868,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -56777,7 +54910,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56799,9 +54931,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -56841,7 +54971,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56859,15 +54988,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -56876,15 +55003,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -56895,7 +55020,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -56942,7 +55066,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57167,7 +55290,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -57231,9 +55353,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -57273,7 +55393,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57295,9 +55414,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -57355,7 +55472,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57373,17 +55489,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -57423,7 +55534,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57441,14 +55551,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -57488,7 +55596,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57520,9 +55627,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -57561,7 +55666,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57583,9 +55687,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -57627,7 +55729,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57649,9 +55750,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -57691,7 +55790,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57709,15 +55807,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -57726,18 +55822,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -57748,7 +55839,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -57795,7 +55885,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58036,7 +56125,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -58100,9 +56188,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -58142,7 +56228,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58164,9 +56249,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -58224,7 +56307,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58242,17 +56324,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -58292,7 +56369,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58310,14 +56386,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -58357,7 +56431,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58389,9 +56462,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -58430,7 +56501,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58452,9 +56522,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -58496,7 +56564,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58518,9 +56585,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -58560,7 +56625,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58578,15 +56642,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -58595,18 +56657,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -58617,7 +56674,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58664,7 +56720,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -58919,7 +56974,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -58980,9 +57034,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -59022,7 +57074,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59044,9 +57095,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -59104,7 +57153,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59122,14 +57170,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -59169,7 +57215,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59187,14 +57232,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -59234,7 +57277,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59266,9 +57308,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -59307,7 +57347,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59329,9 +57368,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -59373,7 +57410,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59395,9 +57431,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -59437,7 +57471,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59455,15 +57488,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -59472,15 +57503,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -59491,7 +57520,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59538,7 +57566,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59776,7 +57803,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -59837,9 +57863,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -59879,7 +57903,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59901,9 +57924,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -59961,7 +57982,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -59979,14 +57999,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -60026,7 +58044,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60044,14 +58061,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -60091,7 +58106,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60123,9 +58137,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -60164,7 +58176,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60186,9 +58197,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -60230,7 +58239,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60252,9 +58260,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -60294,7 +58300,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60312,15 +58317,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -60329,15 +58332,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -60348,7 +58349,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60395,7 +58395,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60626,7 +58625,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -60681,9 +58679,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -60723,7 +58719,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60745,9 +58740,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -60799,7 +58792,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60817,14 +58809,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -60864,7 +58854,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60882,14 +58871,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -60929,7 +58916,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -60958,9 +58944,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -60999,7 +58983,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61021,9 +59004,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -61065,7 +59046,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61087,9 +59067,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -61129,7 +59107,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61147,15 +59124,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -61164,15 +59139,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -61183,7 +59156,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -61224,7 +59196,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61446,7 +59417,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -61507,9 +59477,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -61549,7 +59517,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61571,9 +59538,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -61631,7 +59596,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61649,14 +59613,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -61696,7 +59658,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61714,14 +59675,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -61761,7 +59720,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61793,9 +59751,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -61834,7 +59790,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61856,9 +59811,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -61900,7 +59853,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61922,9 +59874,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -61964,7 +59914,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -61982,15 +59931,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -61999,15 +59946,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -62018,7 +59963,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62065,7 +60009,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62303,7 +60246,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -62364,9 +60306,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -62406,7 +60346,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62428,9 +60367,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -62488,7 +60425,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62506,14 +60442,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -62553,7 +60487,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62571,14 +60504,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -62618,7 +60549,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62650,9 +60580,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -62691,7 +60619,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62713,9 +60640,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -62757,7 +60682,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62779,9 +60703,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -62821,7 +60743,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62839,15 +60760,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -62856,15 +60775,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -62875,7 +60792,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -62922,7 +60838,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -63177,7 +61092,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -63232,9 +61146,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -63274,7 +61186,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -63296,9 +61207,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -63350,7 +61259,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -63368,14 +61276,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -63415,7 +61321,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -63433,14 +61338,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -63480,7 +61383,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -63509,9 +61411,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -63550,7 +61450,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -63572,9 +61471,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -63616,7 +61513,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -63638,9 +61534,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -63680,7 +61574,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -63698,15 +61591,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -63715,15 +61606,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -63734,7 +61623,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -63775,7 +61663,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64013,7 +61900,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -64068,9 +61954,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -64110,7 +61994,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64132,9 +62015,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -64186,7 +62067,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64204,14 +62084,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -64251,7 +62129,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64269,14 +62146,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -64316,7 +62191,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64345,9 +62219,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -64386,7 +62258,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64408,9 +62279,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -64452,7 +62321,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64474,9 +62342,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -64516,7 +62382,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64534,15 +62399,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -64551,15 +62414,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -64570,7 +62431,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -64611,7 +62471,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -64850,7 +62709,6 @@ type NotificationFields_ActedNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -64902,9 +62760,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -64935,7 +62791,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -64951,9 +62806,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -64996,7 +62849,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65008,14 +62860,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -65046,7 +62896,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65058,14 +62907,12 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -65096,7 +62943,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65119,9 +62965,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -65151,7 +62995,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65167,9 +63010,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -65202,7 +63043,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65218,9 +63058,7 @@ type NotificationFields_ActedNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -65251,7 +63089,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65263,15 +63100,13 @@ type NotificationFields_ActedNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -65280,15 +63115,13 @@ type NotificationFields_ActedNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -65299,7 +63132,6 @@ type NotificationFields_ActedNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65331,7 +63163,6 @@ type NotificationFields_ActedNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65577,7 +63408,6 @@ type NotificationFields_CommentNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -65629,9 +63459,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -65662,7 +63490,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65678,9 +63505,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -65723,7 +63548,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65735,14 +63559,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -65773,7 +63595,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65785,14 +63606,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -65823,7 +63642,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65846,9 +63664,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -65878,7 +63694,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65894,9 +63709,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -65929,7 +63742,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65945,9 +63757,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -65978,7 +63788,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -65990,15 +63799,13 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -66007,15 +63814,13 @@ type NotificationFields_CommentNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -66026,7 +63831,6 @@ type NotificationFields_CommentNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -66058,7 +63862,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -66274,7 +64077,6 @@ type NotificationFields_CommentNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -66332,9 +64134,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -66374,7 +64174,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -66396,9 +64195,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -66450,7 +64247,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -66468,14 +64264,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -66515,7 +64309,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -66533,14 +64326,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -66580,7 +64371,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -66609,9 +64399,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -66650,7 +64438,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -66672,9 +64459,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -66716,7 +64501,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -66738,9 +64522,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -66780,7 +64562,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -66798,15 +64579,13 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -66815,15 +64594,13 @@ type NotificationFields_CommentNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -66834,7 +64611,6 @@ type NotificationFields_CommentNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -66875,7 +64651,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67113,7 +64888,6 @@ type NotificationFields_CommentNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -67171,9 +64945,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -67213,7 +64985,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67235,9 +65006,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -67289,7 +65058,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67307,14 +65075,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -67354,7 +65120,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67372,14 +65137,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -67419,7 +65182,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67448,9 +65210,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -67489,7 +65249,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67511,9 +65270,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -67555,7 +65312,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67577,9 +65333,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -67619,7 +65373,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67637,15 +65390,13 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -67654,15 +65405,13 @@ type NotificationFields_CommentNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -67673,7 +65422,6 @@ type NotificationFields_CommentNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -67714,7 +65462,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -67969,7 +65716,6 @@ type NotificationFields_CommentNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -68021,9 +65767,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -68054,7 +65798,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68070,9 +65813,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -68115,7 +65856,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68127,14 +65867,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -68165,7 +65903,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68177,14 +65914,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -68215,7 +65950,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68238,9 +65972,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -68270,7 +66002,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68286,9 +66017,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -68321,7 +66050,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68337,9 +66065,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -68370,7 +66096,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68382,15 +66107,13 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -68399,15 +66122,13 @@ type NotificationFields_CommentNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -68418,7 +66139,6 @@ type NotificationFields_CommentNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68450,7 +66170,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68682,7 +66401,6 @@ type NotificationFields_CommentNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -68734,9 +66452,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -68767,7 +66483,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68783,9 +66498,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -68828,7 +66541,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68840,14 +66552,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -68878,7 +66588,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68890,14 +66599,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -68928,7 +66635,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68951,9 +66657,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -68983,7 +66687,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -68999,9 +66702,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -69034,7 +66735,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69050,9 +66750,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -69083,7 +66781,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69095,15 +66792,13 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -69112,15 +66807,13 @@ type NotificationFields_CommentNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -69131,7 +66824,6 @@ type NotificationFields_CommentNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69163,7 +66855,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69381,7 +67072,6 @@ type NotificationFields_CommentNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -69433,9 +67123,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -69466,7 +67154,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69482,9 +67169,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -69527,7 +67212,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69539,14 +67223,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -69577,7 +67259,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69589,14 +67270,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -69627,7 +67306,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69650,9 +67328,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -69682,7 +67358,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69698,9 +67373,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -69733,7 +67406,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69749,9 +67421,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -69782,7 +67452,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69794,15 +67463,13 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -69811,15 +67478,13 @@ type NotificationFields_CommentNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -69830,7 +67495,6 @@ type NotificationFields_CommentNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -69862,7 +67526,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70078,7 +67741,6 @@ type NotificationFields_CommentNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -70130,9 +67792,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -70163,7 +67823,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70179,9 +67838,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -70224,7 +67881,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70236,14 +67892,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -70274,7 +67928,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70286,14 +67939,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -70324,7 +67975,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70347,9 +67997,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -70379,7 +68027,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70395,9 +68042,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -70430,7 +68075,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70446,9 +68090,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -70479,7 +68121,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70491,15 +68132,13 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -70508,15 +68147,13 @@ type NotificationFields_CommentNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -70527,7 +68164,6 @@ type NotificationFields_CommentNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70559,7 +68195,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70791,7 +68426,6 @@ type NotificationFields_CommentNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -70843,9 +68477,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -70876,7 +68508,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70892,9 +68523,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -70937,7 +68566,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70949,14 +68577,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -70987,7 +68613,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -70999,14 +68624,12 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -71037,7 +68660,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71060,9 +68682,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -71092,7 +68712,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71108,9 +68727,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -71143,7 +68760,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71159,9 +68775,7 @@ type NotificationFields_CommentNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -71192,7 +68806,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71204,15 +68817,13 @@ type NotificationFields_CommentNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -71221,15 +68832,13 @@ type NotificationFields_CommentNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -71240,7 +68849,6 @@ type NotificationFields_CommentNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71272,7 +68880,6 @@ type NotificationFields_CommentNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71507,7 +69114,6 @@ type NotificationFields_FollowNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -71574,7 +69180,6 @@ type NotificationFields_MentionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -71626,9 +69231,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -71659,7 +69262,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71675,9 +69277,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -71720,7 +69320,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71732,14 +69331,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -71770,7 +69367,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71782,14 +69378,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -71820,7 +69414,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71843,9 +69436,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -71875,7 +69466,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71891,9 +69481,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -71926,7 +69514,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71942,9 +69529,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -71975,7 +69560,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -71987,15 +69571,13 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -72004,15 +69586,13 @@ type NotificationFields_MentionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -72023,7 +69603,6 @@ type NotificationFields_MentionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -72055,7 +69634,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -72271,7 +69849,6 @@ type NotificationFields_MentionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -72326,9 +69903,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -72368,7 +69943,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -72390,9 +69964,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -72444,7 +70016,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -72462,14 +70033,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -72509,7 +70078,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -72527,14 +70095,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -72574,7 +70140,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -72603,9 +70168,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -72644,7 +70207,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -72666,9 +70228,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -72710,7 +70270,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -72732,9 +70291,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -72774,7 +70331,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -72792,15 +70348,13 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -72809,15 +70363,13 @@ type NotificationFields_MentionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -72828,7 +70380,6 @@ type NotificationFields_MentionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -72869,7 +70420,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73107,7 +70657,6 @@ type NotificationFields_MentionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -73162,9 +70711,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -73204,7 +70751,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73226,9 +70772,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -73280,7 +70824,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73298,14 +70841,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -73345,7 +70886,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73363,14 +70903,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -73410,7 +70948,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73439,9 +70976,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -73480,7 +71015,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73502,9 +71036,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -73546,7 +71078,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73568,9 +71099,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -73610,7 +71139,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73628,15 +71156,13 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -73645,15 +71171,13 @@ type NotificationFields_MentionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -73664,7 +71188,6 @@ type NotificationFields_MentionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -73705,7 +71228,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -73960,7 +71482,6 @@ type NotificationFields_MentionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -74012,9 +71533,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -74045,7 +71564,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74061,9 +71579,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -74106,7 +71622,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74118,14 +71633,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -74156,7 +71669,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74168,14 +71680,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -74206,7 +71716,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74229,9 +71738,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -74261,7 +71768,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74277,9 +71783,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -74312,7 +71816,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74328,9 +71831,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -74361,7 +71862,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74373,15 +71873,13 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -74390,15 +71888,13 @@ type NotificationFields_MentionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -74409,7 +71905,6 @@ type NotificationFields_MentionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74441,7 +71936,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74673,7 +72167,6 @@ type NotificationFields_MentionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -74725,9 +72218,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -74758,7 +72249,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74774,9 +72264,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -74819,7 +72307,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74831,14 +72318,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -74869,7 +72354,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74881,14 +72365,12 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -74919,7 +72401,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74942,9 +72423,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -74974,7 +72453,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -74990,9 +72468,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -75025,7 +72501,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75041,9 +72516,7 @@ type NotificationFields_MentionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -75074,7 +72547,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75086,15 +72558,13 @@ type NotificationFields_MentionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -75103,15 +72573,13 @@ type NotificationFields_MentionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -75122,7 +72590,6 @@ type NotificationFields_MentionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75154,7 +72621,6 @@ type NotificationFields_MentionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75378,7 +72844,6 @@ type NotificationFields_MirrorNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -75441,7 +72906,6 @@ type NotificationFields_MirrorNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -75493,9 +72957,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -75526,7 +72988,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75542,9 +73003,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -75587,7 +73046,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75599,14 +73057,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -75637,7 +73093,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75649,14 +73104,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -75687,7 +73140,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75710,9 +73162,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -75742,7 +73192,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75758,9 +73207,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -75793,7 +73240,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75809,9 +73255,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -75842,7 +73286,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75854,15 +73297,13 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -75871,15 +73312,13 @@ type NotificationFields_MirrorNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -75890,7 +73329,6 @@ type NotificationFields_MirrorNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -75922,7 +73360,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -76138,7 +73575,6 @@ type NotificationFields_MirrorNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -76193,9 +73629,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -76235,7 +73669,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -76257,9 +73690,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -76311,7 +73742,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -76329,14 +73759,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -76376,7 +73804,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -76394,14 +73821,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -76441,7 +73866,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -76470,9 +73894,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -76511,7 +73933,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -76533,9 +73954,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -76577,7 +73996,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -76599,9 +74017,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -76641,7 +74057,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -76659,15 +74074,13 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -76676,15 +74089,13 @@ type NotificationFields_MirrorNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -76695,7 +74106,6 @@ type NotificationFields_MirrorNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -76736,7 +74146,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -76974,7 +74383,6 @@ type NotificationFields_MirrorNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -77029,9 +74437,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -77071,7 +74477,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -77093,9 +74498,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -77147,7 +74550,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -77165,14 +74567,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -77212,7 +74612,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -77230,14 +74629,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -77277,7 +74674,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -77306,9 +74702,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -77347,7 +74741,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -77369,9 +74762,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -77413,7 +74804,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -77435,9 +74825,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -77477,7 +74865,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -77495,15 +74882,13 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -77512,15 +74897,13 @@ type NotificationFields_MirrorNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -77531,7 +74914,6 @@ type NotificationFields_MirrorNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -77572,7 +74954,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -77827,7 +75208,6 @@ type NotificationFields_MirrorNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -77879,9 +75259,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -77912,7 +75290,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -77928,9 +75305,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -77973,7 +75348,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -77985,14 +75359,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -78023,7 +75395,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78035,14 +75406,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -78073,7 +75442,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78096,9 +75464,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -78128,7 +75494,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78144,9 +75509,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -78179,7 +75542,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78195,9 +75557,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -78228,7 +75588,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78240,15 +75599,13 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -78257,15 +75614,13 @@ type NotificationFields_MirrorNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -78276,7 +75631,6 @@ type NotificationFields_MirrorNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78308,7 +75662,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78540,7 +75893,6 @@ type NotificationFields_MirrorNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -78592,9 +75944,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -78625,7 +75975,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78641,9 +75990,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -78686,7 +76033,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78698,14 +76044,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -78736,7 +76080,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78748,14 +76091,12 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -78786,7 +76127,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78809,9 +76149,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -78841,7 +76179,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78857,9 +76194,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -78892,7 +76227,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78908,9 +76242,7 @@ type NotificationFields_MirrorNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -78941,7 +76273,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -78953,15 +76284,13 @@ type NotificationFields_MirrorNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -78970,15 +76299,13 @@ type NotificationFields_MirrorNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -78989,7 +76316,6 @@ type NotificationFields_MirrorNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79021,7 +76347,6 @@ type NotificationFields_MirrorNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79266,7 +76591,6 @@ type NotificationFields_QuoteNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -79318,9 +76642,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -79351,7 +76673,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79367,9 +76688,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -79412,7 +76731,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79424,14 +76742,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -79462,7 +76778,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79474,14 +76789,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -79512,7 +76825,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79535,9 +76847,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -79567,7 +76877,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79583,9 +76892,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -79618,7 +76925,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79634,9 +76940,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -79667,7 +76971,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79679,15 +76982,13 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -79696,15 +76997,13 @@ type NotificationFields_QuoteNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -79715,7 +77014,6 @@ type NotificationFields_QuoteNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79747,7 +77045,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -79963,7 +77260,6 @@ type NotificationFields_QuoteNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -80021,9 +77317,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -80063,7 +77357,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80085,9 +77378,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -80139,7 +77430,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80157,14 +77447,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -80204,7 +77492,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80222,14 +77509,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -80269,7 +77554,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80298,9 +77582,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -80339,7 +77621,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80361,9 +77642,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -80405,7 +77684,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80427,9 +77705,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -80469,7 +77745,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80487,15 +77762,13 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -80504,15 +77777,13 @@ type NotificationFields_QuoteNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -80523,7 +77794,6 @@ type NotificationFields_QuoteNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -80564,7 +77834,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80802,7 +78071,6 @@ type NotificationFields_QuoteNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -80860,9 +78128,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -80902,7 +78168,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80924,9 +78189,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -80978,7 +78241,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -80996,14 +78258,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -81043,7 +78303,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -81061,14 +78320,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -81108,7 +78365,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -81137,9 +78393,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -81178,7 +78432,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -81200,9 +78453,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -81244,7 +78495,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -81266,9 +78516,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -81308,7 +78556,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -81326,15 +78573,13 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -81343,15 +78588,13 @@ type NotificationFields_QuoteNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -81362,7 +78605,6 @@ type NotificationFields_QuoteNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -81403,7 +78645,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -81658,7 +78899,6 @@ type NotificationFields_QuoteNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -81710,9 +78950,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -81743,7 +78981,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -81759,9 +78996,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -81804,7 +79039,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -81816,14 +79050,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -81854,7 +79086,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -81866,14 +79097,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -81904,7 +79133,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -81927,9 +79155,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -81959,7 +79185,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -81975,9 +79200,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -82010,7 +79233,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82026,9 +79248,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -82059,7 +79279,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82071,15 +79290,13 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -82088,15 +79305,13 @@ type NotificationFields_QuoteNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -82107,7 +79322,6 @@ type NotificationFields_QuoteNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82139,7 +79353,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82371,7 +79584,6 @@ type NotificationFields_QuoteNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -82423,9 +79635,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -82456,7 +79666,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82472,9 +79681,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -82517,7 +79724,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82529,14 +79735,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -82567,7 +79771,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82579,14 +79782,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -82617,7 +79818,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82640,9 +79840,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -82672,7 +79870,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82688,9 +79885,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -82723,7 +79918,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82739,9 +79933,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -82772,7 +79964,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82784,15 +79975,13 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -82801,15 +79990,13 @@ type NotificationFields_QuoteNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -82820,7 +80007,6 @@ type NotificationFields_QuoteNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -82852,7 +80038,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83070,7 +80255,6 @@ type NotificationFields_QuoteNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -83122,9 +80306,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -83155,7 +80337,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83171,9 +80352,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -83216,7 +80395,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83228,14 +80406,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -83266,7 +80442,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83278,14 +80453,12 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -83316,7 +80489,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83339,9 +80511,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -83371,7 +80541,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83387,9 +80556,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -83422,7 +80589,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83438,9 +80604,7 @@ type NotificationFields_QuoteNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -83471,7 +80635,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83483,15 +80646,13 @@ type NotificationFields_QuoteNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -83500,15 +80661,13 @@ type NotificationFields_QuoteNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -83519,7 +80678,6 @@ type NotificationFields_QuoteNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83551,7 +80709,6 @@ type NotificationFields_QuoteNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83786,7 +80943,6 @@ type NotificationFields_ReactionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -83838,9 +80994,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -83871,7 +81025,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83887,9 +81040,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -83932,7 +81083,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83944,14 +81094,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -83982,7 +81130,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -83994,14 +81141,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -84032,7 +81177,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -84055,9 +81199,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -84087,7 +81229,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -84103,9 +81244,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -84138,7 +81277,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -84154,9 +81292,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -84187,7 +81323,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -84199,15 +81334,13 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -84216,15 +81349,13 @@ type NotificationFields_ReactionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -84235,7 +81366,6 @@ type NotificationFields_ReactionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -84267,7 +81397,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -84483,7 +81612,6 @@ type NotificationFields_ReactionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -84538,9 +81666,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -84580,7 +81706,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -84602,9 +81727,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -84656,7 +81779,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -84674,14 +81796,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -84721,7 +81841,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -84739,14 +81858,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -84786,7 +81903,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -84815,9 +81931,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -84856,7 +81970,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -84878,9 +81991,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -84922,7 +82033,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -84944,9 +82054,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -84986,7 +82094,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85004,15 +82111,13 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -85021,15 +82126,13 @@ type NotificationFields_ReactionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -85040,7 +82143,6 @@ type NotificationFields_ReactionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -85081,7 +82183,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85319,7 +82420,6 @@ type NotificationFields_ReactionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -85374,9 +82474,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -85416,7 +82514,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85438,9 +82535,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -85492,7 +82587,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85510,14 +82604,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -85557,7 +82649,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85575,14 +82666,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -85622,7 +82711,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85651,9 +82739,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -85692,7 +82778,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85714,9 +82799,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -85758,7 +82841,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85780,9 +82862,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -85822,7 +82902,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -85840,15 +82919,13 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -85857,15 +82934,13 @@ type NotificationFields_ReactionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -85876,7 +82951,6 @@ type NotificationFields_ReactionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -85917,7 +82991,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -86172,7 +83245,6 @@ type NotificationFields_ReactionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -86224,9 +83296,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -86257,7 +83327,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86273,9 +83342,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -86318,7 +83385,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86330,14 +83396,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -86368,7 +83432,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86380,14 +83443,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -86418,7 +83479,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86441,9 +83501,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -86473,7 +83531,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86489,9 +83546,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -86524,7 +83579,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86540,9 +83594,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -86573,7 +83625,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86585,15 +83636,13 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -86602,15 +83651,13 @@ type NotificationFields_ReactionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -86621,7 +83668,6 @@ type NotificationFields_ReactionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86653,7 +83699,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86885,7 +83930,6 @@ type NotificationFields_ReactionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -86937,9 +83981,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -86970,7 +84012,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -86986,9 +84027,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -87031,7 +84070,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87043,14 +84081,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -87081,7 +84117,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87093,14 +84128,12 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -87131,7 +84164,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87154,9 +84186,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -87186,7 +84216,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87202,9 +84231,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -87237,7 +84264,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87253,9 +84279,7 @@ type NotificationFields_ReactionNotification_Fragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -87286,7 +84310,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87298,15 +84321,13 @@ type NotificationFields_ReactionNotification_Fragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -87315,15 +84336,13 @@ type NotificationFields_ReactionNotification_Fragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -87334,7 +84353,6 @@ type NotificationFields_ReactionNotification_Fragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87366,7 +84384,6 @@ type NotificationFields_ReactionNotification_Fragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87584,7 +84601,6 @@ type NotificationFields_ReactionNotification_Fragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -87668,7 +84684,6 @@ export type QuoteNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -87720,9 +84735,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -87753,7 +84766,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87769,9 +84781,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -87814,7 +84824,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87826,14 +84835,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -87864,7 +84871,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87876,14 +84882,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -87914,7 +84918,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87937,9 +84940,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -87969,7 +84970,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -87985,9 +84985,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -88020,7 +85018,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -88036,9 +85033,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -88069,7 +85064,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -88081,15 +85075,13 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -88098,15 +85090,13 @@ export type QuoteNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -88117,7 +85107,6 @@ export type QuoteNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -88149,7 +85138,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -88365,7 +85353,6 @@ export type QuoteNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -88423,9 +85410,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -88465,7 +85450,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -88487,9 +85471,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -88541,7 +85523,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -88559,14 +85540,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -88606,7 +85585,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -88624,14 +85602,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -88671,7 +85647,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -88700,9 +85675,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -88741,7 +85714,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -88763,9 +85735,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -88807,7 +85777,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -88829,9 +85798,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -88871,7 +85838,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -88889,15 +85855,13 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -88906,15 +85870,13 @@ export type QuoteNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -88925,7 +85887,6 @@ export type QuoteNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -88966,7 +85927,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -89204,7 +86164,6 @@ export type QuoteNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -89262,9 +86221,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -89304,7 +86261,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -89326,9 +86282,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -89380,7 +86334,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -89398,14 +86351,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -89445,7 +86396,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -89463,14 +86413,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -89510,7 +86458,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -89539,9 +86486,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -89580,7 +86525,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -89602,9 +86546,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -89646,7 +86588,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -89668,9 +86609,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -89710,7 +86649,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -89728,15 +86666,13 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -89745,15 +86681,13 @@ export type QuoteNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -89764,7 +86698,6 @@ export type QuoteNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -89805,7 +86738,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -90060,7 +86992,6 @@ export type QuoteNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -90112,9 +87043,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -90145,7 +87074,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90161,9 +87089,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -90206,7 +87132,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90218,14 +87143,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -90256,7 +87179,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90268,14 +87190,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -90306,7 +87226,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90329,9 +87248,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -90361,7 +87278,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90377,9 +87293,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -90412,7 +87326,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90428,9 +87341,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -90461,7 +87372,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90473,15 +87383,13 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -90490,15 +87398,13 @@ export type QuoteNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -90509,7 +87415,6 @@ export type QuoteNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90541,7 +87446,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90773,7 +87677,6 @@ export type QuoteNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -90825,9 +87728,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -90858,7 +87759,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90874,9 +87774,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -90919,7 +87817,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90931,14 +87828,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -90969,7 +87864,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -90981,14 +87875,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -91019,7 +87911,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91042,9 +87933,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -91074,7 +87963,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91090,9 +87978,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -91125,7 +88011,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91141,9 +88026,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -91174,7 +88057,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91186,15 +88068,13 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -91203,15 +88083,13 @@ export type QuoteNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -91222,7 +88100,6 @@ export type QuoteNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91254,7 +88131,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91472,7 +88348,6 @@ export type QuoteNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -91524,9 +88399,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -91557,7 +88430,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91573,9 +88445,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -91618,7 +88488,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91630,14 +88499,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -91668,7 +88535,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91680,14 +88546,12 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -91718,7 +88582,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91741,9 +88604,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -91773,7 +88634,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91789,9 +88649,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -91824,7 +88682,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91840,9 +88697,7 @@ export type QuoteNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -91873,7 +88728,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91885,15 +88739,13 @@ export type QuoteNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -91902,15 +88754,13 @@ export type QuoteNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -91921,7 +88771,6 @@ export type QuoteNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -91953,7 +88802,6 @@ export type QuoteNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92188,7 +89036,6 @@ export type ReactionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -92240,9 +89087,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -92273,7 +89118,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92289,9 +89133,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -92334,7 +89176,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92346,14 +89187,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -92384,7 +89223,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92396,14 +89234,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -92434,7 +89270,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92457,9 +89292,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -92489,7 +89322,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92505,9 +89337,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -92540,7 +89370,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92556,9 +89385,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -92589,7 +89416,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92601,15 +89427,13 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -92618,15 +89442,13 @@ export type ReactionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -92637,7 +89459,6 @@ export type ReactionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92669,7 +89490,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -92885,7 +89705,6 @@ export type ReactionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -92940,9 +89759,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -92982,7 +89799,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93004,9 +89820,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -93058,7 +89872,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93076,14 +89889,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -93123,7 +89934,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93141,14 +89951,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -93188,7 +89996,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93217,9 +90024,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -93258,7 +90063,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93280,9 +90084,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -93324,7 +90126,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93346,9 +90147,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -93388,7 +90187,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93406,15 +90204,13 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -93423,15 +90219,13 @@ export type ReactionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -93442,7 +90236,6 @@ export type ReactionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -93483,7 +90276,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93721,7 +90513,6 @@ export type ReactionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -93776,9 +90567,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -93818,7 +90607,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93840,9 +90628,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -93894,7 +90680,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93912,14 +90697,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -93959,7 +90742,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -93977,14 +90759,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -94024,7 +90804,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -94053,9 +90832,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -94094,7 +90871,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -94116,9 +90892,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -94160,7 +90934,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -94182,9 +90955,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -94224,7 +90995,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -94242,15 +91012,13 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -94259,15 +91027,13 @@ export type ReactionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -94278,7 +91044,6 @@ export type ReactionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -94319,7 +91084,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -94574,7 +91338,6 @@ export type ReactionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -94626,9 +91389,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -94659,7 +91420,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -94675,9 +91435,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -94720,7 +91478,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -94732,14 +91489,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -94770,7 +91525,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -94782,14 +91536,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -94820,7 +91572,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -94843,9 +91594,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -94875,7 +91624,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -94891,9 +91639,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -94926,7 +91672,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -94942,9 +91687,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -94975,7 +91718,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -94987,15 +91729,13 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -95004,15 +91744,13 @@ export type ReactionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -95023,7 +91761,6 @@ export type ReactionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95055,7 +91792,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95287,7 +92023,6 @@ export type ReactionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -95339,9 +92074,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -95372,7 +92105,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95388,9 +92120,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -95433,7 +92163,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95445,14 +92174,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -95483,7 +92210,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95495,14 +92221,12 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -95533,7 +92257,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95556,9 +92279,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -95588,7 +92309,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95604,9 +92324,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -95639,7 +92357,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95655,9 +92372,7 @@ export type ReactionNotificationFieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -95688,7 +92403,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95700,15 +92414,13 @@ export type ReactionNotificationFieldsFragment = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -95717,15 +92429,13 @@ export type ReactionNotificationFieldsFragment = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -95736,7 +92446,6 @@ export type ReactionNotificationFieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95768,7 +92477,6 @@ export type ReactionNotificationFieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -95986,7 +92694,6 @@ export type ReactionNotificationFieldsFragment = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -96019,9 +92726,7 @@ export type ArticleMetadataV3FieldsFragment = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -96052,7 +92757,6 @@ export type ArticleMetadataV3FieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96069,9 +92773,7 @@ export type AudioMetadataV3FieldsFragment = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -96114,7 +92816,6 @@ export type AudioMetadataV3FieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96131,9 +92832,7 @@ export type EmbedMetadataV3FieldsFragment = { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -96164,7 +92863,6 @@ export type EmbedMetadataV3FieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96181,9 +92879,7 @@ export type ImageMetadataV3FieldsFragment = { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -96214,7 +92910,6 @@ export type ImageMetadataV3FieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96238,9 +92933,7 @@ export type LinkMetadataV3FieldsFragment = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -96270,7 +92963,6 @@ export type LinkMetadataV3FieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96287,9 +92979,7 @@ export type LiveStreamMetadataV3FieldsFragment = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -96322,7 +93012,6 @@ export type LiveStreamMetadataV3FieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96339,9 +93028,7 @@ export type MintMetadataV3FieldsFragment = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -96372,7 +93059,6 @@ export type MintMetadataV3FieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96389,9 +93075,7 @@ export type TextOnlyMetadataV3FieldsFragment = { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -96405,9 +93089,7 @@ export type VideoMetadataV3FieldsFragment = { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -96418,7 +93100,6 @@ export type VideoMetadataV3FieldsFragment = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96450,7 +93131,6 @@ export type VideoMetadataV3FieldsFragment = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96499,7 +93179,6 @@ type PublicationMetadataMediaFields_PublicationMetadataMediaImage_Fragment = { type PublicationMetadataMediaFields_PublicationMetadataMediaVideo_Fragment = { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -96525,7 +93204,6 @@ export type PublicationMetadataMediaImageFieldsFragment = { export type PublicationMetadataMediaVideoFieldsFragment = { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -97696,7 +94374,6 @@ export type ApprovedAuthenticationsQuery = { __typename?: 'ApprovedAuthentication'; authorizationId: any; browser?: string | null; - device?: string | null; os?: string | null; origin?: any | null; expiresAt: any; @@ -97810,7 +94487,6 @@ export type CurrentProfileQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -97863,7 +94539,6 @@ export type CurrentProfileQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -97977,7 +94652,6 @@ export type DefaultProfileQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -98030,7 +94704,6 @@ export type DefaultProfileQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -98145,7 +94818,6 @@ export type ExplorePublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -98197,9 +94869,7 @@ export type ExplorePublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -98230,7 +94900,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98246,9 +94915,7 @@ export type ExplorePublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -98291,7 +94958,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98303,14 +94969,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -98341,7 +95005,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98353,14 +95016,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -98391,7 +95052,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98414,9 +95074,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -98446,7 +95104,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98462,9 +95119,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -98497,7 +95152,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98513,9 +95167,7 @@ export type ExplorePublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -98546,7 +95198,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98558,15 +95209,13 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -98575,15 +95224,13 @@ export type ExplorePublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -98594,7 +95241,6 @@ export type ExplorePublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98626,7 +95272,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -98866,7 +95511,6 @@ export type ExplorePublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -98924,9 +95568,7 @@ export type ExplorePublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -98966,7 +95608,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -98988,9 +95629,7 @@ export type ExplorePublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -99042,7 +95681,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99060,14 +95698,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -99107,7 +95743,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99125,14 +95760,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -99172,7 +95805,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99201,9 +95833,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -99242,7 +95872,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99264,9 +95893,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -99308,7 +95935,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99330,9 +95956,7 @@ export type ExplorePublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -99372,7 +95996,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99390,15 +96013,13 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -99407,15 +96028,13 @@ export type ExplorePublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -99426,7 +96045,6 @@ export type ExplorePublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -99467,7 +96085,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99689,7 +96306,6 @@ export type ExplorePublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -99753,9 +96369,7 @@ export type ExplorePublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -99795,7 +96409,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99817,9 +96430,7 @@ export type ExplorePublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -99877,7 +96488,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99895,14 +96505,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -99942,7 +96550,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -99960,14 +96567,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -100007,7 +96612,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100039,9 +96643,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -100080,7 +96682,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100102,9 +96703,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -100146,7 +96745,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100168,9 +96766,7 @@ export type ExplorePublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -100210,7 +96806,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100228,15 +96823,13 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -100245,15 +96838,13 @@ export type ExplorePublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -100264,7 +96855,6 @@ export type ExplorePublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100311,7 +96901,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100549,7 +97138,6 @@ export type ExplorePublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -100613,9 +97201,7 @@ export type ExplorePublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -100655,7 +97241,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100677,9 +97262,7 @@ export type ExplorePublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -100737,7 +97320,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100755,14 +97337,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -100802,7 +97382,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100820,14 +97399,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -100867,7 +97444,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100899,9 +97475,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -100940,7 +97514,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -100962,9 +97535,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -101006,7 +97577,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101028,9 +97598,7 @@ export type ExplorePublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -101070,7 +97638,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101088,15 +97655,13 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -101105,15 +97670,13 @@ export type ExplorePublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -101124,7 +97687,6 @@ export type ExplorePublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101171,7 +97733,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101426,7 +97987,6 @@ export type ExplorePublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -101484,9 +98044,7 @@ export type ExplorePublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -101526,7 +98084,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101548,9 +98105,7 @@ export type ExplorePublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -101602,7 +98157,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101620,14 +98174,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -101667,7 +98219,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101685,14 +98236,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -101732,7 +98281,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101761,9 +98309,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -101802,7 +98348,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101824,9 +98369,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -101868,7 +98411,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101890,9 +98432,7 @@ export type ExplorePublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -101932,7 +98472,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -101950,15 +98489,13 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -101967,15 +98504,13 @@ export type ExplorePublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -101986,7 +98521,6 @@ export type ExplorePublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -102027,7 +98561,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -102265,7 +98798,6 @@ export type ExplorePublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -102323,9 +98855,7 @@ export type ExplorePublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -102365,7 +98895,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -102387,9 +98916,7 @@ export type ExplorePublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -102441,7 +98968,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -102459,14 +98985,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -102506,7 +99030,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -102524,14 +99047,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -102571,7 +99092,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -102600,9 +99120,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -102641,7 +99159,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -102663,9 +99180,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -102707,7 +99222,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -102729,9 +99243,7 @@ export type ExplorePublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -102771,7 +99283,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -102789,15 +99300,13 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -102806,15 +99315,13 @@ export type ExplorePublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -102825,7 +99332,6 @@ export type ExplorePublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -102866,7 +99372,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -103097,7 +99602,6 @@ export type ExplorePublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -103149,9 +99653,7 @@ export type ExplorePublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -103182,7 +99684,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103198,9 +99699,7 @@ export type ExplorePublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -103243,7 +99742,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103255,14 +99753,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -103293,7 +99789,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103305,14 +99800,12 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -103343,7 +99836,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103366,9 +99858,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -103398,7 +99888,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103414,9 +99903,7 @@ export type ExplorePublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -103449,7 +99936,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103465,9 +99951,7 @@ export type ExplorePublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -103498,7 +99982,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103510,15 +99993,13 @@ export type ExplorePublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -103527,15 +100008,13 @@ export type ExplorePublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -103546,7 +100025,6 @@ export type ExplorePublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103578,7 +100056,6 @@ export type ExplorePublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -103835,7 +100312,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -103896,9 +100372,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -103938,7 +100412,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -103960,9 +100433,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -104020,7 +100491,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104038,14 +100508,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -104085,7 +100553,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104103,14 +100570,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -104150,7 +100615,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104182,9 +100646,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -104223,7 +100685,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104245,9 +100706,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -104289,7 +100748,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104311,9 +100769,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -104353,7 +100809,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104371,15 +100826,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -104388,15 +100841,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -104407,7 +100858,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104454,7 +100904,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104679,7 +101128,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -104743,9 +101191,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -104785,7 +101231,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104807,9 +101252,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -104867,7 +101310,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104885,14 +101327,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -104932,7 +101372,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -104950,14 +101389,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -104997,7 +101434,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105029,9 +101465,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -105070,7 +101504,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105092,9 +101525,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -105136,7 +101567,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105158,9 +101588,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -105200,7 +101628,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105218,15 +101645,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -105235,15 +101660,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -105254,7 +101677,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105301,7 +101723,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105542,7 +101963,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -105606,9 +102026,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -105648,7 +102066,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105670,9 +102087,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -105730,7 +102145,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105748,14 +102162,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -105795,7 +102207,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105813,14 +102224,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -105860,7 +102269,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105892,9 +102300,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -105933,7 +102339,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -105955,9 +102360,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -105999,7 +102402,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106021,9 +102423,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -106063,7 +102463,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106081,15 +102480,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -106098,15 +102495,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -106117,7 +102512,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106164,7 +102558,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106419,7 +102812,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -106480,9 +102872,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -106522,7 +102912,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106544,9 +102933,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -106604,7 +102991,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106622,14 +103008,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -106669,7 +103053,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106687,14 +103070,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -106734,7 +103115,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106766,9 +103146,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -106807,7 +103185,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106829,9 +103206,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -106873,7 +103248,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106895,9 +103269,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -106937,7 +103309,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -106955,15 +103326,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -106972,15 +103341,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -106991,7 +103358,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107038,7 +103404,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107276,7 +103641,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -107337,9 +103701,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -107379,7 +103741,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107401,9 +103762,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -107461,7 +103820,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107479,14 +103837,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -107526,7 +103882,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107544,14 +103899,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -107591,7 +103944,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107623,9 +103975,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -107664,7 +104014,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107686,9 +104035,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -107730,7 +104077,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107752,9 +104098,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -107794,7 +104138,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107812,15 +104155,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -107829,15 +104170,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -107848,7 +104187,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -107895,7 +104233,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -108126,7 +104463,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -108181,9 +104517,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -108214,7 +104548,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108230,9 +104563,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -108275,7 +104606,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108287,14 +104617,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -108325,7 +104653,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108337,14 +104664,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -108375,7 +104700,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108398,9 +104722,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -108430,7 +104752,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108446,9 +104767,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -108481,7 +104800,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108497,9 +104815,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -108530,7 +104846,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108542,15 +104857,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -108559,15 +104872,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -108578,7 +104889,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108610,7 +104920,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -108826,7 +105135,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -108887,9 +105195,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -108929,7 +105235,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -108951,9 +105256,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -109011,7 +105314,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109029,14 +105331,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -109076,7 +105376,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109094,14 +105393,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -109141,7 +105438,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109173,9 +105469,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -109214,7 +105508,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109236,9 +105529,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -109280,7 +105571,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109302,9 +105592,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -109344,7 +105632,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109362,15 +105649,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -109379,15 +105664,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -109398,7 +105681,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109445,7 +105727,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109683,7 +105964,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -109744,9 +106024,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -109786,7 +106064,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109808,9 +106085,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -109868,7 +106143,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109886,14 +106160,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -109933,7 +106205,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -109951,14 +106222,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -109998,7 +106267,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -110030,9 +106298,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -110071,7 +106337,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -110093,9 +106358,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -110137,7 +106400,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -110159,9 +106421,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -110201,7 +106461,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -110219,15 +106478,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -110236,15 +106493,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -110255,7 +106510,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -110302,7 +106556,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -110557,7 +106810,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -110612,9 +106864,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -110645,7 +106895,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -110661,9 +106910,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -110706,7 +106953,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -110718,14 +106964,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -110756,7 +107000,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -110768,14 +107011,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -110806,7 +107047,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -110829,9 +107069,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -110861,7 +107099,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -110877,9 +107114,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -110912,7 +107147,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -110928,9 +107162,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -110961,7 +107193,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -110973,15 +107204,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -110990,15 +107219,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -111009,7 +107236,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -111041,7 +107267,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -111281,7 +107506,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -111342,9 +107566,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -111384,7 +107606,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -111406,9 +107627,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -111466,7 +107685,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -111484,14 +107702,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -111531,7 +107747,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -111549,14 +107764,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -111596,7 +107809,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -111628,9 +107840,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -111669,7 +107879,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -111691,9 +107900,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -111735,7 +107942,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -111757,9 +107963,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -111799,7 +108003,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -111817,15 +108020,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -111834,15 +108035,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -111853,7 +108052,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -111900,7 +108098,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112125,7 +108322,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -112189,9 +108385,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -112231,7 +108425,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112253,9 +108446,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -112313,7 +108504,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112331,14 +108521,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -112378,7 +108566,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112396,14 +108583,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -112443,7 +108628,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112475,9 +108659,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -112516,7 +108698,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112538,9 +108719,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -112582,7 +108761,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112604,9 +108782,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -112646,7 +108822,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112664,15 +108839,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -112681,15 +108854,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -112700,7 +108871,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112747,7 +108917,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -112988,7 +109157,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -113052,9 +109220,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -113094,7 +109260,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113116,9 +109281,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -113176,7 +109339,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113194,14 +109356,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -113241,7 +109401,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113259,14 +109418,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -113306,7 +109463,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113338,9 +109494,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -113379,7 +109533,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113401,9 +109554,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -113445,7 +109596,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113467,9 +109617,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -113509,7 +109657,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113527,15 +109674,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -113544,15 +109689,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -113563,7 +109706,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113610,7 +109752,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113865,7 +110006,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -113926,9 +110066,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -113968,7 +110106,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -113990,9 +110127,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -114050,7 +110185,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114068,14 +110202,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -114115,7 +110247,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114133,14 +110264,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -114180,7 +110309,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114212,9 +110340,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -114253,7 +110379,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114275,9 +110400,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -114319,7 +110442,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114341,9 +110463,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -114383,7 +110503,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114401,15 +110520,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -114418,15 +110535,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -114437,7 +110552,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114484,7 +110598,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114722,7 +110835,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -114783,9 +110895,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -114825,7 +110935,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114847,9 +110956,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -114907,7 +111014,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114925,14 +111031,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -114972,7 +111076,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -114990,14 +111093,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -115037,7 +111138,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -115069,9 +111169,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -115110,7 +111208,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -115132,9 +111229,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -115176,7 +111271,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -115198,9 +111292,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -115240,7 +111332,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -115258,15 +111349,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -115275,15 +111364,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -115294,7 +111381,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -115341,7 +111427,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -115572,7 +111657,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -115627,9 +111711,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -115660,7 +111742,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -115676,9 +111757,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -115721,7 +111800,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -115733,14 +111811,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -115771,7 +111847,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -115783,14 +111858,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -115821,7 +111894,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -115844,9 +111916,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -115876,7 +111946,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -115892,9 +111961,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -115927,7 +111994,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -115943,9 +112009,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -115976,7 +112040,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -115988,15 +112051,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -116005,15 +112066,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -116024,7 +112083,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116056,7 +112114,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116281,7 +112338,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -116336,7 +112392,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -116391,7 +112446,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -116453,7 +112507,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -116505,9 +112558,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -116538,7 +112589,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116554,9 +112604,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -116599,7 +112647,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116611,14 +112658,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -116649,7 +112694,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116661,14 +112705,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -116699,7 +112741,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116722,9 +112763,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -116754,7 +112793,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116770,9 +112808,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -116805,7 +112841,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116821,9 +112856,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -116854,7 +112887,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116866,15 +112898,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -116883,15 +112913,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -116902,7 +112930,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -116934,7 +112961,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -117150,7 +113176,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -117205,9 +113230,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -117247,7 +113270,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -117269,9 +113291,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -117323,7 +113343,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -117341,14 +113360,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -117388,7 +113405,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -117406,14 +113422,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -117453,7 +113467,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -117482,9 +113495,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -117523,7 +113534,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -117545,9 +113555,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -117589,7 +113597,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -117611,9 +113618,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -117653,7 +113658,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -117671,15 +113675,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -117688,15 +113690,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -117707,7 +113707,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -117748,7 +113747,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -117986,7 +113984,6 @@ export type FeedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -118041,9 +114038,7 @@ export type FeedQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -118083,7 +114078,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -118105,9 +114099,7 @@ export type FeedQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -118159,7 +114151,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -118177,14 +114168,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -118224,7 +114213,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -118242,14 +114230,12 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -118289,7 +114275,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -118318,9 +114303,7 @@ export type FeedQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -118359,7 +114342,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -118381,9 +114363,7 @@ export type FeedQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -118425,7 +114405,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -118447,9 +114426,7 @@ export type FeedQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -118489,7 +114466,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -118507,15 +114483,13 @@ export type FeedQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -118524,15 +114498,13 @@ export type FeedQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -118543,7 +114515,6 @@ export type FeedQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -118584,7 +114555,6 @@ export type FeedQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -118853,7 +114823,6 @@ export type FeedHighlightsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -118905,9 +114874,7 @@ export type FeedHighlightsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -118938,7 +114905,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -118954,9 +114920,7 @@ export type FeedHighlightsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -118999,7 +114963,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -119011,14 +114974,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -119049,7 +115010,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -119061,14 +115021,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -119099,7 +115057,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -119122,9 +115079,7 @@ export type FeedHighlightsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -119154,7 +115109,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -119170,9 +115124,7 @@ export type FeedHighlightsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -119205,7 +115157,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -119221,9 +115172,7 @@ export type FeedHighlightsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -119254,7 +115203,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -119266,15 +115214,13 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -119283,15 +115229,13 @@ export type FeedHighlightsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -119302,7 +115246,6 @@ export type FeedHighlightsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -119334,7 +115277,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -119574,7 +115516,6 @@ export type FeedHighlightsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -119632,9 +115573,7 @@ export type FeedHighlightsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -119674,7 +115613,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -119696,9 +115634,7 @@ export type FeedHighlightsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -119750,7 +115686,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -119768,14 +115703,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -119815,7 +115748,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -119833,14 +115765,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -119880,7 +115810,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -119909,9 +115838,7 @@ export type FeedHighlightsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -119950,7 +115877,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -119972,9 +115898,7 @@ export type FeedHighlightsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -120016,7 +115940,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120038,9 +115961,7 @@ export type FeedHighlightsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -120080,7 +116001,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120098,15 +116018,13 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -120115,15 +116033,13 @@ export type FeedHighlightsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -120134,7 +116050,6 @@ export type FeedHighlightsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -120175,7 +116090,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120397,7 +116311,6 @@ export type FeedHighlightsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -120461,9 +116374,7 @@ export type FeedHighlightsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -120503,7 +116414,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120525,9 +116435,7 @@ export type FeedHighlightsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -120585,7 +116493,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120603,14 +116510,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -120650,7 +116555,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120668,14 +116572,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -120715,7 +116617,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120747,9 +116648,7 @@ export type FeedHighlightsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -120788,7 +116687,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120810,9 +116708,7 @@ export type FeedHighlightsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -120854,7 +116750,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120876,9 +116771,7 @@ export type FeedHighlightsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -120918,7 +116811,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -120936,15 +116828,13 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -120953,15 +116843,13 @@ export type FeedHighlightsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -120972,7 +116860,6 @@ export type FeedHighlightsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121019,7 +116906,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121257,7 +117143,6 @@ export type FeedHighlightsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -121321,9 +117206,7 @@ export type FeedHighlightsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -121363,7 +117246,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121385,9 +117267,7 @@ export type FeedHighlightsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -121445,7 +117325,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121463,14 +117342,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -121510,7 +117387,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121528,14 +117404,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -121575,7 +117449,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121607,9 +117480,7 @@ export type FeedHighlightsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -121648,7 +117519,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121670,9 +117540,7 @@ export type FeedHighlightsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -121714,7 +117582,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121736,9 +117603,7 @@ export type FeedHighlightsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -121778,7 +117643,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121796,15 +117660,13 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -121813,15 +117675,13 @@ export type FeedHighlightsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -121832,7 +117692,6 @@ export type FeedHighlightsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -121879,7 +117738,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122134,7 +117992,6 @@ export type FeedHighlightsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -122192,9 +118049,7 @@ export type FeedHighlightsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -122234,7 +118089,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122256,9 +118110,7 @@ export type FeedHighlightsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -122310,7 +118162,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122328,14 +118179,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -122375,7 +118224,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122393,14 +118241,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -122440,7 +118286,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122469,9 +118314,7 @@ export type FeedHighlightsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -122510,7 +118353,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122532,9 +118374,7 @@ export type FeedHighlightsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -122576,7 +118416,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122598,9 +118437,7 @@ export type FeedHighlightsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -122640,7 +118477,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122658,15 +118494,13 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -122675,15 +118509,13 @@ export type FeedHighlightsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -122694,7 +118526,6 @@ export type FeedHighlightsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -122735,7 +118566,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -122973,7 +118803,6 @@ export type FeedHighlightsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -123031,9 +118860,7 @@ export type FeedHighlightsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -123073,7 +118900,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -123095,9 +118921,7 @@ export type FeedHighlightsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -123149,7 +118973,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -123167,14 +118990,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -123214,7 +119035,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -123232,14 +119052,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -123279,7 +119097,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -123308,9 +119125,7 @@ export type FeedHighlightsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -123349,7 +119164,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -123371,9 +119185,7 @@ export type FeedHighlightsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -123415,7 +119227,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -123437,9 +119248,7 @@ export type FeedHighlightsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -123479,7 +119288,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -123497,15 +119305,13 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -123514,15 +119320,13 @@ export type FeedHighlightsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -123533,7 +119337,6 @@ export type FeedHighlightsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -123574,7 +119377,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -123805,7 +119607,6 @@ export type FeedHighlightsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -123857,9 +119658,7 @@ export type FeedHighlightsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -123890,7 +119689,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -123906,9 +119704,7 @@ export type FeedHighlightsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -123951,7 +119747,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -123963,14 +119758,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -124001,7 +119794,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -124013,14 +119805,12 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -124051,7 +119841,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -124074,9 +119863,7 @@ export type FeedHighlightsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -124106,7 +119893,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -124122,9 +119908,7 @@ export type FeedHighlightsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -124157,7 +119941,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -124173,9 +119956,7 @@ export type FeedHighlightsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -124206,7 +119987,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -124218,15 +119998,13 @@ export type FeedHighlightsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -124235,15 +120013,13 @@ export type FeedHighlightsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -124254,7 +120030,6 @@ export type FeedHighlightsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -124286,7 +120061,6 @@ export type FeedHighlightsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -124531,7 +120305,6 @@ export type FollowersQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -124628,7 +120401,6 @@ export type FollowingQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -124739,7 +120511,6 @@ export type InvitedProfilesQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -124850,7 +120621,6 @@ export type MutualFollowersQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -125041,7 +120811,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -125104,7 +120873,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -125162,9 +120930,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -125204,7 +120970,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -125226,9 +120991,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -125280,7 +121043,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -125298,14 +121060,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -125345,7 +121105,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -125363,14 +121122,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -125410,7 +121167,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -125439,9 +121195,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -125480,7 +121234,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -125502,9 +121255,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -125546,7 +121297,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -125568,9 +121318,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -125610,7 +121358,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -125628,15 +121375,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -125645,15 +121390,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -125664,7 +121407,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -125705,7 +121447,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -125927,7 +121668,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -125991,9 +121731,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -126033,7 +121771,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126055,9 +121792,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -126115,7 +121850,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126133,14 +121867,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -126180,7 +121912,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126198,14 +121929,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -126245,7 +121974,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126277,9 +122005,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -126318,7 +122044,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126340,9 +122065,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -126384,7 +122107,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126406,9 +122128,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -126448,7 +122168,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126466,15 +122185,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -126483,15 +122200,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -126502,7 +122217,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126549,7 +122263,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126787,7 +122500,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -126851,9 +122563,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -126893,7 +122603,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126915,9 +122624,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -126975,7 +122682,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -126993,14 +122699,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -127040,7 +122744,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127058,14 +122761,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -127105,7 +122806,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127137,9 +122837,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -127178,7 +122876,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127200,9 +122897,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -127244,7 +122939,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127266,9 +122960,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -127308,7 +123000,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127326,15 +123017,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -127343,15 +123032,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -127362,7 +123049,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127409,7 +123095,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127663,7 +123348,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -127742,7 +123426,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -127806,9 +123489,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -127848,7 +123529,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127870,9 +123550,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -127930,7 +123608,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -127948,17 +123625,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -127998,7 +123670,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128016,14 +123687,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -128063,7 +123732,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128095,9 +123763,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -128136,7 +123802,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128158,9 +123823,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -128202,7 +123865,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128224,9 +123886,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -128266,7 +123926,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128284,15 +123943,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -128301,18 +123958,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -128323,7 +123975,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128370,7 +124021,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128598,7 +124248,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -128662,9 +124311,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -128704,7 +124351,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128726,9 +124372,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -128786,7 +124430,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128804,17 +124447,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -128854,7 +124492,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128872,17 +124509,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'EventMetadataV3'; - id: string; - } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -128922,7 +124554,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -128954,9 +124585,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -128995,7 +124624,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129017,9 +124645,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -129061,7 +124687,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129083,9 +124708,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -129125,7 +124748,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129143,21 +124765,13 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'SpaceMetadataV3'; - id: string; - } - | { - __typename?: 'StoryMetadataV3'; - id: string; - } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -129166,21 +124780,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { - __typename?: 'ThreeDMetadataV3'; - id: string; - } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -129191,7 +124797,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129238,7 +124843,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129482,7 +125086,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -129546,9 +125149,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -129588,7 +125189,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129610,9 +125210,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -129670,7 +125268,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129688,17 +125285,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -129738,7 +125330,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129756,17 +125347,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'EventMetadataV3'; - id: string; - } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -129806,7 +125392,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129838,9 +125423,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -129879,7 +125462,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129901,9 +125483,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -129945,7 +125525,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -129967,9 +125546,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -130009,7 +125586,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130027,21 +125603,13 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'SpaceMetadataV3'; - id: string; - } - | { - __typename?: 'StoryMetadataV3'; - id: string; - } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -130050,21 +125618,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { - __typename?: 'ThreeDMetadataV3'; - id: string; - } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -130075,7 +125635,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130122,7 +125681,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130383,7 +125941,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -130447,9 +126004,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -130489,7 +126044,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130511,9 +126065,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -130571,7 +126123,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130589,17 +126140,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -130639,7 +126185,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130657,14 +126202,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -130704,7 +126247,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130736,9 +126278,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -130777,7 +126317,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130799,9 +126338,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -130843,7 +126380,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130865,9 +126401,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -130907,7 +126441,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -130925,15 +126458,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -130942,18 +126473,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -130964,7 +126490,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131011,7 +126536,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131255,7 +126779,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -131319,9 +126842,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -131361,7 +126882,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131383,9 +126903,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -131443,7 +126961,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131461,17 +126978,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -131511,7 +127023,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131529,14 +127040,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -131576,7 +127085,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131608,9 +127116,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -131649,7 +127155,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131671,9 +127176,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -131715,7 +127218,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131737,9 +127239,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -131779,7 +127279,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131797,15 +127296,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -131814,18 +127311,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -131836,7 +127328,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -131883,7 +127374,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132114,7 +127604,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -132178,9 +127667,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -132220,7 +127707,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132242,9 +127728,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -132302,7 +127786,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132320,14 +127803,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -132367,7 +127848,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132385,14 +127865,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -132432,7 +127910,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132464,9 +127941,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -132505,7 +127980,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132527,9 +128001,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -132571,7 +128043,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132593,9 +128064,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -132635,7 +128104,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132653,15 +128121,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -132670,15 +128136,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -132689,7 +128153,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132736,7 +128199,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -132964,7 +128426,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -133028,9 +128489,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -133070,7 +128529,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133092,9 +128550,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -133152,7 +128608,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133170,17 +128625,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -133220,7 +128670,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133238,14 +128687,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -133285,7 +128732,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133317,9 +128763,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -133358,7 +128802,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133380,9 +128823,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -133424,7 +128865,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133446,9 +128886,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -133488,7 +128926,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133506,15 +128943,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -133523,18 +128958,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -133545,7 +128975,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133592,7 +129021,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133836,7 +129264,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -133900,9 +129327,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -133942,7 +129367,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -133964,9 +129388,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -134024,7 +129446,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134042,17 +129463,12 @@ export type NotificationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -134092,7 +129508,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134110,14 +129525,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -134157,7 +129570,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134189,9 +129601,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -134230,7 +129640,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134252,9 +129661,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -134296,7 +129703,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134318,9 +129724,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -134360,7 +129764,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134378,15 +129781,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -134395,18 +129796,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -134417,7 +129813,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134464,7 +129859,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134719,7 +130113,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -134783,9 +130176,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -134825,7 +130216,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134847,9 +130237,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -134907,7 +130295,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134925,14 +130312,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -134972,7 +130357,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -134990,14 +130374,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -135037,7 +130419,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135069,9 +130450,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -135110,7 +130489,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135132,9 +130510,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -135176,7 +130552,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135198,9 +130573,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -135240,7 +130613,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135258,15 +130630,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -135275,15 +130645,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -135294,7 +130662,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135341,7 +130708,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135579,7 +130945,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -135643,9 +131008,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -135685,7 +131048,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135707,9 +131069,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -135767,7 +131127,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135785,14 +131144,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -135832,7 +131189,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135850,14 +131206,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -135897,7 +131251,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135929,9 +131282,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -135970,7 +131321,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -135992,9 +131342,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -136036,7 +131384,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136058,9 +131405,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -136100,7 +131445,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136118,15 +131462,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -136135,15 +131477,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -136154,7 +131494,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136201,7 +131540,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136440,7 +131778,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -136498,9 +131835,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -136540,7 +131875,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136562,9 +131896,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -136616,7 +131948,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136634,14 +131965,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -136681,7 +132010,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136699,14 +132027,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -136746,7 +132072,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136775,9 +132100,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -136816,7 +132139,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136838,9 +132160,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -136882,7 +132202,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136904,9 +132223,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -136946,7 +132263,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -136964,15 +132280,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -136981,15 +132295,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -137000,7 +132312,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -137041,7 +132352,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137292,7 +132602,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -137353,9 +132662,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -137395,7 +132702,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137417,9 +132723,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -137477,7 +132781,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137495,14 +132798,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -137542,7 +132843,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137560,14 +132860,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -137607,7 +132905,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137639,9 +132936,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -137680,7 +132975,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137702,9 +132996,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -137746,7 +133038,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137768,9 +133059,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -137810,7 +133099,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137828,15 +133116,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -137845,15 +133131,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -137864,7 +133148,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -137911,7 +133194,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138136,7 +133418,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -138200,9 +133481,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -138242,7 +133521,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138264,9 +133542,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -138324,7 +133600,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138342,14 +133617,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -138389,7 +133662,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138407,14 +133679,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -138454,7 +133724,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138486,9 +133755,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -138527,7 +133794,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138549,9 +133815,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -138593,7 +133857,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138615,9 +133878,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -138657,7 +133918,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138675,15 +133935,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -138692,15 +133950,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -138711,7 +133967,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138758,7 +134013,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -138999,7 +134253,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -139063,9 +134316,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -139105,7 +134356,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139127,9 +134377,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -139187,7 +134435,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139205,14 +134452,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -139252,7 +134497,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139270,14 +134514,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -139317,7 +134559,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139349,9 +134590,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -139390,7 +134629,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139412,9 +134650,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -139456,7 +134692,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139478,9 +134713,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -139520,7 +134753,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139538,15 +134770,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -139555,15 +134785,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -139574,7 +134802,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139621,7 +134848,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -139876,7 +135102,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -139937,9 +135162,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -139979,7 +135202,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140001,9 +135223,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -140061,7 +135281,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140079,14 +135298,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -140126,7 +135343,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140144,14 +135360,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -140191,7 +135405,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140223,9 +135436,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -140264,7 +135475,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140286,9 +135496,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -140330,7 +135538,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140352,9 +135559,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -140394,7 +135599,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140412,15 +135616,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -140429,15 +135631,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -140448,7 +135648,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140495,7 +135694,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140733,7 +135931,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -140794,9 +135991,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -140836,7 +136031,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140858,9 +136052,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -140918,7 +136110,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -140936,14 +136127,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -140983,7 +136172,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -141001,14 +136189,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -141048,7 +136234,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -141080,9 +136265,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -141121,7 +136304,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -141143,9 +136325,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -141187,7 +136367,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -141209,9 +136388,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -141251,7 +136428,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -141269,15 +136445,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -141286,15 +136460,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -141305,7 +136477,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -141352,7 +136523,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -141583,7 +136753,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -141638,9 +136807,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -141671,7 +136838,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -141687,9 +136853,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -141732,7 +136896,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -141744,14 +136907,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -141782,7 +136943,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -141794,14 +136954,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -141832,7 +136990,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -141855,9 +137012,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -141887,7 +137042,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -141903,9 +137057,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -141938,7 +137090,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -141954,9 +137105,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -141987,7 +137136,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -141999,15 +137147,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -142016,15 +137162,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -142035,7 +137179,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -142067,7 +137210,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -142283,7 +137425,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -142344,9 +137485,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -142386,7 +137525,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -142408,9 +137546,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -142468,7 +137604,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -142486,14 +137621,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -142533,7 +137666,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -142551,14 +137683,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -142598,7 +137728,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -142630,9 +137759,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -142671,7 +137798,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -142693,9 +137819,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -142737,7 +137861,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -142759,9 +137882,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -142801,7 +137922,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -142819,15 +137939,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -142836,15 +137954,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -142855,7 +137971,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -142902,7 +138017,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143140,7 +138254,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -143201,9 +138314,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -143243,7 +138354,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143265,9 +138375,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -143325,7 +138433,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143343,14 +138450,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -143390,7 +138495,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143408,14 +138512,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -143455,7 +138557,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143487,9 +138588,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -143528,7 +138627,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143550,9 +138648,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -143594,7 +138690,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143616,9 +138711,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -143658,7 +138751,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143676,15 +138768,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -143693,15 +138783,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -143712,7 +138800,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -143759,7 +138846,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144009,7 +139095,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -144075,7 +139160,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -144133,9 +139217,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -144175,7 +139257,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144197,9 +139278,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -144251,7 +139330,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144269,14 +139347,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -144316,7 +139392,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144334,14 +139409,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -144381,7 +139454,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144410,9 +139482,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -144451,7 +139521,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144473,9 +139542,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -144517,7 +139584,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144539,9 +139605,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -144581,7 +139645,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144599,15 +139662,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -144616,15 +139677,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -144635,7 +139694,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -144676,7 +139734,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -144898,7 +139955,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -144962,9 +140018,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -145004,7 +140058,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145026,9 +140079,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -145086,7 +140137,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145104,14 +140154,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -145151,7 +140199,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145169,14 +140216,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -145216,7 +140261,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145248,9 +140292,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -145289,7 +140331,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145311,9 +140352,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -145355,7 +140394,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145377,9 +140415,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -145419,7 +140455,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145437,15 +140472,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -145454,15 +140487,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -145473,7 +140504,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145520,7 +140550,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145758,7 +140787,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -145822,9 +140850,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -145864,7 +140890,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145886,9 +140911,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -145946,7 +140969,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -145964,14 +140986,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -146011,7 +141031,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146029,14 +141048,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -146076,7 +141093,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146108,9 +141124,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -146149,7 +141163,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146171,9 +141184,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -146215,7 +141226,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146237,9 +141247,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -146279,7 +141287,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146297,15 +141304,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -146314,15 +141319,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -146333,7 +141336,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146380,7 +141382,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146635,7 +141636,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -146693,9 +141693,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -146735,7 +141733,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146757,9 +141754,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -146811,7 +141806,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146829,14 +141823,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -146876,7 +141868,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146894,14 +141885,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -146941,7 +141930,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -146970,9 +141958,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -147011,7 +141997,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147033,9 +142018,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -147077,7 +142060,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147099,9 +142081,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -147141,7 +142121,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147159,15 +142138,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -147176,15 +142153,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -147195,7 +142170,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -147236,7 +142210,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147474,7 +142447,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -147532,9 +142504,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -147574,7 +142544,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147596,9 +142565,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -147650,7 +142617,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147668,14 +142634,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -147715,7 +142679,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147733,14 +142696,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -147780,7 +142741,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147809,9 +142769,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -147850,7 +142808,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147872,9 +142829,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -147916,7 +142871,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147938,9 +142892,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -147980,7 +142932,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -147998,15 +142949,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -148015,15 +142964,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -148034,7 +142981,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -148075,7 +143021,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -148311,7 +143256,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -148374,7 +143318,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -148432,9 +143375,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -148474,7 +143415,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -148496,9 +143436,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -148550,7 +143488,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -148568,14 +143505,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -148615,7 +143550,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -148633,14 +143567,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -148680,7 +143612,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -148709,9 +143640,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -148750,7 +143679,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -148772,9 +143700,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -148816,7 +143742,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -148838,9 +143763,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -148880,7 +143803,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -148898,15 +143820,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -148915,15 +143835,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -148934,7 +143852,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -148975,7 +143892,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149197,7 +144113,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -149261,9 +144176,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -149303,7 +144216,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149325,9 +144237,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -149385,7 +144295,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149403,14 +144312,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -149450,7 +144357,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149468,14 +144374,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -149515,7 +144419,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149547,9 +144450,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -149588,7 +144489,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149610,9 +144510,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -149654,7 +144552,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149676,9 +144573,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -149718,7 +144613,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149736,15 +144630,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -149753,15 +144645,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -149772,7 +144662,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -149819,7 +144708,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150057,7 +144945,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -150121,9 +145008,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -150163,7 +145048,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150185,9 +145069,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -150245,7 +145127,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150263,14 +145144,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -150310,7 +145189,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150328,14 +145206,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -150375,7 +145251,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150407,9 +145282,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -150448,7 +145321,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150470,9 +145342,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -150514,7 +145384,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150536,9 +145405,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -150578,7 +145445,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150596,15 +145462,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -150613,15 +145477,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -150632,7 +145494,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150679,7 +145540,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -150934,7 +145794,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -150992,9 +145851,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -151034,7 +145891,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151056,9 +145912,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -151110,7 +145964,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151128,14 +145981,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -151175,7 +146026,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151193,14 +146043,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -151240,7 +146088,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151269,9 +146116,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -151310,7 +146155,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151332,9 +146176,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -151376,7 +146218,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151398,9 +146239,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -151440,7 +146279,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151458,15 +146296,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -151475,15 +146311,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -151494,7 +146328,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -151535,7 +146368,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151773,7 +146605,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -151831,9 +146662,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -151873,7 +146702,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151895,9 +146723,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -151949,7 +146775,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -151967,14 +146792,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -152014,7 +146837,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152032,14 +146854,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -152079,7 +146899,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152108,9 +146927,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -152149,7 +146966,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152171,9 +146987,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -152215,7 +147029,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152237,9 +147050,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -152279,7 +147090,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152297,15 +147107,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -152314,15 +147122,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -152333,7 +147139,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -152374,7 +147179,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152624,7 +147428,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -152685,9 +147488,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -152727,7 +147528,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152749,9 +147549,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -152809,7 +147607,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152827,14 +147624,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -152874,7 +147669,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152892,14 +147686,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -152939,7 +147731,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -152971,9 +147762,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -153012,7 +147801,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153034,9 +147822,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -153078,7 +147864,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153100,9 +147885,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -153142,7 +147925,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153160,15 +147942,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -153177,15 +147957,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -153196,7 +147974,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153243,7 +148020,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153468,7 +148244,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -153532,9 +148307,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -153574,7 +148347,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153596,9 +148368,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -153656,7 +148426,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153674,14 +148443,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -153721,7 +148488,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153739,14 +148505,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -153786,7 +148550,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153818,9 +148581,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -153859,7 +148620,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153881,9 +148641,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -153925,7 +148683,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -153947,9 +148704,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -153989,7 +148744,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154007,15 +148761,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -154024,15 +148776,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -154043,7 +148793,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154090,7 +148839,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154331,7 +149079,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -154395,9 +149142,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -154437,7 +149182,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154459,9 +149203,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -154519,7 +149261,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154537,14 +149278,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -154584,7 +149323,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154602,14 +149340,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -154649,7 +149385,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154681,9 +149416,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -154722,7 +149455,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154744,9 +149476,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -154788,7 +149518,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154810,9 +149539,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -154852,7 +149579,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154870,15 +149596,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -154887,15 +149611,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -154906,7 +149628,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -154953,7 +149674,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155208,7 +149928,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -155269,9 +149988,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -155311,7 +150028,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155333,9 +150049,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -155393,7 +150107,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155411,14 +150124,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -155458,7 +150169,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155476,14 +150186,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -155523,7 +150231,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155555,9 +150262,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -155596,7 +150301,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155618,9 +150322,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -155662,7 +150364,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155684,9 +150385,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -155726,7 +150425,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155744,15 +150442,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -155761,15 +150457,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -155780,7 +150474,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -155827,7 +150520,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156065,7 +150757,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -156126,9 +150817,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -156168,7 +150857,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156190,9 +150878,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -156250,7 +150936,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156268,14 +150953,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -156315,7 +150998,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156333,14 +151015,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -156380,7 +151060,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156412,9 +151091,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -156453,7 +151130,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156475,9 +151151,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -156519,7 +151193,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156541,9 +151214,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -156583,7 +151254,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156601,15 +151271,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -156618,15 +151286,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -156637,7 +151303,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156684,7 +151349,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -156915,7 +151579,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -156970,9 +151633,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -157003,7 +151664,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157019,9 +151679,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -157064,7 +151722,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157076,14 +151733,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -157114,7 +151769,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157126,14 +151780,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -157164,7 +151816,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157187,9 +151838,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -157219,7 +151868,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157235,9 +151883,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -157270,7 +151916,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157286,9 +151931,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -157319,7 +151962,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157331,15 +151973,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -157348,15 +151988,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -157367,7 +152005,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157399,7 +152036,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -157636,7 +152272,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -157694,9 +152329,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -157736,7 +152369,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -157758,9 +152390,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -157812,7 +152442,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -157830,14 +152459,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -157877,7 +152504,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -157895,14 +152521,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -157942,7 +152566,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -157971,9 +152594,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -158012,7 +152633,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158034,9 +152654,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -158078,7 +152696,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158100,9 +152717,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -158142,7 +152757,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158160,15 +152774,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -158177,15 +152789,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -158196,7 +152806,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -158237,7 +152846,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158459,7 +153067,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -158523,9 +153130,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -158565,7 +153170,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158587,9 +153191,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -158647,7 +153249,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158665,14 +153266,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -158712,7 +153311,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158730,14 +153328,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -158777,7 +153373,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158809,9 +153404,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -158850,7 +153443,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158872,9 +153464,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -158916,7 +153506,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158938,9 +153527,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -158980,7 +153567,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -158998,15 +153584,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -159015,15 +153599,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -159034,7 +153616,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159081,7 +153662,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159319,7 +153899,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -159383,9 +153962,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -159425,7 +154002,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159447,9 +154023,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -159507,7 +154081,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159525,14 +154098,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -159572,7 +154143,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159590,14 +154160,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -159637,7 +154205,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159669,9 +154236,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -159710,7 +154275,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159732,9 +154296,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -159776,7 +154338,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159798,9 +154359,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -159840,7 +154399,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159858,15 +154416,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -159875,15 +154431,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -159894,7 +154448,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -159941,7 +154494,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -160196,7 +154748,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -160254,9 +154805,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -160296,7 +154845,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -160318,9 +154866,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -160372,7 +154918,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -160390,14 +154935,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -160437,7 +154980,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -160455,14 +154997,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -160502,7 +155042,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -160531,9 +155070,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -160572,7 +155109,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -160594,9 +155130,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -160638,7 +155172,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -160660,9 +155193,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -160702,7 +155233,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -160720,15 +155250,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -160737,15 +155265,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -160756,7 +155282,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -160797,7 +155322,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161035,7 +155559,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -161093,9 +155616,7 @@ export type NotificationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -161135,7 +155656,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161157,9 +155677,7 @@ export type NotificationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -161211,7 +155729,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161229,14 +155746,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -161276,7 +155791,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161294,14 +155808,12 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -161341,7 +155853,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161370,9 +155881,7 @@ export type NotificationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -161411,7 +155920,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161433,9 +155941,7 @@ export type NotificationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -161477,7 +155983,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161499,9 +156004,7 @@ export type NotificationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -161541,7 +156044,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161559,15 +156061,13 @@ export type NotificationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -161576,15 +156076,13 @@ export type NotificationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -161595,7 +156093,6 @@ export type NotificationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -161636,7 +156133,6 @@ export type NotificationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -161867,7 +156363,6 @@ export type NotificationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -161961,7 +156456,6 @@ export type ProfileQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -162014,7 +156508,6 @@ export type ProfileQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -162160,7 +156653,6 @@ export type ProfileRecommendationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -162285,7 +156777,6 @@ export type ProfilesQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -162338,7 +156829,6 @@ export type ProfilesQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -162436,7 +156926,6 @@ export type ProfilesManagedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -162514,7 +157003,6 @@ export type ProfilesManagedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -162616,7 +157104,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -162671,9 +157158,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -162713,7 +157198,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -162735,9 +157219,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -162789,7 +157271,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -162807,14 +157288,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -162854,7 +157333,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -162872,14 +157350,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -162919,7 +157395,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -162948,9 +157423,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -162989,7 +157462,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163011,9 +157483,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -163055,7 +157525,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163077,9 +157546,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -163119,7 +157586,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163137,15 +157603,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -163154,15 +157618,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -163173,7 +157635,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -163214,7 +157675,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163436,7 +157896,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -163497,9 +157956,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -163539,7 +157996,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163561,9 +158017,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -163621,7 +158075,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163639,14 +158092,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -163686,7 +158137,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163704,14 +158154,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -163751,7 +158199,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163783,9 +158230,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -163824,7 +158269,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163846,9 +158290,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -163890,7 +158332,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163912,9 +158353,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -163954,7 +158393,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -163972,15 +158410,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -163989,15 +158425,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -164008,7 +158442,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164055,7 +158488,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164293,7 +158725,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -164354,9 +158785,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -164396,7 +158825,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164418,9 +158846,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -164478,7 +158904,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164496,14 +158921,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -164543,7 +158966,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164561,14 +158983,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -164608,7 +159028,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164640,9 +159059,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -164681,7 +159098,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164703,9 +159119,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -164747,7 +159161,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164769,9 +159182,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -164811,7 +159222,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164829,15 +159239,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -164846,15 +159254,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -164865,7 +159271,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -164912,7 +159317,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -165167,7 +159571,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -165222,9 +159625,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -165264,7 +159665,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -165286,9 +159686,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -165340,7 +159738,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -165358,14 +159755,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -165405,7 +159800,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -165423,14 +159817,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -165470,7 +159862,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -165499,9 +159890,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -165540,7 +159929,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -165562,9 +159950,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -165606,7 +159992,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -165628,9 +160013,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -165670,7 +160053,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -165688,15 +160070,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -165705,15 +160085,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -165724,7 +160102,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -165765,7 +160142,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166003,7 +160379,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -166058,9 +160433,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -166100,7 +160473,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166122,9 +160494,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -166176,7 +160546,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166194,14 +160563,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -166241,7 +160608,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166259,14 +160625,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -166306,7 +160670,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166335,9 +160698,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -166376,7 +160737,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166398,9 +160758,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -166442,7 +160800,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166464,9 +160821,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -166506,7 +160861,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166524,15 +160878,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -166541,15 +160893,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -166560,7 +160910,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -166601,7 +160950,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -166832,7 +161180,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -166884,9 +161231,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -166917,7 +161262,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -166933,9 +161277,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -166978,7 +161320,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -166990,14 +161331,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -167028,7 +161367,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -167040,14 +161378,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -167078,7 +161414,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -167101,9 +161436,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -167133,7 +161466,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -167149,9 +161481,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -167184,7 +161514,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -167200,9 +161529,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -167233,7 +161560,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -167245,15 +161571,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -167262,15 +161586,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -167281,7 +161603,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -167313,7 +161634,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -167529,7 +161849,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -167584,9 +161903,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -167626,7 +161943,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -167648,9 +161964,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -167702,7 +162016,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -167720,14 +162033,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -167767,7 +162078,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -167785,14 +162095,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -167832,7 +162140,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -167861,9 +162168,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -167902,7 +162207,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -167924,9 +162228,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -167968,7 +162270,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -167990,9 +162291,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -168032,7 +162331,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168050,15 +162348,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -168067,15 +162363,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -168086,7 +162380,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -168127,7 +162420,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168365,7 +162657,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -168420,9 +162711,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -168462,7 +162751,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168484,9 +162772,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -168538,7 +162824,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168556,14 +162841,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -168603,7 +162886,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168621,14 +162903,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -168668,7 +162948,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168697,9 +162976,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -168738,7 +163015,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168760,9 +163036,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -168804,7 +163078,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168826,9 +163099,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -168868,7 +163139,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -168886,15 +163156,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -168903,15 +163171,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -168922,7 +163188,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -168963,7 +163228,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169217,7 +163481,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -169287,7 +163550,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -169348,9 +163610,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -169390,7 +163650,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169412,9 +163671,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -169472,7 +163729,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169490,14 +163746,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -169537,7 +163791,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169555,14 +163808,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -169602,7 +163853,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169634,9 +163884,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -169675,7 +163923,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169697,9 +163944,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -169741,7 +163986,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169763,9 +164007,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -169805,7 +164047,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169823,15 +164064,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -169840,15 +164079,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -169859,7 +164096,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -169906,7 +164142,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170131,7 +164366,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -170195,9 +164429,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -170237,7 +164469,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170259,9 +164490,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -170319,7 +164548,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170337,17 +164565,12 @@ export type PublicationQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -170387,7 +164610,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170405,14 +164627,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -170452,7 +164672,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170484,9 +164703,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -170525,7 +164742,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170547,9 +164763,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -170591,7 +164805,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170613,9 +164826,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -170655,7 +164866,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170673,15 +164883,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -170690,18 +164898,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -170712,7 +164915,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -170759,7 +164961,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171000,7 +165201,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -171064,9 +165264,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -171106,7 +165304,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171128,9 +165325,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -171188,7 +165383,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171206,17 +165400,12 @@ export type PublicationQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -171256,7 +165445,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171274,14 +165462,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -171321,7 +165507,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171353,9 +165538,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -171394,7 +165577,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171416,9 +165598,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -171460,7 +165640,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171482,9 +165661,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -171524,7 +165701,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171542,15 +165718,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -171559,18 +165733,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -171581,7 +165750,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171628,7 +165796,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -171883,7 +166050,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -171944,9 +166110,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -171986,7 +166150,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172008,9 +166171,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -172068,7 +166229,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172086,14 +166246,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -172133,7 +166291,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172151,14 +166308,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -172198,7 +166353,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172230,9 +166384,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -172271,7 +166423,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172293,9 +166444,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -172337,7 +166486,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172359,9 +166507,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -172401,7 +166547,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172419,15 +166564,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -172436,15 +166579,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -172455,7 +166596,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172502,7 +166642,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172740,7 +166879,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -172801,9 +166939,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -172843,7 +166979,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172865,9 +167000,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -172925,7 +167058,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -172943,14 +167075,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -172990,7 +167120,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173008,14 +167137,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -173055,7 +167182,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173087,9 +167213,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -173128,7 +167252,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173150,9 +167273,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -173194,7 +167315,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173216,9 +167336,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -173258,7 +167376,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173276,15 +167393,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -173293,15 +167408,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -173312,7 +167425,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173359,7 +167471,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173590,7 +167701,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -173645,9 +167755,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -173687,7 +167795,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173709,9 +167816,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -173763,7 +167868,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173781,14 +167885,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -173828,7 +167930,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173846,14 +167947,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -173893,7 +167992,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173922,9 +168020,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -173963,7 +168059,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -173985,9 +168080,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -174029,7 +168122,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174051,9 +168143,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -174093,7 +168183,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174111,15 +168200,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -174128,15 +168215,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -174147,7 +168232,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -174188,7 +168272,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174410,7 +168493,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -174471,9 +168553,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -174513,7 +168593,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174535,9 +168614,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -174595,7 +168672,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174613,14 +168689,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -174660,7 +168734,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174678,14 +168751,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -174725,7 +168796,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174757,9 +168827,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -174798,7 +168866,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174820,9 +168887,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -174864,7 +168929,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174886,9 +168950,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -174928,7 +168990,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -174946,15 +169007,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -174963,15 +169022,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -174982,7 +169039,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175029,7 +169085,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175267,7 +169322,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -175328,9 +169382,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -175370,7 +169422,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175392,9 +169443,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -175452,7 +169501,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175470,14 +169518,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -175517,7 +169563,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175535,14 +169580,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -175582,7 +169625,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175614,9 +169656,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -175655,7 +169695,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175677,9 +169716,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -175721,7 +169758,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175743,9 +169779,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -175785,7 +169819,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175803,15 +169836,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -175820,15 +169851,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -175839,7 +169868,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -175886,7 +169914,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176141,7 +170168,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -176196,9 +170222,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -176238,7 +170262,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176260,9 +170283,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -176314,7 +170335,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176332,14 +170352,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -176379,7 +170397,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176397,14 +170414,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -176444,7 +170459,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176473,9 +170487,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -176514,7 +170526,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176536,9 +170547,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -176580,7 +170589,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176602,9 +170610,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -176644,7 +170650,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176662,15 +170667,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -176679,15 +170682,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -176698,7 +170699,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -176739,7 +170739,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -176977,7 +170976,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -177032,9 +171030,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -177074,7 +171070,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -177096,9 +171091,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -177150,7 +171143,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -177168,14 +171160,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -177215,7 +171205,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -177233,14 +171222,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -177280,7 +171267,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -177309,9 +171295,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -177350,7 +171334,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -177372,9 +171355,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -177416,7 +171397,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -177438,9 +171418,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -177480,7 +171458,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -177498,15 +171475,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -177515,15 +171490,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -177534,7 +171507,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -177575,7 +171547,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -177814,7 +171785,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -177866,9 +171836,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -177899,7 +171867,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -177915,9 +171882,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -177960,7 +171925,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -177972,14 +171936,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -178010,7 +171972,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -178022,14 +171983,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -178060,7 +172019,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -178083,9 +172041,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -178115,7 +172071,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -178131,9 +172086,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -178166,7 +172119,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -178182,9 +172134,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -178215,7 +172165,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -178227,15 +172176,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -178244,15 +172191,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -178263,7 +172208,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -178295,7 +172239,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -178535,7 +172478,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -178590,9 +172532,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -178632,7 +172572,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -178654,9 +172593,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -178708,7 +172645,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -178726,14 +172662,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -178773,7 +172707,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -178791,14 +172724,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -178838,7 +172769,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -178867,9 +172797,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -178908,7 +172836,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -178930,9 +172857,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -178974,7 +172899,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -178996,9 +172920,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -179038,7 +172960,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179056,15 +172977,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -179073,15 +172992,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -179092,7 +173009,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -179133,7 +173049,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179355,7 +173270,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -179416,9 +173330,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -179458,7 +173370,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179480,9 +173391,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -179540,7 +173449,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179558,14 +173466,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -179605,7 +173511,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179623,14 +173528,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -179670,7 +173573,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179702,9 +173604,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -179743,7 +173643,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179765,9 +173664,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -179809,7 +173706,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179831,9 +173727,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -179873,7 +173767,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179891,15 +173784,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -179908,15 +173799,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -179927,7 +173816,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -179974,7 +173862,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180212,7 +174099,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -180273,9 +174159,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -180315,7 +174199,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180337,9 +174220,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -180397,7 +174278,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180415,14 +174295,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -180462,7 +174340,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180480,14 +174357,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -180527,7 +174402,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180559,9 +174433,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -180600,7 +174472,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180622,9 +174493,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -180666,7 +174535,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180688,9 +174556,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -180730,7 +174596,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180748,15 +174613,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -180765,15 +174628,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -180784,7 +174645,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -180831,7 +174691,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181086,7 +174945,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -181141,9 +174999,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -181183,7 +175039,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181205,9 +175060,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -181259,7 +175112,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181277,14 +175129,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -181324,7 +175174,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181342,14 +175191,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -181389,7 +175236,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181418,9 +175264,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -181459,7 +175303,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181481,9 +175324,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -181525,7 +175366,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181547,9 +175387,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -181589,7 +175427,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181607,15 +175444,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -181624,15 +175459,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -181643,7 +175476,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -181684,7 +175516,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -181922,7 +175753,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -181977,9 +175807,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -182019,7 +175847,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -182041,9 +175868,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -182095,7 +175920,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -182113,14 +175937,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -182160,7 +175982,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -182178,14 +175999,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -182225,7 +176044,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -182254,9 +176072,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -182295,7 +176111,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -182317,9 +176132,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -182361,7 +176174,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -182383,9 +176195,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -182425,7 +176235,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -182443,15 +176252,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -182460,15 +176267,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -182479,7 +176284,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -182520,7 +176324,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -182751,7 +176554,6 @@ export type PublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -182803,9 +176605,7 @@ export type PublicationQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -182836,7 +176636,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -182852,9 +176651,7 @@ export type PublicationQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -182897,7 +176694,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -182909,14 +176705,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -182947,7 +176741,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -182959,14 +176752,12 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -182997,7 +176788,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -183020,9 +176810,7 @@ export type PublicationQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -183052,7 +176840,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -183068,9 +176855,7 @@ export type PublicationQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -183103,7 +176888,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -183119,9 +176903,7 @@ export type PublicationQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -183152,7 +176934,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -183164,15 +176945,13 @@ export type PublicationQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -183181,15 +176960,13 @@ export type PublicationQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -183200,7 +176977,6 @@ export type PublicationQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -183232,7 +177008,6 @@ export type PublicationQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -183484,7 +177259,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -183542,9 +177316,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -183584,7 +177356,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -183606,9 +177377,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -183660,7 +177429,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -183678,14 +177446,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -183725,7 +177491,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -183743,14 +177508,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -183790,7 +177553,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -183819,9 +177581,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -183860,7 +177620,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -183882,9 +177641,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -183926,7 +177683,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -183948,9 +177704,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -183990,7 +177744,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184008,15 +177761,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -184025,15 +177776,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -184044,7 +177793,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -184085,7 +177833,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184307,7 +178054,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -184371,9 +178117,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -184413,7 +178157,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184435,9 +178178,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -184495,7 +178236,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184513,14 +178253,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -184560,7 +178298,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184578,14 +178315,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -184625,7 +178360,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184657,9 +178391,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -184698,7 +178430,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184720,9 +178451,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -184764,7 +178493,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184786,9 +178514,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -184828,7 +178554,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184846,15 +178571,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -184863,15 +178586,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -184882,7 +178603,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -184929,7 +178649,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185167,7 +178886,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -185231,9 +178949,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -185273,7 +178989,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185295,9 +179010,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -185355,7 +179068,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185373,14 +179085,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -185420,7 +179130,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185438,14 +179147,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -185485,7 +179192,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185517,9 +179223,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -185558,7 +179262,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185580,9 +179283,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -185624,7 +179325,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185646,9 +179346,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -185688,7 +179386,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185706,15 +179403,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -185723,15 +179418,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -185742,7 +179435,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -185789,7 +179481,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186044,7 +179735,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -186102,9 +179792,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -186144,7 +179832,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186166,9 +179853,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -186220,7 +179905,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186238,14 +179922,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -186285,7 +179967,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186303,14 +179984,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -186350,7 +180029,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186379,9 +180057,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -186420,7 +180096,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186442,9 +180117,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -186486,7 +180159,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186508,9 +180180,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -186550,7 +180220,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186568,15 +180237,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -186585,15 +180252,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -186604,7 +180269,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -186645,7 +180309,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -186883,7 +180546,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -186941,9 +180603,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -186983,7 +180643,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -187005,9 +180664,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -187059,7 +180716,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -187077,14 +180733,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -187124,7 +180778,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -187142,14 +180795,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -187189,7 +180840,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -187218,9 +180868,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -187259,7 +180907,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -187281,9 +180928,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -187325,7 +180970,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -187347,9 +180991,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -187389,7 +181031,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -187407,15 +181048,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -187424,15 +181063,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -187443,7 +181080,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -187484,7 +181120,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -187715,7 +181350,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -187767,9 +181401,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -187800,7 +181432,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -187816,9 +181447,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -187861,7 +181490,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -187873,14 +181501,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -187911,7 +181537,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -187923,14 +181548,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -187961,7 +181584,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -187984,9 +181606,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -188016,7 +181636,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -188032,9 +181651,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -188067,7 +181684,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -188083,9 +181699,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -188116,7 +181730,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -188128,15 +181741,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -188145,15 +181756,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -188164,7 +181773,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -188196,7 +181804,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -188412,7 +182019,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -188470,9 +182076,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -188512,7 +182116,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -188534,9 +182137,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -188588,7 +182189,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -188606,14 +182206,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -188653,7 +182251,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -188671,14 +182268,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -188718,7 +182313,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -188747,9 +182341,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -188788,7 +182380,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -188810,9 +182401,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -188854,7 +182443,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -188876,9 +182464,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -188918,7 +182504,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -188936,15 +182521,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -188953,15 +182536,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -188972,7 +182553,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -189013,7 +182593,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -189251,7 +182830,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -189309,9 +182887,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -189351,7 +182927,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -189373,9 +182948,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -189427,7 +183000,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -189445,14 +183017,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -189492,7 +183062,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -189510,14 +183079,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -189557,7 +183124,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -189586,9 +183152,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -189627,7 +183191,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -189649,9 +183212,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -189693,7 +183254,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -189715,9 +183275,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -189757,7 +183315,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -189775,15 +183332,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -189792,15 +183347,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -189811,7 +183364,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -189852,7 +183404,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190106,7 +183657,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -190176,7 +183726,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -190240,9 +183789,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -190282,7 +183829,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190304,9 +183850,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -190364,7 +183908,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190382,14 +183925,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -190429,7 +183970,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190447,14 +183987,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -190494,7 +184032,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190526,9 +184063,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -190567,7 +184102,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190589,9 +184123,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -190633,7 +184165,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190655,9 +184186,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -190697,7 +184226,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190715,15 +184243,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -190732,15 +184258,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -190751,7 +184275,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -190798,7 +184321,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191026,7 +184548,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -191090,9 +184611,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -191132,7 +184651,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191154,9 +184672,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -191214,7 +184730,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191232,17 +184747,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -191282,7 +184792,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191300,14 +184809,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -191347,7 +184854,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191379,9 +184885,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -191420,7 +184924,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191442,9 +184945,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -191486,7 +184987,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191508,9 +185008,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -191550,7 +185048,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191568,15 +185065,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -191585,18 +185080,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -191607,7 +185097,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191654,7 +185143,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -191898,7 +185386,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -191962,9 +185449,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -192004,7 +185489,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192026,9 +185510,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -192086,7 +185568,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192104,17 +185585,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -192154,7 +185630,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192172,14 +185647,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -192219,7 +185692,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192251,9 +185723,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -192292,7 +185762,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192314,9 +185783,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -192358,7 +185825,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192380,9 +185846,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -192422,7 +185886,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192440,15 +185903,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -192457,18 +185918,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -192479,7 +185935,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192526,7 +185981,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192781,7 +186235,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -192845,9 +186298,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -192887,7 +186338,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192909,9 +186359,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -192969,7 +186417,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -192987,14 +186434,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -193034,7 +186479,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193052,14 +186496,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -193099,7 +186541,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193131,9 +186572,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -193172,7 +186611,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193194,9 +186632,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -193238,7 +186674,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193260,9 +186695,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -193302,7 +186735,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193320,15 +186752,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -193337,15 +186767,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -193356,7 +186784,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193403,7 +186830,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193641,7 +187067,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -193705,9 +187130,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -193747,7 +187170,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193769,9 +187191,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -193829,7 +187249,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193847,14 +187266,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -193894,7 +187311,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193912,14 +187328,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -193959,7 +187373,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -193991,9 +187404,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -194032,7 +187443,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194054,9 +187464,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -194098,7 +187506,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194120,9 +187527,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -194162,7 +187567,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194180,15 +187584,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -194197,15 +187599,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -194216,7 +187616,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194263,7 +187662,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194494,7 +187892,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -194552,9 +187949,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -194594,7 +187989,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194616,9 +188010,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -194670,7 +188062,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194688,14 +188079,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -194735,7 +188124,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194753,14 +188141,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -194800,7 +188186,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194829,9 +188214,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -194870,7 +188253,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194892,9 +188274,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -194936,7 +188316,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -194958,9 +188337,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -195000,7 +188377,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195018,15 +188394,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -195035,15 +188409,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -195054,7 +188426,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -195095,7 +188466,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195317,7 +188687,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -195381,9 +188750,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -195423,7 +188790,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195445,9 +188811,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -195505,7 +188869,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195523,14 +188886,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -195570,7 +188931,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195588,14 +188948,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -195635,7 +188993,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195667,9 +189024,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -195708,7 +189063,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195730,9 +189084,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -195774,7 +189126,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195796,9 +189147,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -195838,7 +189187,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195856,15 +189204,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -195873,15 +189219,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -195892,7 +189236,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -195939,7 +189282,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196177,7 +189519,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -196241,9 +189582,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -196283,7 +189622,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196305,9 +189643,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -196365,7 +189701,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196383,14 +189718,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -196430,7 +189763,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196448,14 +189780,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -196495,7 +189825,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196527,9 +189856,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -196568,7 +189895,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196590,9 +189916,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -196634,7 +189958,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196656,9 +189979,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -196698,7 +190019,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196716,15 +190036,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -196733,15 +190051,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -196752,7 +190068,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -196799,7 +190114,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197054,7 +190368,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -197112,9 +190425,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -197154,7 +190465,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197176,9 +190486,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -197230,7 +190538,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197248,14 +190555,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -197295,7 +190600,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197313,14 +190617,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -197360,7 +190662,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197389,9 +190690,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -197430,7 +190729,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197452,9 +190750,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -197496,7 +190792,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197518,9 +190813,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -197560,7 +190853,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197578,15 +190870,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -197595,15 +190885,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -197614,7 +190902,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -197655,7 +190942,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -197893,7 +191179,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -197951,9 +191236,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -197993,7 +191276,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -198015,9 +191297,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -198069,7 +191349,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -198087,14 +191366,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -198134,7 +191411,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -198152,14 +191428,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -198199,7 +191473,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -198228,9 +191501,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -198269,7 +191540,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -198291,9 +191561,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -198335,7 +191603,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -198357,9 +191624,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -198399,7 +191664,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -198417,15 +191681,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -198434,15 +191696,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -198453,7 +191713,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -198494,7 +191753,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -198733,7 +191991,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -198785,9 +192042,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -198818,7 +192073,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -198834,9 +192088,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -198879,7 +192131,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -198891,14 +192142,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -198929,7 +192178,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -198941,14 +192189,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -198979,7 +192225,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -199002,9 +192247,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -199034,7 +192277,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -199050,9 +192292,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -199085,7 +192325,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -199101,9 +192340,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -199134,7 +192371,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -199146,15 +192382,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -199163,15 +192397,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -199182,7 +192414,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -199214,7 +192445,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -199454,7 +192684,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -199512,9 +192741,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -199554,7 +192781,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -199576,9 +192802,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -199630,7 +192854,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -199648,14 +192871,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -199695,7 +192916,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -199713,14 +192933,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -199760,7 +192978,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -199789,9 +193006,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -199830,7 +193045,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -199852,9 +193066,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -199896,7 +193108,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -199918,9 +193129,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -199960,7 +193169,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -199978,15 +193186,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -199995,15 +193201,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -200014,7 +193218,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -200055,7 +193258,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200277,7 +193479,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -200341,9 +193542,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -200383,7 +193582,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200405,9 +193603,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -200465,7 +193661,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200483,14 +193678,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -200530,7 +193723,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200548,14 +193740,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -200595,7 +193785,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200627,9 +193816,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -200668,7 +193855,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200690,9 +193876,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -200734,7 +193918,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200756,9 +193939,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -200798,7 +193979,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200816,15 +193996,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -200833,15 +194011,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -200852,7 +194028,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -200899,7 +194074,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201137,7 +194311,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -201201,9 +194374,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -201243,7 +194414,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201265,9 +194435,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -201325,7 +194493,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201343,14 +194510,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -201390,7 +194555,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201408,14 +194572,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -201455,7 +194617,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201487,9 +194648,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -201528,7 +194687,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201550,9 +194708,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -201594,7 +194750,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201616,9 +194771,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -201658,7 +194811,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201676,15 +194828,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -201693,15 +194843,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -201712,7 +194860,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -201759,7 +194906,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202014,7 +195160,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -202072,9 +195217,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -202114,7 +195257,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202136,9 +195278,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -202190,7 +195330,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202208,14 +195347,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -202255,7 +195392,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202273,14 +195409,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -202320,7 +195454,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202349,9 +195482,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -202390,7 +195521,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202412,9 +195542,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -202456,7 +195584,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202478,9 +195605,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -202520,7 +195645,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202538,15 +195662,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -202555,15 +195677,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -202574,7 +195694,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -202615,7 +195734,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202853,7 +195971,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -202911,9 +196028,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -202953,7 +196068,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -202975,9 +196089,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -203029,7 +196141,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -203047,14 +196158,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -203094,7 +196203,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -203112,14 +196220,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -203159,7 +196265,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -203188,9 +196293,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -203229,7 +196332,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -203251,9 +196353,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -203295,7 +196395,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -203317,9 +196416,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -203359,7 +196456,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -203377,15 +196473,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -203394,15 +196488,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -203413,7 +196505,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -203454,7 +196545,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -203685,7 +196775,6 @@ export type PublicationBookmarksQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -203737,9 +196826,7 @@ export type PublicationBookmarksQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -203770,7 +196857,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -203786,9 +196872,7 @@ export type PublicationBookmarksQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -203831,7 +196915,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -203843,14 +196926,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -203881,7 +196962,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -203893,14 +196973,12 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -203931,7 +197009,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -203954,9 +197031,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -203986,7 +197061,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -204002,9 +197076,7 @@ export type PublicationBookmarksQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -204037,7 +197109,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -204053,9 +197124,7 @@ export type PublicationBookmarksQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -204086,7 +197155,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -204098,15 +197166,13 @@ export type PublicationBookmarksQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -204115,15 +197181,13 @@ export type PublicationBookmarksQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -204134,7 +197198,6 @@ export type PublicationBookmarksQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -204166,7 +197229,6 @@ export type PublicationBookmarksQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -204420,7 +197482,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -204478,9 +197539,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -204520,7 +197579,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -204542,9 +197600,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -204596,7 +197652,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -204614,14 +197669,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -204661,7 +197714,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -204679,14 +197731,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -204726,7 +197776,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -204755,9 +197804,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -204796,7 +197843,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -204818,9 +197864,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -204862,7 +197906,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -204884,9 +197927,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -204926,7 +197967,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -204944,15 +197984,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -204961,15 +197999,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -204980,7 +198016,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -205021,7 +198056,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205243,7 +198277,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -205307,9 +198340,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -205349,7 +198380,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205371,9 +198401,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -205431,7 +198459,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205449,14 +198476,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -205496,7 +198521,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205514,14 +198538,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -205561,7 +198583,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205593,9 +198614,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -205634,7 +198653,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205656,9 +198674,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -205700,7 +198716,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205722,9 +198737,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -205764,7 +198777,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205782,15 +198794,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -205799,15 +198809,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -205818,7 +198826,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -205865,7 +198872,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206103,7 +199109,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -206167,9 +199172,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -206209,7 +199212,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206231,9 +199233,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -206291,7 +199291,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206309,14 +199308,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -206356,7 +199353,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206374,14 +199370,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -206421,7 +199415,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206453,9 +199446,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -206494,7 +199485,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206516,9 +199506,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -206560,7 +199548,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206582,9 +199569,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -206624,7 +199609,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206642,15 +199626,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -206659,15 +199641,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -206678,7 +199658,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206725,7 +199704,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -206980,7 +199958,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -207038,9 +200015,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -207080,7 +200055,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207102,9 +200076,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -207156,7 +200128,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207174,14 +200145,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -207221,7 +200190,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207239,14 +200207,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -207286,7 +200252,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207315,9 +200280,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -207356,7 +200319,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207378,9 +200340,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -207422,7 +200382,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207444,9 +200403,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -207486,7 +200443,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207504,15 +200460,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -207521,15 +200475,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -207540,7 +200492,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -207581,7 +200532,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207819,7 +200769,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -207877,9 +200826,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -207919,7 +200866,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -207941,9 +200887,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -207995,7 +200939,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -208013,14 +200956,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -208060,7 +201001,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -208078,14 +201018,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -208125,7 +201063,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -208154,9 +201091,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -208195,7 +201130,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -208217,9 +201151,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -208261,7 +201193,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -208283,9 +201214,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -208325,7 +201254,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -208343,15 +201271,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -208360,15 +201286,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -208379,7 +201303,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -208420,7 +201343,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -208651,7 +201573,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -208703,9 +201624,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -208736,7 +201655,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -208752,9 +201670,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -208797,7 +201713,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -208809,14 +201724,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -208847,7 +201760,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -208859,14 +201771,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -208897,7 +201807,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -208920,9 +201829,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -208952,7 +201859,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -208968,9 +201874,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -209003,7 +201907,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -209019,9 +201922,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -209052,7 +201953,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -209064,15 +201964,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -209081,15 +201979,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -209100,7 +201996,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -209132,7 +202027,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -209348,7 +202242,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -209406,9 +202299,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -209448,7 +202339,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -209470,9 +202360,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -209524,7 +202412,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -209542,14 +202429,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -209589,7 +202474,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -209607,14 +202491,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -209654,7 +202536,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -209683,9 +202564,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -209724,7 +202603,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -209746,9 +202624,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -209790,7 +202666,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -209812,9 +202687,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -209854,7 +202727,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -209872,15 +202744,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -209889,15 +202759,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -209908,7 +202776,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -209949,7 +202816,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -210187,7 +203053,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -210245,9 +203110,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -210287,7 +203150,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -210309,9 +203171,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -210363,7 +203223,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -210381,14 +203240,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -210428,7 +203285,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -210446,14 +203302,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -210493,7 +203347,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -210522,9 +203375,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -210563,7 +203414,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -210585,9 +203435,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -210629,7 +203477,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -210651,9 +203498,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -210693,7 +203538,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -210711,15 +203555,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -210728,15 +203570,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -210747,7 +203587,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -210788,7 +203627,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211042,7 +203880,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -211112,7 +203949,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -211176,9 +204012,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -211218,7 +204052,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211240,9 +204073,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -211300,7 +204131,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211318,14 +204148,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -211365,7 +204193,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211383,14 +204210,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -211430,7 +204255,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211462,9 +204286,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -211503,7 +204325,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211525,9 +204346,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -211569,7 +204388,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211591,9 +204409,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -211633,7 +204449,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211651,15 +204466,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -211668,15 +204481,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -211687,7 +204498,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211734,7 +204544,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -211962,7 +204771,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -212026,9 +204834,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -212068,7 +204874,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212090,9 +204895,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -212150,7 +204953,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212168,17 +204970,12 @@ export type PublicationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -212218,7 +205015,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212236,14 +205032,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -212283,7 +205077,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212315,9 +205108,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -212356,7 +205147,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212378,9 +205168,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -212422,7 +205210,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212444,9 +205231,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -212486,7 +205271,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212504,15 +205288,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -212521,18 +205303,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -212543,7 +205320,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212590,7 +205366,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212834,7 +205609,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -212898,9 +205672,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -212940,7 +205712,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -212962,9 +205733,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -213022,7 +205791,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213040,17 +205808,12 @@ export type PublicationsQuery = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -213090,7 +205853,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213108,14 +205870,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -213155,7 +205915,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213187,9 +205946,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -213228,7 +205985,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213250,9 +206006,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -213294,7 +206048,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213316,9 +206069,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -213358,7 +206109,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213376,15 +206126,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -213393,18 +206141,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -213415,7 +206158,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213462,7 +206204,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213717,7 +206458,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -213781,9 +206521,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -213823,7 +206561,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213845,9 +206582,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -213905,7 +206640,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213923,14 +206657,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -213970,7 +206702,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -213988,14 +206719,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -214035,7 +206764,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214067,9 +206795,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -214108,7 +206834,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214130,9 +206855,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -214174,7 +206897,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214196,9 +206918,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -214238,7 +206958,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214256,15 +206975,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -214273,15 +206990,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -214292,7 +207007,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214339,7 +207053,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214577,7 +207290,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -214641,9 +207353,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -214683,7 +207393,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214705,9 +207414,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -214765,7 +207472,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214783,14 +207489,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -214830,7 +207534,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214848,14 +207551,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -214895,7 +207596,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214927,9 +207627,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -214968,7 +207666,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -214990,9 +207687,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -215034,7 +207729,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215056,9 +207750,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -215098,7 +207790,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215116,15 +207807,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -215133,15 +207822,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -215152,7 +207839,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215199,7 +207885,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215430,7 +208115,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -215488,9 +208172,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -215530,7 +208212,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215552,9 +208233,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -215606,7 +208285,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215624,14 +208302,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -215671,7 +208347,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215689,14 +208364,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -215736,7 +208409,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215765,9 +208437,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -215806,7 +208476,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215828,9 +208497,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -215872,7 +208539,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215894,9 +208560,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -215936,7 +208600,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -215954,15 +208617,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -215971,15 +208632,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -215990,7 +208649,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -216031,7 +208689,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216253,7 +208910,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -216317,9 +208973,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -216359,7 +209013,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216381,9 +209034,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -216441,7 +209092,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216459,14 +209109,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -216506,7 +209154,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216524,14 +209171,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -216571,7 +209216,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216603,9 +209247,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -216644,7 +209286,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216666,9 +209307,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -216710,7 +209349,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216732,9 +209370,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -216774,7 +209410,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216792,15 +209427,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -216809,15 +209442,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -216828,7 +209459,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -216875,7 +209505,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217113,7 +209742,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -217177,9 +209805,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -217219,7 +209845,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217241,9 +209866,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -217301,7 +209924,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217319,14 +209941,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -217366,7 +209986,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217384,14 +210003,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -217431,7 +210048,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217463,9 +210079,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -217504,7 +210118,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217526,9 +210139,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -217570,7 +210181,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217592,9 +210202,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -217634,7 +210242,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217652,15 +210259,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -217669,15 +210274,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -217688,7 +210291,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217735,7 +210337,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -217990,7 +210591,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -218048,9 +210648,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -218090,7 +210688,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218112,9 +210709,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -218166,7 +210761,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218184,14 +210778,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -218231,7 +210823,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218249,14 +210840,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -218296,7 +210885,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218325,9 +210913,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -218366,7 +210952,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218388,9 +210973,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -218432,7 +211015,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218454,9 +211036,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -218496,7 +211076,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218514,15 +211093,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -218531,15 +211108,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -218550,7 +211125,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -218591,7 +211165,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218829,7 +211402,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -218887,9 +211459,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -218929,7 +211499,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -218951,9 +211520,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -219005,7 +211572,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -219023,14 +211589,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -219070,7 +211634,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -219088,14 +211651,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -219135,7 +211696,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -219164,9 +211724,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -219205,7 +211763,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -219227,9 +211784,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -219271,7 +211826,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -219293,9 +211847,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -219335,7 +211887,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -219353,15 +211904,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -219370,15 +211919,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -219389,7 +211936,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -219430,7 +211976,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -219669,7 +212214,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -219721,9 +212265,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -219754,7 +212296,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -219770,9 +212311,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -219815,7 +212354,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -219827,14 +212365,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -219865,7 +212401,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -219877,14 +212412,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -219915,7 +212448,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -219938,9 +212470,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -219970,7 +212500,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -219986,9 +212515,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -220021,7 +212548,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -220037,9 +212563,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -220070,7 +212594,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -220082,15 +212605,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -220099,15 +212620,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -220118,7 +212637,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -220150,7 +212668,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -220390,7 +212907,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -220448,9 +212964,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -220490,7 +213004,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -220512,9 +213025,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -220566,7 +213077,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -220584,14 +213094,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -220631,7 +213139,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -220649,14 +213156,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -220696,7 +213201,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -220725,9 +213229,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -220766,7 +213268,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -220788,9 +213289,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -220832,7 +213331,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -220854,9 +213352,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -220896,7 +213392,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -220914,15 +213409,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -220931,15 +213424,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -220950,7 +213441,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -220991,7 +213481,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221213,7 +213702,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -221277,9 +213765,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -221319,7 +213805,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221341,9 +213826,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -221401,7 +213884,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221419,14 +213901,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -221466,7 +213946,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221484,14 +213963,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -221531,7 +214008,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221563,9 +214039,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -221604,7 +214078,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221626,9 +214099,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -221670,7 +214141,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221692,9 +214162,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -221734,7 +214202,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221752,15 +214219,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -221769,15 +214234,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -221788,7 +214251,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -221835,7 +214297,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222073,7 +214534,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -222137,9 +214597,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -222179,7 +214637,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222201,9 +214658,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -222261,7 +214716,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222279,14 +214733,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -222326,7 +214778,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222344,14 +214795,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -222391,7 +214840,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222423,9 +214871,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -222464,7 +214910,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222486,9 +214931,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -222530,7 +214973,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222552,9 +214994,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -222594,7 +215034,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222612,15 +215051,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -222629,15 +215066,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -222648,7 +215083,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222695,7 +215129,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -222950,7 +215383,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -223008,9 +215440,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -223050,7 +215480,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223072,9 +215501,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -223126,7 +215553,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223144,14 +215570,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -223191,7 +215615,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223209,14 +215632,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -223256,7 +215677,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223285,9 +215705,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -223326,7 +215744,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223348,9 +215765,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -223392,7 +215807,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223414,9 +215828,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -223456,7 +215868,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223474,15 +215885,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -223491,15 +215900,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -223510,7 +215917,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -223551,7 +215957,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223789,7 +216194,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -223847,9 +216251,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -223889,7 +216291,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223911,9 +216312,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -223965,7 +216364,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -223983,14 +216381,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -224030,7 +216426,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -224048,14 +216443,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -224095,7 +216488,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -224124,9 +216516,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -224165,7 +216555,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -224187,9 +216576,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -224231,7 +216618,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -224253,9 +216639,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -224295,7 +216679,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -224313,15 +216696,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -224330,15 +216711,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -224349,7 +216728,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -224390,7 +216768,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -224621,7 +216998,6 @@ export type PublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -224673,9 +217049,7 @@ export type PublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -224706,7 +217080,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -224722,9 +217095,7 @@ export type PublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -224767,7 +217138,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -224779,14 +217149,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -224817,7 +217185,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -224829,14 +217196,12 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -224867,7 +217232,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -224890,9 +217254,7 @@ export type PublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -224922,7 +217284,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -224938,9 +217299,7 @@ export type PublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -224973,7 +217332,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -224989,9 +217347,7 @@ export type PublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -225022,7 +217378,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -225034,15 +217389,13 @@ export type PublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -225051,15 +217404,13 @@ export type PublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -225070,7 +217421,6 @@ export type PublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -225102,7 +217452,6 @@ export type PublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -225388,7 +217737,6 @@ export type SearchProfilesQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -225441,7 +217789,6 @@ export type SearchProfilesQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -225547,7 +217894,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -225605,9 +217951,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -225647,7 +217991,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -225669,9 +218012,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -225723,7 +218064,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -225741,14 +218081,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -225788,7 +218126,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -225806,14 +218143,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -225853,7 +218188,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -225882,9 +218216,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -225923,7 +218255,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -225945,9 +218276,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -225989,7 +218318,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226011,9 +218339,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -226053,7 +218379,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226071,15 +218396,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -226088,15 +218411,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -226107,7 +218428,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -226148,7 +218468,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226370,7 +218689,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -226434,9 +218752,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -226476,7 +218792,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226498,9 +218813,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -226558,7 +218871,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226576,14 +218888,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -226623,7 +218933,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226641,14 +218950,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -226688,7 +218995,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226720,9 +219026,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -226761,7 +219065,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226783,9 +219086,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -226827,7 +219128,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226849,9 +219149,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -226891,7 +219189,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226909,15 +219206,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -226926,15 +219221,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -226945,7 +219238,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -226992,7 +219284,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227230,7 +219521,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -227294,9 +219584,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -227336,7 +219624,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227358,9 +219645,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -227418,7 +219703,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227436,14 +219720,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -227483,7 +219765,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227501,14 +219782,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -227548,7 +219827,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227580,9 +219858,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -227621,7 +219897,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227643,9 +219918,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -227687,7 +219960,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227709,9 +219981,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -227751,7 +220021,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227769,15 +220038,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -227786,15 +220053,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -227805,7 +220070,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -227852,7 +220116,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228107,7 +220370,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -228165,9 +220427,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -228207,7 +220467,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228229,9 +220488,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -228283,7 +220540,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228301,14 +220557,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -228348,7 +220602,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228366,14 +220619,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -228413,7 +220664,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228442,9 +220692,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -228483,7 +220731,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228505,9 +220752,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -228549,7 +220794,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228571,9 +220815,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -228613,7 +220855,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228631,15 +220872,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -228648,15 +220887,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -228667,7 +220904,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -228708,7 +220944,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -228946,7 +221181,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -229004,9 +221238,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -229046,7 +221278,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -229068,9 +221299,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -229122,7 +221351,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -229140,14 +221368,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -229187,7 +221413,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -229205,14 +221430,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -229252,7 +221475,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -229281,9 +221503,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -229322,7 +221542,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -229344,9 +221563,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -229388,7 +221605,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -229410,9 +221626,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -229452,7 +221666,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -229470,15 +221683,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -229487,15 +221698,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -229506,7 +221715,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -229547,7 +221755,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -229778,7 +221985,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -229830,9 +222036,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -229863,7 +222067,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -229879,9 +222082,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -229924,7 +222125,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -229936,14 +222136,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -229974,7 +222172,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -229986,14 +222183,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -230024,7 +222219,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -230047,9 +222241,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -230079,7 +222271,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -230095,9 +222286,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -230130,7 +222319,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -230146,9 +222334,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -230179,7 +222365,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -230191,15 +222376,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -230208,15 +222391,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -230227,7 +222408,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -230259,7 +222439,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -230475,7 +222654,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -230533,9 +222711,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -230575,7 +222751,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -230597,9 +222772,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -230651,7 +222824,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -230669,14 +222841,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -230716,7 +222886,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -230734,14 +222903,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -230781,7 +222948,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -230810,9 +222976,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -230851,7 +223015,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -230873,9 +223036,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -230917,7 +223078,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -230939,9 +223099,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -230981,7 +223139,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -230999,15 +223156,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -231016,15 +223171,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -231035,7 +223188,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -231076,7 +223228,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -231314,7 +223465,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -231372,9 +223522,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -231414,7 +223562,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -231436,9 +223583,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -231490,7 +223635,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -231508,14 +223652,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -231555,7 +223697,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -231573,14 +223714,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -231620,7 +223759,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -231649,9 +223787,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -231690,7 +223826,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -231712,9 +223847,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -231756,7 +223889,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -231778,9 +223910,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -231820,7 +223950,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -231838,15 +223967,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -231855,15 +223982,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -231874,7 +223999,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -231915,7 +224039,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -232170,7 +224293,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -232222,9 +224344,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -232255,7 +224375,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232271,9 +224390,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -232316,7 +224433,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232328,14 +224444,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -232366,7 +224480,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232378,14 +224491,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -232416,7 +224527,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232439,9 +224549,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -232471,7 +224579,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232487,9 +224594,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -232522,7 +224627,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232538,9 +224642,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -232571,7 +224673,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232583,15 +224684,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -232600,15 +224699,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -232619,7 +224716,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232651,7 +224747,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -232891,7 +224986,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -232949,9 +225043,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -232991,7 +225083,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233013,9 +225104,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -233067,7 +225156,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233085,14 +225173,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -233132,7 +225218,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233150,14 +225235,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -233197,7 +225280,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233226,9 +225308,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -233267,7 +225347,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233289,9 +225368,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -233333,7 +225410,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233355,9 +225431,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -233397,7 +225471,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233415,15 +225488,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -233432,15 +225503,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -233451,7 +225520,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -233492,7 +225560,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233714,7 +225781,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -233778,9 +225844,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -233820,7 +225884,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233842,9 +225905,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -233902,7 +225963,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233920,14 +225980,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -233967,7 +226025,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -233985,14 +226042,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -234032,7 +226087,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234064,9 +226118,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -234105,7 +226157,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234127,9 +226178,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -234171,7 +226220,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234193,9 +226241,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -234235,7 +226281,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234253,15 +226298,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -234270,15 +226313,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -234289,7 +226330,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234336,7 +226376,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234574,7 +226613,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -234638,9 +226676,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -234680,7 +226716,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234702,9 +226737,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -234762,7 +226795,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234780,14 +226812,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -234827,7 +226857,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234845,14 +226874,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -234892,7 +226919,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234924,9 +226950,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -234965,7 +226989,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -234987,9 +227010,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -235031,7 +227052,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235053,9 +227073,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -235095,7 +227113,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235113,15 +227130,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -235130,15 +227145,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -235149,7 +227162,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235196,7 +227208,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235451,7 +227462,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -235509,9 +227519,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -235551,7 +227559,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235573,9 +227580,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -235627,7 +227632,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235645,14 +227649,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -235692,7 +227694,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235710,14 +227711,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -235757,7 +227756,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235786,9 +227784,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -235827,7 +227823,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235849,9 +227844,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -235893,7 +227886,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235915,9 +227907,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -235957,7 +227947,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -235975,15 +227964,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -235992,15 +227979,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -236011,7 +227996,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -236052,7 +228036,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -236290,7 +228273,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -236348,9 +228330,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -236390,7 +228370,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -236412,9 +228391,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -236466,7 +228443,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -236484,14 +228460,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -236531,7 +228505,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -236549,14 +228522,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -236596,7 +228567,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -236625,9 +228595,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -236666,7 +228634,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -236688,9 +228655,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -236732,7 +228697,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -236754,9 +228718,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -236796,7 +228758,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -236814,15 +228775,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -236831,15 +228790,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -236850,7 +228807,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -236891,7 +228847,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -237122,7 +229077,6 @@ export type SearchPublicationsQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -237174,9 +229128,7 @@ export type SearchPublicationsQuery = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -237207,7 +229159,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237223,9 +229174,7 @@ export type SearchPublicationsQuery = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -237268,7 +229217,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237280,14 +229228,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -237318,7 +229264,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237330,14 +229275,12 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -237368,7 +229311,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237391,9 +229333,7 @@ export type SearchPublicationsQuery = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -237423,7 +229363,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237439,9 +229378,7 @@ export type SearchPublicationsQuery = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -237474,7 +229411,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237490,9 +229426,7 @@ export type SearchPublicationsQuery = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -237523,7 +229457,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237535,15 +229468,13 @@ export type SearchPublicationsQuery = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -237552,15 +229483,13 @@ export type SearchPublicationsQuery = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -237571,7 +229500,6 @@ export type SearchPublicationsQuery = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237603,7 +229531,6 @@ export type SearchPublicationsQuery = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -237848,7 +229775,6 @@ export type WhoActedOnPublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -237945,7 +229871,6 @@ export type WhoHaveBlockedQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -238044,7 +229969,6 @@ export type WhoReactedPublicationQuery = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -238153,7 +230077,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -238216,7 +230139,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -238271,9 +230193,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -238313,7 +230233,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -238335,9 +230254,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -238389,7 +230306,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -238407,14 +230323,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -238454,7 +230368,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -238472,14 +230385,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -238519,7 +230430,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -238548,9 +230458,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -238589,7 +230497,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -238611,9 +230518,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -238655,7 +230560,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -238677,9 +230581,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -238719,7 +230621,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -238737,15 +230638,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -238754,15 +230653,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -238773,7 +230670,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -238814,7 +230710,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239036,7 +230931,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -239097,9 +230991,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -239139,7 +231031,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239161,9 +231052,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -239221,7 +231110,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239239,14 +231127,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -239286,7 +231172,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239304,14 +231189,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -239351,7 +231234,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239383,9 +231265,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -239424,7 +231304,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239446,9 +231325,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -239490,7 +231367,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239512,9 +231388,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -239554,7 +231428,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239572,15 +231445,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -239589,15 +231460,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -239608,7 +231477,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239655,7 +231523,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -239893,7 +231760,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -239954,9 +231820,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -239996,7 +231860,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240018,9 +231881,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -240078,7 +231939,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240096,14 +231956,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -240143,7 +232001,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240161,14 +232018,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -240208,7 +232063,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240240,9 +232094,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -240281,7 +232133,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240303,9 +232154,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -240347,7 +232196,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240369,9 +232217,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -240411,7 +232257,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240429,15 +232274,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -240446,15 +232289,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -240465,7 +232306,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240512,7 +232352,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240766,7 +232605,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -240839,7 +232677,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -240903,9 +232740,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -240945,7 +232780,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -240967,9 +232801,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -241027,7 +232859,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241045,17 +232876,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -241095,7 +232921,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241113,14 +232938,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -241160,7 +232983,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241192,9 +233014,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -241233,7 +233053,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241255,9 +233074,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -241299,7 +233116,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241321,9 +233137,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -241363,7 +233177,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241381,15 +233194,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -241398,18 +233209,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -241420,7 +233226,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241467,7 +233272,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241695,7 +233499,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -241759,9 +233562,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -241801,7 +233602,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241823,9 +233623,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -241883,7 +233681,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241901,17 +233698,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -241951,7 +233743,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -241969,17 +233760,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'EventMetadataV3'; - id: string; - } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -242019,7 +233805,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242051,9 +233836,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -242092,7 +233875,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242114,9 +233896,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -242158,7 +233938,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242180,9 +233959,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -242222,7 +233999,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242240,21 +234016,13 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'SpaceMetadataV3'; - id: string; - } - | { - __typename?: 'StoryMetadataV3'; - id: string; - } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -242263,21 +234031,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { - __typename?: 'ThreeDMetadataV3'; - id: string; - } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -242288,7 +234048,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242335,7 +234094,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242579,7 +234337,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -242643,9 +234400,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -242685,7 +234440,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242707,9 +234461,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -242767,7 +234519,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242785,17 +234536,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -242835,7 +234581,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242853,17 +234598,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'EventMetadataV3'; - id: string; - } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -242903,7 +234643,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242935,9 +234674,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -242976,7 +234713,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -242998,9 +234734,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -243042,7 +234776,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243064,9 +234797,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -243106,7 +234837,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243124,21 +234854,13 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'SpaceMetadataV3'; - id: string; - } - | { - __typename?: 'StoryMetadataV3'; - id: string; - } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -243147,21 +234869,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { - __typename?: 'ThreeDMetadataV3'; - id: string; - } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -243172,7 +234886,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243219,7 +234932,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243477,7 +235189,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -243541,9 +235252,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -243583,7 +235292,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243605,9 +235313,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -243665,7 +235371,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243683,17 +235388,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -243733,7 +235433,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243751,14 +235450,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -243798,7 +235495,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243830,9 +235526,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -243871,7 +235565,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243893,9 +235586,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -243937,7 +235628,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -243959,9 +235649,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -244001,7 +235689,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244019,15 +235706,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -244036,18 +235721,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -244058,7 +235738,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244105,7 +235784,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244346,7 +236024,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -244410,9 +236087,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -244452,7 +236127,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244474,9 +236148,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -244534,7 +236206,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244552,17 +236223,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -244602,7 +236268,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244620,14 +236285,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -244667,7 +236330,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244699,9 +236361,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -244740,7 +236400,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244762,9 +236421,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -244806,7 +236463,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244828,9 +236484,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -244870,7 +236524,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244888,15 +236541,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -244905,18 +236556,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -244927,7 +236573,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -244974,7 +236619,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245205,7 +236849,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -245266,9 +236909,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -245308,7 +236949,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245330,9 +236970,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -245390,7 +237028,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245408,14 +237045,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -245455,7 +237090,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245473,14 +237107,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -245520,7 +237152,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245552,9 +237183,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -245593,7 +237222,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245615,9 +237243,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -245659,7 +237285,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245681,9 +237306,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -245723,7 +237346,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245741,15 +237363,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -245758,15 +237378,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -245777,7 +237395,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -245824,7 +237441,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246049,7 +237665,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -246113,9 +237728,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -246155,7 +237768,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246177,9 +237789,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -246237,7 +237847,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246255,17 +237864,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -246305,7 +237909,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246323,14 +237926,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -246370,7 +237971,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246402,9 +238002,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -246443,7 +238041,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246465,9 +238062,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -246509,7 +238104,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246531,9 +238125,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -246573,7 +238165,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246591,15 +238182,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -246608,18 +238197,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -246630,7 +238214,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246677,7 +238260,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -246918,7 +238500,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -246982,9 +238563,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -247024,7 +238603,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247046,9 +238624,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -247106,7 +238682,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247124,17 +238699,12 @@ export type NewNotificationSubscription = { } > | null; } - | { - __typename?: 'CheckingInMetadataV3'; - id: string; - } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -247174,7 +238744,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247192,14 +238761,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -247239,7 +238806,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247271,9 +238837,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -247312,7 +238876,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247334,9 +238897,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -247378,7 +238939,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247400,9 +238960,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -247442,7 +239000,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247460,15 +239017,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -247477,18 +239032,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { - __typename?: 'TransactionMetadataV3'; - id: string; - } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -247499,7 +239049,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247546,7 +239095,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247801,7 +239349,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -247862,9 +239409,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -247904,7 +239449,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -247926,9 +239470,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -247986,7 +239528,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248004,14 +239545,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -248051,7 +239590,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248069,14 +239607,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -248116,7 +239652,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248148,9 +239683,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -248189,7 +239722,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248211,9 +239743,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -248255,7 +239785,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248277,9 +239806,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -248319,7 +239846,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248337,15 +239863,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -248354,15 +239878,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -248373,7 +239895,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248420,7 +239941,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248658,7 +240178,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -248719,9 +240238,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -248761,7 +240278,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248783,9 +240299,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -248843,7 +240357,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248861,14 +240374,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -248908,7 +240419,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -248926,14 +240436,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -248973,7 +240481,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249005,9 +240512,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -249046,7 +240551,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249068,9 +240572,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -249112,7 +240614,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249134,9 +240635,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -249176,7 +240675,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249194,15 +240692,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -249211,15 +240707,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -249230,7 +240724,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249277,7 +240770,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249516,7 +241008,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -249571,9 +241062,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -249613,7 +241102,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249635,9 +241123,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -249689,7 +241175,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249707,14 +241192,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -249754,7 +241237,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249772,14 +241254,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -249819,7 +241299,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249848,9 +241327,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -249889,7 +241366,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249911,9 +241387,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -249955,7 +241429,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -249977,9 +241450,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -250019,7 +241490,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250037,15 +241507,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -250054,15 +241522,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -250073,7 +241539,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -250114,7 +241579,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250365,7 +241829,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -250423,9 +241886,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -250465,7 +241926,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250487,9 +241947,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -250541,7 +241999,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250559,14 +242016,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -250606,7 +242061,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250624,14 +242078,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -250671,7 +242123,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250700,9 +242151,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -250741,7 +242190,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250763,9 +242211,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -250807,7 +242253,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250829,9 +242274,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -250871,7 +242314,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -250889,15 +242331,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -250906,15 +242346,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -250925,7 +242363,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -250966,7 +242403,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251188,7 +242624,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -251252,9 +242687,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -251294,7 +242727,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251316,9 +242748,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -251376,7 +242806,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251394,14 +242823,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -251441,7 +242868,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251459,14 +242885,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -251506,7 +242930,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251538,9 +242961,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -251579,7 +243000,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251601,9 +243021,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -251645,7 +243063,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251667,9 +243084,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -251709,7 +243124,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251727,15 +243141,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -251744,15 +243156,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -251763,7 +243173,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -251810,7 +243219,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252048,7 +243456,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -252112,9 +243519,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -252154,7 +243559,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252176,9 +243580,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -252236,7 +243638,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252254,14 +243655,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -252301,7 +243700,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252319,14 +243717,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -252366,7 +243762,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252398,9 +243793,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -252439,7 +243832,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252461,9 +243853,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -252505,7 +243895,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252527,9 +243916,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -252569,7 +243956,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252587,15 +243973,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -252604,15 +243988,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -252623,7 +244005,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252670,7 +244051,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -252925,7 +244305,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -252983,9 +244362,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -253025,7 +244402,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253047,9 +244423,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -253101,7 +244475,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253119,14 +244492,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -253166,7 +244537,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253184,14 +244554,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -253231,7 +244599,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253260,9 +244627,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -253301,7 +244666,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253323,9 +244687,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -253367,7 +244729,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253389,9 +244750,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -253431,7 +244790,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253449,15 +244807,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -253466,15 +244822,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -253485,7 +244839,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -253526,7 +244879,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253764,7 +245116,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -253822,9 +245173,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -253864,7 +245213,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253886,9 +245234,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -253940,7 +245286,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -253958,14 +245303,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -254005,7 +245348,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -254023,14 +245365,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -254070,7 +245410,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -254099,9 +245438,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -254140,7 +245477,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -254162,9 +245498,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -254206,7 +245540,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -254228,9 +245561,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -254270,7 +245601,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -254288,15 +245618,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -254305,15 +245633,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -254324,7 +245650,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -254365,7 +245690,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -254596,7 +245920,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -254648,9 +245971,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -254681,7 +246002,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -254697,9 +246017,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -254742,7 +246060,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -254754,14 +246071,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -254792,7 +246107,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -254804,14 +246118,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -254842,7 +246154,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -254865,9 +246176,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -254897,7 +246206,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -254913,9 +246221,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -254948,7 +246254,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -254964,9 +246269,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -254997,7 +246300,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -255009,15 +246311,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -255026,15 +246326,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -255045,7 +246343,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -255077,7 +246374,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -255293,7 +246589,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -255351,9 +246646,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -255393,7 +246686,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -255415,9 +246707,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -255469,7 +246759,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -255487,14 +246776,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -255534,7 +246821,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -255552,14 +246838,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -255599,7 +246883,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -255628,9 +246911,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -255669,7 +246950,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -255691,9 +246971,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -255735,7 +247013,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -255757,9 +247034,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -255799,7 +247074,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -255817,15 +247091,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -255834,15 +247106,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -255853,7 +247123,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -255894,7 +247163,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256132,7 +247400,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -256190,9 +247457,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -256232,7 +247497,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256254,9 +247518,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -256308,7 +247570,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256326,14 +247587,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -256373,7 +247632,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256391,14 +247649,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -256438,7 +247694,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256467,9 +247722,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -256508,7 +247761,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256530,9 +247782,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -256574,7 +247824,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256596,9 +247845,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -256638,7 +247885,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256656,15 +247902,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -256673,15 +247917,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -256692,7 +247934,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -256733,7 +247974,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -256983,7 +248223,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -257049,7 +248288,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -257104,9 +248342,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -257146,7 +248382,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257168,9 +248403,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -257222,7 +248455,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257240,14 +248472,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -257287,7 +248517,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257305,14 +248534,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -257352,7 +248579,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257381,9 +248607,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -257422,7 +248646,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257444,9 +248667,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -257488,7 +248709,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257510,9 +248730,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -257552,7 +248770,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257570,15 +248787,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -257587,15 +248802,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -257606,7 +248819,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -257647,7 +248859,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257869,7 +249080,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -257930,9 +249140,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -257972,7 +249180,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -257994,9 +249201,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -258054,7 +249259,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258072,14 +249276,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -258119,7 +249321,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258137,14 +249338,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -258184,7 +249383,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258216,9 +249414,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -258257,7 +249453,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258279,9 +249474,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -258323,7 +249516,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258345,9 +249537,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -258387,7 +249577,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258405,15 +249594,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -258422,15 +249609,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -258441,7 +249626,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258488,7 +249672,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258726,7 +249909,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -258787,9 +249969,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -258829,7 +250009,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258851,9 +250030,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -258911,7 +250088,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258929,14 +250105,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -258976,7 +250150,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -258994,14 +250167,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -259041,7 +250212,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259073,9 +250243,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -259114,7 +250282,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259136,9 +250303,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -259180,7 +250345,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259202,9 +250366,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -259244,7 +250406,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259262,15 +250423,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -259279,15 +250438,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -259298,7 +250455,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259345,7 +250501,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259600,7 +250755,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -259655,9 +250809,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -259697,7 +250849,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259719,9 +250870,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -259773,7 +250922,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259791,14 +250939,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -259838,7 +250984,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259856,14 +251001,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -259903,7 +251046,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259932,9 +251074,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -259973,7 +251113,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -259995,9 +251134,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -260039,7 +251176,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260061,9 +251197,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -260103,7 +251237,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260121,15 +251254,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -260138,15 +251269,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -260157,7 +251286,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -260198,7 +251326,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260436,7 +251563,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -260491,9 +251617,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -260533,7 +251657,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260555,9 +251678,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -260609,7 +251730,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260627,14 +251747,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -260674,7 +251792,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260692,14 +251809,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -260739,7 +251854,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260768,9 +251882,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -260809,7 +251921,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260831,9 +251942,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -260875,7 +251984,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260897,9 +252005,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -260939,7 +252045,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -260957,15 +252062,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -260974,15 +252077,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -260993,7 +252094,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -261034,7 +252134,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -261270,7 +252369,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -261333,7 +252431,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -261388,9 +252485,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -261430,7 +252525,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -261452,9 +252546,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -261506,7 +252598,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -261524,14 +252615,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -261571,7 +252660,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -261589,14 +252677,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -261636,7 +252722,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -261665,9 +252750,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -261706,7 +252789,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -261728,9 +252810,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -261772,7 +252852,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -261794,9 +252873,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -261836,7 +252913,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -261854,15 +252930,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -261871,15 +252945,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -261890,7 +252962,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -261931,7 +253002,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262153,7 +253223,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -262214,9 +253283,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -262256,7 +253323,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262278,9 +253344,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -262338,7 +253402,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262356,14 +253419,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -262403,7 +253464,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262421,14 +253481,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -262468,7 +253526,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262500,9 +253557,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -262541,7 +253596,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262563,9 +253617,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -262607,7 +253659,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262629,9 +253680,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -262671,7 +253720,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262689,15 +253737,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -262706,15 +253752,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -262725,7 +253769,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -262772,7 +253815,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263010,7 +254052,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -263071,9 +254112,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -263113,7 +254152,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263135,9 +254173,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -263195,7 +254231,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263213,14 +254248,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -263260,7 +254293,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263278,14 +254310,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -263325,7 +254355,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263357,9 +254386,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -263398,7 +254425,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263420,9 +254446,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -263464,7 +254488,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263486,9 +254509,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -263528,7 +254549,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263546,15 +254566,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -263563,15 +254581,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -263582,7 +254598,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263629,7 +254644,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -263884,7 +254898,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -263939,9 +254952,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -263981,7 +254992,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264003,9 +255013,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -264057,7 +255065,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264075,14 +255082,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -264122,7 +255127,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264140,14 +255144,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -264187,7 +255189,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264216,9 +255217,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -264257,7 +255256,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264279,9 +255277,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -264323,7 +255319,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264345,9 +255340,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -264387,7 +255380,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264405,15 +255397,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -264422,15 +255412,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -264441,7 +255429,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -264482,7 +255469,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264720,7 +255706,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -264775,9 +255760,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -264817,7 +255800,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264839,9 +255821,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -264893,7 +255873,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264911,14 +255890,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -264958,7 +255935,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -264976,14 +255952,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -265023,7 +255997,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265052,9 +256025,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -265093,7 +256064,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265115,9 +256085,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -265159,7 +256127,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265181,9 +256148,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -265223,7 +256188,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265241,15 +256205,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -265258,15 +256220,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -265277,7 +256237,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -265318,7 +256277,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265568,7 +256526,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -265626,9 +256583,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -265668,7 +256623,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265690,9 +256644,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -265744,7 +256696,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265762,14 +256713,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -265809,7 +256758,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265827,14 +256775,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -265874,7 +256820,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265903,9 +256848,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -265944,7 +256887,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -265966,9 +256908,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -266010,7 +256950,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266032,9 +256971,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -266074,7 +257011,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266092,15 +257028,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -266109,15 +257043,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -266128,7 +257060,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -266169,7 +257100,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266391,7 +257321,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -266455,9 +257384,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -266497,7 +257424,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266519,9 +257445,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -266579,7 +257503,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266597,14 +257520,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -266644,7 +257565,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266662,14 +257582,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -266709,7 +257627,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266741,9 +257658,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -266782,7 +257697,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266804,9 +257718,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -266848,7 +257760,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266870,9 +257781,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -266912,7 +257821,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -266930,15 +257838,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -266947,15 +257853,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -266966,7 +257870,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267013,7 +257916,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267251,7 +258153,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -267315,9 +258216,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -267357,7 +258256,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267379,9 +258277,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -267439,7 +258335,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267457,14 +258352,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -267504,7 +258397,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267522,14 +258414,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -267569,7 +258459,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267601,9 +258490,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -267642,7 +258529,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267664,9 +258550,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -267708,7 +258592,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267730,9 +258613,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -267772,7 +258653,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267790,15 +258670,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -267807,15 +258685,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -267826,7 +258702,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -267873,7 +258748,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268128,7 +259002,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -268186,9 +259059,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -268228,7 +259099,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268250,9 +259120,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -268304,7 +259172,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268322,14 +259189,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -268369,7 +259234,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268387,14 +259251,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -268434,7 +259296,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268463,9 +259324,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -268504,7 +259363,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268526,9 +259384,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -268570,7 +259426,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268592,9 +259447,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -268634,7 +259487,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268652,15 +259504,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -268669,15 +259519,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -268688,7 +259536,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -268729,7 +259576,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -268967,7 +259813,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -269025,9 +259870,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -269067,7 +259910,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -269089,9 +259931,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -269143,7 +259983,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -269161,14 +260000,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -269208,7 +260045,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -269226,14 +260062,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -269273,7 +260107,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -269302,9 +260135,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -269343,7 +260174,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -269365,9 +260195,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -269409,7 +260237,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -269431,9 +260258,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -269473,7 +260298,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -269491,15 +260315,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -269508,15 +260330,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -269527,7 +260347,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -269568,7 +260387,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -269799,7 +260617,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -269851,9 +260668,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -269884,7 +260699,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -269900,9 +260714,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -269945,7 +260757,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -269957,14 +260768,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -269995,7 +260804,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -270007,14 +260815,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -270045,7 +260851,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -270068,9 +260873,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -270100,7 +260903,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -270116,9 +260918,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -270151,7 +260951,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -270167,9 +260966,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -270200,7 +260997,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -270212,15 +261008,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -270229,15 +261023,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -270248,7 +261040,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -270280,7 +261071,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -270517,7 +261307,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -270572,9 +261361,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -270614,7 +261401,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -270636,9 +261422,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -270690,7 +261474,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -270708,14 +261491,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -270755,7 +261536,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -270773,14 +261553,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -270820,7 +261598,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -270849,9 +261626,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -270890,7 +261665,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -270912,9 +261686,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -270956,7 +261728,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -270978,9 +261749,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -271020,7 +261789,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271038,15 +261806,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -271055,15 +261821,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -271074,7 +261838,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -271115,7 +261878,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271337,7 +262099,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -271398,9 +262159,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -271440,7 +262199,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271462,9 +262220,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -271522,7 +262278,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271540,14 +262295,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -271587,7 +262340,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271605,14 +262357,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -271652,7 +262402,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271684,9 +262433,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -271725,7 +262472,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271747,9 +262493,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -271791,7 +262535,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271813,9 +262556,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -271855,7 +262596,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271873,15 +262613,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -271890,15 +262628,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -271909,7 +262645,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -271956,7 +262691,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272194,7 +262928,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -272255,9 +262988,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -272297,7 +263028,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272319,9 +263049,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -272379,7 +263107,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272397,14 +263124,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -272444,7 +263169,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272462,14 +263186,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -272509,7 +263231,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272541,9 +263262,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -272582,7 +263301,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272604,9 +263322,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -272648,7 +263364,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272670,9 +263385,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -272712,7 +263425,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272730,15 +263442,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -272747,15 +263457,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -272766,7 +263474,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -272813,7 +263520,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273068,7 +263774,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -273123,9 +263828,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -273165,7 +263868,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273187,9 +263889,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -273241,7 +263941,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273259,14 +263958,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -273306,7 +264003,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273324,14 +264020,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -273371,7 +264065,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273400,9 +264093,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -273441,7 +264132,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273463,9 +264153,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -273507,7 +264195,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273529,9 +264216,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -273571,7 +264256,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273589,15 +264273,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -273606,15 +264288,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -273625,7 +264305,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -273666,7 +264345,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -273904,7 +264582,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -273959,9 +264636,7 @@ export type NewNotificationSubscription = { __typename?: 'ArticleMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -274001,7 +264676,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -274023,9 +264697,7 @@ export type NewNotificationSubscription = { __typename?: 'AudioMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -274077,7 +264749,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -274095,14 +264766,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'CheckingInMetadataV3'; id: string } + | { __typename?: 'CheckingInMetadataV3' } | { __typename?: 'EmbedMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; embed: any; content: any; attributes?: Array<{ @@ -274142,7 +264811,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -274160,14 +264828,12 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'EventMetadataV3'; id: string } + | { __typename?: 'EventMetadataV3' } | { __typename?: 'ImageMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -274207,7 +264873,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -274236,9 +264901,7 @@ export type NewNotificationSubscription = { __typename?: 'LinkMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -274277,7 +264940,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -274299,9 +264961,7 @@ export type NewNotificationSubscription = { __typename?: 'LiveStreamMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; playbackURL: any; liveURL: any; title: string; @@ -274343,7 +265003,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -274365,9 +265024,7 @@ export type NewNotificationSubscription = { __typename?: 'MintMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; mintLink: any; content: any; attributes?: Array<{ @@ -274407,7 +265064,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -274425,15 +265081,13 @@ export type NewNotificationSubscription = { } > | null; } - | { __typename?: 'SpaceMetadataV3'; id: string } - | { __typename?: 'StoryMetadataV3'; id: string } + | { __typename?: 'SpaceMetadataV3' } + | { __typename?: 'StoryMetadataV3' } | { __typename?: 'TextOnlyMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; content: any; attributes?: Array<{ __typename?: 'MetadataAttribute'; @@ -274442,15 +265096,13 @@ export type NewNotificationSubscription = { value: string; }> | null; } - | { __typename?: 'ThreeDMetadataV3'; id: string } - | { __typename?: 'TransactionMetadataV3'; id: string } + | { __typename?: 'ThreeDMetadataV3' } + | { __typename?: 'TransactionMetadataV3' } | { __typename?: 'VideoMetadataV3'; id: string; rawURI: any; - locale: any; tags?: Array | null; - appId?: any | null; title: string; content: any; attributes?: Array<{ @@ -274461,7 +265113,6 @@ export type NewNotificationSubscription = { }> | null; asset: { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { __typename?: 'Video'; uri: any } | null; @@ -274502,7 +265153,6 @@ export type NewNotificationSubscription = { } | { __typename?: 'PublicationMetadataMediaVideo'; - duration?: number | null; video: { __typename?: 'EncryptableVideoSet'; optimized?: { @@ -274733,7 +265383,6 @@ export type NewNotificationSubscription = { displayName?: string | null; bio?: any | null; rawURI: any; - appId?: any | null; picture?: | { __typename?: 'ImageSet'; @@ -274824,7 +265473,6 @@ export const ProfileMetadataFieldsFragmentDoc = gql` displayName bio rawURI - appId picture { ... on ImageSet { ...ImageSetFields @@ -275089,7 +265737,6 @@ export const PublicationMetadataMediaVideoFieldsFragmentDoc = gql` uri } } - duration } `; export const PublicationMetadataMediaImageFieldsFragmentDoc = gql` @@ -275136,9 +265783,7 @@ export const VideoMetadataV3FieldsFragmentDoc = gql` fragment VideoMetadataV3Fields on VideoMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275159,9 +265804,7 @@ export const ArticleMetadataV3FieldsFragmentDoc = gql` fragment ArticleMetadataV3Fields on ArticleMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275178,9 +265821,7 @@ export const AudioMetadataV3FieldsFragmentDoc = gql` fragment AudioMetadataV3Fields on AudioMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275201,9 +265842,7 @@ export const EmbedMetadataV3FieldsFragmentDoc = gql` fragment EmbedMetadataV3Fields on EmbedMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275220,9 +265859,7 @@ export const ImageMetadataV3FieldsFragmentDoc = gql` fragment ImageMetadataV3Fields on ImageMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275232,13 +265869,6 @@ export const ImageMetadataV3FieldsFragmentDoc = gql` asset { ...PublicationMetadataMediaImageFields } - asset { - image { - optimized { - uri - } - } - } title content } @@ -275250,9 +265880,7 @@ export const LinkMetadataV3FieldsFragmentDoc = gql` fragment LinkMetadataV3Fields on LinkMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275268,9 +265896,7 @@ export const LiveStreamMetadataV3FieldsFragmentDoc = gql` fragment LiveStreamMetadataV3Fields on LiveStreamMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275289,9 +265915,7 @@ export const MintMetadataV3FieldsFragmentDoc = gql` fragment MintMetadataV3Fields on MintMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275308,9 +265932,7 @@ export const TextOnlyMetadataV3FieldsFragmentDoc = gql` fragment TextOnlyMetadataV3Fields on TextOnlyMetadataV3 { id rawURI - locale tags - appId attributes { ...MetadataAttributeFields } @@ -275329,15 +265951,9 @@ export const AnyPublicationMetadataFieldsFragmentDoc = gql` ... on AudioMetadataV3 { ...AudioMetadataV3Fields } - ... on CheckingInMetadataV3 { - id - } ... on EmbedMetadataV3 { ...EmbedMetadataV3Fields } - ... on EventMetadataV3 { - id - } ... on ImageMetadataV3 { ...ImageMetadataV3Fields } @@ -275350,21 +265966,9 @@ export const AnyPublicationMetadataFieldsFragmentDoc = gql` ... on MintMetadataV3 { ...MintMetadataV3Fields } - ... on SpaceMetadataV3 { - id - } - ... on StoryMetadataV3 { - id - } ... on TextOnlyMetadataV3 { ...TextOnlyMetadataV3Fields } - ... on ThreeDMetadataV3 { - id - } - ... on TransactionMetadataV3 { - id - } } ${VideoMetadataV3FieldsFragmentDoc} ${ArticleMetadataV3FieldsFragmentDoc} @@ -279089,7 +269693,6 @@ export const ApprovedAuthenticationsDocument = gql` items { authorizationId browser - device os origin expiresAt