forked from loafle/openapi-generator-original
[python-experimental] Allow schema instances to be passed in and pass additional schema validations (#12758)
* Converts all schema instances back into primitives in cast_to_allowed_types, fixes test test_deserialize_oneof_reference * Updates type hint * Adds validated_path_to_schemas input * Adds debugging, storess validated schemas in validated_path_to_schemas * Adds __process_schema_classes * Simplifies class creation for enums, True/False/None * Removes unused methods * Fixes two tests * Removes unneeded method _enum_by_value * Adds and uses validation_ran_earlier * Skips running validation if already ran, base_classes changed to seen_classes * Adds and uses validation_ran_earlier * Simplifies __get_simple_class * Casts None/True/False into NoneClass and BoolClass instances to make tpye checking and unique items checking simpler * Always cast file input to FileIO, removes __get_simple_class * Moves type checking to separate class * Moves validation checking into a _validate method * Moves enum value checking into SchemaEnumMaker's _validate method * Fixes test_dict_validate_direct_instantiation_cast_item * Removes spy_decorator * Fixed test_dict_validate_direct_instantiation * Fixes test_list_validate_direct_instantiation_cast_item * Fixes test_list_validate_direct_instantiation * Fixes test_list_validate_from_openai_data_instantiation * Fixes test_dict_validate_from_openapi_data_instantiation * Fixes test_upload_files * Samples regenerated * Reverts version file
This commit is contained in:
parent
35c31c129a
commit
d6b360d47f
@ -1127,7 +1127,10 @@ public class PythonExperimentalClientCodegen extends AbstractPythonCodegen {
|
|||||||
if ("int".equals(datatype) || "float".equals(datatype) || datatype.equals("int, float")) {
|
if ("int".equals(datatype) || "float".equals(datatype) || datatype.equals("int, float")) {
|
||||||
return value;
|
return value;
|
||||||
} else if ("bool".equals(datatype)) {
|
} else if ("bool".equals(datatype)) {
|
||||||
return value.substring(0, 1).toUpperCase(Locale.ROOT) + value.substring(1);
|
if (value.equals("true")) {
|
||||||
|
return "BoolClass.TRUE";
|
||||||
|
}
|
||||||
|
return "BoolClass.FALSE";
|
||||||
} else {
|
} else {
|
||||||
String fixedValue = (String) processTestExampleData(value);
|
String fixedValue = (String) processTestExampleData(value);
|
||||||
return ensureQuotes(fixedValue);
|
return ensureQuotes(fixedValue);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
_SchemaEnumMaker(
|
_SchemaEnumMaker(
|
||||||
enum_value_to_name={
|
enum_value_to_name={
|
||||||
{{#if isNull}}
|
{{#if isNull}}
|
||||||
None: "NONE",
|
NoneClass.NONE: "NONE",
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#with allowableValues}}
|
{{#with allowableValues}}
|
||||||
{{#each enumVars}}
|
{{#each enumVars}}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
@classmethod
|
@classmethod
|
||||||
@property
|
@property
|
||||||
def NONE(cls):
|
def NONE(cls):
|
||||||
return cls._enum_by_value[None](None)
|
return cls(None)
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#with allowableValues}}
|
{{#with allowableValues}}
|
||||||
{{#each enumVars}}
|
{{#each enumVars}}
|
||||||
|
@ -42,6 +42,8 @@ from {{packageName}}.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -12,7 +12,7 @@ class {{#if this.classname}}{{classname}}{{else}}{{#if nameInSnakeCase}}{{name}}
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#if getHasMultipleTypes}}
|
{{#if getHasMultipleTypes}}
|
||||||
_SchemaTypeChecker(typing.Union[{{#if isArray}}tuple, {{/if}}{{#if isMap}}frozendict, {{/if}}{{#if isNull}}none_type, {{/if}}{{#if isString}}str, {{/if}}{{#if isByteArray}}str, {{/if}}{{#if isUnboundedInteger}}decimal.Decimal, {{/if}}{{#if isShort}}decimal.Decimal, {{/if}}{{#if isLong}}decimal.Decimal, {{/if}}{{#if isFloat}}decimal.Decimal, {{/if}}{{#if isDouble}}decimal.Decimal, {{/if}}{{#if isNumber}}decimal.Decimal, {{/if}}{{#if isDate}}str, {{/if}}{{#if isDateTime}}str, {{/if}}{{#if isDecimal}}str, {{/if}}{{#if isBoolean}}bool, {{/if}}]),
|
_SchemaTypeChecker(typing.Union[{{#if isArray}}tuple, {{/if}}{{#if isMap}}frozendict, {{/if}}{{#if isNull}}NoneClass, {{/if}}{{#if isString}}str, {{/if}}{{#if isByteArray}}str, {{/if}}{{#if isUnboundedInteger}}decimal.Decimal, {{/if}}{{#if isShort}}decimal.Decimal, {{/if}}{{#if isLong}}decimal.Decimal, {{/if}}{{#if isFloat}}decimal.Decimal, {{/if}}{{#if isDouble}}decimal.Decimal, {{/if}}{{#if isNumber}}decimal.Decimal, {{/if}}{{#if isDate}}str, {{/if}}{{#if isDateTime}}str, {{/if}}{{#if isDecimal}}str, {{/if}}{{#if isBoolean}}BoolClass, {{/if}}]),
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if composedSchemas}}
|
{{#if composedSchemas}}
|
||||||
ComposedBase,
|
ComposedBase,
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
**bool** | | must be one of [False, ]
|
**bool** | | must be one of [BoolClass.FALSE, ]
|
||||||
|
|
||||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
**bool** | | must be one of [True, ]
|
**bool** | | must be one of [BoolClass.TRUE, ]
|
||||||
|
|
||||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
@ -69,7 +71,7 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
class EnumWithFalseDoesNotMatch0(
|
class EnumWithFalseDoesNotMatch0(
|
||||||
_SchemaEnumMaker(
|
_SchemaEnumMaker(
|
||||||
enum_value_to_name={
|
enum_value_to_name={
|
||||||
False: "FALSE",
|
BoolClass.FALSE: "FALSE",
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
BoolSchema
|
BoolSchema
|
||||||
@ -83,4 +85,4 @@ class EnumWithFalseDoesNotMatch0(
|
|||||||
@classmethod
|
@classmethod
|
||||||
@property
|
@property
|
||||||
def FALSE(cls):
|
def FALSE(cls):
|
||||||
return cls(False)
|
return cls(BoolClass.FALSE)
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
@ -69,7 +71,7 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
class EnumWithTrueDoesNotMatch1(
|
class EnumWithTrueDoesNotMatch1(
|
||||||
_SchemaEnumMaker(
|
_SchemaEnumMaker(
|
||||||
enum_value_to_name={
|
enum_value_to_name={
|
||||||
True: "TRUE",
|
BoolClass.TRUE: "TRUE",
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
BoolSchema
|
BoolSchema
|
||||||
@ -83,4 +85,4 @@ class EnumWithTrueDoesNotMatch1(
|
|||||||
@classmethod
|
@classmethod
|
||||||
@property
|
@property
|
||||||
def TRUE(cls):
|
def TRUE(cls):
|
||||||
return cls(True)
|
return cls(BoolClass.TRUE)
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -60,6 +60,8 @@ from unit_test_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
**bool** | | must be one of [True, ]
|
**bool** | | must be one of [BoolClass.TRUE, ]
|
||||||
|
|
||||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -58,6 +58,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -58,6 +58,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -58,6 +58,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -59,6 +59,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
@ -58,6 +58,8 @@ from petstore_api.schemas import ( # noqa: F401
|
|||||||
BoolBase,
|
BoolBase,
|
||||||
BinaryBase,
|
BinaryBase,
|
||||||
Schema,
|
Schema,
|
||||||
|
NoneClass,
|
||||||
|
BoolClass,
|
||||||
_SchemaValidator,
|
_SchemaValidator,
|
||||||
_SchemaTypeChecker,
|
_SchemaTypeChecker,
|
||||||
_SchemaEnumMaker
|
_SchemaEnumMaker
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user