Skip to content

Commit 4f1108e

Browse files
octokitbotOctokit Bot
andauthored
feat: Adds property AnnouncementBanner.announcementCreatedAt (#947)
* WIP: schema.graphql changed - please review * build: schema.json and schema.d.ts updated --------- Co-authored-by: Octokit Bot <octokitbot@martynus.net>
1 parent 5b662f5 commit 4f1108e

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

schema.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -681,6 +681,8 @@ export type AddedToProjectEvent = Node & {
681681
export type AnnouncementBanner = {
682682
/** The text of the announcement */
683683
announcement?: Maybe<Scalars['String']['output']>;
684+
/** The date the announcement was created */
685+
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
684686
/** The expiration date of the announcement, if any */
685687
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
686688
/** Whether the announcement can be dismissed by the user */
@@ -6480,6 +6482,8 @@ export type Enterprise = AnnouncementBanner & Node & {
64806482
__typename?: 'Enterprise';
64816483
/** The text of the announcement */
64826484
announcement?: Maybe<Scalars['String']['output']>;
6485+
/** The date the announcement was created */
6486+
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
64836487
/** The expiration date of the announcement, if any */
64846488
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
64856489
/** Whether the announcement can be dismissed by the user */
@@ -14725,6 +14729,8 @@ export type Organization = Actor & AnnouncementBanner & MemberStatusable & Node
1472514729
__typename?: 'Organization';
1472614730
/** The text of the announcement */
1472714731
announcement?: Maybe<Scalars['String']['output']>;
14732+
/** The date the announcement was created */
14733+
announcementCreatedAt?: Maybe<Scalars['DateTime']['output']>;
1472814734
/** The expiration date of the announcement, if any */
1472914735
announcementExpiresAt?: Maybe<Scalars['DateTime']['output']>;
1473014736
/** Whether the announcement can be dismissed by the user */

schema.graphql

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,6 +1140,11 @@ interface AnnouncementBanner {
11401140
"""
11411141
announcement: String
11421142

1143+
"""
1144+
The date the announcement was created
1145+
"""
1146+
announcementCreatedAt: DateTime
1147+
11431148
"""
11441149
The expiration date of the announcement, if any
11451150
"""
@@ -12478,6 +12483,11 @@ type Enterprise implements AnnouncementBanner & Node {
1247812483
"""
1247912484
announcement: String
1248012485

12486+
"""
12487+
The date the announcement was created
12488+
"""
12489+
announcementCreatedAt: DateTime
12490+
1248112491
"""
1248212492
The expiration date of the announcement, if any
1248312493
"""
@@ -28150,6 +28160,11 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
2815028160
"""
2815128161
announcement: String
2815228162

28163+
"""
28164+
The date the announcement was created
28165+
"""
28166+
announcementCreatedAt: DateTime
28167+
2815328168
"""
2815428169
The expiration date of the announcement, if any
2815528170
"""

schema.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2663,6 +2663,18 @@
26632663
"isDeprecated": false,
26642664
"deprecationReason": null
26652665
},
2666+
{
2667+
"name": "announcementCreatedAt",
2668+
"description": "The date the announcement was created",
2669+
"args": [],
2670+
"type": {
2671+
"kind": "SCALAR",
2672+
"name": "DateTime",
2673+
"ofType": null
2674+
},
2675+
"isDeprecated": false,
2676+
"deprecationReason": null
2677+
},
26662678
{
26672679
"name": "announcementExpiresAt",
26682680
"description": "The expiration date of the announcement, if any",
@@ -31778,6 +31790,18 @@
3177831790
"isDeprecated": false,
3177931791
"deprecationReason": null
3178031792
},
31793+
{
31794+
"name": "announcementCreatedAt",
31795+
"description": "The date the announcement was created",
31796+
"args": [],
31797+
"type": {
31798+
"kind": "SCALAR",
31799+
"name": "DateTime",
31800+
"ofType": null
31801+
},
31802+
"isDeprecated": false,
31803+
"deprecationReason": null
31804+
},
3178131805
{
3178231806
"name": "announcementExpiresAt",
3178331807
"description": "The expiration date of the announcement, if any",
@@ -73095,6 +73119,18 @@
7309573119
"isDeprecated": false,
7309673120
"deprecationReason": null
7309773121
},
73122+
{
73123+
"name": "announcementCreatedAt",
73124+
"description": "The date the announcement was created",
73125+
"args": [],
73126+
"type": {
73127+
"kind": "SCALAR",
73128+
"name": "DateTime",
73129+
"ofType": null
73130+
},
73131+
"isDeprecated": false,
73132+
"deprecationReason": null
73133+
},
7309873134
{
7309973135
"name": "announcementExpiresAt",
7310073136
"description": "The expiration date of the announcement, if any",

0 commit comments

Comments
 (0)