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/dist/cityworks.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.m.js +1 -1
- package/dist/index.m.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/cityworks.ts +1 -1
- package/src/index.ts +1 -1
package/package.json
CHANGED
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
|
|
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
|
|
1
|
+
export { Cityworks } from './cityworks'
|