mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-24 01:18:01 +02:00
Reverts Unleash/unleash#4633 because of https://github.com/Unleash/unleash/pull/4633#issuecomment-1710122769
64 lines
1.5 KiB
Plaintext
64 lines
1.5 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`apiTokenSchema empty 1`] = `
|
|
{
|
|
"errors": [
|
|
{
|
|
"instancePath": "",
|
|
"keyword": "required",
|
|
"message": "must have required property 'secret'",
|
|
"params": {
|
|
"missingProperty": "secret",
|
|
},
|
|
"schemaPath": "#/required",
|
|
},
|
|
{
|
|
"instancePath": "",
|
|
"keyword": "required",
|
|
"message": "must have required property 'tokenName'",
|
|
"params": {
|
|
"missingProperty": "tokenName",
|
|
},
|
|
"schemaPath": "#/required",
|
|
},
|
|
{
|
|
"instancePath": "",
|
|
"keyword": "required",
|
|
"message": "must have required property 'type'",
|
|
"params": {
|
|
"missingProperty": "type",
|
|
},
|
|
"schemaPath": "#/required",
|
|
},
|
|
{
|
|
"instancePath": "",
|
|
"keyword": "required",
|
|
"message": "must have required property 'project'",
|
|
"params": {
|
|
"missingProperty": "project",
|
|
},
|
|
"schemaPath": "#/required",
|
|
},
|
|
{
|
|
"instancePath": "",
|
|
"keyword": "required",
|
|
"message": "must have required property 'projects'",
|
|
"params": {
|
|
"missingProperty": "projects",
|
|
},
|
|
"schemaPath": "#/required",
|
|
},
|
|
{
|
|
"instancePath": "",
|
|
"keyword": "required",
|
|
"message": "must have required property 'createdAt'",
|
|
"params": {
|
|
"missingProperty": "createdAt",
|
|
},
|
|
"schemaPath": "#/required",
|
|
},
|
|
],
|
|
"schema": "#/components/schemas/apiTokenSchema",
|
|
}
|
|
`;
|