@apocaliss92/scrypted-advanced-notifier 3.0.6 → 3.0.7
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/CHANGELOG.md +8 -0
- package/dist/main.nodejs.js.LICENSE.txt +18 -0
- package/dist/plugin.zip +0 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
<details>
|
2
2
|
<summary>Changelog</summary>
|
3
3
|
|
4
|
+
### 3.0.7
|
5
|
+
|
6
|
+
Added support to Anthropic AI
|
7
|
+
|
8
|
+
### 3.0.6
|
9
|
+
|
10
|
+
Added support to Google AI, thanks @sfn!
|
11
|
+
|
4
12
|
### 3.0.0
|
5
13
|
|
6
14
|
MQTT rework. Most of the IDs have changed. Remove all the homeassistant devices and let the plugin to recreate them.
|
@@ -1,3 +1,9 @@
|
|
1
|
+
/*!
|
2
|
+
* humanize-ms - index.js
|
3
|
+
* Copyright(c) 2014 dead_horse <dead_horse@qq.com>
|
4
|
+
* MIT Licensed
|
5
|
+
*/
|
6
|
+
|
1
7
|
/*!
|
2
8
|
* mime-db
|
3
9
|
* Copyright(c) 2014 Jonathan Ong
|
@@ -12,10 +18,14 @@
|
|
12
18
|
* MIT Licensed
|
13
19
|
*/
|
14
20
|
|
21
|
+
/*! Based on fetch-blob. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> & David Frank */
|
22
|
+
|
15
23
|
/*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
|
16
24
|
|
17
25
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
18
26
|
|
27
|
+
/*! node-domexception. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
|
28
|
+
|
19
29
|
/**
|
20
30
|
* @license
|
21
31
|
* Copyright 2024 Google LLC
|
@@ -42,6 +52,14 @@
|
|
42
52
|
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
43
53
|
*/
|
44
54
|
|
55
|
+
/**
|
56
|
+
* @license
|
57
|
+
* web-streams-polyfill v4.0.0-beta.3
|
58
|
+
* Copyright 2021 Mattias Buelens, Diwank Singh Tomer and other contributors.
|
59
|
+
* This code is released under the MIT license.
|
60
|
+
* SPDX-License-Identifier: MIT
|
61
|
+
*/
|
62
|
+
|
45
63
|
/**
|
46
64
|
* @preserve
|
47
65
|
* Copyright 2015-2018 Igor Bezkrovnyi
|
package/dist/plugin.zip
CHANGED
Binary file
|
package/package.json
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
"type": "git",
|
6
6
|
"url": "https://github.com/apocaliss92/scrypted-advanced-notifier"
|
7
7
|
},
|
8
|
-
"version": "3.0.
|
8
|
+
"version": "3.0.7",
|
9
9
|
"scripts": {
|
10
10
|
"scrypted-setup-project": "scrypted-setup-project",
|
11
11
|
"prescrypted-setup-project": "scrypted-package-json",
|
@@ -44,6 +44,7 @@
|
|
44
44
|
"pluginDependencies": []
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
|
+
"@anthropic-ai/sdk": "^0.39.0",
|
47
48
|
"@google/generative-ai": "^0.24.0",
|
48
49
|
"@scrypted/common": "file:../scrypted/common",
|
49
50
|
"@scrypted/sdk": "^0.3.124",
|