-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
internal(cli): get ci to green (#4983)
- Loading branch information
Showing
455 changed files
with
61,441 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/cli/ete-tests/src/tests/ir/__snapshots__/ir.test.ts.snap
Large diffs are not rendered by default.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
...definition/ir-to-jsonschema/src/__test__/__snapshots__/alias-extends/type__AliasType.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$ref": "#/definitions/Parent", | ||
"definitions": { | ||
"Parent": { | ||
"type": "object", | ||
"properties": { | ||
"parent": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"parent" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...ern-definition/ir-to-jsonschema/src/__test__/__snapshots__/alias-extends/type__Child.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"parent": { | ||
"type": "string" | ||
}, | ||
"child": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"parent", | ||
"child" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
13 changes: 13 additions & 0 deletions
13
...rn-definition/ir-to-jsonschema/src/__test__/__snapshots__/alias-extends/type__Parent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"parent": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"parent" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
24 changes: 24 additions & 0 deletions
24
...s/cli/fern-definition/ir-to-jsonschema/src/__test__/__snapshots__/alias/type__Object.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"$ref": "#/definitions/Type", | ||
"definitions": { | ||
"TypeId": { | ||
"type": "string" | ||
}, | ||
"Type": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"$ref": "#/definitions/TypeId" | ||
}, | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"name" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...ges/cli/fern-definition/ir-to-jsonschema/src/__test__/__snapshots__/alias/type__Type.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"$ref": "#/definitions/TypeId" | ||
}, | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"name" | ||
], | ||
"additionalProperties": false, | ||
"definitions": { | ||
"TypeId": { | ||
"type": "string" | ||
} | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
...s/cli/fern-definition/ir-to-jsonschema/src/__test__/__snapshots__/alias/type__TypeId.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "string", | ||
"definitions": {} | ||
} |
27 changes: 27 additions & 0 deletions
27
...inition/ir-to-jsonschema/src/__test__/__snapshots__/any-auth/type_auth_TokenResponse.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"access_token": { | ||
"type": "string" | ||
}, | ||
"expires_in": { | ||
"type": "integer" | ||
}, | ||
"refresh_token": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"access_token", | ||
"expires_in" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
17 changes: 17 additions & 0 deletions
17
.../fern-definition/ir-to-jsonschema/src/__test__/__snapshots__/any-auth/type_user_User.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"name" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
4 changes: 4 additions & 0 deletions
4
...finition/ir-to-jsonschema/src/__test__/__snapshots__/audiences/type_commons_Imported.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "string", | ||
"definitions": {} | ||
} |
47 changes: 47 additions & 0 deletions
47
...ir-to-jsonschema/src/__test__/__snapshots__/audiences/type_folder-a/service_Response.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"foo": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/folder-b.common.Foo" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"folder-c.common.FolderCFoo": { | ||
"type": "object", | ||
"properties": { | ||
"bar_property": { | ||
"type": "string", | ||
"format": "uuid" | ||
} | ||
}, | ||
"required": [ | ||
"bar_property" | ||
], | ||
"additionalProperties": false | ||
}, | ||
"folder-b.common.Foo": { | ||
"type": "object", | ||
"properties": { | ||
"foo": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/folder-c.common.FolderCFoo" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
...ition/ir-to-jsonschema/src/__test__/__snapshots__/audiences/type_folder-b/common_Foo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"foo": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/folder-c.common.FolderCFoo" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"folder-c.common.FolderCFoo": { | ||
"type": "object", | ||
"properties": { | ||
"bar_property": { | ||
"type": "string", | ||
"format": "uuid" | ||
} | ||
}, | ||
"required": [ | ||
"bar_property" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...r-to-jsonschema/src/__test__/__snapshots__/audiences/type_folder-c/common_FolderCFoo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"bar_property": { | ||
"type": "string", | ||
"format": "uuid" | ||
} | ||
}, | ||
"required": [ | ||
"bar_property" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
13 changes: 13 additions & 0 deletions
13
...ir-to-jsonschema/src/__test__/__snapshots__/audiences/type_folder-d/service_Response.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"foo": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"foo" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
23 changes: 23 additions & 0 deletions
23
...finition/ir-to-jsonschema/src/__test__/__snapshots__/audiences/type_foo_FilteredType.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"public_property": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"private_property": { | ||
"type": "integer" | ||
} | ||
}, | ||
"required": [ | ||
"private_property" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
17 changes: 17 additions & 0 deletions
17
...inition/ir-to-jsonschema/src/__test__/__snapshots__/audiences/type_foo_ImportingType.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"imported": { | ||
"$ref": "#/definitions/commons.Imported" | ||
} | ||
}, | ||
"required": [ | ||
"imported" | ||
], | ||
"additionalProperties": false, | ||
"definitions": { | ||
"commons.Imported": { | ||
"type": "string" | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...nition/ir-to-jsonschema/src/__test__/__snapshots__/audiences/type_foo_OptionalString.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"definitions": {} | ||
} |
13 changes: 13 additions & 0 deletions
13
...napshots__/basic-auth-environment-variables/type_errors_UnauthorizedRequestErrorBody.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"message": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"message" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
13 changes: 13 additions & 0 deletions
13
...chema/src/__test__/__snapshots__/basic-auth/type_errors_UnauthorizedRequestErrorBody.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"message": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"message" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
30 changes: 30 additions & 0 deletions
30
...-jsonschema/src/__test__/__snapshots__/circular-references-advanced/type__ImportingA.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"a": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/a.A" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"a.A": { | ||
"type": "object", | ||
"properties": { | ||
"s": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"s" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
Oops, something went wrong.