dots-wrapper 3.8.3 → 3.8.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 +9 -6
- package/dist/app/types/app.d.ts +3 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -311,23 +311,26 @@ js.js
|
|
|
311
311
|
|
|
312
312
|
## contributors
|
|
313
313
|
|
|
314
|
+
<a href="https://github.com/kkhanhluu" target="_blank">
|
|
315
|
+
<img src="https://avatars2.githubusercontent.com/u/38130967?v=3" width="80" height="80">
|
|
316
|
+
</a>
|
|
314
317
|
<a href="https://github.com/carlosbaraza" target="_blank">
|
|
315
|
-
<img src="https://avatars2.githubusercontent.com/u/1270425?v=3"
|
|
318
|
+
<img src="https://avatars2.githubusercontent.com/u/1270425?v=3" width="80" height="80">
|
|
316
319
|
</a>
|
|
317
320
|
<a href="https://github.com/codyogden" target="_blank">
|
|
318
|
-
<img src="https://avatars2.githubusercontent.com/u/11383626?v=3"
|
|
321
|
+
<img src="https://avatars2.githubusercontent.com/u/11383626?v=3" width="80" height="80">
|
|
319
322
|
</a>
|
|
320
323
|
<a href="https://github.com/rijkvanzanten" target="_blank">
|
|
321
|
-
<img src="https://avatars2.githubusercontent.com/u/9141017?v=3"
|
|
324
|
+
<img src="https://avatars2.githubusercontent.com/u/9141017?v=3" width="80" height="80">
|
|
322
325
|
</a>
|
|
323
326
|
<a href="https://github.com/FreakyTurtle" target="_blank">
|
|
324
|
-
<img src="https://avatars2.githubusercontent.com/u/8461972?v=3"
|
|
327
|
+
<img src="https://avatars2.githubusercontent.com/u/8461972?v=3" width="80" height="80">
|
|
325
328
|
</a>
|
|
326
329
|
<a href="https://github.com/Aitthi" target="_blank">
|
|
327
|
-
<img src="https://avatars2.githubusercontent.com/u/26670680?v=3"
|
|
330
|
+
<img src="https://avatars2.githubusercontent.com/u/26670680?v=3" width="80" height="80">
|
|
328
331
|
</a>
|
|
329
332
|
<a href="https://github.com/Cosmic-Goat" target="_blank">
|
|
330
|
-
<img src="https://avatars2.githubusercontent.com/u/13304815?v=3"
|
|
333
|
+
<img src="https://avatars2.githubusercontent.com/u/13304815?v=3" width="80" height="80">
|
|
331
334
|
</a>
|
|
332
335
|
|
|
333
336
|
## license: [mit](LICENSE)
|
package/dist/app/types/app.d.ts
CHANGED
|
@@ -19,6 +19,9 @@ export interface IApp {
|
|
|
19
19
|
live_url_base: string;
|
|
20
20
|
live_url?: string;
|
|
21
21
|
owner_uuid: string;
|
|
22
|
+
pending_deployment?: IAppDeployment;
|
|
23
|
+
pinned_deployment?: IAppDeployment;
|
|
24
|
+
project_id: string;
|
|
22
25
|
region: IAppRegion;
|
|
23
26
|
spec: IAppSpec;
|
|
24
27
|
tier_slug: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dots-wrapper",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.4",
|
|
4
4
|
"description": "Digital Ocean v2 api wrapper - javascript - typescript - nodejs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"browser": "dist/index-browser.min.js",
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"axios": "^0.27.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@babel/core": "^7.21.
|
|
35
|
-
"@babel/preset-env": "^7.
|
|
36
|
-
"@babel/preset-typescript": "^7.21.
|
|
34
|
+
"@babel/core": "^7.21.4",
|
|
35
|
+
"@babel/preset-env": "^7.21.4",
|
|
36
|
+
"@babel/preset-typescript": "^7.21.4",
|
|
37
37
|
"@types/jest": "^29.5.0",
|
|
38
|
-
"@types/node": "^18.15.
|
|
39
|
-
"axios-mock-adapter": "^1.21.
|
|
38
|
+
"@types/node": "^18.15.11",
|
|
39
|
+
"axios-mock-adapter": "^1.21.4",
|
|
40
40
|
"babel-jest": "^29.5.0",
|
|
41
41
|
"jest": "^29.5.0",
|
|
42
42
|
"license-webpack-plugin": "^4.0.2",
|
|
43
|
-
"ts-jest": "^29.0
|
|
44
|
-
"typescript": "^5.0.
|
|
45
|
-
"webpack": "^5.
|
|
43
|
+
"ts-jest": "^29.1.0",
|
|
44
|
+
"typescript": "^5.0.4",
|
|
45
|
+
"webpack": "^5.79.0",
|
|
46
46
|
"webpack-cli": "^5.0.1"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|