mcp-server-esa 1.0.0
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/.prettierignore +4 -0
- package/.prettierrc +3 -0
- package/abc.json +8 -0
- package/dist/721.js +305 -0
- package/dist/721.mjs +304 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +7475 -0
- package/dist/index.js.LICENSE.txt +27 -0
- package/dist/index.mjs +7448 -0
- package/dist/index.mjs.LICENSE.txt +27 -0
- package/dist/tools/commit.d.ts +9 -0
- package/dist/tools/deploy.d.ts +17 -0
- package/dist/tools/deployments.d.ts +9 -0
- package/dist/tools/list-esa-function.d.ts +26 -0
- package/dist/tools/record.d.ts +25 -0
- package/dist/tools/route.d.ts +49 -0
- package/dist/tools/routine.d.ts +33 -0
- package/dist/tools/site.d.ts +17 -0
- package/dist/utils/helpers.d.ts +25 -0
- package/dist/utils/service.d.ts +39 -0
- package/dist/utils/types.d.ts +59 -0
- package/esa.toml +8 -0
- package/eslint.config.mjs +10 -0
- package/image/readme/1744114566511.png +0 -0
- package/image/readme/1744114625974.png +0 -0
- package/image/readme/1744165412296.png +0 -0
- package/image/readme/1744168230082.gif +0 -0
- package/image/readme/1744168440370.gif +0 -0
- package/image/readme/1744168966418.gif +0 -0
- package/package.json +46 -0
- package/readme.md +281 -0
- package/rslib.config.ts +15 -0
- package/src/index.ts +48 -0
- package/src/tools/commit.ts +90 -0
- package/src/tools/deploy.ts +103 -0
- package/src/tools/deployments.ts +37 -0
- package/src/tools/list-esa-function.ts +92 -0
- package/src/tools/record.ts +115 -0
- package/src/tools/route.ts +314 -0
- package/src/tools/routine.ts +130 -0
- package/src/tools/site.ts +61 -0
- package/src/utils/helpers.ts +181 -0
- package/src/utils/service.ts +337 -0
- package/src/utils/types.ts +71 -0
- package/test.js +0 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* mime-db
|
|
3
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
4
|
+
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
* mime-types
|
|
10
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
11
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
12
|
+
* MIT Licensed
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*! fetch-blob. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
|
|
16
|
+
|
|
17
|
+
/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
|
|
18
|
+
|
|
19
|
+
/*! node-domexception. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* @license
|
|
23
|
+
* web-streams-polyfill v3.3.3
|
|
24
|
+
* Copyright 2024 Mattias Buelens, Diwank Singh Tomer and other contributors.
|
|
25
|
+
* This code is released under the MIT license.
|
|
26
|
+
* SPDX-License-Identifier: MIT
|
|
27
|
+
*/
|