@decaf-ts/core 0.5.19 → 0.5.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +13 -16
- package/README.md +1 -1
- package/dist/core.cjs +47 -10
- package/dist/core.esm.cjs +47 -10
- package/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/persistence/Adapter.d.ts +9 -0
- package/lib/esm/persistence/Adapter.js +14 -1
- package/lib/esm/repository/Repository.d.ts +14 -0
- package/lib/esm/repository/Repository.js +24 -1
- package/lib/esm/repository/decorators.d.ts +1 -1
- package/lib/esm/repository/decorators.js +11 -9
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/persistence/Adapter.cjs +14 -1
- package/lib/persistence/Adapter.d.ts +9 -0
- package/lib/repository/Repository.cjs +24 -1
- package/lib/repository/Repository.d.ts +14 -0
- package/lib/repository/decorators.cjs +11 -9
- package/lib/repository/decorators.d.ts +1 -1
- package/package.json +3 -2
package/LICENSE.md
CHANGED
@@ -1,21 +1,18 @@
|
|
1
|
-
#
|
1
|
+
# GNU Affero General Public License v3.0-or-later
|
2
2
|
|
3
3
|
Copyright (c) 2025 Tiago Venceslau
|
4
4
|
|
5
|
-
|
6
|
-
of
|
7
|
-
|
8
|
-
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
5
|
+
This program is free software: you can redistribute it and/or modify
|
6
|
+
it under the terms of the GNU Affero General Public License as published by
|
7
|
+
the Free Software Foundation, either version 3 of the License, or
|
8
|
+
(at your option) any later version.
|
11
9
|
|
12
|
-
|
13
|
-
|
10
|
+
This program is distributed in the hope that it will be useful,
|
11
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
GNU Affero General Public License for more details.
|
14
14
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
15
|
+
You should have received a copy of the GNU Affero General Public License
|
16
|
+
along with this program. If not, see https://www.gnu.org/licenses/.
|
17
|
+
|
18
|
+
Full license text: https://www.gnu.org/licenses/agpl-3.0.txt
|
package/README.md
CHANGED
@@ -729,6 +729,6 @@ So if you can, if this project in any way. either by learning something or simpl
|
|
729
729
|
|
730
730
|
## License
|
731
731
|
|
732
|
-
This project is released under the [
|
732
|
+
This project is released under the [AGPL-3.0-or-later License](./LICENSE.md).
|
733
733
|
|
734
734
|
By developers, for developers...
|