@contentstack/cli-cm-seed 1.14.1 → 1.14.3
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/lib/seed/contentstack/client.d.ts +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +11 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ContentstackClient as ContentstackAPIClient } from '@contentstack/cli-utilities';
|
|
2
2
|
export interface Organization {
|
|
3
3
|
uid: string;
|
|
4
4
|
name: string;
|
|
@@ -35,7 +35,7 @@ export interface createManagementTokenOptions {
|
|
|
35
35
|
}[];
|
|
36
36
|
}
|
|
37
37
|
export default class ContentstackClient {
|
|
38
|
-
instance: Promise<
|
|
38
|
+
instance: Promise<ContentstackAPIClient>;
|
|
39
39
|
limit: number;
|
|
40
40
|
constructor(cmaHost: string, limit: number);
|
|
41
41
|
getOrganization(org_uid: string): Promise<Organization>;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,33 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentstack/cli-cm-seed",
|
|
3
3
|
"description": "create a Stack from existing content types, entries, assets, etc.",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.3",
|
|
5
5
|
"author": "Contentstack",
|
|
6
6
|
"bugs": "https://github.com/contentstack/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@contentstack/cli-cm-import": "~1.31.
|
|
9
|
-
"@contentstack/cli-command": "~1.7.
|
|
10
|
-
"@contentstack/cli-utilities": "~1.
|
|
11
|
-
"@contentstack/management": "~1.27.3",
|
|
8
|
+
"@contentstack/cli-cm-import": "~1.31.3",
|
|
9
|
+
"@contentstack/cli-command": "~1.7.2",
|
|
10
|
+
"@contentstack/cli-utilities": "~1.17.2",
|
|
12
11
|
"inquirer": "8.2.7",
|
|
13
12
|
"mkdirp": "^1.0.4",
|
|
14
|
-
"tar": "^7.5.
|
|
15
|
-
"tmp": "^0.2.
|
|
13
|
+
"tar": "^7.5.7",
|
|
14
|
+
"tmp": "^0.2.5"
|
|
16
15
|
},
|
|
17
16
|
"devDependencies": {
|
|
18
|
-
"@types/inquirer": "^9.0.
|
|
17
|
+
"@types/inquirer": "^9.0.9",
|
|
19
18
|
"@types/jest": "^26.0.24",
|
|
20
19
|
"@types/mkdirp": "^1.0.2",
|
|
21
20
|
"@types/node": "^14.18.63",
|
|
22
21
|
"@types/tar": "^6.1.13",
|
|
23
22
|
"@types/tmp": "^0.2.6",
|
|
24
|
-
"axios": "^1.
|
|
23
|
+
"axios": "^1.13.5",
|
|
25
24
|
"eslint": "^8.57.1",
|
|
26
|
-
"eslint-config-oclif": "^6.0.
|
|
25
|
+
"eslint-config-oclif": "^6.0.137",
|
|
27
26
|
"eslint-config-oclif-typescript": "^3.1.14",
|
|
28
27
|
"jest": "^29.7.0",
|
|
29
28
|
"oclif": "^4.17.46",
|
|
30
|
-
"ts-jest": "^29.
|
|
29
|
+
"ts-jest": "^29.4.6",
|
|
31
30
|
"ts-node": "^8.10.2",
|
|
32
31
|
"typescript": "^4.9.5"
|
|
33
32
|
},
|
|
@@ -71,4 +70,4 @@
|
|
|
71
70
|
"version": "oclif readme && git add README.md",
|
|
72
71
|
"clean": "rm -rf ./node_modules tsconfig.build.tsbuildinfo"
|
|
73
72
|
}
|
|
74
|
-
}
|
|
73
|
+
}
|