You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schema.graphql
+12-2
Original file line number
Diff line number
Diff line change
@@ -5706,7 +5706,7 @@ type EnterpriseBillingInfo {
5706
5706
"""
5707
5707
The number of available seats across all owned organizations based on the unique number of billable users.
5708
5708
"""
5709
-
availableSeats: Int!
5709
+
availableSeats: Int! @deprecated(reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.")
5710
5710
5711
5711
"""
5712
5712
The bandwidth quota in GB for all organizations owned by the enterprise.
@@ -5726,7 +5726,7 @@ type EnterpriseBillingInfo {
5726
5726
"""
5727
5727
The total seats across all organizations owned by the enterprise.
5728
5728
"""
5729
-
seats: Int!
5729
+
seats: Int! @deprecated(reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.")
5730
5730
5731
5731
"""
5732
5732
The storage quota in GB for all organizations owned by the enterprise.
@@ -5742,6 +5742,16 @@ type EnterpriseBillingInfo {
5742
5742
The storage usage as a percentage of the storage quota.
5743
5743
"""
5744
5744
storageUsagePercentage: Int!
5745
+
5746
+
"""
5747
+
The number of available licenses across all owned organizations based on the unique number of billable users.
Copy file name to clipboardExpand all lines: schema.json
+36-4
Original file line number
Diff line number
Diff line change
@@ -44561,8 +44561,8 @@
44561
44561
"ofType": null
44562
44562
}
44563
44563
},
44564
-
"isDeprecated": false,
44565
-
"deprecationReason": null
44564
+
"isDeprecated": true,
44565
+
"deprecationReason": "`availableSeats` will be replaced with `totalAvailableLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC."
44566
44566
},
44567
44567
{
44568
44568
"name": "bandwidthQuota",
@@ -44625,8 +44625,8 @@
44625
44625
"ofType": null
44626
44626
}
44627
44627
},
44628
-
"isDeprecated": false,
44629
-
"deprecationReason": null
44628
+
"isDeprecated": true,
44629
+
"deprecationReason": "`seats` will be replaced with `totalLicenses` to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC."
44630
44630
},
44631
44631
{
44632
44632
"name": "storageQuota",
@@ -44675,6 +44675,38 @@
44675
44675
},
44676
44676
"isDeprecated": false,
44677
44677
"deprecationReason": null
44678
+
},
44679
+
{
44680
+
"name": "totalAvailableLicenses",
44681
+
"description": "The number of available licenses across all owned organizations based on the unique number of billable users.",
44682
+
"args": [],
44683
+
"type": {
44684
+
"kind": "NON_NULL",
44685
+
"name": null,
44686
+
"ofType": {
44687
+
"kind": "SCALAR",
44688
+
"name": "Int",
44689
+
"ofType": null
44690
+
}
44691
+
},
44692
+
"isDeprecated": false,
44693
+
"deprecationReason": null
44694
+
},
44695
+
{
44696
+
"name": "totalLicenses",
44697
+
"description": "The total number of licenses allocated.",
0 commit comments