gd-sprest 7.2.2 → 7.2.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.
@@ -559,6 +559,9 @@ export type IFieldType = {
559
559
  /** Specifies that the field contains a GUID value. */
560
560
  Guid: number,
561
561
 
562
+ /** Specifies that the field is an image. */
563
+ Image: number,
564
+
562
565
  /** Specifies that the field contains an integer value. */
563
566
  Integer: number,
564
567
 
package/build/rest.js CHANGED
@@ -8,7 +8,7 @@ var sptypes_1 = require("./sptypes");
8
8
  * SharePoint REST Library
9
9
  */
10
10
  exports.$REST = {
11
- __ver: 7.21,
11
+ __ver: 7.23,
12
12
  AppContext: function (siteUrl) { return Lib.Site.getAppContext(siteUrl); },
13
13
  Apps: Lib.Apps,
14
14
  ContextInfo: Lib.ContextInfo,
@@ -260,6 +260,7 @@ exports.FieldType = {
260
260
  Geolocation: 31,
261
261
  GridChoice: 16,
262
262
  Guid: 14,
263
+ Image: 34,
263
264
  Integer: 1,
264
265
  Invalid: 0,
265
266
  Lookup: 7,
@@ -4566,6 +4566,9 @@ declare module 'gd-sprest/sptypes/sptypes' {
4566
4566
  /** Specifies that the field contains a GUID value. */
4567
4567
  Guid: number,
4568
4568
 
4569
+ /** Specifies that the field is an image. */
4570
+ Image: number,
4571
+
4569
4572
  /** Specifies that the field contains an integer value. */
4570
4573
  Integer: number,
4571
4574