Skip to content

Commit 664e73e

Browse files
author
Nabil Lathiff
committed
Fixing PR errors.
1 parent 9e3dc07 commit 664e73e

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

specification/ai/data-plane/Face/preview/v1.3-preview.1/Face.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6676,6 +6676,10 @@
66766676
"$ref": "#/definitions/LivenessModel",
66776677
"description": "The model version used for liveness classification. This is an optional parameter, and if this is not specified, then the latest supported model version will be chosen"
66786678
},
6679+
"isAbuseMonitoringEnabled": {
6680+
"type": "boolean",
6681+
"description": "Denotes if the abuse monitoring feature was enabled during this session."
6682+
},
66796683
"results": {
66806684
"$ref": "#/definitions/LivenessWithVerifySessionResults",
66816685
"description": "The results of the liveness with verify session."
@@ -6708,11 +6712,24 @@
67086712
"error": {
67096713
"$ref": "#/definitions/LivenessError",
67106714
"description": "The error of the liveness with verify call, will be null if there is result."
6715+
},
6716+
"clientInformation": {
6717+
"type": "array",
6718+
"description": "The client information gathered during the liveness attempt.",
6719+
"items": {
6720+
"$ref": "#/definitions/ClientInformation"
6721+
},
6722+
"x-ms-identifiers": []
6723+
},
6724+
"abuseMonitoringResult": {
6725+
"$ref": "#/definitions/AbuseMonitoringResult",
6726+
"description": "The abuse monitoring result for the liveness attempt."
67116727
}
67126728
},
67136729
"required": [
67146730
"attemptId",
6715-
"attemptStatus"
6731+
"attemptStatus",
6732+
"clientInformation"
67166733
]
67176734
},
67186735
"LivenessWithVerifySessionResults": {

specification/ai/data-plane/Face/readme.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,14 @@ suppressions:
7373
from: Face.json
7474
reason: Use anonymous parameter to provide interface with flatten parameters
7575
```
76+
77+
### Release v1.3-preview.1
78+
These settings apply only when `--tag=v1.3-preview.1` is specified on the command line.
79+
``` yaml $(tag) == 'v1.3-preview.1'
80+
input-file:
81+
- preview/v1.3-preview.1/Face.json
82+
suppressions:
83+
- code: AvoidAnonymousParameter
84+
from: Face.json
85+
reason: Use anonymous parameter to provide interface with flatten parameters
86+
```

0 commit comments

Comments
 (0)