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: Adds property AnnouncementBanner.announcementCreatedAt #947

Merged
merged 2 commits into from
May 20, 2024
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
6 changes: 6 additions & 0 deletions schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,8 @@ export type AddedToProjectEvent = Node & {
export type AnnouncementBanner = {
/** The text of the announcement */
announcement?: Maybe<Scalars['String']['output']>;
/** The date the announcement was created */
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
/** The expiration date of the announcement, if any */
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
/** Whether the announcement can be dismissed by the user */
Expand Down Expand Up @@ -6480,6 +6482,8 @@ export type Enterprise = AnnouncementBanner & Node & {
__typename?: 'Enterprise';
/** The text of the announcement */
announcement?: Maybe<Scalars['String']['output']>;
/** The date the announcement was created */
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
/** The expiration date of the announcement, if any */
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
/** Whether the announcement can be dismissed by the user */
Expand Down Expand Up @@ -14725,6 +14729,8 @@ export type Organization = Actor & AnnouncementBanner & MemberStatusable & Node
__typename?: 'Organization';
/** The text of the announcement */
announcement?: Maybe<Scalars['String']['output']>;
/** The date the announcement was created */
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
/** The expiration date of the announcement, if any */
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
/** Whether the announcement can be dismissed by the user */
Expand Down
15 changes: 15 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1140,6 +1140,11 @@ interface AnnouncementBanner {
"""
announcement: String

"""
The date the announcement was created
"""
announcementCreatedAt: DateTime

"""
The expiration date of the announcement, if any
"""
Expand Down Expand Up @@ -12478,6 +12483,11 @@ type Enterprise implements AnnouncementBanner & Node {
"""
announcement: String

"""
The date the announcement was created
"""
announcementCreatedAt: DateTime

"""
The expiration date of the announcement, if any
"""
Expand Down Expand Up @@ -28150,6 +28160,11 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
"""
announcement: String

"""
The date the announcement was created
"""
announcementCreatedAt: DateTime

"""
The expiration date of the announcement, if any
"""
Expand Down
36 changes: 36 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2663,6 +2663,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "announcementCreatedAt",
"description": "The date the announcement was created",
"args": [],
"type": {
"kind": "SCALAR",
"name": "DateTime",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "announcementExpiresAt",
"description": "The expiration date of the announcement, if any",
Expand Down Expand Up @@ -31778,6 +31790,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "announcementCreatedAt",
"description": "The date the announcement was created",
"args": [],
"type": {
"kind": "SCALAR",
"name": "DateTime",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "announcementExpiresAt",
"description": "The expiration date of the announcement, if any",
Expand Down Expand Up @@ -73095,6 +73119,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "announcementCreatedAt",
"description": "The date the announcement was created",
"args": [],
"type": {
"kind": "SCALAR",
"name": "DateTime",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "announcementExpiresAt",
"description": "The expiration date of the announcement, if any",
Expand Down