jourycms-sdk 1.1.32 → 1.1.33

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.32",
3
+ "version": "1.1.33",
4
4
  "description": "Sdk for Joury CMS",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -95,7 +95,7 @@ declare module Levelup {
95
95
  Entity.Form
96
96
  >;
97
97
  export type Response<T extends Entity.Form = Entity.Form> =
98
- Utils.Api.Response.BuildListResponse<T, 'users' | 'form_types' | 'linked_forms'>;
98
+ Utils.Api.Response.BuildListResponse<T, 'users'>;
99
99
  }
100
100
 
101
101
 
@@ -10,7 +10,6 @@ declare module Levelup {
10
10
  export interface FormEntry
11
11
  extends Utils.Entity.General.ICreatable,
12
12
  Utils.Entity.General.IHasSearchMeta {
13
- _type: Utils.Common.ID | null;
14
13
  _id: Utils.Common.ID;
15
14
  slug: string;
16
15
  form: Utils.Common.ID;
@@ -25,6 +25,7 @@ declare module Levelup {
25
25
  fields: ICustomMetaField[];
26
26
 
27
27
  insights: IFromInsights;
28
+ snapshots: IFromSnapshots;
28
29
  }
29
30
  }
30
31
  }