cityworks 0.0.36 → 0.0.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cityworks",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "description": "A Cityworks API wrapper",
5
5
  "main": "dist/index.js",
6
6
  "umd:main": "dist/index.umd.js",
package/src/cityworks.ts CHANGED
@@ -52,7 +52,7 @@ interface Citywork {
52
52
  /**
53
53
  * Core class Cityworks with most of the authentication and install capabilities functions
54
54
  */
55
- export default class Cityworks implements Citywork {
55
+ export class Cityworks implements Citywork {
56
56
  /**
57
57
  * The domain of the cityworks install. Defaults to Cityworks Online
58
58
  */
package/src/index.ts CHANGED
@@ -1 +1 @@
1
- export * from './cityworks'
1
+ export { Cityworks } from './cityworks'