@jfvilas/kwirth-common 0.2.2 → 0.2.3
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/ApiKey.d.ts +6 -0
- package/dist/ApiKey.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +6 -1
- package/src/ApiKey.ts +8 -0
- package/src/index.ts +3 -1
package/dist/ApiKey.d.ts
ADDED
package/dist/ApiKey.js
ADDED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jfvilas/kwirth-common",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Common interfaces for integrating applications with Kwirth",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "del .\\dist\\* /s /q && tsc"
|
|
8
8
|
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public",
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"types": "dist/index.d.ts"
|
|
13
|
+
},
|
|
9
14
|
"repository": {
|
|
10
15
|
"type": "git",
|
|
11
16
|
"url": "git+https://github.com/jfvilas/kwirth-common.git"
|
package/src/ApiKey.ts
ADDED
package/src/index.ts
CHANGED
|
@@ -13,4 +13,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
13
13
|
See the License for the specific language governing permissions and
|
|
14
14
|
limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export * from './StreamMessage'
|
|
16
|
+
export * from './StreamMessage'
|
|
17
|
+
export * from './ApiKey'
|
|
18
|
+
export * from './AccessKey'
|