@malloydata/malloy-connections 0.0.404 → 0.0.406
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 +77 -0
- package/package.json +9 -9
package/LICENSE
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
Malloy Project License
|
|
2
|
+
SPDX-License-Identifier: MIT
|
|
3
|
+
|
|
4
|
+
Copyright Contributors to the Malloy project
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
|
23
|
+
|
|
24
|
+
========================================================================
|
|
25
|
+
SOURCE FILE HEADER
|
|
26
|
+
========================================================================
|
|
27
|
+
|
|
28
|
+
Every source file in this project carries the following header (shown here
|
|
29
|
+
in C/Java/JavaScript comment style; equivalent comment styles are used for
|
|
30
|
+
other languages):
|
|
31
|
+
|
|
32
|
+
/*
|
|
33
|
+
* Copyright Contributors to the Malloy project
|
|
34
|
+
* SPDX-License-Identifier: MIT
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
========================================================================
|
|
38
|
+
HISTORICAL ATTRIBUTIONS & NOTICES
|
|
39
|
+
========================================================================
|
|
40
|
+
|
|
41
|
+
Portions of this software were originally contributed by Google LLC and
|
|
42
|
+
Meta Platforms, Inc. and affiliates under the MIT License. For ease of
|
|
43
|
+
maintenance, individual file headers have been updated to the current
|
|
44
|
+
standard header. The full historical attribution and authorship for
|
|
45
|
+
individual files remains completely preserved and accessible via the Git
|
|
46
|
+
repository history.
|
|
47
|
+
|
|
48
|
+
The original copyright and permission notices for those contributions
|
|
49
|
+
are preserved below:
|
|
50
|
+
|
|
51
|
+
------------------------------------------------------------------------
|
|
52
|
+
Copyright 2023 Google LLC
|
|
53
|
+
|
|
54
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
55
|
+
a copy of this software and associated documentation files (the
|
|
56
|
+
"Software"), to deal in the Software without restriction, including
|
|
57
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
58
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
59
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
60
|
+
the following conditions:
|
|
61
|
+
|
|
62
|
+
The above copyright notice and this permission notice shall be
|
|
63
|
+
included in all copies or substantial portions of the Software.
|
|
64
|
+
|
|
65
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
66
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
67
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
68
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
69
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
70
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
71
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
72
|
+
------------------------------------------------------------------------
|
|
73
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
74
|
+
|
|
75
|
+
This source code is licensed under the MIT license found in the
|
|
76
|
+
LICENSE file in the root directory of this source tree.
|
|
77
|
+
------------------------------------------------------------------------
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/malloy-connections",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.406",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"clean": "tsc --build --clean && rm -f tsconfig.tsbuildinfo"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@malloydata/db-bigquery": "0.0.
|
|
37
|
-
"@malloydata/db-databricks": "0.0.
|
|
38
|
-
"@malloydata/db-duckdb": "0.0.
|
|
39
|
-
"@malloydata/db-mysql": "0.0.
|
|
40
|
-
"@malloydata/db-postgres": "0.0.
|
|
41
|
-
"@malloydata/db-snowflake": "0.0.
|
|
42
|
-
"@malloydata/db-trino": "0.0.
|
|
43
|
-
"@malloydata/malloy": "0.0.
|
|
36
|
+
"@malloydata/db-bigquery": "0.0.406",
|
|
37
|
+
"@malloydata/db-databricks": "0.0.406",
|
|
38
|
+
"@malloydata/db-duckdb": "0.0.406",
|
|
39
|
+
"@malloydata/db-mysql": "0.0.406",
|
|
40
|
+
"@malloydata/db-postgres": "0.0.406",
|
|
41
|
+
"@malloydata/db-snowflake": "0.0.406",
|
|
42
|
+
"@malloydata/db-trino": "0.0.406",
|
|
43
|
+
"@malloydata/malloy": "0.0.406"
|
|
44
44
|
}
|
|
45
45
|
}
|