starti.app 1.2.43-alpha.2 → 1.2.43-alpha.4
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 +4 -0
- package/dist/integrations/network.d.ts +1 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# starti.app API
|
|
2
2
|
|
|
3
|
+
# Creating new release
|
|
4
|
+
- Either run `npx nbgv tag` and then push all tags with `git push --tags`
|
|
5
|
+
- Or run run the `create new tag` workflow from the actions tab on github
|
|
6
|
+
|
|
3
7
|
## When should I use this package?
|
|
4
8
|
|
|
5
9
|
You've bought a [starti.app](https://starti.app) and want to integrate your website and the app.
|
|
@@ -3,6 +3,7 @@ declare type ListenResponse = {
|
|
|
3
3
|
success: boolean;
|
|
4
4
|
message?: string;
|
|
5
5
|
};
|
|
6
|
+
declare type NetworkAccess = "ConstrainedInternet" | "Internet" | "Local" | "None" | "Unknown";
|
|
6
7
|
export declare const Network: INetwork;
|
|
7
8
|
declare type NetworkEvents = {
|
|
8
9
|
connectionStateChanged: CustomEvent<ConnectionChangeEvent>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starti.app",
|
|
3
|
-
"version": "1.2.43-alpha.
|
|
3
|
+
"version": "1.2.43-alpha.4",
|
|
4
4
|
"description": "Use this package for easy communication with the starti.app API.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"mustache": "^4.2.0",
|
|
40
|
+
"nerdbank-gitversioning": "^3.7.48-alpha",
|
|
40
41
|
"node-fetch": "^3.3.2"
|
|
41
42
|
}
|
|
42
43
|
}
|