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 |
--------------------------------------------------------------------------------