-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1b326c
commit 546c04a
Showing
148 changed files
with
12,430 additions
and
838 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
62 changes: 62 additions & 0 deletions
62
.../src/__test__/__snapshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_A.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,62 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"b": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/deep-cursor-path.B" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"deep-cursor-path.D": { | ||
"type": "object", | ||
"properties": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"deep-cursor-path.C": { | ||
"type": "object", | ||
"properties": { | ||
"d": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/deep-cursor-path.D" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"deep-cursor-path.B": { | ||
"type": "object", | ||
"properties": { | ||
"c": { | ||
"$ref": "#/definitions/deep-cursor-path.C" | ||
} | ||
}, | ||
"required": [ | ||
"c" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
.../src/__test__/__snapshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_B.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,46 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"c": { | ||
"$ref": "#/definitions/deep-cursor-path.C" | ||
} | ||
}, | ||
"required": [ | ||
"c" | ||
], | ||
"additionalProperties": false, | ||
"definitions": { | ||
"deep-cursor-path.D": { | ||
"type": "object", | ||
"properties": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"deep-cursor-path.C": { | ||
"type": "object", | ||
"properties": { | ||
"d": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/deep-cursor-path.D" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
.../src/__test__/__snapshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_C.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,34 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"d": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/deep-cursor-path.D" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"deep-cursor-path.D": { | ||
"type": "object", | ||
"properties": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
.../src/__test__/__snapshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_D.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": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
26 changes: 26 additions & 0 deletions
26
...apshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_IndirectionRequired.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,26 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"results": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"results" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
62 changes: 62 additions & 0 deletions
62
..._test__/__snapshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_InlineA.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,62 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"b": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/deep-cursor-path.InlineB" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"deep-cursor-path.InlineD": { | ||
"type": "object", | ||
"properties": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"deep-cursor-path.InlineC": { | ||
"type": "object", | ||
"properties": { | ||
"b": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/deep-cursor-path.InlineD" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"deep-cursor-path.InlineB": { | ||
"type": "object", | ||
"properties": { | ||
"c": { | ||
"$ref": "#/definitions/deep-cursor-path.InlineC" | ||
} | ||
}, | ||
"required": [ | ||
"c" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
..._test__/__snapshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_InlineB.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,46 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"c": { | ||
"$ref": "#/definitions/deep-cursor-path.InlineC" | ||
} | ||
}, | ||
"required": [ | ||
"c" | ||
], | ||
"additionalProperties": false, | ||
"definitions": { | ||
"deep-cursor-path.InlineD": { | ||
"type": "object", | ||
"properties": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"deep-cursor-path.InlineC": { | ||
"type": "object", | ||
"properties": { | ||
"b": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/deep-cursor-path.InlineD" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
..._test__/__snapshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_InlineC.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,34 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"b": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/deep-cursor-path.InlineD" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": { | ||
"deep-cursor-path.InlineD": { | ||
"type": "object", | ||
"properties": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
..._test__/__snapshots__/java-pagination-deep-cursor-path/type_deep-cursor-path_InlineD.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": { | ||
"starting_after": { | ||
"oneOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
Oops, something went wrong.