Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ select_permissions:
- tenant_id
filter: {}
role: service-account
- comment: Allow voters to identify only the active publication containing their authorized elections.
- comment: >-
Allow voters to identify only the active publication containing their
authorized elections.
permission:
columns:
- deleted_at
Expand Down
Binary file modified packages/admin-portal/rust/sequent-core-0.1.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/admin-portal/src/gql/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { VotingStatusChannel } from '@sequentech/ui-core';
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
export type Maybe<T> = T | null;
export type InputMaybe<T> = T | null | undefined;
export type InputMaybe<T> = Maybe<T>;
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
Expand Down
Loading
Loading