Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [PAASB-8032] update sdk #24

Merged
merged 1 commit into from
Feb 15, 2023
Merged
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
12 changes: 3 additions & 9 deletions bff-sdk/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,10 +358,6 @@ export type QueryProposalArgs = {
name?: InputMaybe<Scalars['String']>;
};

export type QueryProposalsArgs = {
type?: InputMaybe<ProposalType>;
};

/** IBPCR 状态 */
export enum StatusType {
/** 正常 */
Expand Down Expand Up @@ -775,9 +771,7 @@ export type UpdateOrganizationMutation = {
};
};

export type GetProposalsQueryVariables = Exact<{
type?: InputMaybe<ProposalType>;
}>;
export type GetProposalsQueryVariables = Exact<{ [key: string]: never }>;

export type GetProposalsQuery = {
__typename?: 'Query';
Expand Down Expand Up @@ -1107,8 +1101,8 @@ export const UpdateOrganizationDocument = gql`
}
`;
export const GetProposalsDocument = gql`
query getProposals($type: ProposalType) {
proposals(type: $type) {
query getProposals {
proposals {
name
creationTimestamp
endAt
Expand Down