|
@@ -1815,6 +1815,7 @@ export type Mutation = {
|
|
|
setAsLoggedOut: UserStatus,
|
|
setAsLoggedOut: UserStatus,
|
|
|
setUiLanguage?: Maybe<LanguageCode>,
|
|
setUiLanguage?: Maybe<LanguageCode>,
|
|
|
setActiveChannel: UserStatus,
|
|
setActiveChannel: UserStatus,
|
|
|
|
|
+ updateUserChannels: UserStatus,
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
@@ -2200,6 +2201,11 @@ export type MutationSetActiveChannelArgs = {
|
|
|
channelId: Scalars['ID']
|
|
channelId: Scalars['ID']
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+export type MutationUpdateUserChannelsArgs = {
|
|
|
|
|
+ channels: Array<CurrentUserChannelInput>
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export type NetworkStatus = {
|
|
export type NetworkStatus = {
|
|
|
__typename?: 'NetworkStatus',
|
|
__typename?: 'NetworkStatus',
|
|
|
inFlightRequests: Scalars['Int'],
|
|
inFlightRequests: Scalars['Int'],
|
|
@@ -3702,6 +3708,13 @@ export type SetActiveChannelMutationVariables = {
|
|
|
|
|
|
|
|
export type SetActiveChannelMutation = ({ __typename?: 'Mutation' } & { setActiveChannel: ({ __typename?: 'UserStatus' } & UserStatusFragment) });
|
|
export type SetActiveChannelMutation = ({ __typename?: 'Mutation' } & { setActiveChannel: ({ __typename?: 'UserStatus' } & UserStatusFragment) });
|
|
|
|
|
|
|
|
|
|
+export type UpdateUserChannelsMutationVariables = {
|
|
|
|
|
+ channels: Array<CurrentUserChannelInput>
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+export type UpdateUserChannelsMutation = ({ __typename?: 'Mutation' } & { updateUserChannels: ({ __typename?: 'UserStatus' } & UserStatusFragment) });
|
|
|
|
|
+
|
|
|
export type GetCollectionFiltersQueryVariables = {};
|
|
export type GetCollectionFiltersQueryVariables = {};
|
|
|
|
|
|
|
|
|
|
|
|
@@ -4315,6 +4328,13 @@ export type UpdateChannelMutationVariables = {
|
|
|
|
|
|
|
|
export type UpdateChannelMutation = ({ __typename?: 'Mutation' } & { updateChannel: ({ __typename?: 'Channel' } & ChannelFragment) });
|
|
export type UpdateChannelMutation = ({ __typename?: 'Mutation' } & { updateChannel: ({ __typename?: 'Channel' } & ChannelFragment) });
|
|
|
|
|
|
|
|
|
|
+export type DeleteChannelMutationVariables = {
|
|
|
|
|
+ id: Scalars['ID']
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+export type DeleteChannelMutation = ({ __typename?: 'Mutation' } & { deleteChannel: ({ __typename?: 'DeletionResponse' } & Pick<DeletionResponse, 'result' | 'message'>) });
|
|
|
|
|
+
|
|
|
export type PaymentMethodFragment = ({ __typename?: 'PaymentMethod' } & Pick<PaymentMethod, 'id' | 'createdAt' | 'updatedAt' | 'code' | 'enabled'> & { configArgs: Array<({ __typename?: 'ConfigArg' } & Pick<ConfigArg, 'name' | 'type' | 'value'>)> });
|
|
export type PaymentMethodFragment = ({ __typename?: 'PaymentMethod' } & Pick<PaymentMethod, 'id' | 'createdAt' | 'updatedAt' | 'code' | 'enabled'> & { configArgs: Array<({ __typename?: 'ConfigArg' } & Pick<ConfigArg, 'name' | 'type' | 'value'>)> });
|
|
|
|
|
|
|
|
export type GetPaymentMethodListQueryVariables = {
|
|
export type GetPaymentMethodListQueryVariables = {
|
|
@@ -4611,6 +4631,12 @@ export namespace SetActiveChannel {
|
|
|
export type SetActiveChannel = UserStatusFragment;
|
|
export type SetActiveChannel = UserStatusFragment;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export namespace UpdateUserChannels {
|
|
|
|
|
+ export type Variables = UpdateUserChannelsMutationVariables;
|
|
|
|
|
+ export type Mutation = UpdateUserChannelsMutation;
|
|
|
|
|
+ export type UpdateUserChannels = UserStatusFragment;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
export namespace GetCollectionFilters {
|
|
export namespace GetCollectionFilters {
|
|
|
export type Variables = GetCollectionFiltersQueryVariables;
|
|
export type Variables = GetCollectionFiltersQueryVariables;
|
|
|
export type Query = GetCollectionFiltersQuery;
|
|
export type Query = GetCollectionFiltersQuery;
|
|
@@ -5282,6 +5308,12 @@ export namespace UpdateChannel {
|
|
|
export type UpdateChannel = ChannelFragment;
|
|
export type UpdateChannel = ChannelFragment;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export namespace DeleteChannel {
|
|
|
|
|
+ export type Variables = DeleteChannelMutationVariables;
|
|
|
|
|
+ export type Mutation = DeleteChannelMutation;
|
|
|
|
|
+ export type DeleteChannel = DeleteChannelMutation['deleteChannel'];
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
export namespace PaymentMethod {
|
|
export namespace PaymentMethod {
|
|
|
export type Fragment = PaymentMethodFragment;
|
|
export type Fragment = PaymentMethodFragment;
|
|
|
export type ConfigArgs = (NonNullable<PaymentMethodFragment['configArgs'][0]>);
|
|
export type ConfigArgs = (NonNullable<PaymentMethodFragment['configArgs'][0]>);
|