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

Update graphqlcodegenerator monorepo #338

Merged
merged 2 commits into from
Jul 10, 2022
Merged
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
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"graphql": "16.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.7.0",
"@graphql-codegen/import-types-preset": "2.1.21",
"@graphql-codegen/typescript": "2.6.0",
"@graphql-codegen/typescript-operations": "2.4.3",
"@graphql-codegen/cli": "2.8.0",
"@graphql-codegen/import-types-preset": "2.2.0",
"@graphql-codegen/typescript": "2.7.0",
"@graphql-codegen/typescript-operations": "2.5.0",
"@octokit/graphql-schema": "10.73.0",
"@tsconfig/node16": "1.0.3",
"@types/jest": "28.1.4",
Expand Down
20 changes: 8 additions & 12 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,15 @@ export type Scalars = {
Boolean: boolean;
Int: number;
Float: number;
/** A (potentially binary) string encoded using base64. */
Base64String: any;
/** An ISO-8601 encoded date string. */
Date: any;
/** An ISO-8601 encoded UTC date string. */
DateTime: any;
/** A Git object ID. */
GitObjectID: any;
/** Git SSH string */
GitSSHRemote: any;
/** An ISO-8601 encoded date string. Unlike the DateTime type, GitTimestamp is not converted in UTC. */
GitTimestamp: any;
/** A string containing HTML code. */
HTML: any;
/** An ISO-8601 encoded UTC date string with millisecond precision. */
PreciseDateTime: any;
/** An RFC 3986, RFC 3987, and RFC 6570 (level 4) compliant URI string. */
URI: any;
/** A valid x509 certificate string */
X509Certificate: any;
};

Expand Down Expand Up @@ -11840,7 +11830,10 @@ export type PackageTag = Node & {
export enum PackageType {
/** A debian package. */
Debian = 'DEBIAN',
/** A docker image. */
/**
* A docker image.
* @deprecated DOCKER will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2021-06-21 UTC.
*/
Docker = 'DOCKER',
/** A maven package. */
Maven = 'MAVEN',
Expand Down Expand Up @@ -16856,7 +16849,10 @@ export type RepositoryInvitationOrder = {
export enum RepositoryInvitationOrderField {
/** Order repository invitations by creation time */
CreatedAt = 'CREATED_AT',
/** Order repository invitations by invitee login */
/**
* Order repository invitations by invitee login
* @deprecated `INVITEE_LOGIN` is no longer a valid field value. Repository invitations can now be associated with an email, not only an invitee. Removal on 2020-10-01 UTC.
*/
InviteeLogin = 'INVITEE_LOGIN'
}

Expand Down
Loading