coze-coding-dev-sdk 0.7.18-beta.9 → 0.7.19
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/dist/cjs/cli/index.js +75 -41
- package/dist/cjs/cli/index.js.LICENSE.txt +58 -0
- package/dist/cjs/index.js +33 -33
- package/dist/esm/131.mjs +18 -18
- package/dist/esm/1~113.mjs +1 -1
- package/dist/esm/1~390.mjs +2 -2
- package/dist/esm/1~398.mjs +2 -2
- package/dist/esm/1~844.mjs +1 -1
- package/dist/esm/687.mjs +1 -0
- package/dist/esm/cli/index.mjs +29 -24
- package/dist/esm/cli/index.mjs.LICENSE.txt +58 -0
- package/dist/esm/rslib-runtime.mjs +1 -1
- package/dist/types/cli/commands/db.d.ts.map +1 -1
- package/dist/types/cli/commands/storage.d.ts +6 -0
- package/dist/types/cli/commands/storage.d.ts.map +1 -0
- package/dist/types/supabase/client.d.ts +2 -3
- package/dist/types/supabase/client.d.ts.map +1 -1
- package/dist/types/supabase/models.d.ts +55 -21
- package/dist/types/supabase/models.d.ts.map +1 -1
- package/package.json +4 -2
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* normalize-path <https://github.com/jonschlinkert/normalize-path>
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2014-2018, Jon Schlinkert.
|
|
5
|
+
* Released under the MIT License.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
|
9
|
+
|
|
10
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Archiver Core
|
|
14
|
+
*
|
|
15
|
+
* @ignore
|
|
16
|
+
* @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
|
|
17
|
+
* @copyright (c) 2012-2014 Chris Talkington, contributors.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Archiver Vending
|
|
22
|
+
*
|
|
23
|
+
* @ignore
|
|
24
|
+
* @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
|
|
25
|
+
* @copyright (c) 2012-2014 Chris Talkington, contributors.
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* JSON Format Plugin
|
|
30
|
+
*
|
|
31
|
+
* @module plugins/json
|
|
32
|
+
* @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
|
|
33
|
+
* @copyright (c) 2012-2014 Chris Talkington, contributors.
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* TAR Format Plugin
|
|
38
|
+
*
|
|
39
|
+
* @module plugins/tar
|
|
40
|
+
* @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
|
|
41
|
+
* @copyright (c) 2012-2014 Chris Talkington, contributors.
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* ZIP Format Plugin
|
|
46
|
+
*
|
|
47
|
+
* @module plugins/zip
|
|
48
|
+
* @license [MIT]{@link https://github.com/archiverjs/node-archiver/blob/master/LICENSE}
|
|
49
|
+
* @copyright (c) 2012-2014 Chris Talkington, contributors.
|
|
50
|
+
*/
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* ZipStream
|
|
54
|
+
*
|
|
55
|
+
* @ignore
|
|
56
|
+
* @license [MIT]{@link https://github.com/archiverjs/node-zip-stream/blob/master/LICENSE}
|
|
57
|
+
* @copyright (c) 2014 Chris Talkington, contributors.
|
|
58
|
+
*/
|