jourycms-sdk 1.1.33 → 1.1.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jourycms-sdk",
3
- "version": "1.1.33",
3
+ "version": "1.1.35",
4
4
  "description": "Sdk for Joury CMS",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -20,6 +20,8 @@ declare module Levelup {
20
20
  | "term"
21
21
  | "review"
22
22
  | "comment"
23
+ | "form"
24
+ | "formEntry"
23
25
  | "article"
24
26
  | "articleType";
25
27
  export type SystemModels = "app";
@@ -67,6 +69,10 @@ declare module Levelup {
67
69
  ? Levelup.CMS.V1.Content.Translation.Entity.Project
68
70
  : E extends "translationNamespace"
69
71
  ? Levelup.CMS.V1.Content.Translation.Entity.Namespace
72
+ : E extends "form"
73
+ ? Levelup.CMS.V1.Content.Entity.Form
74
+ : E extends "formEntry"
75
+ ? Levelup.CMS.V1.Content.Entity.FormEntry
70
76
  : // Storage
71
77
  E extends "uploadedFile"
72
78
  ? Levelup.CMS.V1.Storage.Entity.UploadedFile