@trakit/sync 0.0.19 → 0.0.20
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/README.md +21 -21
- package/index.d.ts +1 -1
- package/package.json +40 -40
- package/trakit-sync.min.js +1 -1
package/README.md
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
# Trak-iT API Synchronization
|
|
2
|
-
|
|
3
|
-
This library provides a full suite of tools to keep a local copy of objects from Trak-iT's APIs in-sync. Other Trak-iT API libraries are available on GitHub. https://github.com/trakitwireless
|
|
4
|
-
|
|
5
|
-
### Prerequisites
|
|
6
|
-
|
|
7
|
-
The `@trakit/objects` and `@trakit/commands` packages are required since they contain the definitions for all the commands required to manipulate the objects.
|
|
8
|
-
|
|
9
|
-
In order to build this project, you need to install the RollupJS, and plugins for TypeScript and Minifying.
|
|
10
|
-
```
|
|
11
|
-
npm i rollup rollup-plugin-typescript2 @rollup/plugin-terser
|
|
12
|
-
```
|
|
13
|
-
After those have been installed, build the project normally.
|
|
14
|
-
```
|
|
15
|
-
rollup --config rollup.config.js
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
## Questions and Feedback
|
|
19
|
-
|
|
20
|
-
If you have any questions, please start for the project on GitHub
|
|
21
|
-
https://github.com/trakitwireless/trakit-ts-sync/issues
|
|
1
|
+
# Trak-iT API Synchronization
|
|
2
|
+
|
|
3
|
+
This library provides a full suite of tools to keep a local copy of objects from Trak-iT's APIs in-sync. Other Trak-iT API libraries are available on GitHub. https://github.com/trakitwireless
|
|
4
|
+
|
|
5
|
+
### Prerequisites
|
|
6
|
+
|
|
7
|
+
The `@trakit/objects` and `@trakit/commands` packages are required since they contain the definitions for all the commands required to manipulate the objects.
|
|
8
|
+
|
|
9
|
+
In order to build this project, you need to install the RollupJS, and plugins for TypeScript and Minifying.
|
|
10
|
+
```
|
|
11
|
+
npm i rollup rollup-plugin-typescript2 @rollup/plugin-terser
|
|
12
|
+
```
|
|
13
|
+
After those have been installed, build the project normally.
|
|
14
|
+
```
|
|
15
|
+
rollup --config rollup.config.js
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Questions and Feedback
|
|
19
|
+
|
|
20
|
+
If you have any questions, please start for the project on GitHub
|
|
21
|
+
https://github.com/trakitwireless/trakit-ts-sync/issues
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@trakit/sync",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"main": "./trakit-sync.min.js",
|
|
6
|
-
"types": "./index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
|
-
},
|
|
10
|
-
"repository": {
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/trakitwireless/trakit-ts-sync.git"
|
|
13
|
-
},
|
|
14
|
-
"files": [
|
|
15
|
-
"LICENSE",
|
|
16
|
-
"README.md",
|
|
17
|
-
"**/*.js",
|
|
18
|
-
"**/*.d.ts"
|
|
19
|
-
],
|
|
20
|
-
"keywords": [
|
|
21
|
-
"trakit"
|
|
22
|
-
],
|
|
23
|
-
"author": "Alex Lein",
|
|
24
|
-
"license": "AGPL-3.0-only",
|
|
25
|
-
"bugs": {
|
|
26
|
-
"url": "https://github.com/trakitwireless/trakit-ts-sync/issues"
|
|
27
|
-
},
|
|
28
|
-
"homepage": "https://github.com/trakitwireless/trakit-ts-sync#readme",
|
|
29
|
-
"description": "Trak-iT uses these object definitions to interact with all our APIs.",
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
32
|
-
"rollup": "^4.35.0",
|
|
33
|
-
"rollup-plugin-typescript2": "^0.36.0",
|
|
34
|
-
"tsx": "^4.21.0",
|
|
35
|
-
"vitest": "^4.0.7"
|
|
36
|
-
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"@trakit/commands": "0.0.
|
|
39
|
-
"@trakit/objects": "0.0.
|
|
40
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@trakit/sync",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.20",
|
|
5
|
+
"main": "./trakit-sync.min.js",
|
|
6
|
+
"types": "./index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/trakitwireless/trakit-ts-sync.git"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"LICENSE",
|
|
16
|
+
"README.md",
|
|
17
|
+
"**/*.js",
|
|
18
|
+
"**/*.d.ts"
|
|
19
|
+
],
|
|
20
|
+
"keywords": [
|
|
21
|
+
"trakit"
|
|
22
|
+
],
|
|
23
|
+
"author": "Alex Lein",
|
|
24
|
+
"license": "AGPL-3.0-only",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/trakitwireless/trakit-ts-sync/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/trakitwireless/trakit-ts-sync#readme",
|
|
29
|
+
"description": "Trak-iT uses these object definitions to interact with all our APIs.",
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
32
|
+
"rollup": "^4.35.0",
|
|
33
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
34
|
+
"tsx": "^4.21.0",
|
|
35
|
+
"vitest": "^4.0.7"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@trakit/commands": "^0.0.14",
|
|
39
|
+
"@trakit/objects": "^0.0.16"
|
|
40
|
+
}
|
|
41
41
|
}
|
package/trakit-sync.min.js
CHANGED
|
@@ -4,4 +4,4 @@ function e(e,t){return{errorCode:i.unknown,message:"Client exception",errorDetai
|
|
|
4
4
|
* {@link https://github.com/trakitwireless/trakit-ts-sync|Client synchronization library.}
|
|
5
5
|
* Last updated on Thu Feb 27 2025 11:59:01
|
|
6
6
|
* @copyright Trak-iT Wireless Inc. 2025
|
|
7
|
-
*/const Ar="0.0.
|
|
7
|
+
*/const Ar="0.0.20";export{vr as SubscribedRegions,cr as TrakitBaseCommander,sr as TrakitEvent,nr as TrakitEventAccount,ar as TrakitEventDelete,ir as TrakitEventList,fr as TrakitEventSocketClose,yr as TrakitEventSocketMessage,rr as TrakitEventSync,or as TrakitEventUpdate,hr as TrakitObjectCommander,mr as TrakitRestfulCommander,Pr as TrakitSocketCommander,kr as TrakitSyncCommander,Ar as version};
|