roomzin-js 1.0.0 → 1.0.2

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 CHANGED
@@ -1,9 +1,9 @@
1
1
  Business Source License 1.1
2
2
 
3
- Licensor: m-javani (or your company name)
3
+ Licensor: m-javani
4
4
 
5
5
  Licensed Work: Roomzin Go SDK
6
- The Licensed Work is (c) 2024 m-javani (or your company)
6
+ The Licensed Work is (c) 2024 m-javani
7
7
 
8
8
  Additional Use Grant: You may use the Licensed Work in production
9
9
  provided that your use does not include offering the Licensed Work
@@ -2,4 +2,5 @@ export * from './codecs';
2
2
  export * from './request';
3
3
  export * from './response';
4
4
  export * from './err';
5
+ export * from './discovery';
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,OAAO,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,OAAO,CAAA;AACrB,cAAc,aAAa,CAAA"}
@@ -18,4 +18,5 @@ __exportStar(require("./codecs"), exports);
18
18
  __exportStar(require("./request"), exports);
19
19
  __exportStar(require("./response"), exports);
20
20
  __exportStar(require("./err"), exports);
21
+ __exportStar(require("./discovery"), exports);
21
22
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,4CAAyB;AACzB,6CAA0B;AAC1B,wCAAqB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,4CAAyB;AACzB,6CAA0B;AAC1B,wCAAqB;AACrB,8CAA2B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roomzin-js",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Official Roomzin Client SDK for Node.js and TypeScript",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,5 +30,12 @@
30
30
  "homepage": "https://github.com/m-javani/roomzin-js#readme",
31
31
  "bugs": {
32
32
  "url": "https://github.com/m-javani/roomzin-js/issues"
33
+ },
34
+ "dependencies": {
35
+ "async-mutex": "^0.4.0"
36
+ },
37
+ "devDependencies": {
38
+ "@types/node": "^20.0.0",
39
+ "typescript": "^5.8.3"
33
40
  }
34
41
  }