Skip to content

Commit

Permalink
feat(verifiedaccess): update the API
Browse files Browse the repository at this point in the history
#### verifiedaccess:v2

The following keys were added:
- schemas.DeviceSignals.properties.profileEnrollmentDomain.description
- schemas.DeviceSignals.properties.profileEnrollmentDomain.type
  • Loading branch information
yoshi-automation authored and sofisl committed May 2, 2024
1 parent cb9bc44 commit 33544fc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 5 additions & 1 deletion discovery/verifiedaccess-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
}
}
},
"revision": "20230807",
"revision": "20240423",
"rootUrl": "https://verifiedaccess.googleapis.com/",
"schemas": {
"Challenge": {
Expand Down Expand Up @@ -329,6 +329,10 @@
},
"type": "array"
},
"profileEnrollmentDomain": {
"description": "Enrollment domain of the customer which is currently managing the profile.",
"type": "string"
},
"realtimeUrlCheckMode": {
"description": "Whether Enterprise-grade (i.e. custom) unsafe URL scanning is enabled or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#EnterpriseRealTimeUrlCheckMode",
"enum": [
Expand Down
2 changes: 2 additions & 0 deletions src/apis/verifiedaccess/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ export namespace verifiedaccess_v1 {
{
url: (rootUrl + '/v1/challenge').replace(/([^:]\/)\/+/g, '$1'),
method: 'POST',
apiVersion: '',
},
options
),
Expand Down Expand Up @@ -359,6 +360,7 @@ export namespace verifiedaccess_v1 {
'$1'
),
method: 'POST',
apiVersion: '',
},
options
),
Expand Down
6 changes: 6 additions & 0 deletions src/apis/verifiedaccess/v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,10 @@ export namespace verifiedaccess_v2 {
* Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the Chrome Profile’s user or ChromeOS user.
*/
profileAffiliationIds?: string[] | null;
/**
* Enrollment domain of the customer which is currently managing the profile.
*/
profileEnrollmentDomain?: string | null;
/**
* Whether Enterprise-grade (i.e. custom) unsafe URL scanning is enabled or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#EnterpriseRealTimeUrlCheckMode
*/
Expand Down Expand Up @@ -422,6 +426,7 @@ export namespace verifiedaccess_v2 {
'$1'
),
method: 'POST',
apiVersion: '',
},
options
),
Expand Down Expand Up @@ -516,6 +521,7 @@ export namespace verifiedaccess_v2 {
'$1'
),
method: 'POST',
apiVersion: '',
},
options
),
Expand Down

0 comments on commit 33544fc

Please sign in to comment.