-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(seed): Regenerate seed (#5098)
Regen seed
- Loading branch information
1 parent
0eeebdb
commit dfd31f6
Showing
295 changed files
with
42,529 additions
and
3,248 deletions.
There are no files selected for viewing
3,002 changes: 1,461 additions & 1,541 deletions
3,002
generators/go-v2/dynamic-snippets/src/__test__/__snapshots__/ir.test.ts.snap
Large diffs are not rendered by default.
Oops, something went wrong.
3,760 changes: 3,760 additions & 0 deletions
3,760
...ages/cli/dynamic-snippets/src/__test__/test-definitions/csharp-grpc-proto-exhaustive.json
Large diffs are not rendered by default.
Oops, something went wrong.
655 changes: 655 additions & 0 deletions
655
packages/cli/dynamic-snippets/src/__test__/test-definitions/csharp-grpc-proto.json
Large diffs are not rendered by default.
Oops, something went wrong.
100 changes: 100 additions & 0 deletions
100
...r-to-jsonschema/src/__test__/__snapshots__/csharp-grpc-proto-exhaustive/type__Column.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,100 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"values": { | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
}, | ||
"metadata": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/Metadata" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"indexedData": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/IndexedData" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"values" | ||
], | ||
"additionalProperties": false, | ||
"definitions": { | ||
"MetadataValue": { | ||
"anyOf": [ | ||
{ | ||
"type": "number" | ||
}, | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "boolean" | ||
} | ||
] | ||
}, | ||
"Metadata": { | ||
"anyOf": [ | ||
{ | ||
"type": "object", | ||
"additionalProperties": { | ||
"$ref": "#/definitions/MetadataValue" | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": { | ||
"type": [ | ||
"string", | ||
"number", | ||
"boolean", | ||
"object", | ||
"array", | ||
"null" | ||
] | ||
} | ||
} | ||
] | ||
}, | ||
"IndexedData": { | ||
"type": "object", | ||
"properties": { | ||
"indices": { | ||
"type": "array", | ||
"items": { | ||
"type": "integer", | ||
"minimum": 0 | ||
} | ||
}, | ||
"values": { | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"indices", | ||
"values" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
...nschema/src/__test__/__snapshots__/csharp-grpc-proto-exhaustive/type__DeleteResponse.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,5 @@ | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
70 changes: 70 additions & 0 deletions
70
...chema/src/__test__/__snapshots__/csharp-grpc-proto-exhaustive/type__DescribeResponse.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,70 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"namespaces": { | ||
"oneOf": [ | ||
{ | ||
"type": "object", | ||
"additionalProperties": { | ||
"$ref": "#/definitions/NamespaceSummary" | ||
} | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"dimension": { | ||
"oneOf": [ | ||
{ | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"fullness": { | ||
"oneOf": [ | ||
{ | ||
"type": "number" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"totalCount": { | ||
"oneOf": [ | ||
{ | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"NamespaceSummary": { | ||
"type": "object", | ||
"properties": { | ||
"count": { | ||
"oneOf": [ | ||
{ | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
156 changes: 156 additions & 0 deletions
156
...onschema/src/__test__/__snapshots__/csharp-grpc-proto-exhaustive/type__FetchResponse.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,156 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"columns": { | ||
"oneOf": [ | ||
{ | ||
"type": "object", | ||
"additionalProperties": { | ||
"$ref": "#/definitions/Column" | ||
} | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"namespace": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"usage": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/Usage" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"MetadataValue": { | ||
"anyOf": [ | ||
{ | ||
"type": "number" | ||
}, | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "boolean" | ||
} | ||
] | ||
}, | ||
"Metadata": { | ||
"anyOf": [ | ||
{ | ||
"type": "object", | ||
"additionalProperties": { | ||
"$ref": "#/definitions/MetadataValue" | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": { | ||
"type": [ | ||
"string", | ||
"number", | ||
"boolean", | ||
"object", | ||
"array", | ||
"null" | ||
] | ||
} | ||
} | ||
] | ||
}, | ||
"IndexedData": { | ||
"type": "object", | ||
"properties": { | ||
"indices": { | ||
"type": "array", | ||
"items": { | ||
"type": "integer", | ||
"minimum": 0 | ||
} | ||
}, | ||
"values": { | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"indices", | ||
"values" | ||
], | ||
"additionalProperties": false | ||
}, | ||
"Column": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"values": { | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
}, | ||
"metadata": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/Metadata" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"indexedData": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/IndexedData" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"values" | ||
], | ||
"additionalProperties": false | ||
}, | ||
"Usage": { | ||
"type": "object", | ||
"properties": { | ||
"units": { | ||
"oneOf": [ | ||
{ | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...jsonschema/src/__test__/__snapshots__/csharp-grpc-proto-exhaustive/type__IndexedData.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 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"indices": { | ||
"type": "array", | ||
"items": { | ||
"type": "integer", | ||
"minimum": 0 | ||
} | ||
}, | ||
"values": { | ||
"type": "array", | ||
"items": { | ||
"type": "number" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"indices", | ||
"values" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
17 changes: 17 additions & 0 deletions
17
...jsonschema/src/__test__/__snapshots__/csharp-grpc-proto-exhaustive/type__ListElement.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": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
Oops, something went wrong.