typia 8.0.3 → 8.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AssertionGuard.d.mts +1 -0
- package/lib/CamelCase.d.mts +26 -0
- package/lib/IRandomGenerator.d.mts +40 -0
- package/lib/IReadableURLSearchParams.d.mts +9 -0
- package/lib/IValidation.d.mts +1 -0
- package/lib/PascalCase.d.mts +25 -0
- package/lib/Primitive.d.mts +49 -0
- package/lib/Resolved.d.mts +39 -0
- package/lib/SnakeCase.d.mts +31 -0
- package/lib/TypeGuardError.d.mts +17 -0
- package/lib/executable/TypiaGenerateWizard.d.mts +8 -0
- package/lib/executable/TypiaPatchWizard.d.mts +4 -0
- package/lib/executable/TypiaSetupWizard.d.mts +7 -0
- package/lib/executable/setup/ArgumentParser.d.mts +7 -0
- package/lib/executable/setup/CommandExecutor.d.mts +3 -0
- package/lib/executable/setup/FileRetriever.d.mts +7 -0
- package/lib/executable/setup/PackageManager.d.mts +24 -0
- package/lib/executable/setup/PluginConfigurator.d.mts +4 -0
- package/lib/executable/typia.d.mts +4 -0
- package/lib/factories/CommentFactory.d.mts +5 -0
- package/lib/factories/ExpressionFactory.d.mts +29 -0
- package/lib/factories/IdentifierFactory.d.mts +8 -0
- package/lib/factories/JsonMetadataFactory.d.mts +19 -0
- package/lib/factories/LiteralFactory.d.mts +4 -0
- package/lib/factories/MetadataCollection.d.mts +40 -0
- package/lib/factories/MetadataCommentTagFactory.d.mts +1 -0
- package/lib/factories/MetadataFactory.d.mts +48 -0
- package/lib/factories/MetadataTypeTagFactory.d.mts +20 -0
- package/lib/factories/MetadataTypeTagSchemaFactory.d.mts +7 -0
- package/lib/factories/NumericRangeFactory.d.mts +6 -0
- package/lib/factories/ProtobufFactory.d.mts +13 -0
- package/lib/factories/StatementFactory.d.mts +19 -0
- package/lib/factories/TemplateFactory.d.mts +4 -0
- package/lib/factories/TypeFactory.d.mts +16 -0
- package/lib/factories/ValueFactory.d.mts +8 -0
- package/lib/factories/internal/metadata/IMetadataIteratorProps.d.mts +14 -0
- package/lib/factories/internal/metadata/MetadataHelper.d.mts +4 -0
- package/lib/factories/internal/metadata/emend_metadata_atomics.d.mts +2 -0
- package/lib/factories/internal/metadata/emplace_metadata_alias.d.mts +3 -0
- package/lib/factories/internal/metadata/emplace_metadata_array_type.d.mts +8 -0
- package/lib/factories/internal/metadata/emplace_metadata_object.d.mts +3 -0
- package/lib/factories/internal/metadata/emplace_metadata_tuple.d.mts +4 -0
- package/lib/factories/internal/metadata/explore_metadata.d.mts +8 -0
- package/lib/factories/internal/metadata/iterate_metadata.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_alias.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_array.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_atomic.d.mts +6 -0
- package/lib/factories/internal/metadata/iterate_metadata_coalesce.d.mts +6 -0
- package/lib/factories/internal/metadata/iterate_metadata_collection.d.mts +6 -0
- package/lib/factories/internal/metadata/iterate_metadata_comment_tags.d.mts +6 -0
- package/lib/factories/internal/metadata/iterate_metadata_constant.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_escape.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_function.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_intersection.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_map.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_native.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_object.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_set.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_sort.d.mts +6 -0
- package/lib/factories/internal/metadata/iterate_metadata_template.d.mts +2 -0
- package/lib/factories/internal/metadata/iterate_metadata_tuple.d.mts +3 -0
- package/lib/factories/internal/metadata/iterate_metadata_union.d.mts +2 -0
- package/lib/functional.d.mts +490 -0
- package/lib/http.d.mts +717 -0
- package/lib/index.d.mts +3 -0
- package/lib/internal/_IProtobufWriter.d.mts +15 -0
- package/lib/internal/_ProtobufReader.d.mts +35 -0
- package/lib/internal/_ProtobufSizer.d.mts +36 -0
- package/lib/internal/_ProtobufWriter.d.mts +45 -0
- package/lib/internal/_accessExpressionAsString.d.mts +1 -0
- package/lib/internal/_assertGuard.d.mts +2 -0
- package/lib/internal/_functionalTypeGuardErrorFactory.d.mts +2 -0
- package/lib/internal/_httpFormDataReadArray.d.mts +1 -0
- package/lib/internal/_httpFormDataReadBigint.d.mts +1 -0
- package/lib/internal/_httpFormDataReadBlob.d.mts +1 -0
- package/lib/internal/_httpFormDataReadBoolean.d.mts +1 -0
- package/lib/internal/_httpFormDataReadFile.d.mts +1 -0
- package/lib/internal/_httpFormDataReadNumber.d.mts +1 -0
- package/lib/internal/_httpFormDataReadString.d.mts +1 -0
- package/lib/internal/_httpHeaderReadBigint.d.mts +1 -0
- package/lib/internal/_httpHeaderReadBoolean.d.mts +1 -0
- package/lib/internal/_httpHeaderReadNumber.d.mts +1 -0
- package/lib/internal/_httpParameterReadBigint.d.mts +1 -0
- package/lib/internal/_httpParameterReadBoolean.d.mts +1 -0
- package/lib/internal/_httpParameterReadNumber.d.mts +1 -0
- package/lib/internal/_httpParameterReadString.d.mts +1 -0
- package/lib/internal/_httpQueryParseURLSearchParams.d.mts +2 -0
- package/lib/internal/_httpQueryReadArray.d.mts +1 -0
- package/lib/internal/_httpQueryReadBigint.d.mts +1 -0
- package/lib/internal/_httpQueryReadBoolean.d.mts +1 -0
- package/lib/internal/_httpQueryReadNumber.d.mts +1 -0
- package/lib/internal/_httpQueryReadString.d.mts +1 -0
- package/lib/internal/_isBetween.d.mts +1 -0
- package/lib/internal/_isBigintString.d.mts +1 -0
- package/lib/internal/_isFormatByte.d.mts +1 -0
- package/lib/internal/_isFormatDate.d.mts +1 -0
- package/lib/internal/_isFormatDateTime.d.mts +1 -0
- package/lib/internal/_isFormatDuration.d.mts +1 -0
- package/lib/internal/_isFormatEmail.d.mts +1 -0
- package/lib/internal/_isFormatHostname.d.mts +1 -0
- package/lib/internal/_isFormatIdnEmail.d.mts +1 -0
- package/lib/internal/_isFormatIdnHostname.d.mts +1 -0
- package/lib/internal/_isFormatIpv4.d.mts +1 -0
- package/lib/internal/_isFormatIpv6.d.mts +1 -0
- package/lib/internal/_isFormatIri.d.mts +1 -0
- package/lib/internal/_isFormatIriReference.d.mts +1 -0
- package/lib/internal/_isFormatJsonPointer.d.mts +1 -0
- package/lib/internal/_isFormatPassword.d.mts +1 -0
- package/lib/internal/_isFormatRegex.d.mts +1 -0
- package/lib/internal/_isFormatRelativeJsonPointer.d.mts +1 -0
- package/lib/internal/_isFormatTime.d.mts +1 -0
- package/lib/internal/_isFormatUri.d.mts +1 -0
- package/lib/internal/_isFormatUriReference.d.mts +1 -0
- package/lib/internal/_isFormatUriTemplate.d.mts +1 -0
- package/lib/internal/_isFormatUrl.d.mts +1 -0
- package/lib/internal/_isFormatUuid.d.mts +1 -0
- package/lib/internal/_isTypeFloat.d.mts +1 -0
- package/lib/internal/_isTypeInt32.d.mts +1 -0
- package/lib/internal/_isTypeInt64.d.mts +1 -0
- package/lib/internal/_isTypeUint32.d.mts +1 -0
- package/lib/internal/_isTypeUint64.d.mts +1 -0
- package/lib/internal/_isUniqueItems.d.mts +1 -0
- package/lib/internal/_jsonStringifyNumber.d.mts +1 -0
- package/lib/internal/_jsonStringifyRest.d.mts +1 -0
- package/lib/internal/_jsonStringifyString.d.mts +13 -0
- package/lib/internal/_jsonStringifyTail.d.mts +1 -0
- package/lib/internal/_llmApplicationFinalize.d.mts +2 -0
- package/lib/internal/_miscCloneAny.d.mts +2 -0
- package/lib/internal/_notationAny.d.mts +1 -0
- package/lib/internal/_notationCamel.d.mts +1 -0
- package/lib/internal/_notationPascal.d.mts +1 -0
- package/lib/internal/_notationSnake.d.mts +1 -0
- package/lib/internal/_randomArray.d.mts +4 -0
- package/lib/internal/_randomBigint.d.mts +2 -0
- package/lib/internal/_randomBoolean.d.mts +1 -0
- package/lib/internal/_randomFormatByte.d.mts +1 -0
- package/lib/internal/_randomFormatDate.d.mts +4 -0
- package/lib/internal/_randomFormatDatetime.d.mts +4 -0
- package/lib/internal/_randomFormatDuration.d.mts +1 -0
- package/lib/internal/_randomFormatEmail.d.mts +1 -0
- package/lib/internal/_randomFormatHostname.d.mts +1 -0
- package/lib/internal/_randomFormatIdnEmail.d.mts +1 -0
- package/lib/internal/_randomFormatIdnHostname.d.mts +1 -0
- package/lib/internal/_randomFormatIpv4.d.mts +1 -0
- package/lib/internal/_randomFormatIpv6.d.mts +1 -0
- package/lib/internal/_randomFormatIri.d.mts +1 -0
- package/lib/internal/_randomFormatIriReference.d.mts +1 -0
- package/lib/internal/_randomFormatJsonPointer.d.mts +1 -0
- package/lib/internal/_randomFormatPassword.d.mts +1 -0
- package/lib/internal/_randomFormatRegex.d.mts +1 -0
- package/lib/internal/_randomFormatRelativeJsonPointer.d.mts +1 -0
- package/lib/internal/_randomFormatTime.d.mts +1 -0
- package/lib/internal/_randomFormatUri.d.mts +1 -0
- package/lib/internal/_randomFormatUriReference.d.mts +1 -0
- package/lib/internal/_randomFormatUriTemplate.d.mts +1 -0
- package/lib/internal/_randomFormatUrl.d.mts +1 -0
- package/lib/internal/_randomFormatUuid.d.mts +1 -0
- package/lib/internal/_randomInteger.d.mts +2 -0
- package/lib/internal/_randomNumber.d.mts +2 -0
- package/lib/internal/_randomPattern.d.mts +1 -0
- package/lib/internal/_randomPick.d.mts +1 -0
- package/lib/internal/_randomString.d.mts +2 -0
- package/lib/internal/_throwTypeGuardError.d.mts +2 -0
- package/lib/internal/_validateReport.d.mts +2 -0
- package/lib/internal/private/__notationCapitalize.d.mts +1 -0
- package/lib/internal/private/__notationUnsnake.d.mts +4 -0
- package/lib/json.d.mts +480 -0
- package/lib/llm.d.mts +322 -0
- package/lib/misc.d.mts +453 -0
- package/lib/module.d.mts +707 -0
- package/lib/notations.d.mts +551 -0
- package/lib/programmers/AssertProgrammer.d.mts +31 -0
- package/lib/programmers/CheckerProgrammer.d.mts +125 -0
- package/lib/programmers/FeatureProgrammer.d.mts +249 -0
- package/lib/programmers/ImportProgrammer.d.mts +35 -0
- package/lib/programmers/IsProgrammer.d.mts +65 -0
- package/lib/programmers/RandomProgrammer.d.mts +22 -0
- package/lib/programmers/TypiaProgrammer.d.mts +8 -0
- package/lib/programmers/ValidateProgrammer.d.mts +22 -0
- package/lib/programmers/functional/FunctionalAssertFunctionProgrammer.d.mts +28 -0
- package/lib/programmers/functional/FunctionalAssertParametersProgrammer.d.mts +28 -0
- package/lib/programmers/functional/FunctionalAssertReturnProgrammer.d.mts +30 -0
- package/lib/programmers/functional/FunctionalIsFunctionProgrammer.d.mts +20 -0
- package/lib/programmers/functional/FunctionalIsParametersProgrammer.d.mts +27 -0
- package/lib/programmers/functional/FunctionalIsReturnProgrammer.d.mts +29 -0
- package/lib/programmers/functional/FunctionalValidateFunctionProgrammer.d.mts +25 -0
- package/lib/programmers/functional/FunctionalValidateParametersProgrammer.d.mts +27 -0
- package/lib/programmers/functional/FunctionalValidateReturnProgrammer.d.mts +29 -0
- package/lib/programmers/functional/internal/FunctionalGeneralProgrammer.d.mts +12 -0
- package/lib/programmers/helpers/AtomicPredicator.d.mts +14 -0
- package/lib/programmers/helpers/CloneJoiner.d.mts +16 -0
- package/lib/programmers/helpers/FunctionProgrammer.d.mts +16 -0
- package/lib/programmers/helpers/HttpMetadataUtil.d.mts +5 -0
- package/lib/programmers/helpers/ICheckEntry.d.mts +12 -0
- package/lib/programmers/helpers/IExpressionEntry.d.mts +8 -0
- package/lib/programmers/helpers/NotationJoiner.d.mts +17 -0
- package/lib/programmers/helpers/OptionPredicator.d.mts +7 -0
- package/lib/programmers/helpers/ProtobufUtil.d.mts +14 -0
- package/lib/programmers/helpers/ProtobufWire.d.mts +29 -0
- package/lib/programmers/helpers/PruneJoiner.d.mts +18 -0
- package/lib/programmers/helpers/RandomJoiner.d.mts +23 -0
- package/lib/programmers/helpers/StringifyJoinder.d.mts +17 -0
- package/lib/programmers/helpers/StringifyPredicator.d.mts +5 -0
- package/lib/programmers/helpers/UnionExplorer.d.mts +79 -0
- package/lib/programmers/helpers/UnionPredicator.d.mts +11 -0
- package/lib/programmers/helpers/disable_function_programmer_declare.d.mts +2 -0
- package/lib/programmers/http/HttpAssertFormDataProgrammer.d.mts +15 -0
- package/lib/programmers/http/HttpAssertHeadersProgrammer.d.mts +15 -0
- package/lib/programmers/http/HttpAssertQueryProgrammer.d.mts +19 -0
- package/lib/programmers/http/HttpFormDataProgrammer.d.mts +17 -0
- package/lib/programmers/http/HttpHeadersProgrammer.d.mts +18 -0
- package/lib/programmers/http/HttpIsFormDataProgrammer.d.mts +14 -0
- package/lib/programmers/http/HttpIsHeadersProgrammer.d.mts +14 -0
- package/lib/programmers/http/HttpIsQueryProgrammer.d.mts +18 -0
- package/lib/programmers/http/HttpParameterProgrammer.d.mts +7 -0
- package/lib/programmers/http/HttpQueryProgrammer.d.mts +21 -0
- package/lib/programmers/http/HttpValidateFormDataProgrammer.d.mts +15 -0
- package/lib/programmers/http/HttpValidateHeadersProgrammer.d.mts +15 -0
- package/lib/programmers/http/HttpValidateQueryProgrammer.d.mts +19 -0
- package/lib/programmers/internal/check_array_length.d.mts +1 -0
- package/lib/programmers/internal/check_bigint.d.mts +1 -0
- package/lib/programmers/internal/check_dynamic_key.d.mts +1 -0
- package/lib/programmers/internal/check_dynamic_properties.d.mts +1 -0
- package/lib/programmers/internal/check_everything.d.mts +1 -0
- package/lib/programmers/internal/check_native.d.mts +1 -0
- package/lib/programmers/internal/check_number.d.mts +1 -0
- package/lib/programmers/internal/check_object.d.mts +1 -0
- package/lib/programmers/internal/check_string.d.mts +1 -0
- package/lib/programmers/internal/check_template.d.mts +1 -0
- package/lib/programmers/internal/check_union_array_like.d.mts +1 -0
- package/lib/programmers/internal/decode_union_object.d.mts +1 -0
- package/lib/programmers/internal/feature_object_entries.d.mts +1 -0
- package/lib/programmers/internal/json_schema_alias.d.mts +7 -0
- package/lib/programmers/internal/json_schema_array.d.mts +6 -0
- package/lib/programmers/internal/json_schema_bigint.d.mts +3 -0
- package/lib/programmers/internal/json_schema_boolean.d.mts +3 -0
- package/lib/programmers/internal/json_schema_constant.d.mts +3 -0
- package/lib/programmers/internal/json_schema_description.d.mts +5 -0
- package/lib/programmers/internal/json_schema_discriminator.d.mts +3 -0
- package/lib/programmers/internal/json_schema_escaped.d.mts +1 -0
- package/lib/programmers/internal/json_schema_native.d.mts +6 -0
- package/lib/programmers/internal/json_schema_number.d.mts +3 -0
- package/lib/programmers/internal/json_schema_object.d.mts +1 -0
- package/lib/programmers/internal/json_schema_plugin.d.mts +6 -0
- package/lib/programmers/internal/json_schema_station.d.mts +8 -0
- package/lib/programmers/internal/json_schema_string.d.mts +3 -0
- package/lib/programmers/internal/json_schema_template.d.mts +3 -0
- package/lib/programmers/internal/json_schema_title.d.mts +5 -0
- package/lib/programmers/internal/json_schema_tuple.d.mts +6 -0
- package/lib/programmers/internal/metadata_to_pattern.d.mts +1 -0
- package/lib/programmers/internal/postfix_of_tuple.d.mts +1 -0
- package/lib/programmers/internal/prune_object_properties.d.mts +1 -0
- package/lib/programmers/internal/stringify_dynamic_properties.d.mts +1 -0
- package/lib/programmers/internal/stringify_native.d.mts +1 -0
- package/lib/programmers/internal/stringify_regular_properties.d.mts +1 -0
- package/lib/programmers/internal/template_to_pattern.d.mts +1 -0
- package/lib/programmers/internal/wrap_metadata_rest_tuple.d.mts +1 -0
- package/lib/programmers/json/JsonApplicationProgrammer.d.mts +24 -0
- package/lib/programmers/json/JsonAssertParseProgrammer.d.mts +15 -0
- package/lib/programmers/json/JsonAssertStringifyProgrammer.d.mts +15 -0
- package/lib/programmers/json/JsonIsParseProgrammer.d.mts +14 -0
- package/lib/programmers/json/JsonIsStringifyProgrammer.d.mts +14 -0
- package/lib/programmers/json/JsonSchemasProgrammer.d.mts +9 -0
- package/lib/programmers/json/JsonStringifyProgrammer.d.mts +15 -0
- package/lib/programmers/json/JsonValidateParseProgrammer.d.mts +15 -0
- package/lib/programmers/json/JsonValidateStringifyProgrammer.d.mts +15 -0
- package/lib/programmers/llm/LlmApplicationProgrammer.d.mts +19 -0
- package/lib/programmers/llm/LlmModelPredicator.d.mts +16 -0
- package/lib/programmers/llm/LlmParametersProgrammer.d.mts +14 -0
- package/lib/programmers/llm/LlmSchemaProgrammer.d.mts +18 -0
- package/lib/programmers/misc/MiscAssertCloneProgrammer.d.mts +15 -0
- package/lib/programmers/misc/MiscAssertPruneProgrammer.d.mts +15 -0
- package/lib/programmers/misc/MiscCloneProgrammer.d.mts +15 -0
- package/lib/programmers/misc/MiscIsCloneProgrammer.d.mts +14 -0
- package/lib/programmers/misc/MiscIsPruneProgrammer.d.mts +14 -0
- package/lib/programmers/misc/MiscLiteralsProgrammer.d.mts +9 -0
- package/lib/programmers/misc/MiscPruneProgrammer.d.mts +15 -0
- package/lib/programmers/misc/MiscValidateCloneProgrammer.d.mts +15 -0
- package/lib/programmers/misc/MiscValidatePruneProgrammer.d.mts +15 -0
- package/lib/programmers/notations/NotationAssertGeneralProgrammer.d.mts +19 -0
- package/lib/programmers/notations/NotationGeneralProgrammer.d.mts +24 -0
- package/lib/programmers/notations/NotationIsGeneralProgrammer.d.mts +18 -0
- package/lib/programmers/notations/NotationValidateGeneralProgrammer.d.mts +19 -0
- package/lib/programmers/protobuf/ProtobufAssertDecodeProgrammer.d.mts +16 -0
- package/lib/programmers/protobuf/ProtobufAssertEncodeProgrammer.d.mts +16 -0
- package/lib/programmers/protobuf/ProtobufDecodeProgrammer.d.mts +15 -0
- package/lib/programmers/protobuf/ProtobufEncodeProgrammer.d.mts +15 -0
- package/lib/programmers/protobuf/ProtobufIsDecodeProgrammer.d.mts +15 -0
- package/lib/programmers/protobuf/ProtobufIsEncodeProgrammer.d.mts +15 -0
- package/lib/programmers/protobuf/ProtobufMessageProgrammer.d.mts +9 -0
- package/lib/programmers/protobuf/ProtobufValidateDecodeProgrammer.d.mts +15 -0
- package/lib/programmers/protobuf/ProtobufValidateEncodeProgrammer.d.mts +15 -0
- package/lib/protobuf.d.mts +661 -0
- package/lib/reflect.d.mts +35 -0
- package/lib/schemas/json/IJsonApplication.d.mts +12 -0
- package/lib/schemas/json/IJsonSchemaCollection.d.mts +23 -0
- package/lib/schemas/json/__IJsonApplication.d.mts +35 -0
- package/lib/schemas/llm/ILlmApplicationOfValidate.d.mts +5 -0
- package/lib/schemas/llm/ILlmFunctionOfValidate.d.mts +5 -0
- package/lib/schemas/metadata/IJsDocTagInfo.d.mts +10 -0
- package/lib/schemas/metadata/IMetadata.d.mts +31 -0
- package/lib/schemas/metadata/IMetadataAlias.d.mts +5 -0
- package/lib/schemas/metadata/IMetadataAliasType.d.mts +10 -0
- package/lib/schemas/metadata/IMetadataApplication.d.mts +6 -0
- package/lib/schemas/metadata/IMetadataArray.d.mts +5 -0
- package/lib/schemas/metadata/IMetadataArrayType.d.mts +8 -0
- package/lib/schemas/metadata/IMetadataAtomic.d.mts +5 -0
- package/lib/schemas/metadata/IMetadataComponents.d.mts +10 -0
- package/lib/schemas/metadata/IMetadataConstant.d.mts +9 -0
- package/lib/schemas/metadata/IMetadataConstantValue.d.mts +9 -0
- package/lib/schemas/metadata/IMetadataDictionary.d.mts +10 -0
- package/lib/schemas/metadata/IMetadataEscaped.d.mts +5 -0
- package/lib/schemas/metadata/IMetadataFunction.d.mts +7 -0
- package/lib/schemas/metadata/IMetadataMap.d.mts +7 -0
- package/lib/schemas/metadata/IMetadataNative.d.mts +5 -0
- package/lib/schemas/metadata/IMetadataObject.d.mts +5 -0
- package/lib/schemas/metadata/IMetadataObjectType.d.mts +11 -0
- package/lib/schemas/metadata/IMetadataParameter.d.mts +8 -0
- package/lib/schemas/metadata/IMetadataProperty.d.mts +8 -0
- package/lib/schemas/metadata/IMetadataSet.d.mts +6 -0
- package/lib/schemas/metadata/IMetadataTemplate.d.mts +6 -0
- package/lib/schemas/metadata/IMetadataTuple.d.mts +5 -0
- package/lib/schemas/metadata/IMetadataTupleType.d.mts +8 -0
- package/lib/schemas/metadata/IMetadataTypeTag.d.mts +9 -0
- package/lib/schemas/metadata/Metadata.d.mts +50 -0
- package/lib/schemas/metadata/MetadataAlias.d.mts +13 -0
- package/lib/schemas/metadata/MetadataAliasType.d.mts +16 -0
- package/lib/schemas/metadata/MetadataApplication.d.mts +13 -0
- package/lib/schemas/metadata/MetadataArray.d.mts +16 -0
- package/lib/schemas/metadata/MetadataArrayType.d.mts +14 -0
- package/lib/schemas/metadata/MetadataAtomic.d.mts +12 -0
- package/lib/schemas/metadata/MetadataComponents.d.mts +16 -0
- package/lib/schemas/metadata/MetadataConstant.d.mts +11 -0
- package/lib/schemas/metadata/MetadataConstantValue.d.mts +16 -0
- package/lib/schemas/metadata/MetadataEscaped.d.mts +12 -0
- package/lib/schemas/metadata/MetadataFunction.d.mts +15 -0
- package/lib/schemas/metadata/MetadataMap.d.mts +14 -0
- package/lib/schemas/metadata/MetadataNative.d.mts +12 -0
- package/lib/schemas/metadata/MetadataObject.d.mts +16 -0
- package/lib/schemas/metadata/MetadataObjectType.d.mts +20 -0
- package/lib/schemas/metadata/MetadataParameter.d.mts +15 -0
- package/lib/schemas/metadata/MetadataProperty.d.mts +16 -0
- package/lib/schemas/metadata/MetadataSet.d.mts +13 -0
- package/lib/schemas/metadata/MetadataTemplate.d.mts +15 -0
- package/lib/schemas/metadata/MetadataTuple.d.mts +12 -0
- package/lib/schemas/metadata/MetadataTupleType.d.mts +13 -0
- package/lib/schemas/protobuf/IProtobufProperty.d.mts +5 -0
- package/lib/schemas/protobuf/IProtobufPropertyType.d.mts +28 -0
- package/lib/schemas/protobuf/IProtobufSchema.d.mts +38 -0
- package/lib/tags/Constant.d.mts +10 -0
- package/lib/tags/ContentMediaType.d.mts +9 -0
- package/lib/tags/Default.d.mts +14 -0
- package/lib/tags/Example.d.mts +14 -0
- package/lib/tags/Examples.d.mts +10 -0
- package/lib/tags/ExclusiveMaximum.d.mts +18 -0
- package/lib/tags/ExclusiveMinimum.d.mts +18 -0
- package/lib/tags/Format.d.mts +17 -0
- package/lib/tags/JsonSchemaPlugin.d.mts +7 -0
- package/lib/tags/MaxItems.d.mts +11 -0
- package/lib/tags/MaxLength.d.mts +11 -0
- package/lib/tags/Maximum.d.mts +16 -0
- package/lib/tags/MinItems.d.mts +11 -0
- package/lib/tags/MinLength.d.mts +11 -0
- package/lib/tags/Minimum.d.mts +16 -0
- package/lib/tags/MultipleOf.d.mts +16 -0
- package/lib/tags/Pattern.d.mts +22 -0
- package/lib/tags/Sequence.d.mts +9 -0
- package/lib/tags/TagBase.d.mts +60 -0
- package/lib/tags/Type.d.mts +17 -0
- package/lib/tags/UniqueItems.d.mts +11 -0
- package/lib/tags/index.d.mts +21 -0
- package/lib/tags/internal/FormatCheatSheet.d.mts +27 -0
- package/lib/transform.d.mts +5 -0
- package/lib/transformers/CallExpressionTransformer.d.mts +8 -0
- package/lib/transformers/FileTransformer.d.mts +5 -0
- package/lib/transformers/IProgrammerProps.d.mts +9 -0
- package/lib/transformers/ITransformOptions.d.mts +59 -0
- package/lib/transformers/ITransformProps.d.mts +7 -0
- package/lib/transformers/ITypiaContext.d.mts +15 -0
- package/lib/transformers/ImportTransformer.d.mts +7 -0
- package/lib/transformers/NodeTransformer.d.mts +8 -0
- package/lib/transformers/TransformerError.d.mts +15 -0
- package/lib/transformers/features/AssertTransformer.d.mts +5 -0
- package/lib/transformers/features/CreateAssertTransformer.d.mts +5 -0
- package/lib/transformers/features/CreateIsTransformer.d.mts +5 -0
- package/lib/transformers/features/CreateRandomTransformer.d.mts +5 -0
- package/lib/transformers/features/CreateValidateTransformer.d.mts +5 -0
- package/lib/transformers/features/IsTransformer.d.mts +5 -0
- package/lib/transformers/features/RandomTransformer.d.mts +5 -0
- package/lib/transformers/features/ValidateTransformer.d.mts +5 -0
- package/lib/transformers/features/functional/FunctionalGenericTransformer.d.mts +21 -0
- package/lib/transformers/features/http/CreateHttpAssertFormDataTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpAssertHeadersTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpAssertQueryTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpFormDataTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpHeadersTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpIsFormDataTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpIsHeadersTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpIsQueryTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpParameterTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpQueryTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpValidateFormDataTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpValidateHeadersTransformer.d.mts +4 -0
- package/lib/transformers/features/http/CreateHttpValidateQueryTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpAssertFormDataTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpAssertHeadersTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpAssertQueryTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpFormDataTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpHeadersTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpIsFormDataTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpIsHeadersTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpIsQueryTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpParameterTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpQueryTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpValidateFormDataTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpValidateHeadersTransformer.d.mts +4 -0
- package/lib/transformers/features/http/HttpValidateQueryTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonAssertParseTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonAssertStringifyTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonCreateAssertParseTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonCreateAssertStringifyTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonCreateIsParseTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonCreateIsStringifyTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonCreateStringifyTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonCreateValidateParseTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonCreateValidateStringifyProgrammer.d.mts +4 -0
- package/lib/transformers/features/json/JsonIsParseTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonIsStringifyTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonSchemasTransformer.d.mts +5 -0
- package/lib/transformers/features/json/JsonStringifyTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonValidateParseTransformer.d.mts +4 -0
- package/lib/transformers/features/json/JsonValidateStringifyTransformer.d.mts +4 -0
- package/lib/transformers/features/llm/LlmApplicationTransformer.d.mts +5 -0
- package/lib/transformers/features/llm/LlmParametersTransformer.d.mts +5 -0
- package/lib/transformers/features/llm/LlmSchemaTransformer.d.mts +5 -0
- package/lib/transformers/features/misc/MiscAssertCloneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscAssertPruneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCloneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCreateAssertCloneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCreateAssertPruneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCreateCloneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCreateIsCloneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCreateIsPruneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCreatePruneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCreateValidateCloneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscCreateValidatePruneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscIsCloneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscIsPruneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscLiteralsTransformer.d.mts +5 -0
- package/lib/transformers/features/misc/MiscPruneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscValidateCloneTransformer.d.mts +4 -0
- package/lib/transformers/features/misc/MiscValidatePruneTransformer.d.mts +4 -0
- package/lib/transformers/features/notations/NotationAssertGeneralTransformer.d.mts +4 -0
- package/lib/transformers/features/notations/NotationCreateAssertGeneralTransformer.d.mts +4 -0
- package/lib/transformers/features/notations/NotationCreateGeneralTransformer.d.mts +4 -0
- package/lib/transformers/features/notations/NotationCreateIsGeneralTransformer.d.mts +4 -0
- package/lib/transformers/features/notations/NotationCreateValidateGeneralTransformer.d.mts +4 -0
- package/lib/transformers/features/notations/NotationGeneralTransformer.d.mts +4 -0
- package/lib/transformers/features/notations/NotationIsGeneralTransformer.d.mts +4 -0
- package/lib/transformers/features/notations/NotationValidateGeneralTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufAssertDecodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufAssertEncodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufCreateAssertDecodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufCreateAssertEncodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufCreateDecodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufCreateEncodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufCreateIsDecodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufCreateIsEncodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufCreateValidateDecodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufCreateValidateEncodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufDecodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufEncodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufIsDecodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufIsEncodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufMessageTransformer.d.mts +5 -0
- package/lib/transformers/features/protobuf/ProtobufValidateDecodeTransformer.d.mts +4 -0
- package/lib/transformers/features/protobuf/ProtobufValidateEncodeTransformer.d.mts +4 -0
- package/lib/transformers/features/reflect/ReflectMetadataTransformer.d.mts +5 -0
- package/lib/transformers/features/reflect/ReflectNameTransformer.d.mts +5 -0
- package/lib/transformers/internal/GenericTransformer.d.mts +11 -0
- package/lib/typings/Atomic.d.mts +11 -0
- package/lib/typings/ClassProperties.d.mts +4 -0
- package/lib/typings/Customizable.d.mts +5 -0
- package/lib/typings/Equal.d.mts +15 -0
- package/lib/typings/IsTuple.d.mts +5 -0
- package/lib/typings/NativeClass.d.mts +1 -0
- package/lib/typings/OmitNever.d.mts +2 -0
- package/lib/typings/ProtobufAtomic.d.mts +5 -0
- package/lib/typings/SpecialFields.d.mts +3 -0
- package/lib/typings/ValidationPipe.d.mts +7 -0
- package/lib/typings/ValueOf.d.mts +6 -0
- package/lib/typings/Writable.d.mts +5 -0
- package/lib/utils/ArrayUtil.d.mts +7 -0
- package/lib/utils/Escaper.d.mts +4 -0
- package/lib/utils/MapUtil.d.mts +3 -0
- package/lib/utils/NamingConvention.d.mts +5 -0
- package/lib/utils/PatternUtil.d.mts +7 -0
- package/lib/utils/ProtobufNameEncoder.d.mts +4 -0
- package/lib/utils/Singleton.d.mts +6 -0
- package/lib/utils/StringUtil.d.mts +8 -0
- package/package.json +4 -5
package/lib/index.d.mts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface _IProtobufWriter {
|
|
2
|
+
bool(value: boolean): void;
|
|
3
|
+
int32(value: number): void;
|
|
4
|
+
sint32(value: number): void;
|
|
5
|
+
uint32(value: number): void;
|
|
6
|
+
int64(value: bigint | number): void;
|
|
7
|
+
sint64(value: bigint | number): void;
|
|
8
|
+
uint64(value: bigint | number): void;
|
|
9
|
+
float(value: number): void;
|
|
10
|
+
double(value: number): void;
|
|
11
|
+
bytes(value: Uint8Array): void;
|
|
12
|
+
string(value: string): void;
|
|
13
|
+
fork(): void;
|
|
14
|
+
ldelim(): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ProtobufWire } from "../programmers/helpers/ProtobufWire";
|
|
2
|
+
export declare class _ProtobufReader {
|
|
3
|
+
/**
|
|
4
|
+
* Read buffer
|
|
5
|
+
*/
|
|
6
|
+
private buf;
|
|
7
|
+
/**
|
|
8
|
+
* Read buffer pointer.
|
|
9
|
+
*/
|
|
10
|
+
private ptr;
|
|
11
|
+
/**
|
|
12
|
+
* DataView for buffer.
|
|
13
|
+
*/
|
|
14
|
+
private view;
|
|
15
|
+
constructor(buf: Uint8Array);
|
|
16
|
+
index(): number;
|
|
17
|
+
size(): number;
|
|
18
|
+
uint32(): number;
|
|
19
|
+
int32(): number;
|
|
20
|
+
sint32(): number;
|
|
21
|
+
uint64(): bigint;
|
|
22
|
+
int64(): bigint;
|
|
23
|
+
sint64(): bigint;
|
|
24
|
+
bool(): boolean;
|
|
25
|
+
float(): number;
|
|
26
|
+
double(): number;
|
|
27
|
+
bytes(): Uint8Array;
|
|
28
|
+
string(): string;
|
|
29
|
+
skip(length: number): void;
|
|
30
|
+
skipType(wireType: ProtobufWire): void;
|
|
31
|
+
private varint32;
|
|
32
|
+
private varint64;
|
|
33
|
+
private u8;
|
|
34
|
+
private u8n;
|
|
35
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { _IProtobufWriter } from "./_IProtobufWriter";
|
|
2
|
+
export declare class _ProtobufSizer implements _IProtobufWriter {
|
|
3
|
+
/**
|
|
4
|
+
* Total length.
|
|
5
|
+
*/
|
|
6
|
+
len: number;
|
|
7
|
+
/**
|
|
8
|
+
* Position stack.
|
|
9
|
+
*/
|
|
10
|
+
readonly pos: Array<number>;
|
|
11
|
+
/**
|
|
12
|
+
* Variable length list.
|
|
13
|
+
*/
|
|
14
|
+
readonly varlen: Array<number>;
|
|
15
|
+
/**
|
|
16
|
+
* Variable length index stack.
|
|
17
|
+
*/
|
|
18
|
+
readonly varlenidx: Array<number>;
|
|
19
|
+
constructor(length?: number);
|
|
20
|
+
bool(): void;
|
|
21
|
+
int32(value: number): void;
|
|
22
|
+
sint32(value: number): void;
|
|
23
|
+
uint32(value: number): void;
|
|
24
|
+
int64(value: bigint | number): void;
|
|
25
|
+
sint64(value: bigint | number): void;
|
|
26
|
+
uint64(value: bigint | number): void;
|
|
27
|
+
float(_value: number): void;
|
|
28
|
+
double(_value: number): void;
|
|
29
|
+
bytes(value: Uint8Array): void;
|
|
30
|
+
string(value: string): void;
|
|
31
|
+
fork(): void;
|
|
32
|
+
ldelim(): void;
|
|
33
|
+
reset(): void;
|
|
34
|
+
private varint32;
|
|
35
|
+
private varint64;
|
|
36
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { _IProtobufWriter } from "./_IProtobufWriter";
|
|
2
|
+
import { _ProtobufSizer } from "./_ProtobufSizer";
|
|
3
|
+
export declare class _ProtobufWriter implements _IProtobufWriter {
|
|
4
|
+
/**
|
|
5
|
+
* Related sizer
|
|
6
|
+
*/
|
|
7
|
+
private readonly sizer;
|
|
8
|
+
/**
|
|
9
|
+
* Current pointer.
|
|
10
|
+
*/
|
|
11
|
+
private ptr;
|
|
12
|
+
/**
|
|
13
|
+
* Protobuf buffer.
|
|
14
|
+
*/
|
|
15
|
+
private buf;
|
|
16
|
+
/**
|
|
17
|
+
* DataView for buffer.
|
|
18
|
+
*/
|
|
19
|
+
private view;
|
|
20
|
+
/**
|
|
21
|
+
* Index in varlen array from sizer.
|
|
22
|
+
*/
|
|
23
|
+
private varlenidx;
|
|
24
|
+
constructor(sizer: _ProtobufSizer);
|
|
25
|
+
buffer(): Uint8Array;
|
|
26
|
+
bool(value: boolean): void;
|
|
27
|
+
byte(value: number): void;
|
|
28
|
+
int32(value: number): void;
|
|
29
|
+
sint32(value: number): void;
|
|
30
|
+
uint32(value: number): void;
|
|
31
|
+
sint64(value: number | bigint): void;
|
|
32
|
+
int64(value: number | bigint): void;
|
|
33
|
+
uint64(value: number | bigint): void;
|
|
34
|
+
float(val: number): void;
|
|
35
|
+
double(val: number): void;
|
|
36
|
+
bytes(value: Uint8Array): void;
|
|
37
|
+
string(value: string): void;
|
|
38
|
+
fork(): void;
|
|
39
|
+
ldelim(): void;
|
|
40
|
+
finish(): Uint8Array;
|
|
41
|
+
reset(): void;
|
|
42
|
+
private variant32;
|
|
43
|
+
private variant64;
|
|
44
|
+
private varlen;
|
|
45
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _accessExpressionAsString: (str: string) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpFormDataReadArray: (input: any[], alternative: null | undefined) => any[] | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpFormDataReadBigint: (input: string | File | null) => bigint | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpFormDataReadBlob: (input: string | Blob | null) => Blob | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpFormDataReadBoolean: (input: string | File | null) => boolean | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpFormDataReadFile: (input: string | File | null) => File | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpFormDataReadNumber: (input: string | File | null) => number | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpFormDataReadString: (input: string | File | null) => string | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpHeaderReadBigint: (value: string | undefined) => string | bigint | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpHeaderReadBoolean: (value: string | undefined) => string | boolean | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpHeaderReadNumber: (value: string | undefined) => string | number | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpParameterReadBigint: (value: string) => string | bigint | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpParameterReadBoolean: (value: string) => string | boolean | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpParameterReadNumber: (value: string) => string | number | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpParameterReadString: (value: string) => string | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpQueryReadArray: (input: any[], alternative: null | undefined) => any[] | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpQueryReadBigint: (str: string | null) => bigint | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpQueryReadBoolean: (str: string | null) => boolean | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpQueryReadNumber: (str: string | null) => number | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _httpQueryReadString: (str: string | null) => string | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isBetween: (value: number, minimum: number, maximum: number) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isBigintString: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatByte: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatDate: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatDateTime: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatDuration: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatEmail: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatHostname: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatIdnEmail: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatIdnHostname: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatIpv4: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatIpv6: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatIri: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatIriReference: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatJsonPointer: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatPassword: () => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatRegex: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatRelativeJsonPointer: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatTime: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatUri: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatUriReference: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatUriTemplate: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatUrl: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isFormatUuid: (str: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isTypeFloat: (value: number) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isTypeInt32: (value: number) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isTypeInt64: (value: number) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isTypeUint32: (value: number) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isTypeUint64: (value: number) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _isUniqueItems: (elements: any[]) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _jsonStringifyNumber: (value: number) => number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _jsonStringifyRest: (str: string) => string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* In the past, name of `typia` was `typescript-json`, and supported
|
|
3
|
+
* JSON serialization by wrapping `fast-json-stringify. `typescript-json` was
|
|
4
|
+
* a helper library of `fast-json-stringify`, which can skip manual JSON schema
|
|
5
|
+
* definition just by putting pure TypeScript type.
|
|
6
|
+
*
|
|
7
|
+
* This `$string` function is a part of `fast-json-stringify` at that time, and
|
|
8
|
+
* still being used in `typia` for the string serialization.
|
|
9
|
+
*
|
|
10
|
+
* @reference https://github.com/fastify/fast-json-stringify/blob/master/lib/serializer.js
|
|
11
|
+
* @blog https://dev.to/samchon/good-bye-typescript-is-ancestor-of-typia-20000x-faster-validator-49fi
|
|
12
|
+
*/
|
|
13
|
+
export declare const _jsonStringifyString: (str: string) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _jsonStringifyTail: (str: string) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _notationAny: (rename: (str: string) => string) => (input: any) => any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _notationCamel: (str: string) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _notationPascal: (str: string) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _notationSnake: (str: string) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomBoolean: () => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatByte: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatDuration: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatEmail: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatHostname: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatIdnEmail: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatIdnHostname: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatIpv4: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatIpv6: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatIri: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatIriReference: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatJsonPointer: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatPassword: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatRegex: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatRelativeJsonPointer: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatTime: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatUri: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatUriReference: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatUriTemplate: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatUrl: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomFormatUuid: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomPattern: (regex: RegExp) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const _randomPick: <T>(array: T[]) => T;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const __notationCapitalize: (str: string) => string;
|