bruce-models 1.4.2 → 1.4.4

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.
@@ -4509,7 +4509,8 @@
4509
4509
  const { api, filter, req: reqParams } = params;
4510
4510
  const data = yield api.POST("files/filtered", filter, exports.Api.PrepReqParams(reqParams));
4511
4511
  return {
4512
- clientFiles: data.Items
4512
+ clientFiles: data.Items,
4513
+ totalCount: data.TotalCount
4513
4514
  };
4514
4515
  });
4515
4516
  }
@@ -6567,6 +6568,8 @@
6567
6568
  EItemType["Embed"] = "EMBED";
6568
6569
  // Content is expected to be an SVG or font-awesome icon.
6569
6570
  EItemType["Icon"] = "ICON";
6571
+ // Content is expected to be an image.
6572
+ EItemType["Image"] = "IMAGE";
6570
6573
  })(EItemType = Div.EItemType || (Div.EItemType = {}));
6571
6574
  let ItemAction;
6572
6575
  (function (ItemAction) {