├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other-issue.md ├── dependabot.yaml └── workflows │ └── maven.yml ├── .gitignore ├── .nojekyll ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTOR_LICENSE_AGREEMENT ├── LICENSE ├── README.adoc ├── _ ├── css │ └── site.css ├── font │ ├── roboto-latin-400.woff │ ├── roboto-latin-400.woff2 │ ├── roboto-latin-400italic.woff │ ├── roboto-latin-400italic.woff2 │ ├── roboto-latin-500.woff │ ├── roboto-latin-500.woff2 │ ├── roboto-latin-500italic.woff │ ├── roboto-latin-500italic.woff2 │ ├── roboto-mono-latin-400.woff │ ├── roboto-mono-latin-400.woff2 │ ├── roboto-mono-latin-500.woff │ └── roboto-mono-latin-500.woff2 ├── img │ ├── back.svg │ ├── caret.svg │ ├── chevron.svg │ ├── close.svg │ ├── home-o.svg │ ├── home.svg │ ├── jpa-streamer-logo.svg │ └── menu.svg └── js │ ├── site.js │ └── vendor │ └── highlight.js ├── cla ├── frascu.pdf ├── nitroin ├── sendhilkumara.pdf └── tokazio ├── docs ├── README.md ├── antora.yml ├── build-local.sh ├── build.sh ├── modules │ ├── ROOT │ │ └── nav.adoc │ ├── application-configuration │ │ ├── nav.adoc │ │ └── pages │ │ │ └── app_configuration.adoc │ ├── fetching-data │ │ ├── nav.adoc │ │ └── pages │ │ │ ├── fetching-data.adoc │ │ │ ├── sql-equivalents.adoc │ │ │ └── stream-examples.adoc │ ├── get-jpa-streamer │ │ ├── nav.adoc │ │ └── pages │ │ │ ├── cdi_integration.adoc │ │ │ ├── hibernate_integration.adoc │ │ │ ├── install-gradle.adoc │ │ │ ├── install-maven.adoc │ │ │ └── spring_integration.adoc │ ├── how-it-works │ │ ├── nav.adoc │ │ └── pages │ │ │ └── how-it-works.adoc │ ├── introduction │ │ ├── assets │ │ │ └── images │ │ │ │ └── jpa-streamer-architecture.png │ │ ├── nav.adoc │ │ └── pages │ │ │ └── introduction.adoc │ ├── predicates │ │ ├── nav.adoc │ │ └── pages │ │ │ ├── combining-predicates.adoc │ │ │ ├── comparable-predicates.adoc │ │ │ ├── negating-predicates.adoc │ │ │ ├── predicates.adoc │ │ │ ├── primitive-predicates.adoc │ │ │ ├── reference-predicates.adoc │ │ │ └── string-predicates.adoc │ ├── quick-start │ │ ├── nav.adoc │ │ └── pages │ │ │ └── quick-start.adoc │ ├── stream-fundamentals │ │ ├── assets │ │ │ └── images │ │ │ │ ├── stream_basics_1.png │ │ │ │ └── stream_pipeline.png │ │ ├── nav.adoc │ │ └── pages │ │ │ ├── intermediate_operations.adoc │ │ │ ├── other_operations.adoc │ │ │ ├── stream_basics.adoc │ │ │ └── terminal_operations.adoc │ ├── transactions │ │ ├── nav.adoc │ │ └── pages │ │ │ └── transactions.adoc │ ├── troubleshooting │ │ ├── nav.adoc │ │ └── pages │ │ │ └── troubleshooting.adoc │ └── why-jpastreamer │ │ ├── nav.adoc │ │ └── pages │ │ └── why-jpastreamer.adoc ├── package.json ├── site-local.yml ├── site.yml ├── supplemental_ui │ ├── css │ │ └── search.css │ └── partials │ │ ├── footer-scripts.hbs │ │ ├── head-meta.hbs │ │ └── header-content.hbs └── ui-bundle.zip ├── images └── video-tn.png ├── index.html ├── integration-tests ├── README.adoc ├── pom.xml ├── run-integration-tests.sh └── src │ ├── main │ └── java │ │ └── Hello.java │ └── test │ ├── java │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── integration │ │ └── test │ │ ├── inheritance │ │ ├── .env │ │ ├── InheritanceTest.java │ │ ├── docker-compose.yml │ │ ├── model │ │ │ ├── BlogPost.java │ │ │ ├── Book.java │ │ │ └── Publication.java │ │ ├── run-test.sh │ │ └── scripts │ │ │ ├── data.sql │ │ │ └── schema.sql │ │ ├── inheritance2 │ │ ├── .env │ │ ├── InheritanceTest2.java │ │ ├── docker-compose.yml │ │ ├── model │ │ │ ├── Author.java │ │ │ ├── BlogPost2.java │ │ │ ├── Book2.java │ │ │ └── Publication2.java │ │ ├── run-test.sh │ │ └── scripts │ │ │ ├── data.sql │ │ │ └── schema.sql │ │ └── standard │ │ ├── CountTest.java │ │ ├── JPAStreamerTest.java │ │ ├── ManyToManyTest.java │ │ ├── ManyToOneTest.java │ │ ├── MapCustomClassTest.java │ │ ├── MapToIntTest.java │ │ ├── OneToManyTest.java │ │ ├── PaginationTest.java │ │ ├── PartitionTest.java │ │ ├── PivotTest.java │ │ ├── ProjectionTest.java │ │ ├── ReorderTest.java │ │ ├── SquashTest.java │ │ ├── TermOpTest.java │ │ ├── UnionTest.java │ │ └── model │ │ ├── Actor.java │ │ ├── Film.java │ │ ├── Language.java │ │ └── groups │ │ ├── GroupA.java │ │ └── GroupB.java │ └── resources │ └── META-INF │ └── persistence.xml ├── integration └── cdi │ └── cdi-jpastreamer │ ├── pom.xml │ └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── integration │ │ └── cdi │ │ └── JPAStreamerProducer.java │ └── module-info.java ├── jpastreamer.announcer ├── README.adoc ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── announcer │ │ └── Announcer.java │ └── module-info.java ├── jpastreamer.appinfo ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── appinfo │ │ └── ApplicationInformation.java │ └── module-info.java ├── jpastreamer.application ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── application │ │ ├── JPAStreamer.java │ │ ├── JPAStreamerBuilder.java │ │ ├── JPAStreamerBuilderFactory.java │ │ ├── StreamSupplier.java │ │ └── package-info.java │ └── module-info.java ├── jpastreamer.autoclose ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── autoclose │ │ └── AutoCloseFactory.java │ └── module-info.java ├── jpastreamer.builder ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── builder │ │ └── BuilderFactory.java │ └── module-info.java ├── jpastreamer.core ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── core │ │ └── Foo.java │ └── module-info.java ├── jpastreamer.criteria ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── criteria │ │ ├── Criteria.java │ │ ├── CriteriaFactory.java │ │ ├── OrderFactory.java │ │ ├── PredicateFactory.java │ │ └── QueryParameter.java │ └── module-info.java ├── jpastreamer.exception ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── exception │ │ └── JPAStreamerException.java │ └── module-info.java ├── jpastreamer.field ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── field │ │ ├── BooleanField.java │ │ ├── ByteField.java │ │ ├── CharField.java │ │ ├── ComparableField.java │ │ ├── DoubleField.java │ │ ├── EnumField.java │ │ ├── Field.java │ │ ├── FloatField.java │ │ ├── IntField.java │ │ ├── LongField.java │ │ ├── ReferenceField.java │ │ ├── ShortField.java │ │ ├── StringField.java │ │ ├── collector │ │ ├── FieldCollector.java │ │ ├── FieldCollectors.java │ │ └── package-info.java │ │ ├── comparator │ │ ├── BooleanFieldComparator.java │ │ ├── ByteFieldComparator.java │ │ ├── CharFieldComparator.java │ │ ├── CombinedComparator.java │ │ ├── DoubleFieldComparator.java │ │ ├── FieldComparator.java │ │ ├── FloatFieldComparator.java │ │ ├── IntFieldComparator.java │ │ ├── LongFieldComparator.java │ │ ├── NullOrder.java │ │ ├── ReferenceFieldComparator.java │ │ ├── ShortFieldComparator.java │ │ └── package-info.java │ │ ├── exception │ │ ├── IllegalJavaBeanException.java │ │ ├── SpeedmentFieldException.java │ │ └── package-info.java │ │ ├── expression │ │ ├── FieldMapper.java │ │ ├── FieldToBigDecimal.java │ │ ├── FieldToBoolean.java │ │ ├── FieldToByte.java │ │ ├── FieldToChar.java │ │ ├── FieldToDouble.java │ │ ├── FieldToEnum.java │ │ ├── FieldToFloat.java │ │ ├── FieldToInt.java │ │ ├── FieldToLong.java │ │ ├── FieldToShort.java │ │ ├── FieldToString.java │ │ └── package-info.java │ │ ├── internal │ │ ├── BooleanFieldImpl.java │ │ ├── ByteFieldImpl.java │ │ ├── CharFieldImpl.java │ │ ├── ComparableFieldImpl.java │ │ ├── DoubleFieldImpl.java │ │ ├── EnumFieldImpl.java │ │ ├── FloatFieldImpl.java │ │ ├── IntFieldImpl.java │ │ ├── LongFieldImpl.java │ │ ├── ReferenceFieldImpl.java │ │ ├── ShortFieldImpl.java │ │ ├── StringFieldImpl.java │ │ ├── collector │ │ │ ├── FieldCollectorImpl.java │ │ │ └── package-info.java │ │ ├── comparator │ │ │ ├── AbstractFieldComparator.java │ │ │ ├── BooleanFieldComparatorImpl.java │ │ │ ├── ByteFieldComparatorImpl.java │ │ │ ├── CharFieldComparatorImpl.java │ │ │ ├── CombinedComparatorImpl.java │ │ │ ├── DoubleFieldComparatorImpl.java │ │ │ ├── FloatFieldComparatorImpl.java │ │ │ ├── IntFieldComparatorImpl.java │ │ │ ├── LongFieldComparatorImpl.java │ │ │ ├── ReferenceFieldComparatorImpl.java │ │ │ ├── ShortFieldComparatorImpl.java │ │ │ └── package-info.java │ │ ├── expression │ │ │ ├── AbstractFieldMapper.java │ │ │ ├── FieldToBigDecimalImpl.java │ │ │ ├── FieldToBooleanImpl.java │ │ │ ├── FieldToByteImpl.java │ │ │ ├── FieldToCharImpl.java │ │ │ ├── FieldToDoubleImpl.java │ │ │ ├── FieldToEnumImpl.java │ │ │ ├── FieldToFloatImpl.java │ │ │ ├── FieldToIntImpl.java │ │ │ ├── FieldToLongImpl.java │ │ │ ├── FieldToShortImpl.java │ │ │ ├── FieldToStringImpl.java │ │ │ └── package-info.java │ │ ├── method │ │ │ ├── GetBooleanImpl.java │ │ │ ├── GetByteImpl.java │ │ │ ├── GetCharImpl.java │ │ │ ├── GetDoubleImpl.java │ │ │ ├── GetFloatImpl.java │ │ │ ├── GetIntImpl.java │ │ │ ├── GetLongImpl.java │ │ │ ├── GetReferenceImpl.java │ │ │ ├── GetShortImpl.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── predicate │ │ │ ├── AbstractCombinedPredicate.java │ │ │ ├── AbstractFieldPredicate.java │ │ │ ├── AbstractPredicate.java │ │ │ ├── AlwaysFalsePredicate.java │ │ │ ├── AlwaysTruePredicate.java │ │ │ ├── ComposedPredicateImpl.java │ │ │ ├── booleans │ │ │ │ ├── BooleanEqualPredicate.java │ │ │ │ └── BooleanNotEqualPredicate.java │ │ │ ├── bytes │ │ │ │ ├── ByteBetweenPredicate.java │ │ │ │ ├── ByteEqualPredicate.java │ │ │ │ ├── ByteGreaterOrEqualPredicate.java │ │ │ │ ├── ByteGreaterThanPredicate.java │ │ │ │ ├── ByteInPredicate.java │ │ │ │ ├── ByteLessOrEqualPredicate.java │ │ │ │ ├── ByteLessThanPredicate.java │ │ │ │ ├── ByteNotBetweenPredicate.java │ │ │ │ ├── ByteNotEqualPredicate.java │ │ │ │ └── ByteNotInPredicate.java │ │ │ ├── chars │ │ │ │ ├── CharBetweenPredicate.java │ │ │ │ ├── CharEqualPredicate.java │ │ │ │ ├── CharGreaterOrEqualPredicate.java │ │ │ │ ├── CharGreaterThanPredicate.java │ │ │ │ ├── CharInPredicate.java │ │ │ │ ├── CharLessOrEqualPredicate.java │ │ │ │ ├── CharLessThanPredicate.java │ │ │ │ ├── CharNotBetweenPredicate.java │ │ │ │ ├── CharNotEqualPredicate.java │ │ │ │ └── CharNotInPredicate.java │ │ │ ├── doubles │ │ │ │ ├── DoubleBetweenPredicate.java │ │ │ │ ├── DoubleEqualPredicate.java │ │ │ │ ├── DoubleGreaterOrEqualPredicate.java │ │ │ │ ├── DoubleGreaterThanPredicate.java │ │ │ │ ├── DoubleInPredicate.java │ │ │ │ ├── DoubleLessOrEqualPredicate.java │ │ │ │ ├── DoubleLessThanPredicate.java │ │ │ │ ├── DoubleNotBetweenPredicate.java │ │ │ │ ├── DoubleNotEqualPredicate.java │ │ │ │ └── DoubleNotInPredicate.java │ │ │ ├── enums │ │ │ │ ├── EnumIsNotNullPredicate.java │ │ │ │ └── EnumIsNullPredicate.java │ │ │ ├── floats │ │ │ │ ├── FloatBetweenPredicate.java │ │ │ │ ├── FloatEqualPredicate.java │ │ │ │ ├── FloatGreaterOrEqualPredicate.java │ │ │ │ ├── FloatGreaterThanPredicate.java │ │ │ │ ├── FloatInPredicate.java │ │ │ │ ├── FloatLessOrEqualPredicate.java │ │ │ │ ├── FloatLessThanPredicate.java │ │ │ │ ├── FloatNotBetweenPredicate.java │ │ │ │ ├── FloatNotEqualPredicate.java │ │ │ │ └── FloatNotInPredicate.java │ │ │ ├── ints │ │ │ │ ├── IntBetweenPredicate.java │ │ │ │ ├── IntEqualPredicate.java │ │ │ │ ├── IntGreaterOrEqualPredicate.java │ │ │ │ ├── IntGreaterThanPredicate.java │ │ │ │ ├── IntInPredicate.java │ │ │ │ ├── IntLessOrEqualPredicate.java │ │ │ │ ├── IntLessThanPredicate.java │ │ │ │ ├── IntNotBetweenPredicate.java │ │ │ │ ├── IntNotEqualPredicate.java │ │ │ │ └── IntNotInPredicate.java │ │ │ ├── longs │ │ │ │ ├── LongBetweenPredicate.java │ │ │ │ ├── LongEqualPredicate.java │ │ │ │ ├── LongGreaterOrEqualPredicate.java │ │ │ │ ├── LongGreaterThanPredicate.java │ │ │ │ ├── LongInPredicate.java │ │ │ │ ├── LongLessOrEqualPredicate.java │ │ │ │ ├── LongLessThanPredicate.java │ │ │ │ ├── LongNotBetweenPredicate.java │ │ │ │ ├── LongNotEqualPredicate.java │ │ │ │ └── LongNotInPredicate.java │ │ │ ├── package-info.java │ │ │ ├── reference │ │ │ │ ├── ReferenceBetweenPredicate.java │ │ │ │ ├── ReferenceEqualPredicate.java │ │ │ │ ├── ReferenceGreaterOrEqualPredicate.java │ │ │ │ ├── ReferenceGreaterThanPredicate.java │ │ │ │ ├── ReferenceInPredicate.java │ │ │ │ ├── ReferenceIsNotNullPredicate.java │ │ │ │ ├── ReferenceIsNullPredicate.java │ │ │ │ ├── ReferenceLessOrEqualPredicate.java │ │ │ │ ├── ReferenceLessThanPredicate.java │ │ │ │ ├── ReferenceNotBetweenPredicate.java │ │ │ │ ├── ReferenceNotEqualPredicate.java │ │ │ │ └── ReferenceNotInPredicate.java │ │ │ ├── shorts │ │ │ │ ├── ShortBetweenPredicate.java │ │ │ │ ├── ShortEqualPredicate.java │ │ │ │ ├── ShortGreaterOrEqualPredicate.java │ │ │ │ ├── ShortGreaterThanPredicate.java │ │ │ │ ├── ShortInPredicate.java │ │ │ │ ├── ShortLessOrEqualPredicate.java │ │ │ │ ├── ShortLessThanPredicate.java │ │ │ │ ├── ShortNotBetweenPredicate.java │ │ │ │ ├── ShortNotEqualPredicate.java │ │ │ │ └── ShortNotInPredicate.java │ │ │ └── string │ │ │ │ ├── AbstractStringPredicate.java │ │ │ │ ├── StringContainsIgnoreCasePredicate.java │ │ │ │ ├── StringContainsPredicate.java │ │ │ │ ├── StringEndsWithIgnoreCasePredicate.java │ │ │ │ ├── StringEndsWithPredicate.java │ │ │ │ ├── StringEqualIgnoreCasePredicate.java │ │ │ │ ├── StringIsEmptyPredicate.java │ │ │ │ ├── StringIsNotEmptyPredicate.java │ │ │ │ ├── StringIsNotNullPredicate.java │ │ │ │ ├── StringIsNullPredicate.java │ │ │ │ ├── StringNotContainsIgnoreCasePredicate.java │ │ │ │ ├── StringNotContainsPredicate.java │ │ │ │ ├── StringNotEndsWithIgnoreCasePredicate.java │ │ │ │ ├── StringNotEndsWithPredicate.java │ │ │ │ ├── StringNotEqualIgnoreCasePredicate.java │ │ │ │ ├── StringNotStartsWithIgnoreCasePredicate.java │ │ │ │ ├── StringNotStartsWithPredicate.java │ │ │ │ ├── StringStartsWithIgnoreCasePredicate.java │ │ │ │ └── StringStartsWithPredicate.java │ │ └── util │ │ │ └── CollectionUtil.java │ │ ├── method │ │ ├── BooleanGetter.java │ │ ├── ByteGetter.java │ │ ├── CharGetter.java │ │ ├── DoubleGetter.java │ │ ├── FloatGetter.java │ │ ├── GetBoolean.java │ │ ├── GetByte.java │ │ ├── GetChar.java │ │ ├── GetDouble.java │ │ ├── GetFloat.java │ │ ├── GetInt.java │ │ ├── GetLong.java │ │ ├── GetReference.java │ │ ├── GetShort.java │ │ ├── Getter.java │ │ ├── IntGetter.java │ │ ├── LongGetter.java │ │ ├── ReferenceGetter.java │ │ ├── ShortGetter.java │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── predicate │ │ ├── CombinedPredicate.java │ │ ├── ComposedPredicate.java │ │ ├── FieldIsNotNullPredicate.java │ │ ├── FieldIsNullPredicate.java │ │ ├── FieldPredicate.java │ │ ├── Inclusion.java │ │ ├── PredicateType.java │ │ ├── SpeedmentPredicate.java │ │ ├── package-info.java │ │ └── trait │ │ │ ├── HasField.java │ │ │ ├── HasInclusion.java │ │ │ ├── HasPredicateType.java │ │ │ └── package-info.java │ │ └── trait │ │ ├── HasArg0.java │ │ ├── HasArg1.java │ │ ├── HasArg2.java │ │ ├── HasAttributeConverterClass.java │ │ ├── HasBooleanOperators.java │ │ ├── HasBooleanValue.java │ │ ├── HasByteValue.java │ │ ├── HasCharValue.java │ │ ├── HasColumnName.java │ │ ├── HasComparableOperators.java │ │ ├── HasDoubleValue.java │ │ ├── HasFloatValue.java │ │ ├── HasGetter.java │ │ ├── HasIntValue.java │ │ ├── HasLongValue.java │ │ ├── HasReferenceOperators.java │ │ ├── HasReferenceValue.java │ │ ├── HasShortValue.java │ │ ├── HasStringOperators.java │ │ ├── HasTable.java │ │ └── package-info.java │ └── module-info.java ├── jpastreamer.fieldgenerator ├── jpastreamer.fieldgenerator.component │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── com │ │ └── speedment │ │ │ └── jpastreamer │ │ │ └── fieldgenerator │ │ │ └── component │ │ │ ├── FilmRating.java │ │ │ ├── FilmTitle.java │ │ │ └── FilmTitleConverter.java │ │ └── module-info.java ├── jpastreamer.fieldgenerator.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ ├── com │ │ │ └── speedment │ │ │ │ └── jpastreamer │ │ │ │ └── fieldgenerator │ │ │ │ ├── StandardFieldGeneratorProcessor.java │ │ │ │ ├── exception │ │ │ │ ├── FieldGeneratorProcessorException.java │ │ │ │ └── TypeParserException.java │ │ │ │ └── internal │ │ │ │ ├── InternalFieldGeneratorProcessor.java │ │ │ │ └── typeparser │ │ │ │ ├── Node.java │ │ │ │ └── TypeParser.java │ │ │ └── module-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── fieldgenerator │ │ └── internal │ │ └── typeparser │ │ └── TypeParserTest.java ├── jpastreamer.fieldgenerator.test.package │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── com │ │ └── speedment │ │ │ └── jpastreamer │ │ │ └── fieldgenerator │ │ │ └── test │ │ │ └── renaming │ │ │ ├── Actor.java │ │ │ ├── Film.java │ │ │ ├── Language.java │ │ │ ├── Main.java │ │ │ ├── User.java │ │ │ └── User2.java │ │ └── module-info.java ├── jpastreamer.fieldgenerator.test │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── com │ │ └── speedment │ │ │ └── jpastreamer │ │ │ └── fieldgenerator │ │ │ └── test │ │ │ ├── Actor.java │ │ │ ├── BlogPost.java │ │ │ ├── Book.java │ │ │ ├── Film.java │ │ │ ├── Language.java │ │ │ ├── Lombok2Bean.java │ │ │ ├── Lombok3Bean.java │ │ │ ├── LombokBean.java │ │ │ ├── Main.java │ │ │ ├── NonJavaBean.java │ │ │ ├── Publication.java │ │ │ ├── User.java │ │ │ └── User2.java │ │ └── module-info.java └── pom.xml ├── jpastreamer.integration ├── cdi │ ├── jpastreamer.integration.cdi │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ ├── com │ │ │ └── speedment │ │ │ │ └── jpastreamer │ │ │ │ └── integration │ │ │ │ └── cdi │ │ │ │ └── JPAStreamerProducer.java │ │ │ └── module-info.java │ └── pom.xml ├── pom.xml └── spring │ ├── jpastreamer.integration.spring.autoconfigure │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── com │ │ │ └── speedment │ │ │ │ └── jpastreamer │ │ │ │ └── integration │ │ │ │ └── spring │ │ │ │ └── autoconfigure │ │ │ │ └── JPAStreamerAutoConfiguration.java │ │ └── module-info.java │ │ └── resources │ │ └── META-INF │ │ └── spring.factories │ └── pom.xml ├── jpastreamer.interopoptimizer ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── interopoptimizer │ │ ├── IntermediateOperationOptimizer.java │ │ └── IntermediateOperationOptimizerFactory.java │ └── module-info.java ├── jpastreamer.javasixteen ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── javasixteen │ │ ├── Java16StreamAdditions.java │ │ ├── Java16StreamUtil.java │ │ ├── internal │ │ └── InternalJava16StreamUtil.java │ │ └── package-info.java │ └── module-info.java ├── jpastreamer.merger ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── merger │ │ ├── CriteriaMerger.java │ │ ├── MergerFactory.java │ │ ├── QueryMerger.java │ │ └── result │ │ ├── CriteriaMergeResult.java │ │ └── QueryMergeResult.java │ └── module-info.java ├── jpastreamer.pipeline ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── pipeline │ │ ├── Pipeline.java │ │ ├── PipelineFactory.java │ │ ├── intermediate │ │ ├── DoubleIntermediateOperationFactory.java │ │ ├── IntIntermediateOperationFactory.java │ │ ├── IntermediateOperation.java │ │ ├── IntermediateOperationFactory.java │ │ ├── IntermediateOperationFunctionalType.java │ │ ├── IntermediateOperationType.java │ │ ├── LongIntermediateOperationFactory.java │ │ ├── Property.java │ │ ├── Statement.java │ │ └── Verb.java │ │ ├── terminal │ │ ├── BaseStreamTerminalOperationFactory.java │ │ ├── DoubleTerminalOperationFactory.java │ │ ├── IntTerminalOperationFactory.java │ │ ├── LongTerminalOperationFactory.java │ │ ├── OrderPreservation.java │ │ ├── TerminalOperation.java │ │ ├── TerminalOperationFactory.java │ │ ├── TerminalOperationFunctionalType.java │ │ └── TerminalOperationType.java │ │ └── trait │ │ ├── HasArguments.java │ │ ├── HasFunction.java │ │ ├── HasReturnType.java │ │ ├── HasStreamType.java │ │ └── HasType.java │ └── module-info.java ├── jpastreamer.projection ├── pom.xml └── src │ ├── main │ └── java │ │ ├── com │ │ └── speedment │ │ │ └── jpastreamer │ │ │ └── projection │ │ │ ├── Projection.java │ │ │ └── internal │ │ │ ├── InternalProjection.java │ │ │ ├── StandardTupleElement.java │ │ │ └── TupleContext.java │ │ └── module-info.java │ └── test │ └── java │ └── com │ └── speedment │ └── jpastreamer │ └── projection │ └── ProjectionTest.java ├── jpastreamer.provider ├── jpastreamer.appinfo.standard │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── com │ │ │ └── speedment │ │ │ │ └── jpastreamer │ │ │ │ └── appinfo │ │ │ │ └── standard │ │ │ │ ├── StandardApplicationInformation.java │ │ │ │ └── internal │ │ │ │ └── InternalStandardApplicationInformation.java │ │ └── module-info.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── com.speedment.jpastreamer.appinfo.ApplicationInformation ├── jpastreamer.application.standard │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── com │ │ │ └── speedment │ │ │ │ └── jpastreamer │ │ │ │ └── application │ │ │ │ └── standard │ │ │ │ ├── StandardJPAStreamerBuilderFactory.java │ │ │ │ └── internal │ │ │ │ ├── StandardJPAStreamer.java │ │ │ │ ├── StandardJPAStreamerBuilder.java │ │ │ │ └── StandardStreamSupplier.java │ │ └── module-info.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── com.speedment.jpastreamer.application.JPAStreamerBuilderFactory ├── jpastreamer.autoclose.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── speedment │ │ │ │ │ └── jpastreamer │ │ │ │ │ └── autoclose │ │ │ │ │ └── standard │ │ │ │ │ ├── StandardAutoCloseFactory.java │ │ │ │ │ └── internal │ │ │ │ │ ├── AbstractAutoClosingBaseStream.java │ │ │ │ │ ├── AutoClosingDoubleStream.java │ │ │ │ │ ├── AutoClosingIntStream.java │ │ │ │ │ ├── AutoClosingLongStream.java │ │ │ │ │ ├── AutoClosingStream.java │ │ │ │ │ └── InternalAutoCloseFactory.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.speedment.jpastreamer.autoclose.AutoCloseFactory │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── autoclose │ │ └── standard │ │ └── internal │ │ ├── AbstractAutoClosingStreamTest.java │ │ ├── AutoClosingDoubleStreamTest.java │ │ ├── AutoClosingIntStreamTest.java │ │ ├── AutoClosingLongStreamTest.java │ │ └── AutoClosingStreamTest.java ├── jpastreamer.builder.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── speedment │ │ │ │ │ └── jpastreamer │ │ │ │ │ └── builder │ │ │ │ │ └── standard │ │ │ │ │ ├── StandardBuilderFactory.java │ │ │ │ │ └── internal │ │ │ │ │ ├── BaseBuilderState.java │ │ │ │ │ ├── BaseStreamBuilder.java │ │ │ │ │ ├── BaseStreamSupport.java │ │ │ │ │ ├── DoubleStreamBuilder.java │ │ │ │ │ ├── Factories.java │ │ │ │ │ ├── InjectedFactories.java │ │ │ │ │ ├── IntStreamBuilder.java │ │ │ │ │ ├── InternalBuilderFactory.java │ │ │ │ │ ├── LongStreamBuilder.java │ │ │ │ │ ├── MockRendererFactory.java │ │ │ │ │ ├── StreamBuilder.java │ │ │ │ │ └── StreamBuilderUtil.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.speedment.jpastreamer.builder.BuilderFactory │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── builder │ │ └── standard │ │ └── internal │ │ ├── BaseStreamBuilderTest.java │ │ ├── DoubleStreamBuilderTest.java │ │ ├── IntStreamBuilderTest.java │ │ ├── LongStreamBuilderTest.java │ │ ├── StreamBuilderTest.java │ │ └── TestFactories.java ├── jpastreamer.criteria.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── speedment │ │ │ │ │ └── jpastreamer │ │ │ │ │ └── criteria │ │ │ │ │ └── standard │ │ │ │ │ ├── StandardCriteriaFactory.java │ │ │ │ │ ├── StandardOrderFactory.java │ │ │ │ │ ├── StandardPredicateFactory.java │ │ │ │ │ └── internal │ │ │ │ │ ├── InternalCriteria.java │ │ │ │ │ ├── InternalCriteriaFactory.java │ │ │ │ │ ├── InternalOrderFactory.java │ │ │ │ │ ├── InternalPredicateFactory.java │ │ │ │ │ ├── InternalQueryParameter.java │ │ │ │ │ ├── order │ │ │ │ │ ├── DefaultOrderMapper.java │ │ │ │ │ └── OrderMapper.java │ │ │ │ │ ├── predicate │ │ │ │ │ ├── DefaultPredicateMapper.java │ │ │ │ │ ├── ParameterizedPredicate.java │ │ │ │ │ ├── PredicateMapper.java │ │ │ │ │ └── PredicateMapping.java │ │ │ │ │ └── util │ │ │ │ │ └── Cast.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── com.speedment.jpastreamer.criteria.CriteriaFactory │ │ │ ├── com.speedment.jpastreamer.criteria.OrderFactory │ │ │ └── com.speedment.jpastreamer.criteria.PredicateFactory │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── criteria │ │ └── standard │ │ ├── StandardCriteriaFactoryTest.java │ │ ├── StandardPredicateFactoryTest.java │ │ ├── internal │ │ ├── InternalCriteriaTest.java │ │ ├── InternalPredicateFactoryTest.java │ │ └── util │ │ │ └── ReflectionUtil.java │ │ └── support │ │ ├── CombinedStringPredicate.java │ │ ├── StringEqualPredicate.java │ │ └── StringNotEqualPredicate.java ├── jpastreamer.interopoptimizer.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── speedment │ │ │ │ │ └── jpastreamer │ │ │ │ │ └── interopoptimizer │ │ │ │ │ └── standard │ │ │ │ │ ├── StandardIntermediateOperationOptimizerFactory.java │ │ │ │ │ └── internal │ │ │ │ │ ├── InternalIntermediateOperationOptimizerFactory.java │ │ │ │ │ └── strategy │ │ │ │ │ ├── MoveAnonymousLambdaOperations.java │ │ │ │ │ ├── RemoveOrderAffectingOperations.java │ │ │ │ │ ├── RemovePeek.java │ │ │ │ │ ├── SquashDistinct.java │ │ │ │ │ ├── SquashFilter.java │ │ │ │ │ ├── SquashLimit.java │ │ │ │ │ ├── SquashSkip.java │ │ │ │ │ ├── SquashSorted.java │ │ │ │ │ └── squash │ │ │ │ │ ├── NoValueSquash.java │ │ │ │ │ ├── SingleValueSquash.java │ │ │ │ │ ├── Squash.java │ │ │ │ │ └── abstracts │ │ │ │ │ ├── AbstractNoValueSquash.java │ │ │ │ │ ├── AbstractSingleValueSquash.java │ │ │ │ │ ├── ComparatorSquash.java │ │ │ │ │ ├── LongSquash.java │ │ │ │ │ └── PredicateSquash.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.speedment.jpastreamer.interopoptimizer.IntermediateOperationOptimizerFactory │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── interopoptimizer │ │ └── standard │ │ ├── StandardIntermediateOperationOptimizerFactoryTest.java │ │ └── internal │ │ └── strategy │ │ ├── InternalOptimizerTest.java │ │ ├── MoveAnonymousLambdaOperationsTest.java │ │ ├── SquashDistinctTest.java │ │ ├── SquashFilterTest.java │ │ ├── SquashLimitTest.java │ │ ├── SquashSkipTest.java │ │ ├── SquashSortedTest.java │ │ ├── SquashTest.java │ │ └── model │ │ ├── Film$.java │ │ └── Film.java ├── jpastreamer.merger.standard │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── com │ │ │ └── speedment │ │ │ │ └── jpastreamer │ │ │ │ └── merger │ │ │ │ └── standard │ │ │ │ ├── StandardMergerFactory.java │ │ │ │ └── internal │ │ │ │ ├── InternalMergerFactory.java │ │ │ │ ├── criteria │ │ │ │ ├── InternalCriteriaMerger.java │ │ │ │ ├── result │ │ │ │ │ └── InternalCriteriaMergeResult.java │ │ │ │ └── strategy │ │ │ │ │ ├── CriteriaModifier.java │ │ │ │ │ ├── DistinctCriteriaModifier.java │ │ │ │ │ ├── FilterCriteriaModifier.java │ │ │ │ │ └── SortedCriteriaModifier.java │ │ │ │ ├── query │ │ │ │ ├── InternalQueryMerger.java │ │ │ │ ├── result │ │ │ │ │ └── InternalQueryMergeResult.java │ │ │ │ └── strategy │ │ │ │ │ ├── QueryModifier.java │ │ │ │ │ └── SkipLimitModifier.java │ │ │ │ ├── reference │ │ │ │ ├── DefaultIntermediateOperationReference.java │ │ │ │ └── IntermediateOperationReference.java │ │ │ │ └── tracker │ │ │ │ ├── DefaultMergingTracker.java │ │ │ │ └── MergingTracker.java │ │ └── module-info.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── com.speedment.jpastreamer.merger.MergerFactory ├── jpastreamer.pipeline.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── speedment │ │ │ │ │ └── jpastreamer │ │ │ │ │ └── pipeline │ │ │ │ │ ├── intermediate │ │ │ │ │ └── standard │ │ │ │ │ │ ├── StandardDoubleIntermediateOperationFactory.java │ │ │ │ │ │ ├── StandardIntIntermediateOperationFactory.java │ │ │ │ │ │ ├── StandardIntermediateOperationFactory.java │ │ │ │ │ │ ├── StandardLongIntermediateOperationFactory.java │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── InternalDoubleIntermediateOperationFactory.java │ │ │ │ │ │ ├── InternalIntIntermediateOperationFactory.java │ │ │ │ │ │ ├── InternalIntermediateOperationFactory.java │ │ │ │ │ │ ├── InternalLongIntermediateOperationFactory.java │ │ │ │ │ │ ├── StandardIntermediateOperation.java │ │ │ │ │ │ └── TypeUtil.java │ │ │ │ │ ├── standard │ │ │ │ │ ├── StandardPipelineFactory.java │ │ │ │ │ └── internal │ │ │ │ │ │ ├── InternalPipelineFactory.java │ │ │ │ │ │ └── StandardPipeline.java │ │ │ │ │ └── terminal │ │ │ │ │ └── standard │ │ │ │ │ ├── StandardDoubleTerminalOperationFactory.java │ │ │ │ │ ├── StandardIntTerminalOperationFactory.java │ │ │ │ │ ├── StandardLongTerminalOperationFactory.java │ │ │ │ │ ├── StandardTerminalOperationFactory.java │ │ │ │ │ └── internal │ │ │ │ │ ├── AbstractTerminalOperation.java │ │ │ │ │ ├── AcceptTerminalOperation.java │ │ │ │ │ ├── ApplyAsDoubleTerminalOperation.java │ │ │ │ │ ├── ApplyAsIntTerminalOperation.java │ │ │ │ │ ├── ApplyAsLongTerminalOperation.java │ │ │ │ │ ├── ApplyTerminalOperation.java │ │ │ │ │ ├── InternalDoubleTerminalOperationFactory.java │ │ │ │ │ ├── InternalIntTerminalOperationFactory.java │ │ │ │ │ ├── InternalLongTerminalOperationFactory.java │ │ │ │ │ ├── InternalTerminalOperationFactory.java │ │ │ │ │ └── TestTerminalOperation.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── com.speedment.jpastreamer.pipeline.PipelineFactory │ │ │ ├── com.speedment.jpastreamer.pipeline.intermediate.DoubleIntermediateOperationFactory │ │ │ ├── com.speedment.jpastreamer.pipeline.intermediate.IntIntermediateOperationFactory │ │ │ ├── com.speedment.jpastreamer.pipeline.intermediate.IntermediateOperationFactory │ │ │ ├── com.speedment.jpastreamer.pipeline.intermediate.LongIntermediateOperationFactory │ │ │ ├── com.speedment.jpastreamer.pipeline.terminal.DoubleTerminalOperationFactory │ │ │ ├── com.speedment.jpastreamer.pipeline.terminal.IntTerminalOperationFactory │ │ │ ├── com.speedment.jpastreamer.pipeline.terminal.LongTerminalOperationFactory │ │ │ └── com.speedment.jpastreamer.pipeline.terminal.TerminalOperationFactory │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── pipeline │ │ ├── standard │ │ └── internal │ │ │ ├── InternalIntermediateOperationFactoryTest.java │ │ │ ├── InternalTerminalOperationFactoryTest.java │ │ │ └── StandardPipelineTest.java │ │ └── terminal │ │ └── standard │ │ └── Main.java ├── jpastreamer.renderer.standard │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── com │ │ │ └── speedment │ │ │ │ └── jpastreamer │ │ │ │ └── renderer │ │ │ │ └── standard │ │ │ │ ├── StandardRendererFactory.java │ │ │ │ └── internal │ │ │ │ ├── InternalRendererFactory.java │ │ │ │ ├── StandardRenderResult.java │ │ │ │ └── StandardRenderer.java │ │ └── module-info.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── com.speedment.jpastreamer.renderer.RendererFactory ├── jpastreamer.streamconfiguration.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── speedment │ │ │ │ │ └── jpastreamer │ │ │ │ │ └── streamconfiguration │ │ │ │ │ └── standard │ │ │ │ │ ├── StandardStreamConfigurationFactory.java │ │ │ │ │ └── internal │ │ │ │ │ ├── StandardJoinConfiguration.java │ │ │ │ │ └── StandardStreamConfiguration.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.speedment.jpastreamer.streamconfiguration.StreamConfigurationFactory │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── streamconfiguration │ │ └── standard │ │ └── internal │ │ ├── Film$.java │ │ ├── Film.java │ │ └── StandardStreamConfigurationTest.java ├── jpastreamer.termopmodifier.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── speedment │ │ │ │ │ └── jpastreamer │ │ │ │ │ └── termopmodifier │ │ │ │ │ └── standard │ │ │ │ │ ├── StandardTerminalOperatorModifierFactory.java │ │ │ │ │ └── internal │ │ │ │ │ ├── InternalTerminalOperatorModifierFactory.java │ │ │ │ │ └── StandardTerminalOperatorModifier.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.speedment.jpastreamer.termopmodifier.TerminalOperationModifierFactory │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── termopmodifier │ │ └── standard │ │ ├── StandardTerminalOperationModifierFactoryTest.java │ │ └── internal │ │ ├── AnyMatchTest.java │ │ ├── FindAnyTest.java │ │ ├── FindFirstTest.java │ │ ├── NoneMatchTest.java │ │ ├── StandardTerminalOperationModifierTest.java │ │ └── model │ │ ├── Film$.java │ │ └── Film.java ├── jpastreamer.termopoptimizer.standard │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── com │ │ │ │ └── speedment │ │ │ │ │ └── jpastreamer │ │ │ │ │ └── termopoptimizer │ │ │ │ │ └── standard │ │ │ │ │ ├── StandardTerminalOperationOptimizerFactory.java │ │ │ │ │ └── internal │ │ │ │ │ ├── InternalTerminalOperationOptimizerFactory.java │ │ │ │ │ └── StandardTerminalOperationOptimizer.java │ │ │ └── module-info.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.speedment.jpastreamer.termopoptimizer.TerminalOperationOptimizerFactory │ │ └── test │ │ └── java │ │ └── com │ │ └── speedment │ │ └── jpastreamer │ │ └── termopoptimizer │ │ └── standard │ │ ├── StandardTerminalOperationOptimizerFactoryTest.java │ │ └── internal │ │ ├── CountTest.java │ │ ├── StandardTerminalOperationOptimizerTest.java │ │ └── model │ │ ├── Film$.java │ │ └── Film.java └── pom.xml ├── jpastreamer.renderer ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── renderer │ │ ├── RenderResult.java │ │ ├── Renderer.java │ │ └── RendererFactory.java │ └── module-info.java ├── jpastreamer.rootfactory ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── rootfactory │ │ ├── Priority.java │ │ ├── RootFactory.java │ │ └── internal │ │ └── InternalRootFactory.java │ └── module-info.java ├── jpastreamer.streamconfiguration ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── streamconfiguration │ │ ├── StreamConfiguration.java │ │ ├── StreamConfigurationFactory.java │ │ └── package-info.java │ └── module-info.java ├── jpastreamer.termopmodifier ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── termopmodifier │ │ ├── TerminalOperationModifier.java │ │ └── TerminalOperationModifierFactory.java │ └── module-info.java ├── jpastreamer.termopoptimizer ├── pom.xml └── src │ └── main │ └── java │ ├── com │ └── speedment │ │ └── jpastreamer │ │ └── termopoptimizer │ │ ├── TerminalOperationOptimizer.java │ │ └── TerminalOperationOptimizerFactory.java │ └── module-info.java ├── license_header.txt ├── license_header_def.xml ├── node_modules ├── .package-lock.json ├── antora-lunr │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── generate-index.js │ │ └── index.js │ ├── package.json │ └── supplemental_ui │ │ ├── css │ │ └── search.css │ │ ├── js │ │ └── vendor │ │ │ ├── lunr.js │ │ │ └── search.js │ │ └── partials │ │ ├── footer-scripts.hbs │ │ ├── head-meta.hbs │ │ └── header-content.hbs ├── boolbase │ ├── README.md │ ├── index.js │ └── package.json ├── cheerio-select │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── esm │ │ │ ├── helpers.d.ts │ │ │ ├── helpers.d.ts.map │ │ │ ├── helpers.js │ │ │ ├── helpers.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── package.json │ │ │ ├── positionals.d.ts │ │ │ ├── positionals.d.ts.map │ │ │ ├── positionals.js │ │ │ └── positionals.js.map │ │ ├── helpers.d.ts │ │ ├── helpers.d.ts.map │ │ ├── helpers.js │ │ ├── helpers.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── positionals.d.ts │ │ ├── positionals.d.ts.map │ │ ├── positionals.js │ │ └── positionals.js.map │ └── package.json ├── cheerio │ ├── LICENSE │ ├── Readme.md │ ├── lib │ │ ├── api │ │ │ ├── attributes.d.ts │ │ │ ├── attributes.d.ts.map │ │ │ ├── attributes.js │ │ │ ├── attributes.js.map │ │ │ ├── css.d.ts │ │ │ ├── css.d.ts.map │ │ │ ├── css.js │ │ │ ├── css.js.map │ │ │ ├── forms.d.ts │ │ │ ├── forms.d.ts.map │ │ │ ├── forms.js │ │ │ ├── forms.js.map │ │ │ ├── manipulation.d.ts │ │ │ ├── manipulation.d.ts.map │ │ │ ├── manipulation.js │ │ │ ├── manipulation.js.map │ │ │ ├── traversing.d.ts │ │ │ ├── traversing.d.ts.map │ │ │ ├── traversing.js │ │ │ └── traversing.js.map │ │ ├── cheerio.d.ts │ │ ├── cheerio.d.ts.map │ │ ├── cheerio.js │ │ ├── cheerio.js.map │ │ ├── esm │ │ │ ├── api │ │ │ │ ├── attributes.d.ts │ │ │ │ ├── attributes.d.ts.map │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes.js.map │ │ │ │ ├── css.d.ts │ │ │ │ ├── css.d.ts.map │ │ │ │ ├── css.js │ │ │ │ ├── css.js.map │ │ │ │ ├── forms.d.ts │ │ │ │ ├── forms.d.ts.map │ │ │ │ ├── forms.js │ │ │ │ ├── forms.js.map │ │ │ │ ├── manipulation.d.ts │ │ │ │ ├── manipulation.d.ts.map │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation.js.map │ │ │ │ ├── traversing.d.ts │ │ │ │ ├── traversing.d.ts.map │ │ │ │ ├── traversing.js │ │ │ │ └── traversing.js.map │ │ │ ├── cheerio.d.ts │ │ │ ├── cheerio.d.ts.map │ │ │ ├── cheerio.js │ │ │ ├── cheerio.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── load.d.ts │ │ │ ├── load.d.ts.map │ │ │ ├── load.js │ │ │ ├── load.js.map │ │ │ ├── options.d.ts │ │ │ ├── options.d.ts.map │ │ │ ├── options.js │ │ │ ├── options.js.map │ │ │ ├── package.json │ │ │ ├── parse.d.ts │ │ │ ├── parse.d.ts.map │ │ │ ├── parse.js │ │ │ ├── parse.js.map │ │ │ ├── parsers │ │ │ │ ├── parse5-adapter.d.ts │ │ │ │ ├── parse5-adapter.d.ts.map │ │ │ │ ├── parse5-adapter.js │ │ │ │ └── parse5-adapter.js.map │ │ │ ├── slim.d.ts │ │ │ ├── slim.d.ts.map │ │ │ ├── slim.js │ │ │ ├── slim.js.map │ │ │ ├── static.d.ts │ │ │ ├── static.d.ts.map │ │ │ ├── static.js │ │ │ ├── static.js.map │ │ │ ├── types.d.ts │ │ │ ├── types.d.ts.map │ │ │ ├── types.js │ │ │ ├── types.js.map │ │ │ ├── utils.d.ts │ │ │ ├── utils.d.ts.map │ │ │ ├── utils.js │ │ │ └── utils.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── load.d.ts │ │ ├── load.d.ts.map │ │ ├── load.js │ │ ├── load.js.map │ │ ├── options.d.ts │ │ ├── options.d.ts.map │ │ ├── options.js │ │ ├── options.js.map │ │ ├── parse.d.ts │ │ ├── parse.d.ts.map │ │ ├── parse.js │ │ ├── parse.js.map │ │ ├── parsers │ │ │ ├── parse5-adapter.d.ts │ │ │ ├── parse5-adapter.d.ts.map │ │ │ ├── parse5-adapter.js │ │ │ └── parse5-adapter.js.map │ │ ├── slim.d.ts │ │ ├── slim.d.ts.map │ │ ├── slim.js │ │ ├── slim.js.map │ │ ├── static.d.ts │ │ ├── static.d.ts.map │ │ ├── static.js │ │ ├── static.js.map │ │ ├── types.d.ts │ │ ├── types.d.ts.map │ │ ├── types.js │ │ ├── types.js.map │ │ ├── utils.d.ts │ │ ├── utils.d.ts.map │ │ ├── utils.js │ │ └── utils.js.map │ └── package.json ├── css-select │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── attributes.d.ts │ │ ├── attributes.d.ts.map │ │ ├── attributes.js │ │ ├── attributes.js.map │ │ ├── compile.d.ts │ │ ├── compile.d.ts.map │ │ ├── compile.js │ │ ├── compile.js.map │ │ ├── esm │ │ │ ├── attributes.d.ts │ │ │ ├── attributes.d.ts.map │ │ │ ├── attributes.js │ │ │ ├── attributes.js.map │ │ │ ├── compile.d.ts │ │ │ ├── compile.d.ts.map │ │ │ ├── compile.js │ │ │ ├── compile.js.map │ │ │ ├── general.d.ts │ │ │ ├── general.d.ts.map │ │ │ ├── general.js │ │ │ ├── general.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── package.json │ │ │ ├── pseudo-selectors │ │ │ │ ├── aliases.d.ts │ │ │ │ ├── aliases.d.ts.map │ │ │ │ ├── aliases.js │ │ │ │ ├── aliases.js.map │ │ │ │ ├── filters.d.ts │ │ │ │ ├── filters.d.ts.map │ │ │ │ ├── filters.js │ │ │ │ ├── filters.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── pseudos.d.ts │ │ │ │ ├── pseudos.d.ts.map │ │ │ │ ├── pseudos.js │ │ │ │ ├── pseudos.js.map │ │ │ │ ├── subselects.d.ts │ │ │ │ ├── subselects.d.ts.map │ │ │ │ ├── subselects.js │ │ │ │ └── subselects.js.map │ │ │ ├── sort.d.ts │ │ │ ├── sort.d.ts.map │ │ │ ├── sort.js │ │ │ ├── sort.js.map │ │ │ ├── types.d.ts │ │ │ ├── types.d.ts.map │ │ │ ├── types.js │ │ │ └── types.js.map │ │ ├── general.d.ts │ │ ├── general.d.ts.map │ │ ├── general.js │ │ ├── general.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── pseudo-selectors │ │ │ ├── aliases.d.ts │ │ │ ├── aliases.d.ts.map │ │ │ ├── aliases.js │ │ │ ├── aliases.js.map │ │ │ ├── filters.d.ts │ │ │ ├── filters.d.ts.map │ │ │ ├── filters.js │ │ │ ├── filters.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── pseudos.d.ts │ │ │ ├── pseudos.d.ts.map │ │ │ ├── pseudos.js │ │ │ ├── pseudos.js.map │ │ │ ├── subselects.d.ts │ │ │ ├── subselects.d.ts.map │ │ │ ├── subselects.js │ │ │ └── subselects.js.map │ │ ├── sort.d.ts │ │ ├── sort.d.ts.map │ │ ├── sort.js │ │ ├── sort.js.map │ │ ├── types.d.ts │ │ ├── types.d.ts.map │ │ ├── types.js │ │ └── types.js.map │ └── package.json ├── css-what │ ├── LICENSE │ ├── lib │ │ ├── commonjs │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── parse.d.ts │ │ │ ├── parse.d.ts.map │ │ │ ├── parse.js │ │ │ ├── stringify.d.ts │ │ │ ├── stringify.d.ts.map │ │ │ ├── stringify.js │ │ │ ├── types.d.ts │ │ │ ├── types.d.ts.map │ │ │ └── types.js │ │ └── es │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── parse.d.ts │ │ │ ├── parse.d.ts.map │ │ │ ├── parse.js │ │ │ ├── stringify.d.ts │ │ │ ├── stringify.d.ts.map │ │ │ ├── stringify.js │ │ │ ├── types.d.ts │ │ │ ├── types.d.ts.map │ │ │ └── types.js │ ├── package.json │ └── readme.md ├── dom-serializer │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── esm │ │ │ ├── foreignNames.d.ts │ │ │ ├── foreignNames.d.ts.map │ │ │ ├── foreignNames.js │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── foreignNames.d.ts │ │ ├── foreignNames.d.ts.map │ │ ├── foreignNames.js │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ └── index.js │ └── package.json ├── domelementtype │ ├── LICENSE │ ├── lib │ │ ├── esm │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ └── index.js │ ├── package.json │ └── readme.md ├── domhandler │ ├── LICENSE │ ├── lib │ │ ├── esm │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── node.d.ts │ │ │ ├── node.d.ts.map │ │ │ ├── node.js │ │ │ └── package.json │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── node.d.ts │ │ ├── node.d.ts.map │ │ └── node.js │ ├── package.json │ └── readme.md ├── domutils │ ├── LICENSE │ ├── lib │ │ ├── esm │ │ │ ├── feeds.d.ts │ │ │ ├── feeds.d.ts.map │ │ │ ├── feeds.js │ │ │ ├── feeds.js.map │ │ │ ├── helpers.d.ts │ │ │ ├── helpers.d.ts.map │ │ │ ├── helpers.js │ │ │ ├── helpers.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── legacy.d.ts │ │ │ ├── legacy.d.ts.map │ │ │ ├── legacy.js │ │ │ ├── legacy.js.map │ │ │ ├── manipulation.d.ts │ │ │ ├── manipulation.d.ts.map │ │ │ ├── manipulation.js │ │ │ ├── manipulation.js.map │ │ │ ├── package.json │ │ │ ├── querying.d.ts │ │ │ ├── querying.d.ts.map │ │ │ ├── querying.js │ │ │ ├── querying.js.map │ │ │ ├── stringify.d.ts │ │ │ ├── stringify.d.ts.map │ │ │ ├── stringify.js │ │ │ ├── stringify.js.map │ │ │ ├── traversal.d.ts │ │ │ ├── traversal.d.ts.map │ │ │ ├── traversal.js │ │ │ └── traversal.js.map │ │ ├── feeds.d.ts │ │ ├── feeds.d.ts.map │ │ ├── feeds.js │ │ ├── feeds.js.map │ │ ├── helpers.d.ts │ │ ├── helpers.d.ts.map │ │ ├── helpers.js │ │ ├── helpers.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── legacy.d.ts │ │ ├── legacy.d.ts.map │ │ ├── legacy.js │ │ ├── legacy.js.map │ │ ├── manipulation.d.ts │ │ ├── manipulation.d.ts.map │ │ ├── manipulation.js │ │ ├── manipulation.js.map │ │ ├── querying.d.ts │ │ ├── querying.d.ts.map │ │ ├── querying.js │ │ ├── querying.js.map │ │ ├── stringify.d.ts │ │ ├── stringify.d.ts.map │ │ ├── stringify.js │ │ ├── stringify.js.map │ │ ├── traversal.d.ts │ │ ├── traversal.d.ts.map │ │ ├── traversal.js │ │ └── traversal.js.map │ ├── package.json │ └── readme.md ├── entities │ ├── LICENSE │ ├── lib │ │ ├── decode.d.ts │ │ ├── decode.d.ts.map │ │ ├── decode.js │ │ ├── decode.js.map │ │ ├── decode_codepoint.d.ts │ │ ├── decode_codepoint.d.ts.map │ │ ├── decode_codepoint.js │ │ ├── decode_codepoint.js.map │ │ ├── encode.d.ts │ │ ├── encode.d.ts.map │ │ ├── encode.js │ │ ├── encode.js.map │ │ ├── escape.d.ts │ │ ├── escape.d.ts.map │ │ ├── escape.js │ │ ├── escape.js.map │ │ ├── esm │ │ │ ├── decode.d.ts │ │ │ ├── decode.d.ts.map │ │ │ ├── decode.js │ │ │ ├── decode.js.map │ │ │ ├── decode_codepoint.d.ts │ │ │ ├── decode_codepoint.d.ts.map │ │ │ ├── decode_codepoint.js │ │ │ ├── decode_codepoint.js.map │ │ │ ├── encode.d.ts │ │ │ ├── encode.d.ts.map │ │ │ ├── encode.js │ │ │ ├── encode.js.map │ │ │ ├── escape.d.ts │ │ │ ├── escape.d.ts.map │ │ │ ├── escape.js │ │ │ ├── escape.js.map │ │ │ ├── generated │ │ │ │ ├── decode-data-html.d.ts │ │ │ │ ├── decode-data-html.d.ts.map │ │ │ │ ├── decode-data-html.js │ │ │ │ ├── decode-data-html.js.map │ │ │ │ ├── decode-data-xml.d.ts │ │ │ │ ├── decode-data-xml.d.ts.map │ │ │ │ ├── decode-data-xml.js │ │ │ │ ├── decode-data-xml.js.map │ │ │ │ ├── encode-html.d.ts │ │ │ │ ├── encode-html.d.ts.map │ │ │ │ ├── encode-html.js │ │ │ │ └── encode-html.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── package.json │ │ ├── generated │ │ │ ├── decode-data-html.d.ts │ │ │ ├── decode-data-html.d.ts.map │ │ │ ├── decode-data-html.js │ │ │ ├── decode-data-html.js.map │ │ │ ├── decode-data-xml.d.ts │ │ │ ├── decode-data-xml.d.ts.map │ │ │ ├── decode-data-xml.js │ │ │ ├── decode-data-xml.js.map │ │ │ ├── encode-html.d.ts │ │ │ ├── encode-html.d.ts.map │ │ │ ├── encode-html.js │ │ │ └── encode-html.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ └── index.js.map │ ├── package.json │ └── readme.md ├── html-entities │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── html4-entities.d.ts │ │ ├── html4-entities.js │ │ ├── html5-entities.d.ts │ │ ├── html5-entities.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── surrogate-pairs.d.ts │ │ ├── surrogate-pairs.js │ │ ├── xml-entities.d.ts │ │ └── xml-entities.js │ └── package.json ├── htmlparser2 │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── Parser.d.ts │ │ ├── Parser.d.ts.map │ │ ├── Parser.js │ │ ├── Parser.js.map │ │ ├── Tokenizer.d.ts │ │ ├── Tokenizer.d.ts.map │ │ ├── Tokenizer.js │ │ ├── Tokenizer.js.map │ │ ├── WritableStream.d.ts │ │ ├── WritableStream.d.ts.map │ │ ├── WritableStream.js │ │ ├── WritableStream.js.map │ │ ├── esm │ │ │ ├── Parser.d.ts │ │ │ ├── Parser.d.ts.map │ │ │ ├── Parser.js │ │ │ ├── Parser.js.map │ │ │ ├── Tokenizer.d.ts │ │ │ ├── Tokenizer.d.ts.map │ │ │ ├── Tokenizer.js │ │ │ ├── Tokenizer.js.map │ │ │ ├── WritableStream.d.ts │ │ │ ├── WritableStream.d.ts.map │ │ │ ├── WritableStream.js │ │ │ ├── WritableStream.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ └── package.json │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ └── index.js.map │ └── package.json ├── lunr │ ├── .eslintrc.json │ ├── .npmignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CNAME │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── VERSION │ ├── bower.json │ ├── component.json │ ├── index.html │ ├── lib │ │ ├── builder.js │ │ ├── field_ref.js │ │ ├── idf.js │ │ ├── index.js │ │ ├── lunr.js │ │ ├── match_data.js │ │ ├── pipeline.js │ │ ├── query.js │ │ ├── query_lexer.js │ │ ├── query_parse_error.js │ │ ├── query_parser.js │ │ ├── set.js │ │ ├── stemmer.js │ │ ├── stop_word_filter.js │ │ ├── token.js │ │ ├── token_set.js │ │ ├── token_set_builder.js │ │ ├── tokenizer.js │ │ ├── trimmer.js │ │ ├── utils.js │ │ └── vector.js │ ├── lunr.js │ ├── lunr.min.js │ ├── notes │ ├── package.json │ ├── perf │ │ ├── builder_perf.js │ │ ├── perf_helper.js │ │ ├── pipeline_perf.js │ │ ├── query_parser_perf.js │ │ ├── search_perf.js │ │ ├── stemmer_perf.js │ │ ├── token_set_perf.js │ │ ├── tokenizer_perf.js │ │ └── vector_perf.js │ ├── styles.css │ └── test │ │ ├── builder_test.js │ │ ├── env │ │ ├── chai.js │ │ ├── index.mustache │ │ ├── mocha.css │ │ └── mocha.js │ │ ├── field_ref_test.js │ │ ├── fixtures │ │ └── stemming_vocab.json │ │ ├── index.html │ │ ├── match_data_test.js │ │ ├── pipeline_test.js │ │ ├── query_lexer_test.js │ │ ├── query_parser_test.js │ │ ├── query_test.js │ │ ├── search_test.js │ │ ├── serialization_test.js │ │ ├── set_test.js │ │ ├── stemmer_test.js │ │ ├── stop_word_filter_test.js │ │ ├── test_helper.js │ │ ├── token_set_test.js │ │ ├── token_test.js │ │ ├── tokenizer_test.js │ │ ├── trimmer_test.js │ │ ├── utils_test.js │ │ └── vector_test.js ├── nth-check │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── compile.d.ts │ │ ├── compile.d.ts.map │ │ ├── compile.js │ │ ├── compile.js.map │ │ ├── esm │ │ │ ├── compile.d.ts │ │ │ ├── compile.d.ts.map │ │ │ ├── compile.js │ │ │ ├── compile.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── package.json │ │ │ ├── parse.d.ts │ │ │ ├── parse.d.ts.map │ │ │ ├── parse.js │ │ │ └── parse.js.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── parse.d.ts │ │ ├── parse.d.ts.map │ │ ├── parse.js │ │ └── parse.js.map │ └── package.json ├── parse5-htmlparser2-tree-adapter │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── cjs │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── index.d.ts │ │ └── index.js │ └── package.json └── parse5 │ ├── LICENSE │ ├── README.md │ ├── dist │ ├── cjs │ │ ├── common │ │ │ ├── doctype.d.ts │ │ │ ├── doctype.js │ │ │ ├── error-codes.d.ts │ │ │ ├── error-codes.js │ │ │ ├── foreign-content.d.ts │ │ │ ├── foreign-content.js │ │ │ ├── html.d.ts │ │ │ ├── html.js │ │ │ ├── token.d.ts │ │ │ ├── token.js │ │ │ ├── unicode.d.ts │ │ │ └── unicode.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── parser │ │ │ ├── formatting-element-list.d.ts │ │ │ ├── formatting-element-list.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── open-element-stack.d.ts │ │ │ └── open-element-stack.js │ │ ├── serializer │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── tokenizer │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── preprocessor.d.ts │ │ │ └── preprocessor.js │ │ └── tree-adapters │ │ │ ├── default.d.ts │ │ │ ├── default.js │ │ │ ├── interface.d.ts │ │ │ └── interface.js │ ├── common │ │ ├── doctype.d.ts │ │ ├── doctype.js │ │ ├── error-codes.d.ts │ │ ├── error-codes.js │ │ ├── foreign-content.d.ts │ │ ├── foreign-content.js │ │ ├── html.d.ts │ │ ├── html.js │ │ ├── token.d.ts │ │ ├── token.js │ │ ├── unicode.d.ts │ │ └── unicode.js │ ├── index.d.ts │ ├── index.js │ ├── parser │ │ ├── formatting-element-list.d.ts │ │ ├── formatting-element-list.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── open-element-stack.d.ts │ │ └── open-element-stack.js │ ├── serializer │ │ ├── index.d.ts │ │ └── index.js │ ├── tokenizer │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── preprocessor.d.ts │ │ └── preprocessor.js │ └── tree-adapters │ │ ├── default.d.ts │ │ ├── default.js │ │ ├── interface.d.ts │ │ └── interface.js │ └── package.json ├── package-lock.json ├── package.json ├── pom.xml ├── release.sh ├── release_doc.sh └── set_version.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Help us improve the JPAStreamer library 4 | title: '' 5 | labels: bug 6 | assignees: julgus 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | 12 | **Expected behavior** 13 | 14 | **Actual behavior** 15 | 16 | **How To Reproduce** 17 | 18 | **Build tool** 19 | e.g. Maven 3.6.1 20 | 21 | **JPAStreamer version** 22 | e.g. JPAStreamer 3.0.0 23 | 24 | **JPA Provider** 25 | e.g. Hibernate 6.0.2.Final 26 | 27 | **Java Version** 28 | e.g. Java 17.0.7 29 | 30 | **Additional context** 31 | Add any other context about the problem here. 32 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest a useful feature 4 | title: '' 5 | labels: enhancement 6 | assignees: julgus 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issue.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other issue 3 | about: Any feedback or questions are welcome 4 | title: '' 5 | labels: '' 6 | assignees: julgus 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- 1 | # 2 | # JPAstreamer - Express JPA queries with Java Streams 3 | # Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | # 5 | # License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | # 7 | # This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | # See the GNU Lesser General Public License for more details. 10 | # 11 | # See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | # 13 | 14 | version: 2 15 | updates: 16 | - package-ecosystem: "maven" 17 | directory: "/" 18 | schedule: 19 | interval: "daily" 20 | target-branch: "develop" 21 | - package-ecosystem: "github-actions" 22 | directory: "/" 23 | schedule: 24 | interval: "daily" 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/target/ 2 | **/.settings/ 3 | **/.classpath 4 | **/.project/ 5 | **/.sonar/ 6 | **/.DS_Store/ 7 | **/.idea/ 8 | **/.gradle/ 9 | **/build/ 10 | 11 | **/nb-configuration.xml 12 | **/dependency-reduced-pom.xml 13 | **/nb-configuration.xml 14 | **/sonar-project.properties 15 | **/settings.properties 16 | **/application.properties 17 | **/node_modules 18 | 19 | *~ 20 | *.iml 21 | *.iws 22 | *.xml.versionsBackup 23 | *.DS_Store 24 | 25 | /docs/package-lock.json 26 | .project 27 | /javadoc 28 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/.nojekyll -------------------------------------------------------------------------------- /_/font/roboto-latin-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-latin-400.woff -------------------------------------------------------------------------------- /_/font/roboto-latin-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-latin-400.woff2 -------------------------------------------------------------------------------- /_/font/roboto-latin-400italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-latin-400italic.woff -------------------------------------------------------------------------------- /_/font/roboto-latin-400italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-latin-400italic.woff2 -------------------------------------------------------------------------------- /_/font/roboto-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-latin-500.woff -------------------------------------------------------------------------------- /_/font/roboto-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-latin-500.woff2 -------------------------------------------------------------------------------- /_/font/roboto-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-latin-500italic.woff -------------------------------------------------------------------------------- /_/font/roboto-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-latin-500italic.woff2 -------------------------------------------------------------------------------- /_/font/roboto-mono-latin-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-mono-latin-400.woff -------------------------------------------------------------------------------- /_/font/roboto-mono-latin-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-mono-latin-400.woff2 -------------------------------------------------------------------------------- /_/font/roboto-mono-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-mono-latin-500.woff -------------------------------------------------------------------------------- /_/font/roboto-mono-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/_/font/roboto-mono-latin-500.woff2 -------------------------------------------------------------------------------- /_/img/back.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_/img/caret.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_/img/chevron.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_/img/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_/img/home-o.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_/img/home.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_/img/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cla/frascu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/cla/frascu.pdf -------------------------------------------------------------------------------- /cla/sendhilkumara.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/cla/sendhilkumara.pdf -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # JPAStreamer Docs 2 | 3 | This folder contains the JPAStreamer documentation. It is arranged to suit the Antora build process. All pages must be located in a module under the corresponding pages/-folder, have the extension .adoc and be marked up in correct AsciiDoc-format. 4 | 5 | ## Modules 6 | The documentation is structures so that each module correspond to a chapter in the manual. Every module should contain the following folders: 7 | - assets/ Here are e.g. images stored 8 | - pages/ Here are all the AsciiDoc files located. 9 | - examples/ Here is source code for examples located. 10 | 11 | Every module also has a nav.docs-file that describes the pages hierarchy to use for proper display in a side-menu. 12 | 13 | ## antora.yml 14 | This file is the component descriptor which act as a component marker to signal that this is an documentation component. It also specifies where to find the module navigation files. -------------------------------------------------------------------------------- /docs/build-local.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | npm ci && npm run build-local 4 | -------------------------------------------------------------------------------- /docs/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | npm ci && npm run build 4 | -------------------------------------------------------------------------------- /docs/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/docs/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /docs/modules/application-configuration/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:app_configuration.adoc[Application Configuration] -------------------------------------------------------------------------------- /docs/modules/application-configuration/pages/app_configuration.adoc: -------------------------------------------------------------------------------- 1 | = Application Configuration 2 | keywords: stream, jpastreamer, java, configuration 3 | author: Julia Gustafsson 4 | :reftext: Application Configuration 5 | :navtitle: Application Configuration 6 | :source-highlighter: highlight.js 7 | 8 | // A chapter that describes the settings that can be provided to the JPAStreamer-builder. -------------------------------------------------------------------------------- /docs/modules/fetching-data/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:fetching-data:fetching-data.adoc[Fetching Data] 2 | ** xref:sql-equivalents.adoc[SQL Equivalents] 3 | ** xref:stream-examples.adoc[Stream Examples] 4 | 5 | -------------------------------------------------------------------------------- /docs/modules/get-jpa-streamer/nav.adoc: -------------------------------------------------------------------------------- 1 | * Get JPAstreamer 2 | ** xref:install-maven.adoc[Install with Maven] 3 | ** xref:install-gradle.adoc[Install with Gradle] 4 | ** xref:spring_integration.adoc[Spring Integration] 5 | ** xref:cdi_integration.adoc[CDI Integration] 6 | -------------------------------------------------------------------------------- /docs/modules/get-jpa-streamer/pages/hibernate_integration.adoc: -------------------------------------------------------------------------------- 1 | = Hibernate Integration 2 | keywords: stream, jpastreamer, java 3 | author: 4 | :reftext: Hibernate Integration 5 | :navtitle: Hibernate Integration 6 | :source-highlighter: highlight.js 7 | 8 | -------------------------------------------------------------------------------- /docs/modules/how-it-works/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:how-it-works.adoc[How JPAstreamer Works] 2 | -------------------------------------------------------------------------------- /docs/modules/introduction/assets/images/jpa-streamer-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/docs/modules/introduction/assets/images/jpa-streamer-architecture.png -------------------------------------------------------------------------------- /docs/modules/introduction/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:introduction.adoc[Introduction] 2 | -------------------------------------------------------------------------------- /docs/modules/predicates/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:predicates.adoc[Predicates] 2 | ** xref:reference-predicates.adoc[Reference Predicates] 3 | ** xref:comparable-predicates.adoc[Comparable Predicates] 4 | ** xref:string-predicates.adoc[String Predicates] 5 | ** xref:primitive-predicates.adoc[Primitive Predicates] 6 | ** xref:negating-predicates.adoc[Negating Predicates] 7 | ** xref:combining-predicates.adoc[Combining Predicates] 8 | -------------------------------------------------------------------------------- /docs/modules/quick-start/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:quick-start.adoc[Quick-start with JPAstreamer] 2 | -------------------------------------------------------------------------------- /docs/modules/stream-fundamentals/assets/images/stream_basics_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/docs/modules/stream-fundamentals/assets/images/stream_basics_1.png -------------------------------------------------------------------------------- /docs/modules/stream-fundamentals/assets/images/stream_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/docs/modules/stream-fundamentals/assets/images/stream_pipeline.png -------------------------------------------------------------------------------- /docs/modules/stream-fundamentals/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:stream_basics.adoc[Stream Fundamentals] 2 | ** xref:intermediate_operations.adoc[Intermediate Operations] 3 | ** xref:terminal_operations.adoc[Terminal Operations] 4 | ** xref:other_operations.adoc[Other Operations] 5 | -------------------------------------------------------------------------------- /docs/modules/transactions/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:transactions.adoc[Transactions] 2 | -------------------------------------------------------------------------------- /docs/modules/troubleshooting/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:troubleshooting.adoc[Troubleshooting] 2 | -------------------------------------------------------------------------------- /docs/modules/why-jpastreamer/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:why-jpastreamer.adoc[Why JPAstreamer?] 2 | -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jpastreamer-docs", 3 | "version": "1.0.0", 4 | "description": "Documentation for JPAStreamer built with Antora", 5 | "scripts": { 6 | "build-local": "antora --fetch site-local.yml", 7 | "build": "antora --fetch site.yml" 8 | }, 9 | "author": "JPAStreamer", 10 | "license": "UNLICENSED", 11 | "devDependencies": { 12 | "antora": "^3.1.2", 13 | "cross-env": "^7.0.3" 14 | }, 15 | "private": true, 16 | "dependencies": { 17 | "@antora/cli": "^3.1.3", 18 | "@antora/lunr-extension": "^1.0.0-alpha.8", 19 | "@antora/site-generator-default": "~2.3" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /docs/supplemental_ui/partials/footer-scripts.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{#if env.SITE_SEARCH_PROVIDER}} 4 | {{> search-scripts}} 5 | {{/if}} 6 | 7 | -------------------------------------------------------------------------------- /docs/supplemental_ui/partials/head-meta.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/ui-bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/docs/ui-bundle.zip -------------------------------------------------------------------------------- /images/video-tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedment/jpa-streamer/34b3255d4263e3f1e8bdebfaf7cd1d1af002f2c8/images/video-tn.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Redirect Notice 7 |

Redirect Notice

8 |

The page you requested has been relocated to jpa-streamer/1.1.0/introduction/introduction.html.

9 | -------------------------------------------------------------------------------- /integration-tests/src/main/java/Hello.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | public class Hello { 14 | 15 | public static void main(String[] args) { 16 | System.out.println("A Module Full of Integration Tests!"); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/.env: -------------------------------------------------------------------------------- 1 | MYSQL_ROOT_PASSWORD=password 2 | MYSQL_DATABASE=testdb 3 | MYSQL_USER=speedment 4 | MYSQL_PASSWORD=password 5 | -------------------------------------------------------------------------------- /integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/run-test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # JPAstreamer - Express JPA queries with Java Streams 4 | # Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 5 | # 6 | # License: GNU Lesser General Public License (LGPL), version 2.1 or later. 7 | # 8 | # This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 9 | # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 | # See the GNU Lesser General Public License for more details. 11 | # 12 | # See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 13 | # 14 | 15 | 16 | docker-compose rm -v -f -s test-db && docker-compose up -d 17 | mysql -h 127.0.0.1 -P 3305 -u speedment -ppassword publications 18 | -------------------------------------------------------------------------------- /integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/.env: -------------------------------------------------------------------------------- 1 | MYSQL_ROOT_PASSWORD=password 2 | MYSQL_DATABASE=testdb2 3 | MYSQL_USER=speedment 4 | MYSQL_PASSWORD=password 5 | -------------------------------------------------------------------------------- /integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/run-test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # JPAstreamer - Express JPA queries with Java Streams 4 | # Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 5 | # 6 | # License: GNU Lesser General Public License (LGPL), version 2.1 or later. 7 | # 8 | # This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 9 | # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 | # See the GNU Lesser General Public License for more details. 11 | # 12 | # See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 13 | # 14 | 15 | 16 | docker-compose rm -v -f -s test-db-2 && docker-compose up -d 17 | mysql -h 127.0.0.1 -P 3304 -u speedment -ppassword testdb2 18 | -------------------------------------------------------------------------------- /integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/standard/JPAStreamerTest.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.integration.test.standard; 14 | 15 | import com.speedment.jpastreamer.application.JPAStreamer; 16 | 17 | public class JPAStreamerTest { 18 | 19 | final static protected JPAStreamer jpaStreamer = JPAStreamer.of("sakila"); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/standard/model/groups/GroupA.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.integration.test.standard.model.groups; 14 | 15 | public interface GroupA { 16 | } 17 | -------------------------------------------------------------------------------- /integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/standard/model/groups/GroupB.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.integration.test.standard.model.groups; 14 | public interface GroupB { 15 | } 16 | -------------------------------------------------------------------------------- /integration/cdi/cdi-jpastreamer/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.integration.cdi { 14 | requires transitive jpastreamer.application; 15 | requires cdi.api; 16 | 17 | //requires transitive spring.boot.autoconfigure; 18 | //requires transitive spring.context; 19 | 20 | exports com.speedment.jpastreamer.integration.cdi; 21 | } 22 | -------------------------------------------------------------------------------- /jpastreamer.announcer/README.adoc: -------------------------------------------------------------------------------- 1 | = Announcer 2 | Per Minborg 3 | :toc: macro 4 | 5 | Start-up messages for features. 6 | 7 | == Info 8 | [%header,cols=2*] 9 | |=== 10 | |Property 11 | |Value 12 | 13 | |JPMS Module 14 | |jpastreamer.announcer 15 | 16 | |artifactId 17 | |jpastreamer.announcer 18 | |=== 19 | 20 | == Summary 21 | Announcer allows feature libraries to announce themselves upon start-up. A provided just provides an implementation of the following class: 22 | 23 | [source, java] 24 | ---- 25 | public interface Announcer { 26 | 27 | /** 28 | * Returns a greeting that is to be output upon 29 | * system start-up. 30 | *

31 | * Returning an empty String prevents output. 32 | * 33 | * @return a greeting that is to be output upon 34 | * system start-up 35 | */ 36 | String greeting(); 37 | 38 | } 39 | ---- 40 | 41 | == Details 42 | None 43 | 44 | == Contents 45 | toc::[] -------------------------------------------------------------------------------- /jpastreamer.announcer/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.announcer { 14 | 15 | exports com.speedment.jpastreamer.announcer; 16 | 17 | } -------------------------------------------------------------------------------- /jpastreamer.appinfo/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.appinfo { 14 | exports com.speedment.jpastreamer.appinfo; 15 | } 16 | -------------------------------------------------------------------------------- /jpastreamer.application/src/main/java/com/speedment/jpastreamer/application/JPAStreamerBuilder.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.application; 14 | 15 | public interface JPAStreamerBuilder { 16 | 17 | /** 18 | * Creates and returns a new JPAStreamer instance. 19 | * 20 | * @return a new JPAStreamer instance 21 | */ 22 | JPAStreamer build(); 23 | } 24 | -------------------------------------------------------------------------------- /jpastreamer.application/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | import com.speedment.jpastreamer.application.JPAStreamerBuilderFactory; 2 | 3 | /* 4 | * JPAstreamer - Express JPA queries with Java Streams 5 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 6 | * 7 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 8 | * 9 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 10 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 11 | * See the GNU Lesser General Public License for more details. 12 | * 13 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 14 | */ 15 | module jpastreamer.application { 16 | requires transitive jakarta.persistence; 17 | requires transitive jpastreamer.field; 18 | requires transitive jpastreamer.streamconfiguration; 19 | requires jpastreamer.rootfactory; 20 | 21 | exports com.speedment.jpastreamer.application; 22 | 23 | uses JPAStreamerBuilderFactory; 24 | } 25 | -------------------------------------------------------------------------------- /jpastreamer.autoclose/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.autoclose { 14 | exports com.speedment.jpastreamer.autoclose; 15 | } 16 | -------------------------------------------------------------------------------- /jpastreamer.builder/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.builder { 14 | requires transitive jpastreamer.renderer; 15 | 16 | exports com.speedment.jpastreamer.builder; 17 | } 18 | -------------------------------------------------------------------------------- /jpastreamer.core/src/main/java/com/speedment/jpastreamer/core/Foo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.core; 14 | 15 | /** 16 | * Dummy class to force JavaDoc generation. 17 | *

18 | * @deprecated This class may be removed at any release for any reason 19 | */ 20 | @Deprecated // For removal 21 | public final class Foo {} 22 | -------------------------------------------------------------------------------- /jpastreamer.criteria/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.criteria { 14 | requires transitive jakarta.persistence; 15 | requires transitive jpastreamer.field; 16 | 17 | exports com.speedment.jpastreamer.criteria; 18 | 19 | } 20 | -------------------------------------------------------------------------------- /jpastreamer.exception/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.exception { 14 | 15 | exports com.speedment.jpastreamer.exception; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/collector/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * Collectors provided by the Runtime Field module. 17 | */ 18 | package com.speedment.jpastreamer.field.collector; 19 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/comparator/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * Comparators provided by the Runtime Field module. 17 | */ 18 | package com.speedment.jpastreamer.field.comparator; 19 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/exception/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * Exception thrown by classes in the Runtime Field module. 17 | */ 18 | package com.speedment.jpastreamer.field.exception; 19 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/expression/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * This package contains expression classes. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.expression; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/internal/collector/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * This package contains collector classes. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.internal.collector; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/internal/comparator/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * This package contains comparator classes. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.internal.comparator; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/internal/expression/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * This package contains expression classes. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.internal.expression; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/internal/method/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * This package contains method classes. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.internal.method; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/internal/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * This package contains internal classes. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.internal; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/internal/predicate/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * This package contains predicate classes. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.internal.predicate; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/method/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * Functional interfaces used by Fields are located in this package. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.method; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/predicate/trait/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * Traits used in Speedment predicates are located in this package. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.predicate.trait; 22 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/trait/HasArg0.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.field.trait; 14 | 15 | /** 16 | * A representation of the first argument of a field predicate. 17 | * 18 | * @author Julia Gustafsson 19 | * @since 0.1.0 20 | */ 21 | 22 | public interface HasArg0 { 23 | 24 | /** 25 | * Returns the first argument of a predicate. 26 | * 27 | * @return the first argument 28 | */ 29 | T0 get0(); 30 | } 31 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/trait/HasArg1.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.field.trait; 14 | 15 | /** 16 | * A representation of the second argument of a field predicate. 17 | * 18 | * @author Julia Gustafsson 19 | * @since 0.1.0 20 | */ 21 | 22 | public interface HasArg1 { 23 | 24 | /** 25 | * Returns the second argument of a predicate. 26 | * 27 | * @return the second argument 28 | */ 29 | T1 get1(); 30 | } 31 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/trait/HasArg2.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.field.trait; 14 | 15 | /** 16 | * A representation of the third argument of a field predicate. 17 | * 18 | * @author Julia Gustafsson 19 | * @since 0.1.0 20 | */ 21 | 22 | public interface HasArg2 { 23 | 24 | /** 25 | * Returns the third argument of a predicate. 26 | * 27 | * @return the third argument 28 | */ 29 | T2 get2(); 30 | } 31 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/trait/HasColumnName.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.field.trait; 14 | 15 | /** 16 | * @author Julia Gustafsson 17 | */ 18 | public interface HasColumnName { 19 | 20 | /** 21 | * Returns the database column name of this field. 22 | * 23 | * @return the database column name 24 | */ 25 | String columnName(); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/trait/HasTable.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.field.trait; 14 | 15 | /** 16 | * 17 | * @param the entity type 18 | * 19 | * @author Emil Forslund 20 | * @since 3.0.0 21 | */ 22 | 23 | public interface HasTable { 24 | 25 | /** 26 | * Returns the unique identifier of this field. 27 | * 28 | * @return the identifier 29 | */ 30 | Class table(); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /jpastreamer.field/src/main/java/com/speedment/jpastreamer/field/trait/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * Traits used in Speedment fields are located in this package. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.field.trait; 22 | -------------------------------------------------------------------------------- /jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.component/src/main/java/com/speedment/jpastreamer/fieldgenerator/component/FilmRating.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.fieldgenerator.component; 14 | 15 | public enum FilmRating { 16 | G, PG , PG_13, R , NC_17 17 | } 18 | -------------------------------------------------------------------------------- /jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.component/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.fieldgenerator.component { 14 | requires jakarta.persistence; 15 | 16 | exports com.speedment.jpastreamer.fieldgenerator.component; 17 | } 18 | -------------------------------------------------------------------------------- /jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test.package/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.fieldgenerator.test.renaming { 14 | 15 | requires jpastreamer.fieldgenerator.standard; 16 | requires jakarta.persistence; 17 | requires lombok; 18 | requires java.validation; 19 | requires transitive java.sql; 20 | requires transitive jpastreamer.field; 21 | 22 | exports com.speedment.jpastreamer.fieldgenerator.test.renaming; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/LombokBean.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.fieldgenerator.test; 14 | 15 | import jakarta.persistence.Entity; 16 | 17 | import lombok.Data; 18 | 19 | @Data 20 | @Entity 21 | public class LombokBean { 22 | 23 | private int id; 24 | String name; 25 | String petName; 26 | 27 | } 28 | -------------------------------------------------------------------------------- /jpastreamer.integration/cdi/jpastreamer.integration.cdi/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.integration.cdi { 14 | requires transitive jpastreamer.application; 15 | requires cdi.api; 16 | 17 | //requires transitive spring.boot.autoconfigure; 18 | //requires transitive spring.context; 19 | 20 | exports com.speedment.jpastreamer.integration.cdi; 21 | } 22 | -------------------------------------------------------------------------------- /jpastreamer.integration/spring/jpastreamer.integration.spring.autoconfigure/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.integration.spring.autoconfigure { 14 | requires jpastreamer.application; 15 | 16 | requires transitive spring.boot.autoconfigure; 17 | requires transitive spring.context; 18 | 19 | exports com.speedment.jpastreamer.integration.spring.autoconfigure; 20 | } 21 | -------------------------------------------------------------------------------- /jpastreamer.integration/spring/jpastreamer.integration.spring.autoconfigure/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- 1 | org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ 2 | com.speedment.jpastreamer.integration.spring.autoconfigure.JPAStreamerAutoConfiguration 3 | -------------------------------------------------------------------------------- /jpastreamer.interopoptimizer/src/main/java/com/speedment/jpastreamer/interopoptimizer/IntermediateOperationOptimizer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.interopoptimizer; 14 | 15 | import com.speedment.jpastreamer.pipeline.Pipeline; 16 | 17 | @FunctionalInterface 18 | public interface IntermediateOperationOptimizer { 19 | 20 | Pipeline optimize(Pipeline pipeline); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /jpastreamer.interopoptimizer/src/main/java/com/speedment/jpastreamer/interopoptimizer/IntermediateOperationOptimizerFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.interopoptimizer; 14 | 15 | import java.util.stream.Stream; 16 | 17 | public interface IntermediateOperationOptimizerFactory { 18 | 19 | Stream stream(); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /jpastreamer.interopoptimizer/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.interopoptimizer { 14 | requires transitive jpastreamer.pipeline; 15 | 16 | exports com.speedment.jpastreamer.interopoptimizer; 17 | } 18 | -------------------------------------------------------------------------------- /jpastreamer.javasixteen/src/main/java/com/speedment/jpastreamer/javasixteen/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2021, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | * 13 | */ 14 | 15 | /** 16 | * This package contains Java 16 classes. 17 | *

18 | * This package is part of the API. Modifications to classes here should only 19 | * (if ever) be done in major releases. 20 | */ 21 | package com.speedment.jpastreamer.javasixteen; 22 | -------------------------------------------------------------------------------- /jpastreamer.javasixteen/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.javasixteen { 14 | requires jpastreamer.exception; 15 | 16 | exports com.speedment.jpastreamer.javasixteen; 17 | } 18 | -------------------------------------------------------------------------------- /jpastreamer.merger/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.merger { 14 | requires transitive jakarta.persistence; 15 | requires transitive jpastreamer.pipeline; 16 | requires transitive jpastreamer.criteria; 17 | 18 | exports com.speedment.jpastreamer.merger; 19 | exports com.speedment.jpastreamer.merger.result; 20 | } 21 | -------------------------------------------------------------------------------- /jpastreamer.pipeline/src/main/java/com/speedment/jpastreamer/pipeline/PipelineFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.pipeline; 14 | 15 | public interface PipelineFactory { 16 | 17 | /** 18 | * Creates and returns a new Pipeline. 19 | * 20 | * @param rootClass the entity class to be used as a root (source) 21 | * @author Per Minborg 22 | */ 23 | Pipeline createPipeline(Class rootClass); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /jpastreamer.pipeline/src/main/java/com/speedment/jpastreamer/pipeline/intermediate/IntermediateOperationFunctionalType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.pipeline.intermediate; 14 | 15 | public enum IntermediateOperationFunctionalType { 16 | 17 | CONSUME, APPLY, APPLY_AS_LONG, APPLY_AS_INT, APPLY_AS_DOUBLE, TEST ; 18 | 19 | } 20 | -------------------------------------------------------------------------------- /jpastreamer.pipeline/src/main/java/com/speedment/jpastreamer/pipeline/intermediate/Verb.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.pipeline.intermediate; 14 | 15 | /** 16 | * 17 | * @author Per Minborg 18 | */ 19 | public enum Verb { 20 | PRESERVES, 21 | MODIFIES, 22 | CLEARS 23 | } 24 | -------------------------------------------------------------------------------- /jpastreamer.pipeline/src/main/java/com/speedment/jpastreamer/pipeline/terminal/OrderPreservation.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.pipeline.terminal; 14 | 15 | public enum OrderPreservation { 16 | REQUIRED, NOT_REQUIRED_IF_PARALLEL, NOT_REQUIRED; 17 | } 18 | -------------------------------------------------------------------------------- /jpastreamer.pipeline/src/main/java/com/speedment/jpastreamer/pipeline/terminal/TerminalOperationFunctionalType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.pipeline.terminal; 14 | 15 | public enum TerminalOperationFunctionalType { 16 | 17 | ACCEPT, APPLY, APPLY_AS_LONG, APPLY_AS_INT, APPLY_AS_DOUBLE, TEST ; 18 | 19 | } 20 | -------------------------------------------------------------------------------- /jpastreamer.pipeline/src/main/java/com/speedment/jpastreamer/pipeline/trait/HasArguments.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.pipeline.trait; 14 | 15 | public interface HasArguments { 16 | 17 | /** 18 | * Returns the arguments for this terminating operation, or {@code null}. 19 | * 20 | * @return the arguments for this terminating operation, or {@code null} 21 | */ 22 | Object[] arguments(); 23 | } 24 | -------------------------------------------------------------------------------- /jpastreamer.pipeline/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.pipeline { 14 | 15 | exports com.speedment.jpastreamer.pipeline; 16 | exports com.speedment.jpastreamer.pipeline.intermediate; 17 | exports com.speedment.jpastreamer.pipeline.terminal; 18 | exports com.speedment.jpastreamer.pipeline.trait; 19 | 20 | } 21 | -------------------------------------------------------------------------------- /jpastreamer.projection/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.projection { 14 | requires transitive jpastreamer.field; 15 | requires transitive jakarta.persistence; 16 | 17 | exports com.speedment.jpastreamer.projection; 18 | } 19 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.appinfo.standard/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | import com.speedment.jpastreamer.appinfo.ApplicationInformation; 2 | import com.speedment.jpastreamer.appinfo.standard.StandardApplicationInformation; 3 | 4 | /* 5 | * JPAstreamer - Express JPA queries with Java Streams 6 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 7 | * 8 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 9 | * 10 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 11 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 12 | * See the GNU Lesser General Public License for more details. 13 | * 14 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 15 | */ 16 | module jpastreamer.appinfo.standard { 17 | requires transitive jpastreamer.appinfo; 18 | 19 | exports com.speedment.jpastreamer.appinfo.standard; 20 | 21 | provides ApplicationInformation with StandardApplicationInformation; 22 | } 23 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.appinfo.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.appinfo.ApplicationInformation: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.appinfo.standard.StandardApplicationInformation 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.application.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.application.JPAStreamerBuilderFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.application.standard.StandardJPAStreamerBuilderFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.autoclose.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.autoclose.AutoCloseFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.autoclose.standard.StandardAutoCloseFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.builder.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.builder.BuilderFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.builder.standard.StandardBuilderFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.criteria.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.criteria.CriteriaFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.criteria.standard.StandardCriteriaFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.criteria.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.criteria.OrderFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.criteria.standard.StandardOrderFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.criteria.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.criteria.PredicateFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.criteria.standard.StandardPredicateFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.interopoptimizer.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.interopoptimizer.IntermediateOperationOptimizerFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.interopoptimizer.standard.StandardIntermediateOperationOptimizerFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.merger.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.merger.MergerFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.merger.standard.StandardMergerFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.PipelineFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.standard.StandardPipelineFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.intermediate.DoubleIntermediateOperationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.intermediate.standard.StandardDoubleIntermediateOperationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.intermediate.IntIntermediateOperationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.intermediate.standard.StandardIntIntermediateOperationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.intermediate.IntermediateOperationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.intermediate.standard.StandardIntermediateOperationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.intermediate.LongIntermediateOperationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.intermediate.standard.StandardLongIntermediateOperationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.terminal.DoubleTerminalOperationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.terminal.standard.StandardDoubleTerminalOperationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.terminal.IntTerminalOperationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.terminal.standard.StandardIntTerminalOperationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.terminal.LongTerminalOperationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.terminal.standard.StandardLongTerminalOperationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.pipeline.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.pipeline.terminal.TerminalOperationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.pipeline.terminal.standard.StandardTerminalOperationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.renderer.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.renderer.RendererFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.renderer.standard.StandardRendererFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.streamconfiguration.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.streamconfiguration.StreamConfigurationFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.streamconfiguration.standard.StandardStreamConfigurationFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.streamconfiguration.standard/src/test/java/com/speedment/jpastreamer/streamconfiguration/standard/internal/Film.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.streamconfiguration.standard.internal; 14 | 15 | final class Film { 16 | String title; 17 | int length; 18 | public String getTitle() { return title; } 19 | public Integer getLength() { return length; } 20 | } 21 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.termopmodifier.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.termopmodifier.TerminalOperationModifierFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.termopmodifier.standard.StandardTerminalOperatorModifierFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.provider/jpastreamer.termopoptimizer.standard/src/main/resources/META-INF/services/com.speedment.jpastreamer.termopoptimizer.TerminalOperationOptimizerFactory: -------------------------------------------------------------------------------- 1 | com.speedment.jpastreamer.termopoptimizer.standard.StandardTerminalOperationOptimizerFactory 2 | -------------------------------------------------------------------------------- /jpastreamer.renderer/src/main/java/com/speedment/jpastreamer/renderer/RenderResult.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.renderer; 14 | 15 | import com.speedment.jpastreamer.pipeline.terminal.TerminalOperation; 16 | 17 | import java.util.stream.BaseStream; 18 | 19 | public interface RenderResult> { 20 | 21 | Class root(); 22 | 23 | S stream(); 24 | 25 | TerminalOperation terminalOperation(); 26 | } 27 | -------------------------------------------------------------------------------- /jpastreamer.renderer/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.renderer { 14 | requires transitive jakarta.persistence; 15 | requires transitive jpastreamer.streamconfiguration; 16 | requires transitive jpastreamer.pipeline; 17 | 18 | exports com.speedment.jpastreamer.renderer; 19 | } 20 | -------------------------------------------------------------------------------- /jpastreamer.rootfactory/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.rootfactory { 14 | exports com.speedment.jpastreamer.rootfactory; 15 | } 16 | -------------------------------------------------------------------------------- /jpastreamer.streamconfiguration/src/main/java/com/speedment/jpastreamer/streamconfiguration/StreamConfigurationFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.streamconfiguration; 14 | 15 | public interface StreamConfigurationFactory { 16 | 17 | StreamConfiguration createStreamConfiguration(Class entityClass); 18 | 19 | } 20 | -------------------------------------------------------------------------------- /jpastreamer.termopmodifier/src/main/java/com/speedment/jpastreamer/termopmodifier/TerminalOperationModifierFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.termopmodifier; 14 | 15 | @FunctionalInterface 16 | public interface TerminalOperationModifierFactory { 17 | 18 | /** 19 | * Returns a TerminalOperationModifier. 20 | * 21 | * @return a TerminalOperationModifier 22 | */ 23 | TerminalOperationModifier get(); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /jpastreamer.termopmodifier/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.termopmodifier { 14 | requires transitive jpastreamer.pipeline; 15 | 16 | exports com.speedment.jpastreamer.termopmodifier; 17 | } 18 | -------------------------------------------------------------------------------- /jpastreamer.termopoptimizer/src/main/java/com/speedment/jpastreamer/termopoptimizer/TerminalOperationOptimizerFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | package com.speedment.jpastreamer.termopoptimizer; 14 | 15 | @FunctionalInterface 16 | public interface TerminalOperationOptimizerFactory { 17 | 18 | /** 19 | * Returns a TerminalOperationOptimizer. 20 | * 21 | * @return a TerminalOperationOptimizer 22 | */ 23 | TerminalOperationOptimizer get(); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /jpastreamer.termopoptimizer/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module jpastreamer.termopoptimizer { 14 | requires transitive jpastreamer.pipeline; 15 | 16 | exports com.speedment.jpastreamer.termopoptimizer; 17 | } 18 | -------------------------------------------------------------------------------- /license_header.txt: -------------------------------------------------------------------------------- 1 | JPAstreamer - Express JPA queries with Java Streams 2 | Copyright (c) 2020-${currentYear}, Speedment, Inc. All Rights Reserved. 3 | 4 | License: GNU Lesser General Public License (LGPL), version 2.1 or later. 5 | 6 | This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 7 | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 8 | See the GNU Lesser General Public License for more details. 9 | 10 | See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 11 | -------------------------------------------------------------------------------- /node_modules/antora-lunr/lib/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | 'use strict' 14 | 15 | /** 16 | * Lunr component for Antora 17 | * 18 | * @module lunr 19 | */ 20 | module.exports = require('./generate-index') 21 | -------------------------------------------------------------------------------- /node_modules/antora-lunr/supplemental_ui/partials/footer-scripts.hbs: -------------------------------------------------------------------------------- 1 | 2 | {{#if (eq env.DOCSEARCH_ENGINE 'lunr')}} 3 | 4 | 5 | 6 | {{/if}} 7 | 8 | -------------------------------------------------------------------------------- /node_modules/antora-lunr/supplemental_ui/partials/head-meta.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /node_modules/boolbase/README.md: -------------------------------------------------------------------------------- 1 | #boolbase 2 | This very simple module provides two basic functions, one that always returns true (`trueFunc`) and one that always returns false (`falseFunc`). 3 | 4 | ###WTF? 5 | 6 | By having only a single instance of these functions around, it's possible to do some nice optimizations. Eg. [`CSSselect`](https://github.com/fb55/CSSselect) uses these functions to determine whether a selector won't match any elements. If that's the case, the DOM doesn't even have to be touched. 7 | 8 | ###And why is this a separate module? 9 | 10 | I'm trying to modularize `CSSselect` and most modules depend on these functions. IMHO, having a separate module is the easiest solution to this problem. -------------------------------------------------------------------------------- /node_modules/boolbase/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | module.exports = { 14 | trueFunc: function trueFunc(){ 15 | return true; 16 | }, 17 | falseFunc: function falseFunc(){ 18 | return false; 19 | } 20 | }; -------------------------------------------------------------------------------- /node_modules/boolbase/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "boolbase", 3 | "version": "1.0.0", 4 | "description": "two functions: One that returns true, one that returns false", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/fb55/boolbase" 12 | }, 13 | "keywords": [ 14 | "boolean", 15 | "function" 16 | ], 17 | "author": "Felix Boehm ", 18 | "license": "ISC", 19 | "bugs": { 20 | "url": "https://github.com/fb55/boolbase/issues" 21 | }, 22 | "homepage": "https://github.com/fb55/boolbase" 23 | } 24 | -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/esm/helpers.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import type { AnyNode } from "domhandler"; 15 | import type { Selector } from "css-what"; 16 | export declare function getDocumentRoot(node: AnyNode): AnyNode; 17 | export declare function groupSelectors(selectors: Selector[][]): [plain: Selector[][], filtered: Selector[][]]; 18 | //# sourceMappingURL=helpers.d.ts.map -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/esm/helpers.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"helpers.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio-select/ef063a6ca4c3f0d02d2fc3505e750b6fb81c448d/src/","sources":["helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAGzC,wBAAgB,eAAe,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,CAGtD;AAED,wBAAgB,cAAc,CAC1B,SAAS,EAAE,QAAQ,EAAE,EAAE,GACxB,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,CAAC,CAa/C"} -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/esm/helpers.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"helpers.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio-select/ef063a6ca4c3f0d02d2fc3505e750b6fb81c448d/src/","sources":["helpers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,MAAM,UAAU,eAAe,CAAC,IAAa;IACzC,OAAO,IAAI,CAAC,MAAM;QAAE,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC;IACvC,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,cAAc,CAC1B,SAAuB;IAEvB,MAAM,iBAAiB,GAAiB,EAAE,CAAC;IAC3C,MAAM,cAAc,GAAiB,EAAE,CAAC;IAExC,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;QAC9B,IAAI,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE;YACzB,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SACpC;aAAM;YACH,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SACjC;KACJ;IAED,OAAO,CAAC,cAAc,EAAE,iBAAiB,CAAC,CAAC;AAC/C,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/esm/positionals.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"positionals.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio-select/ef063a6ca4c3f0d02d2fc3505e750b6fb81c448d/src/","sources":["positionals.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAEzD,oBAAY,MAAM,GACZ,OAAO,GACP,MAAM,GACN,IAAI,GACJ,KAAK,GACL,IAAI,GACJ,IAAI,GACJ,MAAM,GACN,KAAK,GACL,KAAK,CAAC;AACZ,eAAO,MAAM,WAAW,EAAE,GAAG,CAAC,MAAM,CASlC,CAAC;AAEH,MAAM,WAAW,eAAgB,SAAQ,cAAc;IACnD,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB;AAED,wBAAgB,QAAQ,CAAC,CAAC,EAAE,QAAQ,GAAG,CAAC,IAAI,eAAe,CAS1D;AAED,wBAAgB,QAAQ,CACpB,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,GAAG,IAAI,EACnB,SAAS,EAAE,MAAM,GAClB,MAAM,CAyBR"} -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/helpers.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import type { AnyNode } from "domhandler"; 15 | import type { Selector } from "css-what"; 16 | export declare function getDocumentRoot(node: AnyNode): AnyNode; 17 | export declare function groupSelectors(selectors: Selector[][]): [plain: Selector[][], filtered: Selector[][]]; 18 | //# sourceMappingURL=helpers.d.ts.map -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/helpers.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"helpers.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio-select/ef063a6ca4c3f0d02d2fc3505e750b6fb81c448d/src/","sources":["helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAGzC,wBAAgB,eAAe,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,CAGtD;AAED,wBAAgB,cAAc,CAC1B,SAAS,EAAE,QAAQ,EAAE,EAAE,GACxB,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,CAAC,CAa/C"} -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/helpers.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"helpers.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio-select/ef063a6ca4c3f0d02d2fc3505e750b6fb81c448d/src/","sources":["helpers.ts"],"names":[],"mappings":";;;AAEA,mDAA4C;AAE5C,SAAgB,eAAe,CAAC,IAAa;IACzC,OAAO,IAAI,CAAC,MAAM;QAAE,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC;IACvC,OAAO,IAAI,CAAC;AAChB,CAAC;AAHD,0CAGC;AAED,SAAgB,cAAc,CAC1B,SAAuB;IAEvB,IAAM,iBAAiB,GAAiB,EAAE,CAAC;IAC3C,IAAM,cAAc,GAAiB,EAAE,CAAC;IAExC,KAAuB,UAAS,EAAT,uBAAS,EAAT,uBAAS,EAAT,IAAS,EAAE;QAA7B,IAAM,QAAQ,kBAAA;QACf,IAAI,QAAQ,CAAC,IAAI,CAAC,yBAAQ,CAAC,EAAE;YACzB,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SACpC;aAAM;YACH,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;SACjC;KACJ;IAED,OAAO,CAAC,cAAc,EAAE,iBAAiB,CAAC,CAAC;AAC/C,CAAC;AAfD,wCAeC"} -------------------------------------------------------------------------------- /node_modules/cheerio-select/lib/positionals.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"positionals.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio-select/ef063a6ca4c3f0d02d2fc3505e750b6fb81c448d/src/","sources":["positionals.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAEzD,oBAAY,MAAM,GACZ,OAAO,GACP,MAAM,GACN,IAAI,GACJ,KAAK,GACL,IAAI,GACJ,IAAI,GACJ,MAAM,GACN,KAAK,GACL,KAAK,CAAC;AACZ,eAAO,MAAM,WAAW,EAAE,GAAG,CAAC,MAAM,CASlC,CAAC;AAEH,MAAM,WAAW,eAAgB,SAAQ,cAAc;IACnD,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB;AAED,wBAAgB,QAAQ,CAAC,CAAC,EAAE,QAAQ,GAAG,CAAC,IAAI,eAAe,CAS1D;AAED,wBAAgB,QAAQ,CACpB,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,GAAG,IAAI,EACnB,SAAS,EAAE,MAAM,GAClB,MAAM,CAyBR"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/api/css.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"css.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["api/css.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAE7C;;;;;;;GAOG;AACH,wBAAgB,GAAG,CAAC,CAAC,SAAS,OAAO,EACnC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,EAChB,KAAK,CAAC,EAAE,MAAM,EAAE,GACf,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC;AACtC;;;;;;;GAOG;AACH,wBAAgB,GAAG,CAAC,CAAC,SAAS,OAAO,EACnC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,EAChB,IAAI,EAAE,MAAM,GACX,MAAM,GAAG,SAAS,CAAC;AACtB;;;;;;;;GAQG;AACH,wBAAgB,GAAG,CAAC,CAAC,SAAS,OAAO,EACnC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,EAChB,IAAI,EAAE,MAAM,EACZ,GAAG,EACC,MAAM,GACN,CAAC,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,CAAC,GACpE,OAAO,CAAC,CAAC,CAAC,CAAC;AACd;;;;;;;GAOG;AACH,wBAAgB,GAAG,CAAC,CAAC,SAAS,OAAO,EACnC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,EAChB,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAC1B,OAAO,CAAC,CAAC,CAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/api/forms.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"forms.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["api/forms.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAW7C;;;;;;;;;;;;;GAaG;AACH,wBAAgB,SAAS,CAAC,CAAC,SAAS,OAAO,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,MAAM,CAYrE;AAED,UAAU,eAAe;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,cAAc,CAAC,CAAC,SAAS,OAAO,EAC9C,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,GACf,eAAe,EAAE,CAsCnB"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/api/css.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"css.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["api/css.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAE7C;;;;;;;GAOG;AACH,wBAAgB,GAAG,CAAC,CAAC,SAAS,OAAO,EACnC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,EAChB,KAAK,CAAC,EAAE,MAAM,EAAE,GACf,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC;AACtC;;;;;;;GAOG;AACH,wBAAgB,GAAG,CAAC,CAAC,SAAS,OAAO,EACnC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,EAChB,IAAI,EAAE,MAAM,GACX,MAAM,GAAG,SAAS,CAAC;AACtB;;;;;;;;GAQG;AACH,wBAAgB,GAAG,CAAC,CAAC,SAAS,OAAO,EACnC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,EAChB,IAAI,EAAE,MAAM,EACZ,GAAG,EACC,MAAM,GACN,CAAC,CAAC,IAAI,EAAE,OAAO,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,CAAC,GACpE,OAAO,CAAC,CAAC,CAAC,CAAC;AACd;;;;;;;GAOG;AACH,wBAAgB,GAAG,CAAC,CAAC,SAAS,OAAO,EACnC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,EAChB,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAC1B,OAAO,CAAC,CAAC,CAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/api/forms.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"forms.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["api/forms.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAW7C;;;;;;;;;;;;;GAaG;AACH,wBAAgB,SAAS,CAAC,CAAC,SAAS,OAAO,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,MAAM,CAYrE;AAED,UAAU,eAAe;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,cAAc,CAAC,CAAC,SAAS,OAAO,EAC9C,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,GACf,eAAe,EAAE,CAsCnB"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;AACH,YAAY,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE5C;;;;GAIG;AACH,cAAc,YAAY,CAAC;AAC3B,YAAY,EACV,cAAc,EACd,kBAAkB,EAClB,aAAa,GACd,MAAM,cAAc,CAAC;AACtB;;;;GAIG;AACH,YAAY,EAAE,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAE/E,YAAY,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAc5C;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,IAAI,wNAIhB,CAAC;AAEF;;;;GAIG;;AACH,wBAAwB;AAExB,OAAO,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AAE9C,OAAO,KAAK,aAAa,MAAM,aAAa,CAAC;AAE7C;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAQ,QAAQ,+BAAkB,CAAC;AAE1C;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAQ,KAAK,4BAAkB,CAAC;AAEvC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAQ,SAAS,gCAAkB,CAAC;AAE3C;;;;;;;;;;;GAWG;AACH,eAAO,MAAQ,IAAI,2BAAkB,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/options.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"options.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["options.ts"],"names":[],"mappings":"AAiFA,MAAM,WAAW,GAAmB;IAClC,GAAG,EAAE,KAAK;IACV,cAAc,EAAE,IAAI;CACrB,CAAC;AAEF,+BAA+B;AAC/B,eAAe,WAAW,CAAC;AAE3B,MAAM,cAAc,GAAoB;IACtC,eAAe,EAAE,IAAI;IACrB,OAAO,EAAE,IAAI;CACd,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,UAAU,OAAO,CACrB,OAA+B;IAE/B,OAAO,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,GAAG;QACjB,CAAC,CAAC,OAAO,OAAO,CAAC,GAAG,KAAK,SAAS;YAChC,CAAC,CAAC,cAAc;YAChB,CAAC,CAAC,EAAE,GAAG,cAAc,EAAE,GAAG,OAAO,CAAC,GAAG,EAAE;QACzC,CAAC,CAAC,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,SAAS,CAAC;AAC3B,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/parse.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"parse.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["parse.ts"],"names":[],"mappings":";AACA,OAAO,EACL,OAAO,EACP,QAAQ,EACR,UAAU,EAEX,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAEpD;;;;;GAKG;AACH,wBAAgB,QAAQ,CACtB,MAAM,EAAE,CACN,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,eAAe,EACxB,UAAU,EAAE,OAAO,EACnB,OAAO,EAAE,UAAU,GAAG,IAAI,KACvB,QAAQ,aAYF,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,EAAE,GAAG,MAAM,WAChD,eAAe,cACZ,OAAO,WACV,UAAU,GAAG,IAAI,KACzB,QAAQ,CAwBZ;AAED;;;;;;GAMG;AACH,wBAAgB,MAAM,CACpB,SAAS,EAAE,OAAO,EAAE,GAAG,OAAO,EAC9B,MAAM,EAAE,UAAU,GAAG,IAAI,GACxB,UAAU,GAAG,IAAI,CA+BnB"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/parsers/parse5-adapter.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"parse5-adapter.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["parsers/parse5-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAc,UAAU,EAAE,MAAM,YAAY,CAAC;AAGvE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAErD;;;;;;;;GAQG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,eAAe,EACxB,UAAU,EAAE,OAAO,EACnB,OAAO,EAAE,UAAU,GAAG,IAAI,GACzB,QAAQ,CAaV;AAID;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,OAAO,GAAG,SAAS,CAAC,OAAO,CAAC,GAAG,MAAM,CAqB1E"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/slim.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"slim.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["slim.ts"],"names":[],"mappings":"AAAA,mEAAmE;;AAEnE,YAAY,EACV,OAAO,EACP,UAAU,EACV,cAAc,EACd,kBAAkB,EAClB,IAAI,EACJ,OAAO,EACP,UAAU,EACV,OAAO,EACP,QAAQ,GACT,MAAM,GAAG,CAAC;AAEX;;;;GAIG;AACH,cAAc,YAAY,CAAC;AAO3B;;;;;;;;GAQG;AACH,eAAO,MAAM,IAAI,uOAA2C,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/slim.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"slim.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["slim.ts"],"names":[],"mappings":"AAAA,mEAAmE;AAcnE;;;;GAIG;AACH,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,MAAM,MAAM,gBAAgB,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/types.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | export {}; 14 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/esm/utils.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"utils.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,OAAO,EAAuB,MAAM,YAAY,CAAC;AAC/D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE5C;;;;;;;;;GASG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC;;;;;;GAMG;AACH,wBAAgB,SAAS,CAAC,CAAC,EAAE,YAAY,EAAE,GAAG,GAAG,YAAY,IAAI,OAAO,CAAC,CAAC,CAAC,CAE1E;AAED;;;;;;;GAOG;AACH,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAE7C;AAED;;;;;;;;GAQG;AACH,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAE3C;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,OAAO,CACrB,CAAC,SAAS,OAAO,EACjB,GAAG,SAAS,SAAS,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,EACrC,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,GAAG,GAAG,CAIvD;AAED;;;;;;;;GAQG;AACH,wBAAgB,QAAQ,CAAC,CAAC,SAAS,OAAO,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,EAAE,CAa7D;AAUD;;;;;;;;;;GAUG;AACH,wBAAgB,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAa3C"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;AACH,YAAY,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE5C;;;;GAIG;AACH,cAAc,YAAY,CAAC;AAC3B,YAAY,EACV,cAAc,EACd,kBAAkB,EAClB,aAAa,GACd,MAAM,cAAc,CAAC;AACtB;;;;GAIG;AACH,YAAY,EAAE,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAE/E,YAAY,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAc5C;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,IAAI,wNAIhB,CAAC;AAEF;;;;GAIG;;AACH,wBAAwB;AAExB,OAAO,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AAE9C,OAAO,KAAK,aAAa,MAAM,aAAa,CAAC;AAE7C;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAQ,QAAQ,+BAAkB,CAAC;AAE1C;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAQ,KAAK,4BAAkB,CAAC;AAEvC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAQ,SAAS,gCAAkB,CAAC;AAE3C;;;;;;;;;;;GAWG;AACH,eAAO,MAAQ,IAAI,2BAAkB,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/options.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"options.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["options.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAiFA,IAAM,WAAW,GAAmB;IAClC,GAAG,EAAE,KAAK;IACV,cAAc,EAAE,IAAI;CACrB,CAAC;AAEF,+BAA+B;AAC/B,kBAAe,WAAW,CAAC;AAE3B,IAAM,cAAc,GAAoB;IACtC,eAAe,EAAE,IAAI;IACrB,OAAO,EAAE,IAAI;CACd,CAAC;AAEF;;;;;;;GAOG;AACH,SAAgB,OAAO,CACrB,OAA+B;IAE/B,OAAO,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,GAAG;QACjB,CAAC,CAAC,OAAO,OAAO,CAAC,GAAG,KAAK,SAAS;YAChC,CAAC,CAAC,cAAc;YAChB,CAAC,uBAAM,cAAc,GAAK,OAAO,CAAC,GAAG,CAAE;QACzC,CAAC,CAAC,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,SAAS,CAAC;AAC3B,CAAC;AARD,0BAQC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/parse.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"parse.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["parse.ts"],"names":[],"mappings":";AACA,OAAO,EACL,OAAO,EACP,QAAQ,EACR,UAAU,EAEX,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAEpD;;;;;GAKG;AACH,wBAAgB,QAAQ,CACtB,MAAM,EAAE,CACN,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,eAAe,EACxB,UAAU,EAAE,OAAO,EACnB,OAAO,EAAE,UAAU,GAAG,IAAI,KACvB,QAAQ,aAYF,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,EAAE,GAAG,MAAM,WAChD,eAAe,cACZ,OAAO,WACV,UAAU,GAAG,IAAI,KACzB,QAAQ,CAwBZ;AAED;;;;;;GAMG;AACH,wBAAgB,MAAM,CACpB,SAAS,EAAE,OAAO,EAAE,GAAG,OAAO,EAC9B,MAAM,EAAE,UAAU,GAAG,IAAI,GACxB,UAAU,GAAG,IAAI,CA+BnB"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/parsers/parse5-adapter.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"parse5-adapter.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["parsers/parse5-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAc,UAAU,EAAE,MAAM,YAAY,CAAC;AAGvE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAErD;;;;;;;;GAQG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,eAAe,EACxB,UAAU,EAAE,OAAO,EACnB,OAAO,EAAE,UAAU,GAAG,IAAI,GACzB,QAAQ,CAaV;AAID;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,OAAO,GAAG,SAAS,CAAC,OAAO,CAAC,GAAG,MAAM,CAqB1E"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/slim.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"slim.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["slim.ts"],"names":[],"mappings":"AAAA,mEAAmE;;AAEnE,YAAY,EACV,OAAO,EACP,UAAU,EACV,cAAc,EACd,kBAAkB,EAClB,IAAI,EACJ,OAAO,EACP,UAAU,EACV,OAAO,EACP,QAAQ,GACT,MAAM,GAAG,CAAC;AAEX;;;;GAIG;AACH,cAAc,YAAY,CAAC;AAO3B;;;;;;;;GAQG;AACH,eAAO,MAAM,IAAI,uOAA2C,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/slim.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"slim.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["slim.ts"],"names":[],"mappings":";AAAA,mEAAmE;;;;;;;;;;;;;;;;;;;;AAcnE;;;;GAIG;AACH,6CAA2B;AAE3B,qCAAoC;AACpC,uCAAsC;AACtC,kEAAoC;AACpC,2CAA4C;AAE5C;;;;;;;;GAQG;AACU,QAAA,IAAI,GAAG,IAAA,iBAAO,EAAC,IAAA,mBAAQ,EAAC,2BAAa,CAAC,EAAE,wBAAM,CAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/types.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | "use strict"; 14 | Object.defineProperty(exports, "__esModule", { value: true }); 15 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /node_modules/cheerio/lib/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/cheerio/lib/utils.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"utils.d.ts","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,OAAO,EAAuB,MAAM,YAAY,CAAC;AAC/D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE5C;;;;;;;;;GASG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAEnC;;;;;;GAMG;AACH,wBAAgB,SAAS,CAAC,CAAC,EAAE,YAAY,EAAE,GAAG,GAAG,YAAY,IAAI,OAAO,CAAC,CAAC,CAAC,CAE1E;AAED;;;;;;;GAOG;AACH,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAE7C;AAED;;;;;;;;GAQG;AACH,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAE3C;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,OAAO,CACrB,CAAC,SAAS,OAAO,EACjB,GAAG,SAAS,SAAS,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,EACrC,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,GAAG,GAAG,CAIvD;AAED;;;;;;;;GAQG;AACH,wBAAgB,QAAQ,CAAC,CAAC,SAAS,OAAO,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,EAAE,CAa7D;AAUD;;;;;;;;;;GAUG;AACH,wBAAgB,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAa3C"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/attributes.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"attributes.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["attributes.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AACjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AA+EnE;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,MAAM,CAC/B,eAAe,EACf,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAC3B,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,IAAI,EAAE,iBAAiB,EACvB,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,KAC1C,aAAa,CAAC,WAAW,CAAC,CAsLlC,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/compile.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"compile.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["compile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,QAAQ,EAAgB,MAAM,UAAU,CAAC;AAQzD,OAAO,KAAK,EACR,aAAa,EACb,eAAe,EACf,gBAAgB,EACnB,MAAM,YAAY,CAAC;AAEpB;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAClD,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE,EAAE,EAC/B,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,CAAC,EAAE,IAAI,EAAE,GAAG,IAAI,GACxB,aAAa,CAAC,IAAI,CAAC,CAGrB;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACxD,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE,EAAE,EAC/B,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,CAAC,EAAE,IAAI,EAAE,GAAG,IAAI,GACxB,aAAa,CAAC,WAAW,CAAC,CAG5B;AAqDD,wBAAgB,YAAY,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACvD,KAAK,EAAE,gBAAgB,EAAE,EAAE,EAC3B,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,CAAC,EAAE,IAAI,EAAE,GAAG,IAAI,GACxB,aAAa,CAAC,WAAW,CAAC,CAsD5B"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/attributes.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"attributes.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["attributes.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AACjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AA+EnE;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,MAAM,CAC/B,eAAe,EACf,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAC3B,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,IAAI,EAAE,iBAAiB,EACvB,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,KAC1C,aAAa,CAAC,WAAW,CAAC,CAsLlC,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/compile.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"compile.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["compile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,QAAQ,EAAgB,MAAM,UAAU,CAAC;AAQzD,OAAO,KAAK,EACR,aAAa,EACb,eAAe,EACf,gBAAgB,EACnB,MAAM,YAAY,CAAC;AAEpB;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAClD,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE,EAAE,EAC/B,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,CAAC,EAAE,IAAI,EAAE,GAAG,IAAI,GACxB,aAAa,CAAC,IAAI,CAAC,CAGrB;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACxD,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE,EAAE,EAC/B,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,CAAC,EAAE,IAAI,EAAE,GAAG,IAAI,GACxB,aAAa,CAAC,WAAW,CAAC,CAG5B;AAqDD,wBAAgB,YAAY,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACvD,KAAK,EAAE,gBAAgB,EAAE,EAAE,EAC3B,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,CAAC,EAAE,IAAI,EAAE,GAAG,IAAI,GACxB,aAAa,CAAC,WAAW,CAAC,CAsD5B"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/general.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import type { CompiledQuery, InternalOptions, InternalSelector, CompileToken } from "./types.js"; 15 | export declare function compileGeneralSelector(next: CompiledQuery, selector: InternalSelector, options: InternalOptions, context: Node[] | undefined, compileToken: CompileToken): CompiledQuery; 16 | //# sourceMappingURL=general.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/general.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"general.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["general.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAER,aAAa,EACb,eAAe,EACf,gBAAgB,EAChB,YAAY,EACf,MAAM,YAAY,CAAC;AAkBpB,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACjE,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,QAAQ,EAAE,gBAAgB,EAC1B,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,EAAE,IAAI,EAAE,GAAG,SAAS,EAC3B,YAAY,EAAE,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,GAC9C,aAAa,CAAC,WAAW,CAAC,CAiK5B"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["index.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EACR,aAAa,EACb,OAAO,EAEP,KAAK,EACL,OAAO,EAEV,MAAM,YAAY,CAAC;AAGpB,YAAY,EAAE,OAAO,EAAE,CAAC;AA0CxB;;GAEG;AACH,eAAO,MAAM,OAAO,oMAA0B,CAAC;AAC/C,eAAO,MAAM,cAAc,2MAA6B,CAAC;AACzD,eAAO,MAAM,aAAa,4MAA4B,CAAC;AA6BvD,wBAAgB,cAAc,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACzD,KAAK,EAAE,IAAI,GAAG,IAAI,EAAE,EACpB,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC,EACnC,sBAAsB,UAAQ,GAC/B,IAAI,EAAE,CAYR;AAiBD;;;;;;;;;GASG;AACH,eAAO,MAAM,SAAS,yJASrB,CAAC;AAEF;;;;;;;;GAQG;AACH,eAAO,MAAM,SAAS,8JASrB,CAAC;AAEF;;;;;;;;;;GAUG;AACH,wBAAgB,EAAE,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAC7C,IAAI,EAAE,WAAW,EACjB,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,EACzB,OAAO,CAAC,EAAE,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC,GACrC,OAAO,CAKT;AAED;;;GAGG;AACH,eAAe,SAAS,CAAC;AAGzB,oDAAoD;AACpD,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | /** 15 | * Aliases are pseudos that are expressed as selectors. 16 | */ 17 | export declare const aliases: Record; 18 | //# sourceMappingURL=aliases.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"aliases.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/aliases.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAwC1C,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/pseudo-selectors/aliases.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"aliases.js","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/aliases.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAC,MAAM,OAAO,GAA2B;IAC3C,QAAQ;IAER,UAAU,EAAE,0BAA0B;IACtC,IAAI,EAAE,yBAAyB;IAE/B,QAAQ;IAER,0EAA0E;IAC1E,QAAQ,EAAE;;;;MAIR;IACF,OAAO,EAAE,iBAAiB;IAC1B,OAAO,EACH,6EAA6E;IACjF,QAAQ,EAAE,wCAAwC;IAClD,QAAQ,EAAE,8CAA8C;IAExD,oBAAoB;IAEpB,wFAAwF;IACxF,QAAQ,EACJ,8FAA8F;IAElG,QAAQ,EAAE,iBAAiB;IAC3B,IAAI,EAAE,aAAa;IACnB,QAAQ,EAAE,iBAAiB;IAC3B,KAAK,EAAE,cAAc;IACrB,KAAK,EAAE,cAAc;IACrB,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,eAAe;IAEvB,MAAM,EAAE,cAAc;IACtB,MAAM,EAAE,6BAA6B;IAErC,MAAM,EAAE,iCAAiC;IACzC,KAAK,EAAE,sCAAsC;IAC7C,IAAI,EAAE,yCAAyC;CAClD,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import type { CompiledQuery, InternalOptions } from "../types.js"; 15 | export declare type Filter = (next: CompiledQuery, text: string, options: InternalOptions, context?: Node[]) => CompiledQuery; 16 | export declare const filters: Record; 17 | //# sourceMappingURL=filters.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"filters.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/filters.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAW,MAAM,aAAa,CAAC;AAE3E,oBAAY,MAAM,GAAG,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAChD,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,CAAC,EAAE,IAAI,EAAE,KACf,aAAa,CAAC,WAAW,CAAC,CAAC;AAYhC,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA2I1C,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/index.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAChF,OAAO,EAAS,cAAc,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,OAAO,EAAE,OAAO,EAAoB,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAGvC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC;AAErC,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAChE,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,QAAQ,EAAE,cAAc,EACxB,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,EAAE,IAAI,EAAE,GAAG,SAAS,EAC3B,YAAY,EAAE,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,GAC9C,aAAa,CAAC,WAAW,CAAC,CA4C5B"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"pseudos.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/pseudos.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAC/C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAEnD,oBAAY,MAAM,GAAG,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAChD,IAAI,EAAE,WAAW,EACjB,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,KACxB,OAAO,CAAC;AAGb,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAkF1C,CAAC;AAEF,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,KAAK,CAAC,OAAO,CAAC,EACrD,IAAI,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,OAAO,EAC7B,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,cAAc,CAAC,MAAM,CAAC,EACjC,QAAQ,EAAE,MAAM,GACjB,IAAI,CAQN"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"subselects.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/subselects.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEzC,OAAO,KAAK,EACR,aAAa,EACb,eAAe,EACf,YAAY,EACZ,OAAO,EACV,MAAM,aAAa,CAAC;AAGrB,gFAAgF;AAChF,eAAO,MAAM,mBAAmB,IAAK,CAAC;AAEtC,wBAAgB,WAAW,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACtD,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC,GACpC,aAAa,CAAC,IAAI,CAAC,CAGrB;AAED,oBAAY,SAAS,GAAG,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACnD,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,SAAS,EAAE,QAAQ,EAAE,EAAE,EACvB,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,EAAE,IAAI,EAAE,GAAG,SAAS,EAC3B,YAAY,EAAE,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,KAC5C,aAAa,CAAC,WAAW,CAAC,CAAC;AAEhC,wBAAgB,eAAe,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAC1D,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC,GACpC,WAAW,EAAE,CAMf;AAiCD,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAgEhD,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/sort.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"sort.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["sort.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAiC,KAAK,SAAS,EAAE,MAAM,UAAU,CAAC;AASzE,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,GAAG,KAAK,IAAI,SAAS,CAEvE;AAWD;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,GAAG,EAAE,gBAAgB,EAAE,GAAG,IAAI,CAerE"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/types.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | export {}; 14 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /node_modules/css-select/lib/esm/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/css-select/lib/general.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import type { CompiledQuery, InternalOptions, InternalSelector, CompileToken } from "./types.js"; 15 | export declare function compileGeneralSelector(next: CompiledQuery, selector: InternalSelector, options: InternalOptions, context: Node[] | undefined, compileToken: CompileToken): CompiledQuery; 16 | //# sourceMappingURL=general.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-select/lib/general.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"general.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["general.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAER,aAAa,EACb,eAAe,EACf,gBAAgB,EAChB,YAAY,EACf,MAAM,YAAY,CAAC;AAkBpB,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACjE,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,QAAQ,EAAE,gBAAgB,EAC1B,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,EAAE,IAAI,EAAE,GAAG,SAAS,EAC3B,YAAY,EAAE,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,GAC9C,aAAa,CAAC,WAAW,CAAC,CAiK5B"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["index.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EACR,aAAa,EACb,OAAO,EAEP,KAAK,EACL,OAAO,EAEV,MAAM,YAAY,CAAC;AAGpB,YAAY,EAAE,OAAO,EAAE,CAAC;AA0CxB;;GAEG;AACH,eAAO,MAAM,OAAO,oMAA0B,CAAC;AAC/C,eAAO,MAAM,cAAc,2MAA6B,CAAC;AACzD,eAAO,MAAM,aAAa,4MAA4B,CAAC;AA6BvD,wBAAgB,cAAc,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACzD,KAAK,EAAE,IAAI,GAAG,IAAI,EAAE,EACpB,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC,EACnC,sBAAsB,UAAQ,GAC/B,IAAI,EAAE,CAYR;AAiBD;;;;;;;;;GASG;AACH,eAAO,MAAM,SAAS,yJASrB,CAAC;AAEF;;;;;;;;GAQG;AACH,eAAO,MAAM,SAAS,8JASrB,CAAC;AAEF;;;;;;;;;;GAUG;AACH,wBAAgB,EAAE,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAC7C,IAAI,EAAE,WAAW,EACjB,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,EACzB,OAAO,CAAC,EAAE,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC,GACrC,OAAO,CAKT;AAED;;;GAGG;AACH,eAAe,SAAS,CAAC;AAGzB,oDAAoD;AACpD,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/pseudo-selectors/aliases.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | /** 15 | * Aliases are pseudos that are expressed as selectors. 16 | */ 17 | export declare const aliases: Record; 18 | //# sourceMappingURL=aliases.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-select/lib/pseudo-selectors/aliases.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"aliases.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/aliases.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAwC1C,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/pseudo-selectors/aliases.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"aliases.js","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/aliases.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACU,QAAA,OAAO,GAA2B;IAC3C,QAAQ;IAER,UAAU,EAAE,0BAA0B;IACtC,IAAI,EAAE,yBAAyB;IAE/B,QAAQ;IAER,0EAA0E;IAC1E,QAAQ,EAAE,yMAIR;IACF,OAAO,EAAE,iBAAiB;IAC1B,OAAO,EACH,6EAA6E;IACjF,QAAQ,EAAE,wCAAwC;IAClD,QAAQ,EAAE,8CAA8C;IAExD,oBAAoB;IAEpB,wFAAwF;IACxF,QAAQ,EACJ,8FAA8F;IAElG,QAAQ,EAAE,iBAAiB;IAC3B,IAAI,EAAE,aAAa;IACnB,QAAQ,EAAE,iBAAiB;IAC3B,KAAK,EAAE,cAAc;IACrB,KAAK,EAAE,cAAc;IACrB,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,eAAe;IAEvB,MAAM,EAAE,cAAc;IACtB,MAAM,EAAE,6BAA6B;IAErC,MAAM,EAAE,iCAAiC;IACzC,KAAK,EAAE,sCAAsC;IAC7C,IAAI,EAAE,yCAAyC;CAClD,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/pseudo-selectors/filters.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import type { CompiledQuery, InternalOptions } from "../types.js"; 15 | export declare type Filter = (next: CompiledQuery, text: string, options: InternalOptions, context?: Node[]) => CompiledQuery; 16 | export declare const filters: Record; 17 | //# sourceMappingURL=filters.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-select/lib/pseudo-selectors/filters.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"filters.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/filters.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAW,MAAM,aAAa,CAAC;AAE3E,oBAAY,MAAM,GAAG,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAChD,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,CAAC,EAAE,IAAI,EAAE,KACf,aAAa,CAAC,WAAW,CAAC,CAAC;AAYhC,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA2I1C,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/pseudo-selectors/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/index.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAChF,OAAO,EAAS,cAAc,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,OAAO,EAAE,OAAO,EAAoB,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAGvC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC;AAErC,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAChE,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,QAAQ,EAAE,cAAc,EACxB,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,EAAE,IAAI,EAAE,GAAG,SAAS,EAC3B,YAAY,EAAE,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,GAC9C,aAAa,CAAC,WAAW,CAAC,CA4C5B"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"pseudos.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/pseudos.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAC/C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAEnD,oBAAY,MAAM,GAAG,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAChD,IAAI,EAAE,WAAW,EACjB,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,KACxB,OAAO,CAAC;AAGb,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAkF1C,CAAC;AAEF,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,KAAK,CAAC,OAAO,CAAC,EACrD,IAAI,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,OAAO,EAC7B,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,cAAc,CAAC,MAAM,CAAC,EACjC,QAAQ,EAAE,MAAM,GACjB,IAAI,CAQN"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/pseudo-selectors/subselects.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"subselects.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["pseudo-selectors/subselects.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEzC,OAAO,KAAK,EACR,aAAa,EACb,eAAe,EACf,YAAY,EACZ,OAAO,EACV,MAAM,aAAa,CAAC;AAGrB,gFAAgF;AAChF,eAAO,MAAM,mBAAmB,IAAK,CAAC;AAEtC,wBAAgB,WAAW,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACtD,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC,GACpC,aAAa,CAAC,IAAI,CAAC,CAGrB;AAED,oBAAY,SAAS,GAAG,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EACnD,IAAI,EAAE,aAAa,CAAC,WAAW,CAAC,EAChC,SAAS,EAAE,QAAQ,EAAE,EAAE,EACvB,OAAO,EAAE,eAAe,CAAC,IAAI,EAAE,WAAW,CAAC,EAC3C,OAAO,EAAE,IAAI,EAAE,GAAG,SAAS,EAC3B,YAAY,EAAE,YAAY,CAAC,IAAI,EAAE,WAAW,CAAC,KAC5C,aAAa,CAAC,WAAW,CAAC,CAAC;AAEhC,wBAAgB,eAAe,CAAC,IAAI,EAAE,WAAW,SAAS,IAAI,EAC1D,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC,GACpC,WAAW,EAAE,CAMf;AAiCD,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAgEhD,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/sort.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"sort.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["sort.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAiC,KAAK,SAAS,EAAE,MAAM,UAAU,CAAC;AASzE,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,GAAG,KAAK,IAAI,SAAS,CAEvE;AAWD;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,GAAG,EAAE,gBAAgB,EAAE,GAAG,IAAI,CAerE"} -------------------------------------------------------------------------------- /node_modules/css-select/lib/types.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | "use strict"; 14 | Object.defineProperty(exports, "__esModule", { value: true }); 15 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /node_modules/css-select/lib/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/css-what/lib/commonjs/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export * from "./types"; 15 | export { isTraversal, parse } from "./parse"; 16 | export { stringify } from "./stringify"; 17 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-what/lib/commonjs/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-what/lib/commonjs/parse.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"parse.d.ts","sourceRoot":"","sources":["../../src/parse.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,QAAQ,EAGR,SAAS,EAIZ,MAAM,SAAS,CAAC;AA6DjB;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,QAAQ,EAAE,QAAQ,GAAG,QAAQ,IAAI,SAAS,CAYrE;AAoCD;;;;;;;;GAQG;AACH,wBAAgB,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE,EAAE,CAUpD"} -------------------------------------------------------------------------------- /node_modules/css-what/lib/commonjs/stringify.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import { Selector } from "./types"; 15 | /** 16 | * Turns `selector` back into a string. 17 | * 18 | * @param selector Selector to stringify. 19 | */ 20 | export declare function stringify(selector: Selector[][]): string; 21 | //# sourceMappingURL=stringify.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-what/lib/commonjs/stringify.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"stringify.d.ts","sourceRoot":"","sources":["../../src/stringify.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAiC,MAAM,SAAS,CAAC;AA6BlE;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,QAAQ,EAAE,QAAQ,EAAE,EAAE,GAAG,MAAM,CAIxD"} -------------------------------------------------------------------------------- /node_modules/css-what/lib/es/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export * from "./types"; 15 | export { isTraversal, parse } from "./parse"; 16 | export { stringify } from "./stringify"; 17 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-what/lib/es/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/css-what/lib/es/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | export * from "./types"; 14 | export { isTraversal, parse } from "./parse"; 15 | export { stringify } from "./stringify"; 16 | -------------------------------------------------------------------------------- /node_modules/css-what/lib/es/parse.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"parse.d.ts","sourceRoot":"","sources":["../../src/parse.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,QAAQ,EAGR,SAAS,EAIZ,MAAM,SAAS,CAAC;AA6DjB;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,QAAQ,EAAE,QAAQ,GAAG,QAAQ,IAAI,SAAS,CAYrE;AAoCD;;;;;;;;GAQG;AACH,wBAAgB,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE,EAAE,CAUpD"} -------------------------------------------------------------------------------- /node_modules/css-what/lib/es/stringify.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import { Selector } from "./types"; 15 | /** 16 | * Turns `selector` back into a string. 17 | * 18 | * @param selector Selector to stringify. 19 | */ 20 | export declare function stringify(selector: Selector[][]): string; 21 | //# sourceMappingURL=stringify.d.ts.map -------------------------------------------------------------------------------- /node_modules/css-what/lib/es/stringify.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"stringify.d.ts","sourceRoot":"","sources":["../../src/stringify.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAiC,MAAM,SAAS,CAAC;AA6BlE;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,QAAQ,EAAE,QAAQ,EAAE,EAAE,GAAG,MAAM,CAIxD"} -------------------------------------------------------------------------------- /node_modules/dom-serializer/lib/esm/foreignNames.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export declare const elementNames: Map; 15 | export declare const attributeNames: Map; 16 | //# sourceMappingURL=foreignNames.d.ts.map -------------------------------------------------------------------------------- /node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"foreignNames.d.ts","sourceRoot":"","sources":["../../src/foreignNames.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,qBAwCxB,CAAC;AACF,eAAO,MAAM,cAAc,qBA8D1B,CAAC"} -------------------------------------------------------------------------------- /node_modules/dom-serializer/lib/esm/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,OAAO,EAMR,MAAM,YAAY,CAAC;AAWpB,MAAM,WAAW,oBAAoB;IACnC;;;;;;OAMG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;;;OAMG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B;;;;;;OAMG;IACH,cAAc,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AA4ED;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,SAAS,CAAC,OAAO,CAAC,EAClC,OAAO,GAAE,oBAAyB,GACjC,MAAM,CAUR;AAED,eAAe,MAAM,CAAC"} -------------------------------------------------------------------------------- /node_modules/dom-serializer/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/dom-serializer/lib/foreignNames.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export declare const elementNames: Map; 15 | export declare const attributeNames: Map; 16 | //# sourceMappingURL=foreignNames.d.ts.map -------------------------------------------------------------------------------- /node_modules/dom-serializer/lib/foreignNames.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"foreignNames.d.ts","sourceRoot":"","sources":["../src/foreignNames.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,qBAwCxB,CAAC;AACF,eAAO,MAAM,cAAc,qBA8D1B,CAAC"} -------------------------------------------------------------------------------- /node_modules/dom-serializer/lib/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,OAAO,EAMR,MAAM,YAAY,CAAC;AAWpB,MAAM,WAAW,oBAAoB;IACnC;;;;;;OAMG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;;;OAMG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B;;;;;;OAMG;IACH,cAAc,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AA4ED;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,SAAS,CAAC,OAAO,CAAC,EAClC,OAAO,GAAE,oBAAyB,GACjC,MAAM,CAUR;AAED,eAAe,MAAM,CAAC"} -------------------------------------------------------------------------------- /node_modules/domelementtype/lib/esm/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,mDAAmD;AACnD,oBAAY,WAAW;IACnB,8CAA8C;IAC9C,IAAI,SAAS;IACb,oBAAoB;IACpB,IAAI,SAAS;IACb,yBAAyB;IACzB,SAAS,cAAc;IACvB,4BAA4B;IAC5B,OAAO,YAAY;IACnB,6BAA6B;IAC7B,MAAM,WAAW;IACjB,4BAA4B;IAC5B,KAAK,UAAU;IACf,uBAAuB;IACvB,GAAG,QAAQ;IACX,iCAAiC;IACjC,KAAK,UAAU;IACf,8BAA8B;IAC9B,OAAO,YAAY;CACtB;AAED;;;;GAIG;AACH,wBAAgB,KAAK,CAAC,IAAI,EAAE;IAAE,IAAI,EAAE,WAAW,CAAA;CAAE,GAAG,OAAO,CAM1D;AAGD,8CAA8C;AAC9C,eAAO,MAAM,IAAI,mBAAmB,CAAC;AACrC,oBAAoB;AACpB,eAAO,MAAM,IAAI,mBAAmB,CAAC;AACrC,yBAAyB;AACzB,eAAO,MAAM,SAAS,wBAAwB,CAAC;AAC/C,4BAA4B;AAC5B,eAAO,MAAM,OAAO,sBAAsB,CAAC;AAC3C,6BAA6B;AAC7B,eAAO,MAAM,MAAM,qBAAqB,CAAC;AACzC,4BAA4B;AAC5B,eAAO,MAAM,KAAK,oBAAoB,CAAC;AACvC,uBAAuB;AACvB,eAAO,MAAM,GAAG,kBAAkB,CAAC;AACnC,iCAAiC;AACjC,eAAO,MAAM,KAAK,oBAAoB,CAAC;AACvC,8BAA8B;AAC9B,eAAO,MAAM,OAAO,sBAAsB,CAAC"} -------------------------------------------------------------------------------- /node_modules/domelementtype/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/domelementtype/lib/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,mDAAmD;AACnD,oBAAY,WAAW;IACnB,8CAA8C;IAC9C,IAAI,SAAS;IACb,oBAAoB;IACpB,IAAI,SAAS;IACb,yBAAyB;IACzB,SAAS,cAAc;IACvB,4BAA4B;IAC5B,OAAO,YAAY;IACnB,6BAA6B;IAC7B,MAAM,WAAW;IACjB,4BAA4B;IAC5B,KAAK,UAAU;IACf,uBAAuB;IACvB,GAAG,QAAQ;IACX,iCAAiC;IACjC,KAAK,UAAU;IACf,8BAA8B;IAC9B,OAAO,YAAY;CACtB;AAED;;;;GAIG;AACH,wBAAgB,KAAK,CAAC,IAAI,EAAE;IAAE,IAAI,EAAE,WAAW,CAAA;CAAE,GAAG,OAAO,CAM1D;AAGD,8CAA8C;AAC9C,eAAO,MAAM,IAAI,mBAAmB,CAAC;AACrC,oBAAoB;AACpB,eAAO,MAAM,IAAI,mBAAmB,CAAC;AACrC,yBAAyB;AACzB,eAAO,MAAM,SAAS,wBAAwB,CAAC;AAC/C,4BAA4B;AAC5B,eAAO,MAAM,OAAO,sBAAsB,CAAC;AAC3C,6BAA6B;AAC7B,eAAO,MAAM,MAAM,qBAAqB,CAAC;AACzC,4BAA4B;AAC5B,eAAO,MAAM,KAAK,oBAAoB,CAAC;AACvC,uBAAuB;AACvB,eAAO,MAAM,GAAG,kBAAkB,CAAC;AACnC,iCAAiC;AACjC,eAAO,MAAM,KAAK,oBAAoB,CAAC;AACvC,8BAA8B;AAC9B,eAAO,MAAM,OAAO,sBAAsB,CAAC"} -------------------------------------------------------------------------------- /node_modules/domelementtype/readme.md: -------------------------------------------------------------------------------- 1 | All the types of nodes in htmlparser2's DOM. 2 | -------------------------------------------------------------------------------- /node_modules/domhandler/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/domutils/lib/esm/helpers.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"helpers.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,OAAO,EAAc,MAAM,YAAY,CAAC;AAE9D;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,EAAE,GAAG,OAAO,EAAE,CA6BzD;AACD;;;GAGG;AACH,0BAAkB,gBAAgB;IAC9B,YAAY,IAAI;IAChB,SAAS,IAAI;IACb,SAAS,IAAI;IACb,QAAQ,IAAI;IACZ,YAAY,KAAK;CACpB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAgB,uBAAuB,CACnC,KAAK,EAAE,OAAO,EACd,KAAK,EAAE,OAAO,GACf,MAAM,CA4CR;AAED;;;;;;;;GAQG;AACH,wBAAgB,UAAU,CAAC,CAAC,SAAS,OAAO,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,CAc7D"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/esm/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,gEAAgE;AAChE,OAAO,EACH,KAAK,EACL,OAAO,EACP,MAAM,EACN,SAAS,EACT,UAAU,EACV,WAAW,GACd,MAAM,YAAY,CAAC"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/esm/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | export * from "./stringify.js"; 14 | export * from "./traversal.js"; 15 | export * from "./manipulation.js"; 16 | export * from "./querying.js"; 17 | export * from "./legacy.js"; 18 | export * from "./helpers.js"; 19 | export * from "./feeds.js"; 20 | /** @deprecated Use these methods from `domhandler` directly. */ 21 | export { isTag, isCDATA, isText, isComment, isDocument, hasChildren, } from "domhandler"; 22 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/domutils/lib/esm/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,gEAAgE;AAChE,OAAO,EACH,KAAK,EACL,OAAO,EACP,MAAM,EACN,SAAS,EACT,UAAU,EACV,WAAW,GACd,MAAM,YAAY,CAAC"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/esm/manipulation.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"manipulation.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["manipulation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAErD;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,SAAS,GAAG,IAAI,CAQnD;AAED;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,GAAG,IAAI,CAiB5E;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,GAAG,IAAI,CAajE;AAED;;;;;;GAMG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI,CAoB7D;AAED;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,GAAG,IAAI,CAalE;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI,CAiB9D"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/domutils/lib/esm/stringify.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"stringify.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["stringify.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,OAAO,EAEV,MAAM,YAAY,CAAC;AACpB,OAAmB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAGlE;;;;;;GAMG;AACH,wBAAgB,YAAY,CACxB,IAAI,EAAE,OAAO,GAAG,SAAS,CAAC,OAAO,CAAC,EAClC,OAAO,CAAC,EAAE,oBAAoB,GAC/B,MAAM,CAER;AAED;;;;;;GAMG;AACH,wBAAgB,YAAY,CACxB,IAAI,EAAE,OAAO,EACb,OAAO,CAAC,EAAE,oBAAoB,GAC/B,MAAM,CAIR;AAED;;;;;;;GAOG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,EAAE,GAAG,MAAM,CAMzD;AAED;;;;;;;GAOG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,EAAE,GAAG,MAAM,CAO7D;AAED;;;;;;;GAOG;AACH,wBAAgB,SAAS,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,EAAE,GAAG,MAAM,CAO3D"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/esm/traversal.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"traversal.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["traversal.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,OAAO,EACP,SAAS,EACT,OAAO,EACP,UAAU,EAEb,MAAM,YAAY,CAAC;AAEpB;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,OAAO,GAAG,SAAS,EAAE,CAEtD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,OAAO,GAAG,UAAU,GAAG,IAAI,CAAC;AAY5D;;;;;;;;;;GAUG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,EAAE,CAepD;AAED;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAC7B,IAAI,EAAE,OAAO,EACb,IAAI,EAAE,MAAM,GACb,MAAM,GAAG,SAAS,CAEpB;AAED;;;;;;;GAOG;AACH,wBAAgB,SAAS,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAM9D;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,OAAO,GAAG,MAAM,CAE7C;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,IAAI,CAIhE;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,IAAI,CAIhE"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/helpers.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"helpers.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,OAAO,EAAc,MAAM,YAAY,CAAC;AAE9D;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,EAAE,GAAG,OAAO,EAAE,CA6BzD;AACD;;;GAGG;AACH,0BAAkB,gBAAgB;IAC9B,YAAY,IAAI;IAChB,SAAS,IAAI;IACb,SAAS,IAAI;IACb,QAAQ,IAAI;IACZ,YAAY,KAAK;CACpB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAgB,uBAAuB,CACnC,KAAK,EAAE,OAAO,EACd,KAAK,EAAE,OAAO,GACf,MAAM,CA4CR;AAED;;;;;;;;GAQG;AACH,wBAAgB,UAAU,CAAC,CAAC,SAAS,OAAO,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,CAc7D"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,gEAAgE;AAChE,OAAO,EACH,KAAK,EACL,OAAO,EACP,MAAM,EACN,SAAS,EACT,UAAU,EACV,WAAW,GACd,MAAM,YAAY,CAAC"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,iDAA+B;AAC/B,iDAA+B;AAC/B,oDAAkC;AAClC,gDAA8B;AAC9B,8CAA4B;AAC5B,+CAA6B;AAC7B,6CAA2B;AAC3B,gEAAgE;AAChE,yCAOoB;AANhB,mGAAA,KAAK,OAAA;AACL,qGAAA,OAAO,OAAA;AACP,oGAAA,MAAM,OAAA;AACN,uGAAA,SAAS,OAAA;AACT,wGAAA,UAAU,OAAA;AACV,yGAAA,WAAW,OAAA"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/manipulation.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"manipulation.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["manipulation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAErD;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,SAAS,GAAG,IAAI,CAQnD;AAED;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,GAAG,IAAI,CAiB5E;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,GAAG,IAAI,CAajE;AAED;;;;;;GAMG;AACH,wBAAgB,MAAM,CAAC,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI,CAoB7D;AAED;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,GAAG,IAAI,CAalE;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,GAAG,IAAI,CAiB9D"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/stringify.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"stringify.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["stringify.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,OAAO,EAEV,MAAM,YAAY,CAAC;AACpB,OAAmB,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAGlE;;;;;;GAMG;AACH,wBAAgB,YAAY,CACxB,IAAI,EAAE,OAAO,GAAG,SAAS,CAAC,OAAO,CAAC,EAClC,OAAO,CAAC,EAAE,oBAAoB,GAC/B,MAAM,CAER;AAED;;;;;;GAMG;AACH,wBAAgB,YAAY,CACxB,IAAI,EAAE,OAAO,EACb,OAAO,CAAC,EAAE,oBAAoB,GAC/B,MAAM,CAIR;AAED;;;;;;;GAOG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,EAAE,GAAG,MAAM,CAMzD;AAED;;;;;;;GAOG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,EAAE,GAAG,MAAM,CAO7D;AAED;;;;;;;GAOG;AACH,wBAAgB,SAAS,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,EAAE,GAAG,MAAM,CAO3D"} -------------------------------------------------------------------------------- /node_modules/domutils/lib/traversal.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"traversal.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/domutils/f7e357b5c210b6731c2a60e0b7b3cfaa1f96b706/src/","sources":["traversal.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,OAAO,EACP,SAAS,EACT,OAAO,EACP,UAAU,EAEb,MAAM,YAAY,CAAC;AAEpB;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,OAAO,GAAG,SAAS,EAAE,CAEtD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,OAAO,GAAG,UAAU,GAAG,IAAI,CAAC;AAY5D;;;;;;;;;;GAUG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,EAAE,CAepD;AAED;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAC7B,IAAI,EAAE,OAAO,EACb,IAAI,EAAE,MAAM,GACb,MAAM,GAAG,SAAS,CAEpB;AAED;;;;;;;GAOG;AACH,wBAAgB,SAAS,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAM9D;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,OAAO,GAAG,MAAM,CAE7C;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,IAAI,CAIhE;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,IAAI,CAIhE"} -------------------------------------------------------------------------------- /node_modules/entities/lib/decode.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["decode.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAC7D,OAAO,aAAa,MAAM,gCAAgC,CAAC;AAC3D,OAAO,eAAe,MAAM,uBAAuB,CAAC;AAGpD,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,eAAe,EAAE,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAcxE,oBAAY,YAAY;IACpB,YAAY,QAAwB;IACpC,aAAa,QAAwB;IACrC,UAAU,MAAwB;CACrC;AA8GD,wBAAgB,eAAe,CAC3B,UAAU,EAAE,WAAW,EACvB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,MAAM,GACb,MAAM,CAsCR;AAKD;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAE9C;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAEpD;AAED;;;;;GAKG;AACH,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAE7C"} -------------------------------------------------------------------------------- /node_modules/entities/lib/decode_codepoint.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export declare const fromCodePoint: (...codePoints: number[]) => string; 15 | export declare function replaceCodePoint(codePoint: number): number; 16 | export default function decodeCodePoint(codePoint: number): string; 17 | //# sourceMappingURL=decode_codepoint.d.ts.map -------------------------------------------------------------------------------- /node_modules/entities/lib/decode_codepoint.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode_codepoint.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["decode_codepoint.ts"],"names":[],"mappings":"AAiCA,eAAO,MAAM,aAAa,qCAgBrB,CAAC;AAEN,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,UAMjD;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAEjE"} -------------------------------------------------------------------------------- /node_modules/entities/lib/encode.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"encode.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["encode.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;GAUG;AACH,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAE/C;AACD;;;;;;;GAOG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAEvD"} -------------------------------------------------------------------------------- /node_modules/entities/lib/escape.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"escape.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["escape.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,QAAyB,CAAC;AAWlD,eAAO,MAAM,YAAY,QAGT,MAAM,SAAS,MAAM,KAAG,MAQD,CAAC;AAExC;;;;;;GAMG;AACH,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CA0B7C;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,MAAM,kBAAY,CAAC;AA2BhC;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,SA7Bb,MAAM,KAAK,MA6BuC,CAAC;AAE7D;;;;;GAKG;AACH,eAAO,MAAM,eAAe,SArClB,MAAM,KAAK,MA4CpB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,UAAU,SApDb,MAAM,KAAK,MA4DpB,CAAC"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/decode.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["decode.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,iCAAiC,CAAC;AAC7D,OAAO,aAAa,MAAM,gCAAgC,CAAC;AAC3D,OAAO,eAAe,MAAM,uBAAuB,CAAC;AAGpD,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,eAAe,EAAE,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAcxE,oBAAY,YAAY;IACpB,YAAY,QAAwB;IACpC,aAAa,QAAwB;IACrC,UAAU,MAAwB;CACrC;AA8GD,wBAAgB,eAAe,CAC3B,UAAU,EAAE,WAAW,EACvB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,MAAM,GACb,MAAM,CAsCR;AAKD;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAE9C;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAEpD;AAED;;;;;GAKG;AACH,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAE7C"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/decode_codepoint.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export declare const fromCodePoint: (...codePoints: number[]) => string; 15 | export declare function replaceCodePoint(codePoint: number): number; 16 | export default function decodeCodePoint(codePoint: number): string; 17 | //# sourceMappingURL=decode_codepoint.d.ts.map -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/decode_codepoint.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode_codepoint.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["decode_codepoint.ts"],"names":[],"mappings":"AAiCA,eAAO,MAAM,aAAa,qCAgBrB,CAAC;AAEN,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,UAMjD;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAEjE"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/encode.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"encode.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["encode.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;GAUG;AACH,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAE/C;AACD;;;;;;;GAOG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAEvD"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/escape.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"escape.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["escape.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,QAAyB,CAAC;AAWlD,eAAO,MAAM,YAAY,QAGT,MAAM,SAAS,MAAM,KAAG,MAQD,CAAC;AAExC;;;;;;GAMG;AACH,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CA0B7C;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,MAAM,kBAAY,CAAC;AA2BhC;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,SA7Bb,MAAM,KAAK,MA6BuC,CAAC;AAE7D;;;;;GAKG;AACH,eAAO,MAAM,eAAe,SArClB,MAAM,KAAK,MA4CpB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,UAAU,SApDb,MAAM,KAAK,MA4DpB,CAAC"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/decode-data-html.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | declare const _default: Uint16Array; 15 | export default _default; 16 | //# sourceMappingURL=decode-data-html.d.ts.map -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-html.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/decode-data-html.ts"],"names":[],"mappings":";AAEA,wBAKE"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/decode-data-html.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-html.js","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/decode-data-html.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAE9C,eAAe,IAAI,WAAW;AAC1B,kBAAkB;AAClB,268CAA268C;KACt68C,KAAK,CAAC,EAAE,CAAC;KACT,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CACnC,CAAC"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/decode-data-xml.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | declare const _default: Uint16Array; 15 | export default _default; 16 | //# sourceMappingURL=decode-data-xml.d.ts.map -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-xml.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/decode-data-xml.ts"],"names":[],"mappings":";AAEA,wBAKE"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/decode-data-xml.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | // Generated using scripts/write-decode-map.ts 14 | export default new Uint16Array( 15 | // prettier-ignore 16 | "\u0200aglq\t\x15\x18\x1b\u026d\x0f\0\0\x12p;\u4026os;\u4027t;\u403et;\u403cuot;\u4022" 17 | .split("") 18 | .map((c) => c.charCodeAt(0))); 19 | //# sourceMappingURL=decode-data-xml.js.map -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/decode-data-xml.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-xml.js","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/decode-data-xml.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAE9C,eAAe,IAAI,WAAW;AAC1B,kBAAkB;AAClB,uFAAuF;KAClF,KAAK,CAAC,EAAE,CAAC;KACT,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CACnC,CAAC"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/encode-html.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | declare type EncodeTrieNode = string | { 15 | v?: string; 16 | n: number | Map; 17 | o?: string; 18 | }; 19 | declare const _default: Map; 20 | export default _default; 21 | //# sourceMappingURL=encode-html.d.ts.map -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/generated/encode-html.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"encode-html.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/encode-html.ts"],"names":[],"mappings":"AAEA,aAAK,cAAc,GACb,MAAM,GACN;IAAE,CAAC,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAAC,CAAC,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;;AAY1E,wBAAo+tB"} -------------------------------------------------------------------------------- /node_modules/entities/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/decode-data-html.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | declare const _default: Uint16Array; 15 | export default _default; 16 | //# sourceMappingURL=decode-data-html.d.ts.map -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/decode-data-html.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-html.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/decode-data-html.ts"],"names":[],"mappings":";AAEA,wBAKE"} -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/decode-data-html.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-html.js","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/decode-data-html.ts"],"names":[],"mappings":";AAAA,8CAA8C;;AAE9C,kBAAe,IAAI,WAAW;AAC1B,kBAAkB;AAClB,268CAA268C;KACt68C,KAAK,CAAC,EAAE,CAAC;KACT,GAAG,CAAC,UAAC,CAAC,IAAK,OAAA,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,EAAf,CAAe,CAAC,CACnC,CAAC"} -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/decode-data-xml.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | declare const _default: Uint16Array; 15 | export default _default; 16 | //# sourceMappingURL=decode-data-xml.d.ts.map -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/decode-data-xml.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-xml.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/decode-data-xml.ts"],"names":[],"mappings":";AAEA,wBAKE"} -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/decode-data-xml.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | "use strict"; 14 | // Generated using scripts/write-decode-map.ts 15 | Object.defineProperty(exports, "__esModule", { value: true }); 16 | exports.default = new Uint16Array( 17 | // prettier-ignore 18 | "\u0200aglq\t\x15\x18\x1b\u026d\x0f\0\0\x12p;\u4026os;\u4027t;\u403et;\u403cuot;\u4022" 19 | .split("") 20 | .map(function (c) { return c.charCodeAt(0); })); 21 | //# sourceMappingURL=decode-data-xml.js.map -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/decode-data-xml.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-xml.js","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/decode-data-xml.ts"],"names":[],"mappings":";AAAA,8CAA8C;;AAE9C,kBAAe,IAAI,WAAW;AAC1B,kBAAkB;AAClB,uFAAuF;KAClF,KAAK,CAAC,EAAE,CAAC;KACT,GAAG,CAAC,UAAC,CAAC,IAAK,OAAA,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,EAAf,CAAe,CAAC,CACnC,CAAC"} -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/encode-html.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | declare type EncodeTrieNode = string | { 15 | v?: string; 16 | n: number | Map; 17 | o?: string; 18 | }; 19 | declare const _default: Map; 20 | export default _default; 21 | //# sourceMappingURL=encode-html.d.ts.map -------------------------------------------------------------------------------- /node_modules/entities/lib/generated/encode-html.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"encode-html.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/867ac709ba482a56a98b7c35f49ca833c74dc193/src/","sources":["generated/encode-html.ts"],"names":[],"mappings":"AAEA,aAAK,cAAc,GACb,MAAM,GACN;IAAE,CAAC,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAAC,CAAC,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;;AAY1E,wBAAo+tB"} -------------------------------------------------------------------------------- /node_modules/html-entities/lib/html4-entities.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export declare class Html4Entities { 15 | decode(str: string): string; 16 | static decode(str: string): string; 17 | encode(str: string): string; 18 | static encode(str: string): string; 19 | encodeNonUTF(str: string): string; 20 | static encodeNonUTF(str: string): string; 21 | encodeNonASCII(str: string): string; 22 | static encodeNonASCII(str: string): string; 23 | } 24 | -------------------------------------------------------------------------------- /node_modules/html-entities/lib/html5-entities.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export declare class Html5Entities { 15 | decode(str: string): string; 16 | static decode(str: string): string; 17 | encode(str: string): string; 18 | static encode(str: string): string; 19 | encodeNonUTF(str: string): string; 20 | static encodeNonUTF(str: string): string; 21 | encodeNonASCII(str: string): string; 22 | static encodeNonASCII(str: string): string; 23 | } 24 | -------------------------------------------------------------------------------- /node_modules/html-entities/lib/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export { XmlEntities } from './xml-entities'; 15 | export { Html4Entities } from './html4-entities'; 16 | export { Html5Entities, Html5Entities as AllHtmlEntities } from './html5-entities'; 17 | -------------------------------------------------------------------------------- /node_modules/html-entities/lib/surrogate-pairs.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export declare const fromCodePoint: (...codePoints: number[]) => string; 15 | export declare const getCodePoint: (input: string, position: number) => number | undefined; 16 | export declare const highSurrogateFrom = 55296; 17 | export declare const highSurrogateTo = 56319; 18 | -------------------------------------------------------------------------------- /node_modules/html-entities/lib/xml-entities.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | export declare class XmlEntities { 15 | encode(str: string): string; 16 | static encode(str: string): string; 17 | decode(str: string): string; 18 | static decode(str: string): string; 19 | encodeNonUTF(str: string): string; 20 | static encodeNonUTF(str: string): string; 21 | encodeNonASCII(str: string): string; 22 | static encodeNonASCII(str: string): string; 23 | } 24 | -------------------------------------------------------------------------------- /node_modules/htmlparser2/lib/WritableStream.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"WritableStream.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/htmlparser2/4763205746cd80120b5d2b69041197a394d24ba9/src/","sources":["WritableStream.ts"],"names":[],"mappings":";AAAA,OAAO,EAAU,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAK7D,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAQlC;;;;GAIG;AACH,qBAAa,cAAe,SAAQ,QAAQ;IACxC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAuB;gBAEpC,GAAG,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,EAAE,aAAa;IAKjD,MAAM,CACX,KAAK,EAAE,MAAM,GAAG,MAAM,EACtB,QAAQ,EAAE,MAAM,EAChB,EAAE,EAAE,MAAM,IAAI,GACf,IAAI;IAOE,MAAM,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;CAIxC"} -------------------------------------------------------------------------------- /node_modules/htmlparser2/lib/WritableStream.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"WritableStream.js","sourceRoot":"https://raw.githubusercontent.com/fb55/htmlparser2/4763205746cd80120b5d2b69041197a394d24ba9/src/","sources":["WritableStream.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,yCAA6D;AAC7D;;;GAGG;AACH,iCAAkC;AAClC,iDAA+C;AAE/C,2GAA2G;AAC3G,SAAS,QAAQ,CAAC,MAAuB,EAAE,QAAgB;IACvD,OAAO,QAAQ,KAAK,QAAQ,CAAC;AACjC,CAAC;AAED;;;;GAIG;AACH;IAAoC,kCAAQ;IAIxC,wBAAY,GAAqB,EAAE,OAAuB;QAA1D,YACI,kBAAM,EAAE,aAAa,EAAE,KAAK,EAAE,CAAC,SAElC;QALgB,cAAQ,GAAG,IAAI,8BAAa,EAAE,CAAC;QAI5C,KAAI,CAAC,OAAO,GAAG,IAAI,kBAAM,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;;IAC5C,CAAC;IAEQ,+BAAM,GAAf,UACI,KAAsB,EACtB,QAAgB,EAChB,EAAc;QAEd,IAAI,CAAC,OAAO,CAAC,KAAK,CACd,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CACjE,CAAC;QACF,EAAE,EAAE,CAAC;IACT,CAAC;IAEQ,+BAAM,GAAf,UAAgB,EAAc;QAC1B,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,CAAC;QACtC,EAAE,EAAE,CAAC;IACT,CAAC;IACL,qBAAC;AAAD,CAAC,AAxBD,CAAoC,iBAAQ,GAwB3C;AAxBY,wCAAc"} -------------------------------------------------------------------------------- /node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"WritableStream.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/htmlparser2/4763205746cd80120b5d2b69041197a394d24ba9/src/","sources":["WritableStream.ts"],"names":[],"mappings":";AAAA,OAAO,EAAU,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAK7D,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAQlC;;;;GAIG;AACH,qBAAa,cAAe,SAAQ,QAAQ;IACxC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAuB;gBAEpC,GAAG,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,EAAE,aAAa;IAKjD,MAAM,CACX,KAAK,EAAE,MAAM,GAAG,MAAM,EACtB,QAAQ,EAAE,MAAM,EAChB,EAAE,EAAE,MAAM,IAAI,GACf,IAAI;IAOE,MAAM,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;CAIxC"} -------------------------------------------------------------------------------- /node_modules/htmlparser2/lib/esm/WritableStream.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"WritableStream.js","sourceRoot":"https://raw.githubusercontent.com/fb55/htmlparser2/4763205746cd80120b5d2b69041197a394d24ba9/src/","sources":["WritableStream.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAA0B,MAAM,aAAa,CAAC;AAC7D;;;GAGG;AACH,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAE/C,2GAA2G;AAC3G,SAAS,QAAQ,CAAC,MAAuB,EAAE,QAAgB;IACvD,OAAO,QAAQ,KAAK,QAAQ,CAAC;AACjC,CAAC;AAED;;;;GAIG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IAIxC,YAAY,GAAqB,EAAE,OAAuB;QACtD,KAAK,CAAC,EAAE,aAAa,EAAE,KAAK,EAAE,CAAC,CAAC;QAHnB,aAAQ,GAAG,IAAI,aAAa,EAAE,CAAC;QAI5C,IAAI,CAAC,OAAO,GAAG,IAAI,MAAM,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;IAC5C,CAAC;IAEQ,MAAM,CACX,KAAsB,EACtB,QAAgB,EAChB,EAAc;QAEd,IAAI,CAAC,OAAO,CAAC,KAAK,CACd,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CACjE,CAAC;QACF,EAAE,EAAE,CAAC;IACT,CAAC;IAEQ,MAAM,CAAC,EAAc;QAC1B,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,CAAC;QACtC,EAAE,EAAE,CAAC;IACT,CAAC;CACJ"} -------------------------------------------------------------------------------- /node_modules/htmlparser2/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/lunr/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | docs/ 3 | test/env/file_list.json 4 | -------------------------------------------------------------------------------- /node_modules/lunr/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | - "6" 5 | - "5" 6 | - "4" 7 | script: "make" 8 | addons: 9 | artifacts: 10 | branch: master 11 | paths: 12 | - ./docs 13 | target_paths: /docs 14 | 15 | -------------------------------------------------------------------------------- /node_modules/lunr/CNAME: -------------------------------------------------------------------------------- 1 | lunrjs.com 2 | -------------------------------------------------------------------------------- /node_modules/lunr/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributions are very welcome. To make the process as easy as possible please follow these steps: 2 | 3 | * Open an issue detailing the bug you've found, or the feature you wish to add. Simplified working examples using something like [jsFiddle](http://jsfiddle.net) make it easier to diagnose your problem. 4 | * Add tests for your code (so I don't accidentally break it in the future). 5 | * Don't change version numbers or make new builds as part of your changes. 6 | * Don't change the built versions of the library; only make changes to code in the `lib` directory. 7 | 8 | # Developer Dependencies 9 | 10 | A JavaScript runtime is required for building the library. 11 | 12 | Run the tests (using PhantomJS): 13 | 14 | make test 15 | 16 | The tests can also be run in the browser by starting the test server: 17 | 18 | make server 19 | 20 | This will start a server on port 3000, the tests are then available at `/test`. 21 | -------------------------------------------------------------------------------- /node_modules/lunr/VERSION: -------------------------------------------------------------------------------- 1 | 2.3.8 -------------------------------------------------------------------------------- /node_modules/lunr/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lunr.js", 3 | "version": "2.3.7", 4 | "main": "lunr.js", 5 | "ignore": [ 6 | "tests/", 7 | "perf/", 8 | "build/", 9 | "docs/" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/lunr/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lunr", 3 | "repo": "olivernn/lunr.js", 4 | "version": "2.3.7", 5 | "description": "Simple full-text search in your browser.", 6 | "license": "MIT", 7 | "main": "lunr.js", 8 | "scripts": ["lunr.js"] 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/lunr/lib/query_parse_error.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | lunr.QueryParseError = function (message, start, end) { 14 | this.name = "QueryParseError" 15 | this.message = message 16 | this.start = start 17 | this.end = end 18 | } 19 | 20 | lunr.QueryParseError.prototype = new Error 21 | -------------------------------------------------------------------------------- /node_modules/lunr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lunr", 3 | "description": "Simple full-text search in your browser.", 4 | "version": "2.3.8", 5 | "author": "Oliver Nightingale", 6 | "keywords": ["search"], 7 | "homepage": "https://lunrjs.com", 8 | "bugs": "http://github.com/olivernn/lunr.js/issues", 9 | "main": "lunr.js", 10 | "license": "MIT", 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/olivernn/lunr.js.git" 14 | }, 15 | "devDependencies": { 16 | "benchmark": "2.1.x", 17 | "chai": "3.5.x", 18 | "eslint-plugin-spellcheck": "0.0.8", 19 | "eslint": "3.4.x", 20 | "jsdoc": "3.5.x", 21 | "mocha": "3.3.x", 22 | "mustache": "2.2.x", 23 | "node-static": "0.7.x", 24 | "uglify-js": "2.6.x", 25 | "word-list": "1.0.x" 26 | }, 27 | "scripts": { 28 | "test": "make test" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /node_modules/lunr/perf/stemmer_perf.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | suite('lunr.stemmer', function () { 14 | this.add('#call', function () { 15 | for (var i = 0; i < words.length; i++) { 16 | lunr.stemmer(new lunr.Token (words[i])) 17 | } 18 | }) 19 | }) 20 | -------------------------------------------------------------------------------- /node_modules/lunr/test/test_helper.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | var lunr = require('../lunr.js'), 14 | assert = require('chai').assert, 15 | fs = require('fs'), 16 | path = require('path') 17 | 18 | var withFixture = function (name, fn) { 19 | var fixturePath = path.join('test', 'fixtures', name) 20 | fs.readFile(fixturePath, fn) 21 | } 22 | 23 | global.lunr = lunr 24 | global.assert = assert 25 | global.withFixture = withFixture 26 | -------------------------------------------------------------------------------- /node_modules/nth-check/lib/compile.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"compile.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/nth-check/639fd2a4000b69f82350aad8c34cb43f77e483ba/src/","sources":["compile.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,OAAO,CACnB,MAAM,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,GAC/B,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAgC5B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,wBAAgB,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,GAAG,MAAM,MAAM,GAAG,IAAI,CA+B5E"} -------------------------------------------------------------------------------- /node_modules/nth-check/lib/esm/compile.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"compile.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/nth-check/639fd2a4000b69f82350aad8c34cb43f77e483ba/src/","sources":["compile.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,OAAO,CACnB,MAAM,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,GAC/B,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAgC5B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,wBAAgB,QAAQ,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,GAAG,MAAM,MAAM,GAAG,IAAI,CA+B5E"} -------------------------------------------------------------------------------- /node_modules/nth-check/lib/esm/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/nth-check/639fd2a4000b69f82350aad8c34cb43f77e483ba/src/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAEjD,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC;AAEpC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAE5E;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,wBAAgB,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,MAAM,GAAG,IAAI,CAE7D"} -------------------------------------------------------------------------------- /node_modules/nth-check/lib/esm/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"https://raw.githubusercontent.com/fb55/nth-check/639fd2a4000b69f82350aad8c34cb43f77e483ba/src/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAEjD,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC;AAEpC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,OAAe;IAC5C,OAAO,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;AACnC,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAM,UAAU,QAAQ,CAAC,OAAe;IACpC,OAAO,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC;AACpC,CAAC"} -------------------------------------------------------------------------------- /node_modules/nth-check/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /node_modules/nth-check/lib/esm/parse.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | /** 15 | * Parses an expression. 16 | * 17 | * @throws An `Error` if parsing fails. 18 | * @returns An array containing the integer step size and the integer offset of the nth rule. 19 | * @example nthCheck.parse("2n+3"); // returns [2, 3] 20 | */ 21 | export declare function parse(formula: string): [a: number, b: number]; 22 | //# sourceMappingURL=parse.d.ts.map -------------------------------------------------------------------------------- /node_modules/nth-check/lib/esm/parse.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"parse.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/nth-check/639fd2a4000b69f82350aad8c34cb43f77e483ba/src/","sources":["parse.ts"],"names":[],"mappings":"AAOA;;;;;;GAMG;AACH,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,GAAG,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,CA6E7D"} -------------------------------------------------------------------------------- /node_modules/nth-check/lib/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/nth-check/639fd2a4000b69f82350aad8c34cb43f77e483ba/src/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAEjD,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC;AAEpC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAE5E;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,wBAAgB,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,MAAM,GAAG,IAAI,CAE7D"} -------------------------------------------------------------------------------- /node_modules/nth-check/lib/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"https://raw.githubusercontent.com/fb55/nth-check/639fd2a4000b69f82350aad8c34cb43f77e483ba/src/","sources":["index.ts"],"names":[],"mappings":";;;AAAA,uCAAmC;AAG1B,sFAHA,gBAAK,OAGA;AAFd,2CAAiD;AAEjC,wFAFP,oBAAO,OAEO;AAAE,yFAFP,qBAAQ,OAEO;AAEjC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAwB,QAAQ,CAAC,OAAe;IAC5C,OAAO,IAAA,oBAAO,EAAC,IAAA,gBAAK,EAAC,OAAO,CAAC,CAAC,CAAC;AACnC,CAAC;AAFD,2BAEC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,QAAQ,CAAC,OAAe;IACpC,OAAO,IAAA,qBAAQ,EAAC,IAAA,gBAAK,EAAC,OAAO,CAAC,CAAC,CAAC;AACpC,CAAC;AAFD,4BAEC"} -------------------------------------------------------------------------------- /node_modules/nth-check/lib/parse.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | /** 15 | * Parses an expression. 16 | * 17 | * @throws An `Error` if parsing fails. 18 | * @returns An array containing the integer step size and the integer offset of the nth rule. 19 | * @example nthCheck.parse("2n+3"); // returns [2, 3] 20 | */ 21 | export declare function parse(formula: string): [a: number, b: number]; 22 | //# sourceMappingURL=parse.d.ts.map -------------------------------------------------------------------------------- /node_modules/nth-check/lib/parse.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"parse.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/nth-check/639fd2a4000b69f82350aad8c34cb43f77e483ba/src/","sources":["parse.ts"],"names":[],"mappings":"AAOA;;;;;;GAMG;AACH,wBAAgB,KAAK,CAAC,OAAO,EAAE,MAAM,GAAG,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC,CA6E7D"} -------------------------------------------------------------------------------- /node_modules/parse5-htmlparser2-tree-adapter/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /node_modules/parse5/dist/cjs/common/doctype.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import { DOCUMENT_MODE } from './html.js'; 15 | import type { DoctypeToken } from './token.js'; 16 | export declare function isConforming(token: DoctypeToken): boolean; 17 | export declare function getDocumentMode(token: DoctypeToken): DOCUMENT_MODE; 18 | //# sourceMappingURL=doctype.d.ts.map -------------------------------------------------------------------------------- /node_modules/parse5/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /node_modules/parse5/dist/cjs/tree-adapters/interface.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | "use strict"; 14 | Object.defineProperty(exports, "__esModule", { value: true }); 15 | //# sourceMappingURL=interface.js.map -------------------------------------------------------------------------------- /node_modules/parse5/dist/common/doctype.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// JPAstreamer - Express JPA queries with Java Streams 3 | /// Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | /// 5 | /// License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | /// 7 | /// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | /// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | /// See the GNU Lesser General Public License for more details. 10 | /// 11 | /// See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | /// 13 | 14 | import { DOCUMENT_MODE } from './html.js'; 15 | import type { DoctypeToken } from './token.js'; 16 | export declare function isConforming(token: DoctypeToken): boolean; 17 | export declare function getDocumentMode(token: DoctypeToken): DOCUMENT_MODE; 18 | //# sourceMappingURL=doctype.d.ts.map -------------------------------------------------------------------------------- /node_modules/parse5/dist/tree-adapters/interface.js: -------------------------------------------------------------------------------- 1 | /* 2 | * JPAstreamer - Express JPA queries with Java Streams 3 | * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 4 | * 5 | * License: GNU Lesser General Public License (LGPL), version 2.1 or later. 6 | * 7 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 8 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 | * See the GNU Lesser General Public License for more details. 10 | * 11 | * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 12 | */ 13 | export {}; 14 | //# sourceMappingURL=interface.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "antora-lunr": "^0.8.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /set_version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # JPAstreamer - Express JPA queries with Java Streams 4 | # Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. 5 | # 6 | # License: GNU Lesser General Public License (LGPL), version 2.1 or later. 7 | # 8 | # This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 9 | # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 | # See the GNU Lesser General Public License for more details. 11 | # 12 | # See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE 13 | # 14 | 15 | #Fail on any error 16 | set -e 17 | 18 | if [ $# -eq 0 ] 19 | then 20 | echo "Usage $0: version" 21 | exit 1 22 | fi 23 | VERSION=$1 24 | 25 | mvn versions:set -DnewVersion="$VERSION" 26 | RETURN_BODY="version: $VERSION" 27 | sed -i tmp "s/version:.*\$/$RETURN_BODY/g" docs/antora.yml 28 | rm docs/antora.ymltmp 29 | --------------------------------------------------------------------------------