@apocaliss92/scrypted-advanced-notifier 3.0.4 → 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 +35 -0
- package/dist/plugin.zip +0 -0
- package/package.json +3 -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,31 @@
|
|
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
|
+
|
29
|
+
/**
|
30
|
+
* @license
|
31
|
+
* Copyright 2024 Google LLC
|
32
|
+
*
|
33
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
34
|
+
* you may not use this file except in compliance with the License.
|
35
|
+
* You may obtain a copy of the License at
|
36
|
+
*
|
37
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
38
|
+
*
|
39
|
+
* Unless required by applicable law or agreed to in writing, software
|
40
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
41
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
42
|
+
* See the License for the specific language governing permissions and
|
43
|
+
* limitations under the License.
|
44
|
+
*/
|
45
|
+
|
19
46
|
/**
|
20
47
|
* @license
|
21
48
|
* Lodash <https://lodash.com/>
|
@@ -25,6 +52,14 @@
|
|
25
52
|
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
26
53
|
*/
|
27
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
|
+
|
28
63
|
/**
|
29
64
|
* @preserve
|
30
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,8 @@
|
|
44
44
|
"pluginDependencies": []
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
|
+
"@anthropic-ai/sdk": "^0.39.0",
|
48
|
+
"@google/generative-ai": "^0.24.0",
|
47
49
|
"@scrypted/common": "file:../scrypted/common",
|
48
50
|
"@scrypted/sdk": "^0.3.124",
|
49
51
|
"axios": "^0.23.0",
|