RubyGems
npm
Organizations
Log in
Sign up
npm
jourycms-sdk
Versions diffs
1.1.2 → 1.1.4
jourycms-sdk 1.1.2 → 1.1.4
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (3)
hide
show
package/package.json
+1
-1
package/typings/v1/services/content/entities/index.d.ts
+2
-1
package/typings/v1/theme/index.d.ts
+1
-0
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "jourycms-sdk",
3
-
"version": "1.1.
2
",
3
+
"version": "1.1.
4
",
4
4
"description": "Sdk for Joury CMS",
5
5
"main": "dist/index.js",
6
6
"files": [
package/typings/v1/services/content/entities/index.d.ts
CHANGED
Viewed
@@ -8,4 +8,5 @@ export * from "./term.d.ts";
8
8
export * from "./review.d.ts";
9
9
export * from "./comment.d.ts";
10
10
export * from "./article.d.ts";
11
-
export * from "./article-type.d.ts";
11
+
export * from "./article-type.d.ts";
12
+
export * from "./custom-fieds/index.d.ts";
package/typings/v1/theme/index.d.ts
CHANGED
Viewed
@@ -1,3 +1,4 @@
1
1
export * from "./layout.d.ts";
2
2
export * from "./page.d.ts";
3
+
export * from "./component.d.ts";
3
4