jourycms-sdk 1.1.46 → 1.1.49

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.46",
3
+ "version": "1.1.49",
4
4
  "description": "Sdk for Joury CMS",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -97,6 +97,26 @@ declare module Levelup {
97
97
  export type Response<D extends { [Key: string]: any } = { [Key: string]: any }> =
98
98
  Utils.Api.Response.BuildListResponse<Entity.FormEntry<D>, 'users' | 'forms'>;
99
99
  }
100
+
101
+ /**
102
+ * --------------------------------------------------------------------------
103
+ * Export
104
+ * --------------------------------------------------------------------------
105
+ * @link
106
+ * @fires FormEntriesService.Export
107
+ * @param {Levelup.CMS.V1.Api.FormEntries.Export.Request} query
108
+ * @returns {Levelup.CMS.V1.Api.FormEntries.Export.Response}
109
+ * @method GET
110
+ *
111
+ */
112
+ export namespace Export {
113
+ export type Request<D extends { [Key: string]: any } = { [Key: string]: any }> =
114
+ Utils.Api.Request.BuildSearchablePagedSortableFilterableProjectable<
115
+ Entity.FormEntry<D>
116
+ >;
117
+ export type Response<D extends { [Key: string]: any } = { [Key: string]: any }> =
118
+ Utils.Api.Response.BuildListResponse<Entity.FormEntry<D>, 'users' | 'forms'>;
119
+ }
100
120
 
101
121
  /**
102
122
  * --------------------------------------------------------------------------
@@ -14,6 +14,7 @@ declare module Levelup {
14
14
  slug: string;
15
15
  form: Utils.Common.ID;
16
16
  data: D;
17
+ is_handled: boolean;
17
18
  snapshots: IFormEntrySnapshots;
18
19
  }
19
20
  }