Skip to content

Commit

Permalink
feat: Enterprise#billingEmail (#889)
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot committed Jan 26, 2024
1 parent 9045a84 commit 1b3c7a8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6184,6 +6184,8 @@ export type Enterprise = AnnouncementBanner & Node & {
announcementUserDismissible?: Maybe<Scalars['Boolean']['output']>;
/** A URL pointing to the enterprise's public avatar. */
avatarUrl: Scalars['URI']['output'];
/** The enterprise's billing email. */
billingEmail?: Maybe<Scalars['String']['output']>;
/** Enterprise billing information visible to enterprise billing managers. */
billingInfo?: Maybe<EnterpriseBillingInfo>;
/** Identifies the date and time when the object was created. */
Expand Down
5 changes: 5 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -11966,6 +11966,11 @@ type Enterprise implements AnnouncementBanner & Node {
size: Int
): URI!

"""
The enterprise's billing email.
"""
billingEmail: String

"""
Enterprise billing information visible to enterprise billing managers.
"""
Expand Down
12 changes: 12 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30497,6 +30497,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "billingEmail",
"description": "The enterprise's billing email.",
"args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "billingInfo",
"description": "Enterprise billing information visible to enterprise billing managers.",
Expand Down

0 comments on commit 1b3c7a8

Please sign in to comment.